#include <e32base.h>
class CArrayFix : public CArrayFixBase |
Public Member Functions | |
---|---|
CArrayFix(TBufRep, TInt) | |
void | AppendL(const T &) |
void | AppendL(const T *, TInt) |
void | AppendL(const T &, TInt) |
const TArray< T > | Array() |
const T & | At(TInt) |
T & | At(TInt) |
const T * | Back(TInt) |
T * | Back(TInt) |
const T * | End(TInt) |
T * | End(TInt) |
T & | ExpandL(TInt) |
T & | ExtendL() |
TInt | Find(const T &, TKeyArrayFix &, TInt &) |
TInt | FindIsq(const T &, TKeyArrayFix &, TInt &) |
TInt | InsertIsqAllowDuplicatesL(const T &, TKeyArrayFix &) |
TInt | InsertIsqL(const T &, TKeyArrayFix &) |
void | InsertL(TInt, const T &) |
void | InsertL(TInt, const T *, TInt) |
void | InsertL(TInt, const T &, TInt) |
void | ResizeL(TInt) |
void | ResizeL(TInt, const T &) |
const T & | operator[](TInt) |
T & | operator[](TInt) |
A thin templated base class for arrays of fixed length objects.
The public functions provide standard array behaviour.
The class is always derived from and is never instantiated explicitly.
void | AppendL | ( | const T & | aRef | ) | [inline] |
Appends a single element onto the end of the array.
Parameters | |
---|---|
aRef | A reference to the class T element to be appended. |
Leave Codes | |
---|---|
KErrNoMemory | The function may attempt to expand the array buffer. If there is insufficient memory available, the function leaves, in which case the array is left in the state it was in before the call. |
void | AppendL | ( | const T * | aPtr, |
TInt | aCount | |||
) | [inline] |
Appends one or more elements onto the end of the array.
Parameters | |
---|---|
aPtr | A pointer to a contiguous set of type <class t>=""> objects to be appended. |
aCount | The number of contiguous objects of type <class t>=""> located at aPtr to be appended. |
Leave Codes | |
---|---|
KErrNoMemory | The function may attempt to expand the array buffer. If there is insufficient memory available, the function leaves, in which case the array is left in the state it was in before the call. |
Panic Codes | |
---|---|
E32USER-CBase | 23, if aCount is negative. |
void | AppendL | ( | const T & | aRef, |
TInt | aReplicas | |||
) | [inline] |
Appends replicated copies of an element onto the end of the array.
Parameters | |
---|---|
aRef | A reference to the <class t>=""> object to be replicated and appended. |
aReplicas | The number of copies of the aRef element to be appended. |
Leave Codes | |
---|---|
KErrNoMemory | The function may attempt to expand the array buffer. If there is insufficient memory available, the function leaves, in which case the array is left in the state it was in before the call. |
Panic Codes | |
---|---|
E32USER-CBase | 28 if aReplicas is negative. |
const TArray< T > | Array | ( | ) | const [inline] |
Constructs and returns a TArray<T> object.
const T & | At | ( | TInt | anIndex | ) | const [inline] |
Reimplemented from CArrayFixBase::At(TInt)const
Gets a const reference to the element located at the specified position within the array.
Note that if a pointer to the returned referenced class T object is taken, be aware that the pointer value becomes invalid once elements have been added to, or removed from the array. Always refresh the pointer.
Parameters | |
---|---|
anIndex | The position of the element within the array. The position is relative to zero; i.e. zero implies the first element in the array. |
Panic Codes | |
---|---|
E32USER-CBase | 21, if anIndex is negative or greater than or equal to the number of objects currently within the array. |
T & | At | ( | TInt | anIndex | ) | [inline] |
Gets a non-const reference to the element located at the specified position within the array.
Note that if a pointer to the returned referenced class T object is taken, be aware that the pointer value becomes invalid once elements have been added to, or removed from the array. Always refresh the pointer.
Parameters | |
---|---|
anIndex | The position of the element within the array. The position is relative to zero; i.e. zero implies the first element in the array. |
Panic Codes | |
---|---|
E32USER-CBase | 21, if anIndex is negative or greater than or equal to the number of objects currently within the array. |
const T * | Back | ( | TInt | anIndex | ) | const [inline] |
Reimplemented from CArrayFixBase::Back(TInt)const
Gets a pointer to the (const) beginning of a contiguous region.
For arrays implemented using flat buffers, the function always returns a pointer to the beginning of the buffer.
For arrays implemented using segmented buffers, the function returns a pointer to the beginning of the segment for all elements in that segment except the first. If the element at position anIndex is the first in a segment, then the function returns a pointer the beginning of the previous segment.
For the first element in the array, the function returns a NULL pointer.
Parameters | |
---|---|
anIndex | The position of the element within the array. The position is relative to zero; i.e. zero implies the first element in the array. |
Panic Codes | |
---|---|
E32USER-CBase | 21, if anIndex is negative or greater than or equal to the number of objects currently within the array. |
T * | Back | ( | TInt | anIndex | ) | [inline] |
Gets a pointer to the beginning of a contiguous region.
For arrays implemented using flat buffers, the function always returns a pointer to the beginning of the buffer.
For arrays implemented using segmented buffers, the function returns a pointer to the beginning of the segment for all elements in that segment except the first. If the element at position anIndex is the first in a segment, then the function returns a pointer the beginning of the previous segment.
For the first element in the array, the function returns a NULL pointer.
Parameters | |
---|---|
anIndex | The position of the element within the array. The position is relative to zero; i.e. zero implies the first element in the array. |
Panic Codes | |
---|---|
E32USER-CBase | 21, if anIndex is negative or greater than or equal to the number of objects currently within the array. |
const T * | End | ( | TInt | anIndex | ) | const [inline] |
Reimplemented from CArrayFixBase::End(TInt)const
Gets a pointer to the (const) first byte following the end of the contiguous region containing the element at the specified position within the array.
For arrays implemented using flat buffers, the pointer always points to the first byte following the end of the buffer.
For arrays implemented using segmented buffers, the pointer always points to the first byte following the end of the segment which contains the element.
Parameters | |
---|---|
anIndex | The position of the element within the array. The position is relative to zero; i.e. zero implies the first element in the array. |
Panic Codes | |
---|---|
E32USER-CBase | 21, if anIndex is negative or greater than or equal to the number of objects currently within the array. |
T * | End | ( | TInt | anIndex | ) | [inline] |
Gets a pointer to the first byte following the end of the contiguous region containing the element at the specified position within the array.
For arrays implemented using flat buffers, the pointer always points to the first byte following the end of the buffer.
For arrays implemented using segmented buffers, the pointer always points to the first byte following the end of the segment which contains the element.
Parameters | |
---|---|
anIndex | The position of the element within the array. The position is relative to zero; i.e. zero implies the first element in the array. |
Panic Codes | |
---|---|
E32USER-CBase | 21, if anIndex is negative or greater than or equal to the number of objects currently within the array. |
T & | ExpandL | ( | TInt | anIndex | ) | [inline] |
Reimplemented from CArrayFixBase::ExpandL(TInt)
Expands the array by one element at the specified position.
It:
1. expands the array by one element at the specified position
2. constructs a new element at that position
3. returns a reference to the new element.
All existing elements from position anIndex to the end of the array are moved up, so that the element originally at position anIndex is now at position anIndex + 1 etc.
The new element of type class T is constructed at position anIndex, using the default constructor of that class.
Parameters | |
---|---|
anIndex | The position within the array where the array is to be expanded and the new class T object is to be constructed. |
Leave Codes | |
---|---|
KErrNoMemory | The function may attempt to expand the array buffer. If there is insufficient memory available, the function leaves, in which case the array is left in the state it was in before the call. |
Panic Codes | |
---|---|
E32USER-CBase | 21 if anIndex is negative or greater than the number of elements currently in the array. |
T & | ExtendL | ( | ) | [inline] |
Expands the array by one element at the end of the array.
It:
1. expands the array by one element at the end of the array, i.e. at position CArrayFixBase::Count()
2. constructs a new element at that position
3. returns a reference to the new element.
The new element of type classT is constructed at the end of the array, using the default constructor of that class.
See also: CArrayFixBase::Count
Leave Codes | |
---|---|
KErrNoMemory | The function may attempt to expand the array buffer. If there is insufficient memory available, the function leaves, in which case the array is left in the state it was in before the call. |
TInt | Find | ( | const T & | aRef, |
TKeyArrayFix & | aKey, | |||
TInt & | anIndex | |||
) | const [inline] |
Finds the position of an element within the array, based on the matching of keys, using a sequential search.
The array is searched sequentially for an element whose key matches the key of the supplied class T object. The search starts with the first element in the array.
Note that where an array has elements with duplicate keys, the function only supplies the position of the first element in the array with that key.
Parameters | |
---|---|
aRef | A reference to an object of type class T whose key is used for comparison. |
aKey | A reference to a key object defining the properties of the key. |
anIndex | A reference to a TInt supplied by the caller. On return, if the element is found, the reference is set to the position of that element within the array. The position is relative to zero, (i.e. the first element in the array is at position 0). If the element is not found and the array is not empty, then the value of the reference is set to the number of elements in the array. If the element is not found and the array is empty, then the reference is set to zero. |
TInt | FindIsq | ( | const T & | aRef, |
TKeyArrayFix & | aKey, | |||
TInt & | anIndex | |||
) | const [inline] |
Finds the position of an element within the array, based on the matching of keys, using a binary search technique.
The array is searched, using a binary search technique, for an element whose key matches the key of the supplied classT object.
The array must be in key order.
Note that where an array has elements with duplicate keys, the function cannot guarantee which element, with the given key value, it will return, except that it will find one of them.
Parameters | |
---|---|
aRef | A reference to an object of type class T whose key is used for comparison. |
aKey | A reference to a key object defining the properties of the key. |
anIndex | A reference to a TInt supplied by the caller. On return, if the element is found, the reference is set to the position of that element within the array. The position is relative to zero, (i.e. the first element in the array is at position 0). If the element is not found and the array is not empty, then the reference is set to the position of the first element in the array with a key which is greater than the key of the object aRef. If the element is not found and the array is empty, then the reference is set to zero. |
TInt | InsertIsqAllowDuplicatesL | ( | const T & | aRef, |
TKeyArrayFix & | aKey | |||
) | [inline] |
Inserts a single element into the array at a position determined by a key, allowing duplicates.
The array MUST already be in key sequence (as defined by the key), otherwise the position of the new element is unpredictable.
If the new element's key is a duplicate of an existing element's key, then the new element is positioned after the existing element.
Parameters | |
---|---|
aRef | A reference to the element of type <class t>=""> to be inserted into the array. |
aKey | A reference to a key object defining the properties of the key. |
Leave Codes | |
---|---|
KErrNoMemory | The function may attempt to expand the array buffer. If there is insufficient memory available, the function leaves, in which case the array is left in the state it was in before the call. |
TInt | InsertIsqL | ( | const T & | aRef, |
TKeyArrayFix & | aKey | |||
) | [inline] |
Inserts a single element into the array at a position determined by a key.
The array MUST already be in key sequence (as defined by the key), otherwise the position of the new element is unpredictable, or duplicates may occur.
Elements with duplicate keys are not permitted.
Parameters | |
---|---|
aRef | A reference to the element of type <class t>=""> to be inserted into the array. |
aKey | A reference to a key object defining the properties of the key. |
Leave Codes | |
---|---|
KErrAlreadyExists | An element with the same key already exists within the array. NB the array MUST already be in key sequence, otherwise the function may insert a duplicate and fail to leave with this value. |
KErrNoMemory | The function may attempt to expand the array buffer. If there is insufficient memory available, the function leaves, in which case the array is left in the state it was in before the call. |
void | InsertL | ( | TInt | anIndex, |
const T & | aRef | |||
) | [inline] |
Inserts an element into the array at the specified position.
Note that passing a value of anIndex which is the same as the current number of elements in the array, has the effect of appending the element.
Parameters | |
---|---|
anIndex | The position within the array where the element is to be inserted. The position is relative to zero, i.e. zero implies that elements are inserted at the beginning of the array. |
aRef | A reference to the class T object to be inserted into the array at position anIndex. |
Leave Codes | |
---|---|
KErrNoMemory | The function may attempt to expand the array buffer. If there is insufficient memory available, the function leaves, in which case the array is left in the state it was in before the call. |
Panic Codes | |
---|---|
E32USER-CBase | 21 if anIndex is negative, or is greater than the number of elements currently in the array. |
Inserts one or more elements into the array at the specified position.
The objects to be added must all be contiguous.
Note that passing a value of anIndex which is the same as the current number of elements in the array, has the effect of appending the element.
Parameters | |
---|---|
anIndex | The position within the array where the elements are to be inserted. The position is relative to zero, i.e. zero implies that elements are inserted at the beginning of the array. |
aPtr | A pointer to the first of the contiguous elements of type class T to be inserted into the array at position anIndex. |
aCount | The number of contiguous elements of type class T located at aPtr to be inserted into the array. |
Leave Codes | |
---|---|
KErrNoMemory | The function may attempt to expand the array buffer. If there is insufficient memory available, the function leaves, in which case the array is left in the state it was in before the call. |
Panic Codes | |
---|---|
E32USER-CBase | 21 if anIndex is negative or is greater than the number of elements currently in the array. |
E32USER-CBase | 23 if aCount is negative. |
Inserts replicated copies of an element into the array at the specified position.
Note that passing a value of anIndex which is the same as the current number of elements in the array, has the effect of appending the element.
Parameters | |
---|---|
anIndex | The position within the array where elements are to be inserted. The position is relative to zero, i.e. zero implies that elements are inserted at the beginning of the array. |
aRef | A reference to the class T object to be replicated and inserted into the array at position anIndex. |
aReplicas | The number of copies of the aRef element to be inserted into the array. |
Leave Codes | |
---|---|
KErrNoMemory | The function may attempt to expand the array buffer. If there is insufficient memory available, the function leaves, in which case the array is left in the state it was in before the call. |
Panic Codes | |
---|---|
E32USER-CBase | 21, if anIndex is negative or is greater than the number of elements currently in the array. |
E32USER-CBase | 28, if aReplicas is negative. |
void | ResizeL | ( | TInt | aCount | ) | [inline] |
Changes the size of the array so that it contains the specified number of elements.
The following describes the effects of calling this function:
1. If aCount is less than the current number of elements in the array, then the array is shrunk. The elements at positions aCount and above are discarded. The array buffer is not compressed.
2. If aCount is greater than the current number of elements in the array, then the array is extended.
3. New elements are replicated copies of an object of type <class t>="">, constructed using the default constructor of that class.
The new elements are positioned after the existing elements in the array.
The function may attempt to expand the array buffer. If there is insufficient memory available, the function leaves. The leave code is one of the system wide error codes. If the function leaves, the array is left in the state it was in before the call.
Parameters | |
---|---|
aCount | The number of elements the array is to contain after the resizing operation. |
Panic Codes | |
---|---|
E32USER-CBase | 24, if aCount is negative. |
void | ResizeL | ( | TInt | aCount, |
const T & | aRef | |||
) | [inline] |
Changes the size of the array so that it contains the specified number of elements.
The following describes the effects of calling this function:
1. If aCount is less than the current number of elements in the array, then the array is shrunk. The elements at positions aCount and above are discarded. The array buffer is not compressed.
2. If aCount is greater than the current number of elements in the array, then the array is extended.
3. New elements are replicated copies of aRef.
The new elements are positioned after the existing elements in the array.
The function may attempt to expand the array buffer. If there is insufficient memory available, the function leaves. The leave code is one of the system wide error codes. If the function leaves, the array is left in the state it was in before the call.
Parameters | |
---|---|
aCount | The number of elements the array is to contain after the resizing operation. |
aRef | A reference to an object of type <class t>="">, copies of which are used as the new elements of the array, if the array is extended. |
Panic Codes | |
---|---|
E32USER-CBase | 24, if aCount is negative. |
const T & | operator[] | ( | TInt | anIndex | ) | const [inline] |
Gets a const reference to the element located at the specified position within the array.
Note that if a pointer to the returned referenced class T object is taken, be aware that the pointer value becomes invalid once elements have been added to, or removed from the array. Always refresh the pointer.
Parameters | |
---|---|
anIndex | The position of the element within the array. The position is relative to zero; i.e. zero implies the first element in the array. |
Panic Codes | |
---|---|
E32USER-CBase | 21, if anIndex is negative or greater than or equal to the number of objects currently within the array. |
T & | operator[] | ( | TInt | anIndex | ) | [inline] |
Gets a non-const reference to the element located at the specified position within the array.
Note that if a pointer to the returned referenced class T object is taken, be aware that the pointer value becomes invalid once elements have been added to, or removed from the array. Always refresh the pointer.
Parameters | |
---|---|
anIndex | The position of the element within the array. The position is relative to zero; i.e. zero implies the first element in the array. |
Panic Codes | |
---|---|
E32USER-CBase | 21, if anIndex is negative or greater than or equal to the number of objects currently within the array. |