2001-09-29 00:14:13 +04:00
|
|
|
/* -*- Mode: C++; tab-width: 2; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
|
2012-05-21 15:12:37 +04:00
|
|
|
/* This Source Code Form is subject to the terms of the Mozilla Public
|
|
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
|
|
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
|
1999-08-10 23:18:39 +04:00
|
|
|
|
|
|
|
#ifndef nsSegmentedBuffer_h__
|
|
|
|
#define nsSegmentedBuffer_h__
|
|
|
|
|
2000-06-03 13:46:12 +04:00
|
|
|
#include "nsMemory.h"
|
1999-08-10 23:18:39 +04:00
|
|
|
#include "prclist.h"
|
|
|
|
|
|
|
|
class nsSegmentedBuffer
|
|
|
|
{
|
|
|
|
public:
|
2003-03-15 04:04:32 +03:00
|
|
|
nsSegmentedBuffer()
|
|
|
|
: mSegmentSize(0), mMaxSize(0),
|
|
|
|
mSegAllocator(nsnull), mSegmentArray(nsnull),
|
|
|
|
mSegmentArrayCount(0),
|
|
|
|
mFirstSegmentIndex(0), mLastSegmentIndex(0) {}
|
1999-08-10 23:18:39 +04:00
|
|
|
|
2003-03-15 04:04:32 +03:00
|
|
|
~nsSegmentedBuffer() {
|
|
|
|
Empty();
|
|
|
|
NS_IF_RELEASE(mSegAllocator);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2011-08-18 17:46:39 +04:00
|
|
|
nsresult Init(PRUint32 segmentSize, PRUint32 maxSize,
|
2000-06-03 13:46:12 +04:00
|
|
|
nsIMemory* allocator = nsnull);
|
1999-08-24 12:45:17 +04:00
|
|
|
|
2011-08-18 17:46:39 +04:00
|
|
|
char* AppendNewSegment(); // pushes at end
|
1999-08-10 23:18:39 +04:00
|
|
|
|
|
|
|
// returns true if no more segments remain:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool DeleteFirstSegment(); // pops from beginning
|
1999-08-10 23:18:39 +04:00
|
|
|
|
1999-11-16 22:12:41 +03:00
|
|
|
// returns true if no more segments remain:
|
2011-09-29 10:19:26 +04:00
|
|
|
bool DeleteLastSegment(); // pops from beginning
|
1999-11-16 22:12:41 +03:00
|
|
|
|
|
|
|
// Call Realloc() on last segment. This is used to reduce memory
|
|
|
|
// consumption when data is not an exact multiple of segment size.
|
2011-09-29 10:19:26 +04:00
|
|
|
bool ReallocLastSegment(size_t newSize);
|
1999-11-16 22:12:41 +03:00
|
|
|
|
2011-08-18 17:46:39 +04:00
|
|
|
void Empty(); // frees all segments
|
1999-08-10 23:18:39 +04:00
|
|
|
|
2004-02-24 01:12:03 +03:00
|
|
|
inline PRUint32 GetSegmentCount() {
|
1999-08-10 23:18:39 +04:00
|
|
|
if (mFirstSegmentIndex <= mLastSegmentIndex)
|
|
|
|
return mLastSegmentIndex - mFirstSegmentIndex;
|
|
|
|
else
|
|
|
|
return mSegmentArrayCount + mLastSegmentIndex - mFirstSegmentIndex;
|
|
|
|
}
|
|
|
|
|
2004-02-24 01:12:03 +03:00
|
|
|
inline PRUint32 GetSegmentSize() { return mSegmentSize; }
|
|
|
|
inline PRUint32 GetMaxSize() { return mMaxSize; }
|
|
|
|
inline PRUint32 GetSize() { return GetSegmentCount() * mSegmentSize; }
|
1999-08-10 23:18:39 +04:00
|
|
|
|
2004-02-24 01:12:03 +03:00
|
|
|
inline char* GetSegment(PRUint32 indx) {
|
2002-10-01 01:49:35 +04:00
|
|
|
NS_ASSERTION(indx < GetSegmentCount(), "index out of bounds");
|
1999-10-09 00:41:19 +04:00
|
|
|
PRInt32 i = ModSegArraySize(mFirstSegmentIndex + (PRInt32)indx);
|
1999-08-10 23:18:39 +04:00
|
|
|
return mSegmentArray[i];
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
2004-02-24 01:12:03 +03:00
|
|
|
inline PRInt32 ModSegArraySize(PRInt32 n) {
|
1999-08-10 23:18:39 +04:00
|
|
|
PRUint32 result = n & (mSegmentArrayCount - 1);
|
|
|
|
NS_ASSERTION(result == n % mSegmentArrayCount,
|
|
|
|
"non-power-of-2 mSegmentArrayCount");
|
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
2011-09-29 10:19:26 +04:00
|
|
|
inline bool IsFull() {
|
1999-08-10 23:18:39 +04:00
|
|
|
return ModSegArraySize(mLastSegmentIndex + 1) == mFirstSegmentIndex;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected:
|
|
|
|
PRUint32 mSegmentSize;
|
|
|
|
PRUint32 mMaxSize;
|
2000-06-03 13:46:12 +04:00
|
|
|
nsIMemory* mSegAllocator;
|
1999-08-10 23:18:39 +04:00
|
|
|
char** mSegmentArray;
|
|
|
|
PRUint32 mSegmentArrayCount;
|
|
|
|
PRInt32 mFirstSegmentIndex;
|
|
|
|
PRInt32 mLastSegmentIndex;
|
|
|
|
};
|
|
|
|
|
|
|
|
// NS_SEGMENTARRAY_INITIAL_SIZE: This number needs to start out as a
|
|
|
|
// power of 2 given how it gets used. We double the segment array
|
|
|
|
// when we overflow it, and use that fact that it's a power of 2
|
|
|
|
// to compute a fast modulus operation in IsFull.
|
|
|
|
//
|
|
|
|
// 32 segment array entries can accommodate 128k of data if segments
|
|
|
|
// are 4k in size. That seems like a reasonable amount that will avoid
|
|
|
|
// needing to grow the segment array.
|
|
|
|
#define NS_SEGMENTARRAY_INITIAL_COUNT 32
|
|
|
|
|
|
|
|
#endif // nsSegmentedBuffer_h__
|