(svn r18824) -Codechange: Turn some public members into protected ones. (skidd13)

pull/155/head
frosch 15 years ago
parent fa2e4072a9
commit 3e76cffbdd

@ -19,16 +19,26 @@
* array of fixed size arrays */ * array of fixed size arrays */
template <class T, uint B = 1024, uint N = B> template <class T, uint B = 1024, uint N = B>
class SmallArray { class SmallArray {
public: protected:
typedef FixedSizeArray<T, B> SubArray; ///< inner array typedef FixedSizeArray<T, B> SubArray; ///< inner array
typedef FixedSizeArray<SubArray, N> SuperArray; ///< outer array typedef FixedSizeArray<SubArray, N> SuperArray; ///< outer array
protected: static const uint Tcapacity = B * N; ///< total max number of items
SuperArray data; ///< array of arrays of items SuperArray data; ///< array of arrays of items
public: /** return first sub-array with free space for new item */
static const uint Tcapacity = B * N; ///< total max number of items FORCEINLINE SubArray& FirstFreeSubArray()
{
uint super_size = data.Length();
if (super_size > 0) {
SubArray& s = data[super_size - 1];
if (!s.IsFull()) return s;
}
return data.AppendC();
}
public:
/** implicit constructor */ /** implicit constructor */
FORCEINLINE SmallArray() { } FORCEINLINE SmallArray() { }
/** Clear (destroy) all items */ /** Clear (destroy) all items */
@ -45,16 +55,6 @@ public:
FORCEINLINE bool IsEmpty() { return data.IsEmpty(); } FORCEINLINE bool IsEmpty() { return data.IsEmpty(); }
/** return true if array is full */ /** return true if array is full */
FORCEINLINE bool IsFull() { return data.IsFull() && data[N - 1].IsFull(); } FORCEINLINE bool IsFull() { return data.IsFull() && data[N - 1].IsFull(); }
/** return first sub-array with free space for new item */
FORCEINLINE SubArray& FirstFreeSubArray()
{
uint super_size = data.Length();
if (super_size > 0) {
SubArray& s = data[super_size - 1];
if (!s.IsFull()) return s;
}
return data.AppendC();
}
/** allocate but not construct new item */ /** allocate but not construct new item */
FORCEINLINE T& Append() { return FirstFreeSubArray().Append(); } FORCEINLINE T& Append() { return FirstFreeSubArray().Append(); }
/** allocate and construct new item */ /** allocate and construct new item */

@ -20,10 +20,7 @@
* is delayed. */ * is delayed. */
template <class T, uint C> template <class T, uint C>
struct FixedSizeArray { struct FixedSizeArray {
/** the only member of fixed size array is pointer to the block protected:
* of C array of items. Header can be found on the offset -sizeof(ArrayHeader). */
T *data;
/** header for fixed size array */ /** header for fixed size array */
struct ArrayHeader struct ArrayHeader
{ {
@ -35,6 +32,20 @@ struct FixedSizeArray {
static const uint Tsize = sizeof(T); // size of item static const uint Tsize = sizeof(T); // size of item
static const uint HeaderSize = sizeof(ArrayHeader); // size of header static const uint HeaderSize = sizeof(ArrayHeader); // size of header
/** the only member of fixed size array is pointer to the block
* of C array of items. Header can be found on the offset -sizeof(ArrayHeader). */
T *data;
/** return reference to the array header (non-const) */
FORCEINLINE ArrayHeader& Hdr() { return *(ArrayHeader*)(((byte*)data) - HeaderSize); }
/** return reference to the array header (const) */
FORCEINLINE const ArrayHeader& Hdr() const { return *(ArrayHeader*)(((byte*)data) - HeaderSize); }
/** return reference to the block reference counter */
FORCEINLINE uint& RefCnt() { return Hdr().reference_count; }
/** return reference to number of used items */
FORCEINLINE uint& SizeRef() { return Hdr().items; }
public:
/** Default constructor. Preallocate space for items and header, then initialize header. */ /** Default constructor. Preallocate space for items and header, then initialize header. */
FixedSizeArray() FixedSizeArray()
{ {
@ -75,16 +86,6 @@ struct FixedSizeArray {
SizeRef() = 0; SizeRef() = 0;
} }
protected:
/** return reference to the array header (non-const) */
FORCEINLINE ArrayHeader& Hdr() { return *(ArrayHeader*)(((byte*)data) - HeaderSize); }
/** return reference to the array header (const) */
FORCEINLINE const ArrayHeader& Hdr() const { return *(ArrayHeader*)(((byte*)data) - HeaderSize); }
/** return reference to the block reference counter */
FORCEINLINE uint& RefCnt() { return Hdr().reference_count; }
/** return reference to number of used items */
FORCEINLINE uint& SizeRef() { return Hdr().items; }
public:
/** return number of used items */ /** return number of used items */
FORCEINLINE uint Length() const { return Hdr().items; } FORCEINLINE uint Length() const { return Hdr().items; }
/** return true if array is full */ /** return true if array is full */

Loading…
Cancel
Save