Update contrib.
1 // Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of the License "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // e32\include\e32base.inl
19 inline TAny* CBase::operator new(TUint aSize, TAny* aBase) __NO_THROW
21 Initialises the object to binary zeroes.
23 @param aSize The size of the derived class. This parameter is specified
24 implicitly by C++ in all circumstances in which a derived
26 @param aBase Indicates a base address which is returned as the object's
29 @return A pointer to the base address.
31 { Mem::FillZ(aBase, aSize); return aBase; }
36 inline TAny* CBase::operator new(TUint aSize) __NO_THROW
38 Allocates the object from the heap and then initialises its contents
41 @param aSize The size of the derived class. This parameter is specified
42 implicitly by C++ in all circumstances in which a derived class
45 @return A pointer to the allocated object; NULL if memory could not
48 { return User::AllocZ(aSize); }
53 inline TAny* CBase::operator new(TUint aSize, TLeave)
55 Allocates the object from the heap and then initialises its contents
58 @param aSize The size of the derived class. This parameter is specified
59 implicitly by C++ in all circumstances in which a derived class
62 @return A pointer to the allocated object; the TLeave parameter indicates
63 that the operation leaves if allocation fails with out-of-memory.
65 { return User::AllocZL(aSize); }
70 inline TAny* CBase::operator new(TUint aSize, TUint aExtraSize) __NO_THROW
72 Allocates the object from the heap and then initialises its contents
75 Use of this overload is rare.
77 @param aSize The size of the derived class. This parameter is specified
78 implicitly by C++ in all circumstances in which a derived class
81 @param aExtraSize Indicates additional size beyond the end of the base class.
83 @return A pointer to the allocated object; NULL if memory could not
86 { return User::AllocZ(aSize + aExtraSize); }
91 inline TAny* CBase::operator new(TUint aSize, TLeave, TUint aExtraSize)
93 Allocates the object from the heap and then initialises its contents
96 Use of this overload is rare.
98 @param aSize The size of the derived class. This parameter is specified
99 implicitly by C++ in all circumstances in which a derived class
102 @param aExtraSize Indicates additional size beyond the end of the base class.
104 @return A pointer to the allocated object; the TLeave parameter indicates
105 that the operation leaves if allocation fails with out-of-memory.
107 { return User::AllocZL(aSize + aExtraSize); }
113 inline TInt CBufBase::Size() const
115 Gets the number of data bytes in the buffer.
117 Note that the number of heap bytes used by the buffer may be greater than its
118 size, because there is typically extra room to allow for expansion. Use the
119 Compress() function to reduce the extra allocation as much as possible.
121 @return The number of data bytes in the buffer.
129 inline TInt CBufFlat::Capacity() const
131 Gets the size to which the buffer may expand without re-allocation.
133 @return The size of the allocated cell associated with the buffer. This is
134 the maximum size the buffer may be expanded to without re-allocation.
141 // Class CArrayFixBase
142 inline TInt CArrayFixBase::Count() const
144 Gets the number of elements held in the array.
146 @return The number of array elements
153 inline TInt CArrayFixBase::Length() const
155 Gets the length of an element.
157 @return The length of an element of type class T.
164 // Template class CArrayFix
166 inline CArrayFix<T>::CArrayFix(TBufRep aRep,TInt aGranularity)
167 : CArrayFixBase(aRep,sizeof(T),aGranularity)
177 inline const T &CArrayFix<T>::operator[](TInt anIndex) const
179 Gets a const reference to the element located at the specified position
182 Note that if a pointer to the returned referenced class T object is taken,
183 be aware that the pointer value becomes invalid once elements have been added
184 to, or removed from the array. Always refresh the pointer.
186 @param anIndex The position of the element within the array. The position
187 is relative to zero; i.e. zero implies the first element in
190 @return A const reference to the required element.
192 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
193 number of objects currently within the array.
195 {return(*((const T *)CArrayFixBase::At(anIndex)));}
201 inline T &CArrayFix<T>::operator[](TInt anIndex)
203 Gets a non-const reference to the element located at the specified position
206 Note that if a pointer to the returned referenced class T object is taken,
207 be aware that the pointer value becomes invalid once elements have been added
208 to, or removed from the array. Always refresh the pointer.
210 @param anIndex The position of the element within the array. The position
211 is relative to zero; i.e. zero implies the first element in
214 @return A non-const reference to the required element.
216 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
217 number of objects currently within the array.
219 {return(*((T *)CArrayFixBase::At(anIndex)));}
225 inline const T &CArrayFix<T>::At(TInt anIndex) const
227 Gets a const reference to the element located at the specified position
230 Note that if a pointer to the returned referenced class T object is taken,
231 be aware that the pointer value becomes invalid once elements have been added
232 to, or removed from the array. Always refresh the pointer.
234 @param anIndex The position of the element within the array. The position
235 is relative to zero; i.e. zero implies the first element in
238 @return A const reference to the required element.
240 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
241 number of objects currently within the array.
243 {return(*((const T *)CArrayFixBase::At(anIndex)));}
249 inline const T *CArrayFix<T>::End(TInt anIndex) const
251 Gets a pointer to the (const) first byte following the end of the
252 contiguous region containing the element at the specified position within
255 For arrays implemented using flat buffers, the pointer always points to the
256 first byte following the end of the buffer.
258 For arrays implemented using segmented buffers, the pointer always points
259 to the first byte following the end of the segment which contains the element.
261 @param anIndex The position of the element within the array. The position
262 is relative to zero; i.e. zero implies the first element
265 @return A pointer to the constant byte following the end of the contiguous
268 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
269 number of objects currently within the array.
271 {return((const T *)CArrayFixBase::End(anIndex));}
277 inline const T *CArrayFix<T>::Back(TInt anIndex) const
279 Gets a pointer to the (const) beginning of a contiguous region.
281 For arrays implemented using flat buffers, the function always returns a
282 pointer to the beginning of the buffer.
284 For arrays implemented using segmented buffers, the function returns a pointer
285 to the beginning of the segment for all elements in that segment except the
286 first. If the element at position anIndex is the first in a segment, then
287 the function returns a pointer the beginning of the previous segment.
289 For the first element in the array, the function returns a NULL pointer.
291 @param anIndex The position of the element within the array. The position
292 is relative to zero; i.e. zero implies the first element
295 @return A pointer to the (const) beginning of the contiguous region.
297 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
298 number of objects currently within the array.
300 {return((const T *)CArrayFixBase::Back(anIndex));}
306 inline T &CArrayFix<T>::At(TInt anIndex)
308 Gets a non-const reference to the element located at the specified position
311 Note that if a pointer to the returned referenced class T object is taken,
312 be aware that the pointer value becomes invalid once elements have been added
313 to, or removed from the array. Always refresh the pointer.
315 @param anIndex The position of the element within the array. The position
316 is relative to zero; i.e. zero implies the first element in
319 @return A non-const reference to the required element.
321 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
322 number of objects currently within the array.
324 {return(*((T *)CArrayFixBase::At(anIndex)));}
330 inline T *CArrayFix<T>::End(TInt anIndex)
332 Gets a pointer to the first byte following the end of the contiguous region
333 containing the element at the specified position within the array.
335 For arrays implemented using flat buffers, the pointer always points to the
336 first byte following the end of the buffer.
338 For arrays implemented using segmented buffers, the pointer always points
339 to the first byte following the end of the segment which contains the element.
341 @param anIndex The position of the element within the array. The position
342 is relative to zero; i.e. zero implies the first element
345 @return A pointer to the byte following the end of the contiguous region.
347 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
348 number of objects currently within the array.
350 {return(((T *)CArrayFixBase::End(anIndex)));}
356 inline T *CArrayFix<T>::Back(TInt anIndex)
358 Gets a pointer to the beginning of a contiguous region.
360 For arrays implemented using flat buffers, the function always returns a pointer
361 to the beginning of the buffer.
363 For arrays implemented using segmented buffers, the function returns a pointer
364 to the beginning of the segment for all elements in that segment except the
365 first. If the element at position anIndex is the first in a segment, then
366 the function returns a pointer the beginning of the previous segment.
368 For the first element in the array, the function returns a NULL pointer.
370 @param anIndex The position of the element within the array. The position
371 is relative to zero; i.e. zero implies the first element
374 @return A pointer to the beginning of the contiguous region.
376 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
377 number of objects currently within the array.
379 {return(((T *)CArrayFixBase::Back(anIndex)));}
385 inline void CArrayFix<T>::AppendL(const T &aRef)
387 Appends a single element onto the end of the array.
389 @param aRef A reference to the class T element to be appended.
391 @leave KErrNoMemory The function may attempt to expand the array buffer. If
392 there is insufficient memory available, the function leaves, in which
393 case the array is left in the state it was in before the call.
395 {CArrayFixBase::InsertL(Count(),&aRef);}
401 inline void CArrayFix<T>::AppendL(const T *aPtr,TInt aCount)
403 Appends one or more elements onto the end of the array.
405 @param aPtr A pointer to a contiguous set of type <class T> objects to be
407 @param aCount The number of contiguous objects of type <class T> located at
410 @leave KErrNoMemory The function may attempt to expand the array buffer. If
411 there is insufficient memory available, the function leaves, in which
412 case the array is left in the state it was in before the call.
414 @panic E32USER-CBase 23, if aCount is negative.
416 {CArrayFixBase::InsertL(Count(),aPtr,aCount);}
422 inline void CArrayFix<T>::AppendL(const T &aRef,TInt aReplicas)
424 Appends replicated copies of an element onto the end of the array.
426 @param aRef A reference to the <class T> object to be replicated and appended.
427 @param aReplicas The number of copies of the aRef element to be appended.
429 @leave KErrNoMemory The function may attempt to expand the array buffer. If
430 there is insufficient memory available, the function leaves, in which
431 case the array is left in the state it was in before the call.
433 @panic E32USER-CBase 28 if aReplicas is negative.
435 {CArrayFixBase::InsertRepL(Count(),&aRef,aReplicas);}
441 inline T &CArrayFix<T>::ExpandL(TInt anIndex)
443 Expands the array by one element at the specified position.
447 1. expands the array by one element at the specified position
449 2. constructs a new element at that position
451 3. returns a reference to the new element.
453 All existing elements from position anIndex to the end of the array are moved
454 up, so that the element originally at position anIndex is now at position
457 The new element of type class T is constructed at position anIndex, using
458 the default constructor of that class.
460 @param anIndex The position within the array where the array is to be expanded
461 and the new class T object is to be constructed.
463 @leave KErrNoMemory The function may attempt to expand the array buffer. If
464 there is insufficient memory available, the function leaves, in which
465 case the array is left in the state it was in before the call.
467 @return A reference to the newly constructed class T object at position
468 anIndex within the array.
470 @panic E32USER-CBase 21 if anIndex is negative or greater than the number
471 of elements currently in the array.
473 {return(*new(CArrayFixBase::ExpandL(anIndex)) T);}
479 inline T &CArrayFix<T>::ExtendL()
481 Expands the array by one element at the end of the array.
485 1. expands the array by one element at the end of the array, i.e. at position
486 CArrayFixBase::Count()
488 2. constructs a new element at that position
490 3. returns a reference to the new element.
492 The new element of type class T is constructed at the end of the array,
493 using the default constructor of that class.
495 @leave KErrNoMemory The function may attempt to expand the array buffer. If
496 there is insufficient memory available, the function leaves, in which
497 case the array is left in the state it was in before the call.
499 @return A reference to the newly constructed class T object at the end of
502 @see CArrayFixBase::Count
504 {return(*new(CArrayFixBase::ExpandL(Count())) T);}
510 inline TInt CArrayFix<T>::Find(const T &aRef,TKeyArrayFix &aKey,TInt &anIndex) const
512 Finds the position of an element within the array, based on the matching of
513 keys, using a sequential search.
515 The array is searched sequentially for an element whose key matches the key of the
516 supplied class T object. The search starts with the first element in the array.
518 Note that where an array has elements with duplicate keys, the function only
519 supplies the position of the first element in the array with that key.
521 @param aRef A reference to an object of type class T whose key is used
523 @param aKey A reference to a key object defining the properties of the key.
524 @param anIndex A reference to a TInt supplied by the caller. On return, if the
525 element is found, the reference is set to the position of that
526 element within the array. The position is relative to zero,
527 (i.e. the first element in the array is at position 0).
528 If the element is not found and the array is not empty, then
529 the value of the reference is set to the number of elements in
531 If the element is not found and the array is empty, then the
532 reference is set to zero.
534 @return Zero, if the element with the specified key is found.
535 Non-zero, if the element with the specified key is not found.
537 {return(CArrayFixBase::Find(&aRef,aKey,anIndex));}
543 inline TInt CArrayFix<T>::FindIsq(const T &aRef,TKeyArrayFix &aKey,TInt &anIndex) const
545 Finds the position of an element within the array, based on the matching of
546 keys, using a binary search technique.
548 The array is searched, using a binary search technique, for an element whose
549 key matches the key of the supplied class T object.
551 The array must be in key order.
553 Note that where an array has elements with duplicate keys, the function cannot
554 guarantee which element, with the given key value, it will return, except that
555 it will find one of them.
557 @param aRef A reference to an object of type class T whose key is used
559 @param aKey A reference to a key object defining the properties of the key.
560 @param anIndex A reference to a TInt supplied by the caller. On return, if the
561 element is found, the reference is set to the position of that
562 element within the array. The position is relative to zero,
563 (i.e. the first element in the array is at position 0).
564 If the element is not found and the array is not empty, then the
565 reference is set to the position of the first element in the
566 array with a key which is greater than the key of the
568 If the element is not found and the array is empty, then the
569 reference is set to zero.
571 @return Zero, if the element with the specified key is found.
572 Non-zero, if the element with the specified key is not found.
574 {return(CArrayFixBase::FindIsq(&aRef,aKey,anIndex));}
580 inline void CArrayFix<T>::InsertL(TInt anIndex,const T &aRef)
582 Inserts an element into the array at the specified position.
584 Note that passing a value of anIndex which is the same as the current number
585 of elements in the array, has the effect of appending the element.
587 @param anIndex The position within the array where the element is to be
588 inserted. The position is relative to zero, i.e. zero implies
589 that elements are inserted at the beginning of the array.
591 @param aRef A reference to the class T object to be inserted into the array
594 @leave KErrNoMemory The function may attempt to expand the array buffer. If
595 there is insufficient memory available, the function leaves, in which
596 case the array is left in the state it was in before the call.
598 @panic E32USER-CBase 21 if anIndex is negative, or is greater than the number
599 of elements currently in the array.
601 {CArrayFixBase::InsertL(anIndex,&aRef);}
607 inline void CArrayFix<T>::InsertL(TInt anIndex,const T *aPtr,TInt aCount)
609 Inserts one or more elements into the array at the specified position.
611 The objects to be added must all be contiguous.
613 Note that passing a value of anIndex which is the same as the current number
614 of elements in the array, has the effect of appending the element.
616 @param anIndex The position within the array where the elements are to be
617 inserted. The position is relative to zero, i.e. zero implies
618 that elements are inserted at the beginning of the array.
620 @param aPtr A pointer to the first of the contiguous elements of type
621 class T to be inserted into the array at position anIndex.
623 @param aCount The number of contiguous elements of type class T located at
624 aPtr to be inserted into the array.
626 @leave KErrNoMemory The function may attempt to expand the array buffer. If
627 there is insufficient memory available, the function leaves, in which
628 case the array is left in the state it was in before the call.
630 @panic E32USER-CBase 21 if anIndex is negative or is greater than the number
631 of elements currently in the array.
632 @panic E32USER-CBase 23 if aCount is negative.
634 {CArrayFixBase::InsertL(anIndex,aPtr,aCount);}
640 inline void CArrayFix<T>::InsertL(TInt anIndex,const T &aRef,TInt aReplicas)
642 Inserts replicated copies of an element into the array at the specified
645 Note that passing a value of anIndex which is the same as the current number
646 of elements in the array, has the effect of appending the element.
649 @param anIndex The position within the array where elements are to be
650 inserted. The position is relative to zero, i.e. zero implies
651 that elements are inserted at the beginning of the array.
653 @param aRef A reference to the class T object to be replicated and
654 inserted into the array at position anIndex.
656 @param aReplicas The number of copies of the aRef element to be inserted into
659 @leave KErrNoMemory The function may attempt to expand the array buffer. If
660 there is insufficient memory available, the function leaves, in which
661 case the array is left in the state it was in before the call.
663 @panic E32USER-CBase 21, if anIndex is negative or is greater than the number
664 of elements currently in the array.
665 @panic E32USER-CBase 28, if aReplicas is negative.
667 {CArrayFixBase::InsertRepL(anIndex,&aRef,aReplicas);}
673 inline TInt CArrayFix<T>::InsertIsqL(const T &aRef,TKeyArrayFix &aKey)
675 Inserts a single element into the array at a position determined by a key.
677 The array MUST already be in key sequence (as defined by the key), otherwise
678 the position of the new element is unpredictable, or duplicates may occur.
680 Elements with duplicate keys are not permitted.
682 @param aRef A reference to the element of type <class T> to be inserted into
684 @param aKey A reference to a key object defining the properties of the key.
686 @return The position within the array of the newly inserted element.
688 @leave KErrAlreadyExists An element with the same key already exists within
689 the array. NB the array MUST already be in key sequence, otherwise
690 the function may insert a duplicate and fail to leave with
692 @leave KErrNoMemory The function may attempt to expand the array buffer. If
693 there is insufficient memory available, the function leaves, in which
694 case the array is left in the state it was in before the call.
696 {return(CArrayFixBase::InsertIsqL(&aRef,aKey));}
702 inline TInt CArrayFix<T>::InsertIsqAllowDuplicatesL(const T &aRef,TKeyArrayFix &aKey)
704 Inserts a single element into the array at a position determined by a key,
707 The array MUST already be in key sequence (as defined by the key), otherwise
708 the position of the new element is unpredictable.
710 If the new element's key is a duplicate of an existing element's key, then
711 the new element is positioned after the existing element.
713 @param aRef A reference to the element of type <class T> to be inserted into
715 @param aKey A reference to a key object defining the properties of the key.
717 @return The position within the array of the newly inserted element.
719 @leave KErrNoMemory The function may attempt to expand the array buffer. If
720 there is insufficient memory available, the function leaves, in which
721 case the array is left in the state it was in before the call.
723 {return(CArrayFixBase::InsertIsqAllowDuplicatesL(&aRef,aKey));}
729 inline void CArrayFix<T>::ResizeL(TInt aCount)
731 Changes the size of the array so that it contains the specified number
734 The following describes the effects of calling this function:
736 1. If aCount is less than the current number of elements in the array, then the
737 array is shrunk. The elements at positions aCount and above are discarded.
738 The array buffer is not compressed.
740 2. If aCount is greater than the current number of elements in the array, then
741 the array is extended.
743 3. New elements are replicated copies of an object of type <class T>,
744 constructed using the default constructor of that class.
746 The new elements are positioned after the existing elements in the array.
748 The function may attempt to expand the array buffer. If there is insufficient
749 memory available, the function leaves. The leave code is one of the system
750 wide error codes. If the function leaves, the array is left in the state it
751 was in before the call.
753 @param aCount The number of elements the array is to contain after the resizing
756 @panic E32USER-CBase 24, if aCount is negative.
758 {TUint8 b[sizeof(T)]; new(&b[0]) T; CArrayFixBase::ResizeL(aCount,&b[0]);}
764 inline void CArrayFix<T>::ResizeL(TInt aCount,const T &aRef)
766 Changes the size of the array so that it contains the specified number
769 The following describes the effects of calling this function:
771 1. If aCount is less than the current number of elements in the array, then the
772 array is shrunk. The elements at positions aCount and above are discarded.
773 The array buffer is not compressed.
775 2. If aCount is greater than the current number of elements in the array, then
776 the array is extended.
778 3. New elements are replicated copies of aRef.
780 The new elements are positioned after the existing elements in the array.
782 The function may attempt to expand the array buffer. If there is insufficient
783 memory available, the function leaves. The leave code is one of the system
784 wide error codes. If the function leaves, the array is left in the state it
785 was in before the call.
787 @param aCount The number of elements the array is to contain after the resizing
790 @param aRef A reference to an object of type <class T>, copies of which are
791 used as the new elements of the array, if the array is extended.
793 @panic E32USER-CBase 24, if aCount is negative.
795 {CArrayFixBase::ResizeL(aCount,&aRef);}
801 inline const TArray<T> CArrayFix<T>::Array() const
803 Constructs and returns a TArray<T> object.
805 @return A TArray<T> object representing this array.
807 {return(TArray<T>(CountR,AtR,this));}
812 inline CArrayFix<TAny>::CArrayFix(TBufRep aRep,TInt aRecordLength,TInt aGranularity)
813 : CArrayFixBase(aRep,aRecordLength,aGranularity)
822 inline const TAny *CArrayFix<TAny>::At(TInt anIndex) const
824 Gets a pointer to the untyped element located at the specified position
827 @param anIndex The position of the element within the array. The position
828 is relative to zero; i.e. zero implies the first element in the
831 @return A pointer to the untyped element located at position anIndex within
834 @panic E32User-CBase 21, if anIndex is negative or is greater than or equal
835 to the number of objects currently within the array.
837 {return(CArrayFixBase::At(anIndex));}
842 inline const TAny *CArrayFix<TAny>::End(TInt anIndex) const
844 Gets a pointer to the first byte following the end of the contiguous region
845 containing the element at the specfied position within the array.
847 For flat buffers, the pointer always points to the first byte following the
850 For segmented buffers, the pointer always points to the first byte following
851 the end of the segment which contains the element.
853 @param anIndex The position of the element within the array. The position
854 is relative to zero; i.e. zero implies the first element in
857 @return A pointer to the byte following the end of the contiguous region.
859 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to
860 the number of objects currently within the array.
862 {return(CArrayFixBase::End(anIndex));}
867 inline const TAny *CArrayFix<TAny>::Back(TInt anIndex) const
869 Gets a pointer to the beginning of a contiguous region.
871 For flat buffers, the function always returns a pointer to the beginning of
874 For segmented buffers, the function returns a pointer to the beginning of
875 the segment for all elements in that segment except the first. If the element
876 at the specified position is the first in a segment, then the function returns
877 a pointer the beginning of the previous segment.
879 For the first element in the array, the function returns a NULL pointer.
881 @param anIndex The position of the element within the array. The position
882 is relative to zero; i.e. zero implies the first element in the array.
884 @return A pointer to the beginning of the contiguous region.
886 @panic E32User-CBase 21, if anIndex is negative or is greater than or equal to
887 the number of objects currently within the array.
889 {return(CArrayFixBase::Back(anIndex));}
894 inline TAny *CArrayFix<TAny>::At(TInt anIndex)
896 Gets a pointer to the untyped element located at the specified position
899 @param anIndex The position of the element within the array. The position
900 is relative to zero; i.e. zero implies the first element in the
903 @return A pointer to the untyped element located at position anIndex within
906 @panic E32User-CBase 21, if anIndex is negative or is greater than or equal
907 to the number of objects currently within the array.
909 {return(CArrayFixBase::At(anIndex));}
914 inline TAny *CArrayFix<TAny>::End(TInt anIndex)
916 Gets a pointer to the first byte following the end of the contiguous region
917 containing the element at the specfied position within the array.
919 For flat buffers, the pointer always points to the first byte following the
922 For segmented buffers, the pointer always points to the first byte following
923 the end of the segment which contains the element.
925 @param anIndex The position of the element within the array. The position
926 is relative to zero; i.e. zero implies the first element in
929 @return A pointer to the byte following the end of the contiguous region.
931 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to
932 the number of objects currently within the array.
934 {return(CArrayFixBase::End(anIndex));}
939 inline TAny *CArrayFix<TAny>::Back(TInt anIndex)
941 Gets a pointer to the beginning of a contiguous region.
943 For flat buffers, the function always returns a pointer to the beginning of
946 For segmented buffers, the function returns a pointer to the beginning of
947 the segment for all elements in that segment except the first. If the element
948 at the specified position is the first in a segment, then the function returns
949 a pointer the beginning of the previous segment.
951 For the first element in the array, the function returns a NULL pointer.
953 @param anIndex The position of the element within the array. The position
954 is relative to zero; i.e. zero implies the first element in the array.
956 @return A pointer to the beginning of the contiguous region.
958 @panic E32User-CBase 21, if anIndex is negative or is greater than or equal to
959 the number of objects currently within the array.
961 {return(CArrayFixBase::Back(anIndex));}
966 inline void CArrayFix<TAny>::AppendL(const TAny *aPtr)
968 Appends the specified untyped element onto the end of the array.
970 @param aPtr A pointer to an untyped element to be appended.
972 @leave KErrNoMemory The function may attempt to expand the array buffer. If
973 there is insufficient memory available, the function leaves, in which
974 case the array is left in the state it was in before the call.
976 {CArrayFixBase::InsertL(Count(),aPtr);}
981 inline void CArrayFix<TAny>::AppendL(const TAny *aPtr,TInt aCount)
983 Appends one or more untyped elements onto the end of the array.
985 @param aPtr A pointer to the first of the contiguous untyped elements to be
987 @param aCount The number of contiguous elements located at aPtr to be appended.
989 @leave KErrNoMemory The function may attempt to expand the array buffer. If
990 there is insufficient memory available, the function leaves, in which
991 case the array is left in the state it was in before the call.
992 @panic E32USER-CBase 23, if aCount is negative.
994 {CArrayFixBase::InsertL(Count(),aPtr,aCount);}
999 inline TAny *CArrayFix<TAny>::ExtendL()
1001 Expands the array by the length of one element at the end of the array and
1002 returns a pointer to this new location.
1004 As elements are untyped, no construction is possible and the content of the
1005 new location remains undefined.
1007 @return A pointer to the new element location at the end of the array.
1009 @leave KErrNoMemory The function may attempt to expand the array buffer. If
1010 there is insufficient memory available, the function leaves, in which
1011 case the array is left in the state it was in before the call.
1013 {return(CArrayFixBase::ExpandL(Count()));}
1018 // Template class CArrayFixFlat
1020 inline CArrayFixFlat<T>::CArrayFixFlat(TInt aGranularity)
1021 : CArrayFix<T>((TBufRep)CBufFlat::NewL,aGranularity)
1023 Constructs a flat array of fixed length objects with the specified granularity.
1025 The length of all array elements is the length of the class passed as the
1026 template parameter. The length must be non-zero.
1028 Note that no memory is allocated to the array buffer by this constructor.
1030 @param aGranularity The granularity of the array.
1032 @panic E32USER-CBase 17, if the length of the class implied by the template parameter is zero.
1034 @panic E32USER-CBase 18, if aGranularity is not positive.
1042 inline void CArrayFixFlat<T>::SetReserveL(TInt aCount)
1044 Reserves space in the array buffer.
1046 If necessary, the array buffer is allocated or re-allocated so that it can
1047 accommodate the specified number of elements.
1049 After a successful call to this function, elements can be added to the array
1050 and the process is guaranteed not to fail for lack of memory - provided the
1051 total number of elements does not exceed the number specified in this function.
1053 This function does not increase the number of elements in the array; i.e.
1054 the member function CArrayFixBase::Count() returns the same value both before
1055 and after a call to CArrayFixFlat::SetReserveL().
1057 @param aCount The total number of elements for which space is to be reserved.
1059 @panic E32USER-CBase 27, if aCount is less than the current number of elements
1062 {this->SetReserveFlatL(aCount);}
1067 inline CArrayFixFlat<TAny>::CArrayFixFlat(TInt aRecordLength,TInt aGranularity)
1068 : CArrayFix<TAny>((TBufRep)CBufFlat::NewL,aRecordLength,aGranularity)
1070 Constructs a flat array of fixed length objects with the specified granularity
1071 to contain elements of the specified length.
1073 Note that no memory is allocated to the array buffer by this constructor.
1075 @param aRecordLength The length of the elements of this fixed length array.
1076 @param aGranularity The granularity of the array.
1078 @panic E32USER-CBase 17, if aRecordLength is not positive.
1079 @panic E32USER-CBase 18, if aGranularity is not positive.
1086 inline void CArrayFixFlat<TAny>::SetReserveL(TInt aCount)
1088 Reserves space in the array buffer.
1090 If necessary, the array buffer is allocated or re-allocated so that it can
1091 accommodate the specified number of elements.
1093 After a successful call to this function, elements can be added to the array
1094 and the process is guaranteed not to fail for lack of memory - provided the
1095 total number of elements does not exceed the specified number.
1097 This function does not increase the number of elements in the array; i.e.
1098 the member function CArrayFixBase::Count() returns the same value both before
1099 and after a call to this function.
1101 @param aCount The total number of elements for which space is to be reserved.
1103 @panic E32USER-CBase 27, if aCount is less than the current number of elements
1106 {SetReserveFlatL(aCount);}
1111 inline void CArrayFixFlat<TInt>::SetReserveL(TInt aCount)
1113 Reserves space in the array buffer.
1115 If necessary, the array buffer is allocated or re-allocated so that it can
1116 accommodate the specified number of TInt elements.
1118 After a successful call to this function, elements can be added to the array
1119 and the process is guaranteed not to fail for lack of memory - provided the
1120 total number of elements does not exceed the specified number.
1122 This function does not increase the number of elements in the array; i.e.
1123 the member function CArrayFixBase::Count() returns the same value both before
1124 and after a call to this function.
1126 @param aCount The total number of elements for which space is to be reserved.
1128 @panic E32USER-CBase 27, if aCount is less than the current number of elements
1131 {SetReserveFlatL(aCount);}
1136 inline void CArrayFixFlat<TUid>::SetReserveL(TInt aCount)
1138 Reserves space in the array buffer.
1140 If necessary, the array buffer is allocated or re-allocated so that it can
1141 accommodate the specified number of TUid elements.
1143 After a successful call to this function, elements can be added to the array
1144 and the process is guaranteed not to fail for lack of memory - provided the
1145 total number of elements does not exceed the specified number.
1147 This function does not increase the number of elements in the array; i.e.
1148 the member function CArrayFixBase::Count() returns the same value both before
1149 and after a call to this function.
1151 @param aCount The total number of elements for which space is to be reserved.
1153 @panic E32USER-CBase 27, if aCount is less than the current number of elements
1156 {SetReserveFlatL(aCount);}
1161 // Template class CArrayFixSeg
1163 inline CArrayFixSeg<T>::CArrayFixSeg(TInt aGranularity)
1164 : CArrayFix<T>((TBufRep)CBufSeg::NewL,aGranularity)
1166 Constructs a segmented array of fixed length objects with the specified
1169 The length of all array elements is the length of the class passed as the
1170 template parameter. The length must be non-zero.
1172 Note that no memory is allocated to the array buffer by this constructor.
1174 @param aGranularity The granularity of the array.
1176 @panic E32USER-CBase 17, if the length of the class implied by the template
1178 @panic E32USER-CBase 18, if aGranularity is not positive.
1185 inline CArrayFixSeg<TAny>::CArrayFixSeg(TInt aRecordLength,TInt aGranularity)
1186 : CArrayFix<TAny>((TBufRep)CBufSeg::NewL,aRecordLength,aGranularity)
1188 Constructs a segmented array of fixed length objects with the specified
1189 granularity to contain elements of the specified length.
1191 Note that no memory is allocated to the array buffer by this constructor.
1193 @param aRecordLength The length of the elements of this array.
1195 @param aGranularity The granularity of the array.
1197 @panic E32USER-CBase 17, if aRecordLength is not positive.
1198 @panic E32USER-CBase 18, if aGranularity is not positive.
1205 // Template class CArrayPtr
1207 inline CArrayPtr<T>::CArrayPtr(TBufRep aRep,TInt aGranularity)
1208 : CArrayFix<T*>(aRep,aGranularity)
1218 void CArrayPtr<T>::ResetAndDestroy()
1220 Destroys all objects whose pointers form the elements of the array, before
1221 resetting the array.
1223 The destructor of each class T object is called before the objects themselves
1226 If the array is not empty, this member function must be called before the
1227 array is deleted to prevent the CBase derived objects from being orphaned
1230 Note that each call to this function results in a small, but non-trivial,
1231 amount of code being generated.
1234 for (TInt i=0;i<this->Count();++i)
1242 // Template class CArrayPtrFlat
1244 inline CArrayPtrFlat<T>::CArrayPtrFlat(TInt aGranularity)
1245 : CArrayPtr<T>((TBufRep)CBufFlat::NewL,aGranularity)
1247 Constructs a flat array of pointers with specified granularity.
1249 Note that no memory is allocated to the array buffer by this constructor.
1251 @param aGranularity The granularity of the array.
1253 @panic E32USER-CBase 18, if aGranularity is not positive.
1261 inline void CArrayPtrFlat<T>::SetReserveL(TInt aCount)
1263 Reserves space in the array buffer.
1265 If necessary, the array buffer is allocated or re-allocated so that it can
1266 accommodate the specified number of elements.
1268 After a successful call to this function, elements can be added to the array
1269 and the process is guaranteed not to fail for lack of memory - provided the
1270 total number of elements does not exceed the specified number.
1272 This function does not increase the number of elements in the array; i.e.
1273 the member function CArrayFixBase::Count() returns the same value both before
1274 and after a call to this function.
1276 @param aCount The total number of elements for which space is to be reserved.
1278 @panic E32USER-CBase 27, if aCount is less than the current number of elements
1281 {this->SetReserveFlatL(aCount);}
1286 // Template class CArrayPtrSeg
1288 inline CArrayPtrSeg<T>::CArrayPtrSeg(TInt aGranularity)
1289 : CArrayPtr<T>((TBufRep)CBufSeg::NewL,aGranularity)
1291 Constructs a segmented array of pointers with specified granularity.
1293 Note that no memory is allocated to the array buffer by this constructor.
1295 @param aGranularity The granularity of the array.
1297 @panic E32USER-CBase 18, if aGranularity is not positive.
1304 // Class CArrayVarBase
1305 inline TInt CArrayVarBase::Count() const
1307 Gets the number of elements held in the array.
1309 @return The number of array elements.
1316 // Template class CArrayVar
1318 inline CArrayVar<T>::CArrayVar(TBufRep aRep,TInt aGranularity)
1319 : CArrayVarBase(aRep,aGranularity)
1329 inline const T &CArrayVar<T>::operator[](TInt anIndex) const
1331 Gets a reference to the const element located at the specified position
1334 The compiler uses this variant of the function if the returned reference is
1335 used in an expression where it cannot be modified.
1337 @param anIndex The position of the element within the array, relative to zero;
1338 i.e. zero implies the first element.
1340 @return A const reference to the element located at position anIndex within
1343 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
1344 number of objects currently within the array.
1346 {return(*((const T *)CArrayVarBase::At(anIndex)));}
1352 inline T &CArrayVar<T>::operator[](TInt anIndex)
1354 Gets a reference to the element located at the specified position within
1357 The compiler uses this variant of the function if the returned reference is
1358 used in an expression where it can be modified.
1360 @param anIndex The position of the element within the array, relative to zero;
1361 i.e. zero implies the first element.
1364 @return A reference to the non-const element located at position anIndex within
1367 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
1368 number of objects currently within the array.
1370 {return(*((T *)CArrayVarBase::At(anIndex)));}
1376 inline const T &CArrayVar<T>::At(TInt anIndex) const
1378 Gets a reference to the const element located at the specified position
1381 The compiler uses this variant of the function if the returned reference is
1382 used in an expression where it cannot be modified.
1384 @param anIndex The position of the element within the array, relative to zero;
1385 i.e. zero implies the first element.
1387 @return A const reference to the element located at position anIndex within
1390 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
1391 number of objects currently within the array.
1393 {return(*((const T *)CArrayVarBase::At(anIndex)));}
1398 inline T &CArrayVar<T>::At(TInt anIndex)
1400 Gets a reference to the element located at the specified position within
1403 The compiler uses this variant of the function if the returned reference is
1404 used in an expression where it can be modified.
1406 @param anIndex The position of the element within the array, relative to zero;
1407 i.e. zero implies the first element.
1409 @return A reference to the non-const element located at position anIndex within
1412 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
1413 number of objects currently within the array.
1415 {return(*((T *)CArrayVarBase::At(anIndex)));}
1421 inline void CArrayVar<T>::AppendL(const T &aRef,TInt aLength)
1423 Appends an element of a specified length onto the array.
1425 @param aRef A reference to the <class T> element to be appended.
1426 @param aLength The length of the element to be appended.
1428 @leave KErrNoMemory The function always attempts to allocate a cell to
1429 contain the new element and may also attempt to expand the array buffer.
1430 If there is insufficient memory available, the function leaves, in which
1431 case, the array is left in the state it was in before the call.
1433 @panic E32USER-CBase 30, if aLength is negative.
1435 {CArrayVarBase::InsertL(Count(),&aRef,aLength);}
1441 inline T &CArrayVar<T>::ExpandL(TInt anIndex,TInt aLength)
1443 Expands the array by one element of specified length at the specified position.
1447 1. expands the array by one element position anIndex
1449 2. constructs a new element of specified length at that position
1451 3. returns a reference to the new element.
1453 All existing elements from position anIndex to the end of the array are moved
1454 up, so that the element originally at position anIndex is now at position
1457 The new element of type <class T> and length aLength is constructed at position
1458 anIndex, using the default constructor of that class.
1460 @param anIndex The position within the array where the array is to be expanded
1461 and the new <class T> object is to be constructed.
1463 @param aLength The length of the new element.
1465 @return A reference to the newly constructed <class T> object at position
1466 anIndex within the array.
1468 @leave KErrNoMemory The function always attempts to allocate a cell to contain
1469 the new element and may also attempt to expand the array buffer. If there
1470 is insufficient memory available, the function leaves, in which case, the
1471 array is left in the state it was in before the call.
1473 @panic E32USER-CBase 21, if anIndex is negative or is greater than the number
1474 of elements currently in the array.
1475 @panic E32USER-CBase 30, if aLength is negative.
1477 {return(*new(CArrayVarBase::ExpandL(anIndex,aLength)) T);}
1483 inline T &CArrayVar<T>::ExtendL(TInt aLength)
1485 Expands the array by one element of specified length at the end of the array.
1489 1. expands the array by one element at the end of the array, i.e. at position
1490 CArrayVarBase::Count()
1492 2. constructs a new element of specified length at that position.
1494 3. returns a reference to the new element.
1496 The new element of type <class T> is constructed at the end of the array,
1497 using the default constructor of that class.
1499 @param aLength The length of the new element.
1501 @return A reference to the newly constructed <class T> object at the end of
1504 @leave KErrNoMemory The function always attempts to allocate a cell to contain
1505 the new element and may also attempt to expand the array buffer. If there
1506 is insufficient memory available, the function leaves, in which case, the
1507 array is left in the state it was in before the call.
1509 @panic E32USER-CBase 30, if aLength is negative.
1511 {return(*new(CArrayVarBase::ExpandL(Count(),aLength)) T);}
1517 inline TInt CArrayVar<T>::Find(const T &aRef,TKeyArrayVar &aKey,TInt &anIndex) const
1519 Finds the position of an element within the array, based on the matching of
1520 keys, using a sequential search.
1522 The array is searched sequentially for an element whose key matches the key
1523 of the supplied object. The search starts with the first element in the array.
1525 Note that where an array has elements with duplicate keys, the function only
1526 supplies the position of the first element in the array with that key.
1528 @param aRef A reference to an object of type <class T> whose key is used
1530 @param aKey A reference to a key object defining the properties of the key.
1531 @param anIndex A TInt supplied by the caller. On return, if the element is
1532 found, this is set to the position of that element
1533 within the array. The position is relative to zero, (i.e.
1534 the first element in the array is at position 0).
1535 If the element is not found or the array is empty, then
1538 @return Zero, if the element with the specified key is found. Non-zero, if
1539 the element with the specified key is not found.
1541 {return(CArrayVarBase::Find(&aRef,aKey,anIndex));}
1547 inline TInt CArrayVar<T>::FindIsq(const T &aRef,TKeyArrayVar &aKey,TInt &anIndex) const
1549 Finds the position of an element within the array, based on the matching of
1550 keys, using a binary search technique.
1552 The array is searched, using a binary search technique, for an element whose
1553 key matches the key of the supplied <class T> object.
1555 The array must be in key order.
1557 Note that where an array has elements with duplicate keys, the function cannot
1558 guarantee which element, with the given key value, it will return, except that
1559 it will find one of them.
1561 @param aRef A reference to an object of type <class T> whose key is used
1563 @param aKey A reference to a key object defining the properties of the key.
1564 @param anIndex A TInt supplied by the caller. On return, if the element is
1565 found, this is set to the position of that element within
1566 the array. The position is relative to zero, (i.e.
1567 the first element in the array is at position zero).
1568 If the element is not found and the array is not empty, then
1569 this is set to the position of the first element in the array
1570 with a key which is greater than the key of the object aRef.
1571 If the element is not found and the array is empty, then
1574 @return Zero, if the element with the specified key is found or the array is
1575 empty. Non-zero, if the element with the specified key is not found.
1577 {return(CArrayVarBase::FindIsq(&aRef,aKey,anIndex));}
1583 inline void CArrayVar<T>::InsertL(TInt anIndex,const T &aRef,TInt aLength)
1585 Inserts an element of a specified length into the array at the specified
1588 Note that passing a value of anIndex which is the same as the current number
1589 of elements in the array, has the effect of appending that element.
1591 @param anIndex The position within the array where the element is to be
1592 inserted. The position is relative to zero, i.e. zero implies
1593 that elements are inserted at the beginning of the array.
1594 @param aRef A reference to the <class T> object to be inserted into
1596 @param aLength The length of the element to be inserted into the array.
1598 @leave KErrNoMemory The function always attempts to allocate a cell to contain
1599 the new element and may also attempt to expand the array buffer. If
1600 there is insufficient memory available, the function leaves, in which
1601 case, the array is left in the state it was in before the call.
1603 @panic E32USER-CBase 21, if anIndex is negative or is greater than the number
1604 of objects currently in the array.
1605 @panic E32USER-CBase 30, if aLength is is negative.
1607 {CArrayVarBase::InsertL(anIndex,&aRef,aLength);}
1613 inline TInt CArrayVar<T>::InsertIsqL(const T &aRef,TInt aLength,TKeyArrayVar &aKey)
1615 Inserts a single element of a specified length into the array at a position
1616 determined by a key.
1618 The array MUST already be in key sequence (as defined by the key), otherwise
1619 the position of the new element is unpredictable, or duplicates may occur.
1621 Elements with duplicate keys are not permitted.
1623 @param aRef A reference to the element of type <class T> to be inserted into
1625 @param aLength The length of the new element of type <class T> to be inserted
1627 @param aKey A reference to a key object defining the properties of the key.
1629 @return The position within the array of the newly inserted element.
1631 @leave KErrAlreadyExists An element with the same key already exists within
1632 the array. NB the array MUST already be in key sequence, otherwise
1633 the function may insert a duplicate and fail to leave with
1635 @leave KErrNoMemory The function always attempts to allocate a cell to contain
1636 the new element and may also attempt to expand the array buffer. If
1637 there is insufficient memory available, the function leaves, in which
1638 case, the array is left in the state it was in before the call.
1640 {return(CArrayVarBase::InsertIsqL(&aRef,aLength,aKey));}
1646 inline TInt CArrayVar<T>::InsertIsqAllowDuplicatesL(const T &aRef,TInt aLength,TKeyArrayVar &aKey)
1648 Inserts a single element of a specified length into the array at a position
1649 determined by a key, allowing duplicates.
1651 The array MUST already be in key sequence, otherwise the position of the
1652 new element is unpredictable.
1654 Elements with duplicate keys are permitted. If the new element's key is a
1655 duplicate of an existing element's key, then the new element is positioned
1656 after the existing element.
1658 @param aRef A reference to the element of type <class T> to be inserted
1660 @param aLength The length of the new element to be inserted into the array.
1661 @param aKey A reference to a key object defining the properties of the key.
1663 @return The position within the array of the newly inserted element.
1665 @leave KErrNoMemory The function always attempts to allocate a cell to contain
1666 the new element and may also attempt to expand the array buffer. If
1667 there is insufficient memory available, the function leaves, in which
1668 case, the array is left in the state it was in before the call.
1670 {return(CArrayVarBase::InsertIsqAllowDuplicatesL(&aRef,aLength,aKey));}
1676 inline const TArray<T> CArrayVar<T>::Array() const
1678 Constructs and returns a TArray<T> object.
1680 @return A TArray<T> object for this array.
1682 {return(TArray<T>(CountR,AtR,this));}
1687 inline const TAny *CArrayVar<TAny>::At(TInt anIndex) const
1689 Returns a pointer to the untyped element located at the specified position
1692 The compiler uses this variant of the function if the returned pointer is
1693 used in an expression where it cannot be modified.
1695 @param anIndex The position of the element within the array, relative to zero;
1696 i.e. zero implies the first element.
1698 @return A pointer to the const element located at position anIndex within the
1701 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
1702 number of objects currently within the array.
1704 {return(CArrayVarBase::At(anIndex));}
1709 inline CArrayVar<TAny>::CArrayVar(TBufRep aRep,TInt aGranularity)
1710 : CArrayVarBase(aRep,aGranularity)
1712 Constructs a variable array with the specified granularity and buffer
1715 Note that no memory is allocated to the array buffer by this constructor.
1717 @param aRep A pointer to a function used to expand the array buffer.
1718 The organisation of the array buffer is implied by the
1719 choice of this function.
1720 For a flat array buffer, pass (TBufRep)CBufFlat::NewL.
1721 For a segmented array buffer, pass (TBufRep)CBufSeg::NewL.
1722 @param aGranularity The granularity of the array.
1724 @panic E32USER-CBase 19, if aGranularity is not positive.
1731 inline TAny *CArrayVar<TAny>::At(TInt anIndex)
1733 Returns a pointer to the untyped element located at the specified position
1736 The compiler uses this variant of the function if the returned pointer is
1737 used in an expression where it can be modified.
1739 @param anIndex The position of the element within the array, relative to zero;
1740 i.e. zero implies the first element.
1742 @return A pointer to the non-const element located at position anIndex within the
1745 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to the
1746 number of objects currently within the array.
1748 {return(CArrayVarBase::At(anIndex));}
1753 inline void CArrayVar<TAny>::AppendL(const TAny *aPtr,TInt aLength)
1755 Appends an untyped element of specified length onto the end of the array.
1757 @param aPtr A pointer to an untyped element to be appended.
1758 @param aLength The length of the untyped element.
1760 {CArrayVarBase::InsertL(Count(),aPtr,aLength);}
1765 inline TAny *CArrayVar<TAny>::ExtendL(TInt aLength)
1767 Extends the array by one element of specified length at the end of the array,
1768 i.e. at position CArrayVarBase::Count(), and returns a pointer to the new
1771 As elements are untyped, no construction is possible and the content of the
1772 new location remains undefined.
1774 Note that the function always attempts to allocate a cell to contain the new
1775 element and may also attempt to expand the array buffer. If there is
1776 insufficient memory available, the function leaves.
1777 The leave code is one of the system wide error codes.
1778 If the function leaves, the array is left in the state it was in before
1781 @param aLength The length of the new element.
1783 @return A pointer to the new element location at the end of the array.
1785 {return(CArrayVarBase::ExpandL(Count(),aLength));}
1790 // Template class CArrayVarFlat
1792 inline CArrayVarFlat<T>::CArrayVarFlat(TInt aGranularity)
1793 : CArrayVar<T>((TBufRep)CBufFlat::NewL,aGranularity)
1795 Constructs a variable flat array with specified granularity.
1797 Note that no memory is allocated to the array buffer by this constructor.
1799 @param aGranularity The granularity of the array.
1801 @panic E32USER-CBase 19, if aGranularity is not positive.
1808 // Template class CArrayVarSeg
1810 inline CArrayVarSeg<T>::CArrayVarSeg(TInt aGranularity)
1811 : CArrayVar<T>((TBufRep)CBufSeg::NewL,aGranularity)
1813 Constructs a variable segmented array with specified granularity.
1815 Note that no memory is allocated to the array buffer by this constructor.
1817 @param aGranularity The granularity of the array.
1819 @panic E32USER-CBase 19, if aGranularity is not positive.
1826 // Class CArrayPakBase
1827 inline TInt CArrayPakBase::Count() const
1829 Gets the number of elements held in the array.
1831 @return The number of array elements.
1838 // Template class CArrayPak
1840 inline CArrayPak<T>::CArrayPak(TBufRep aRep,TInt aGranularity)
1841 : CArrayPakBase(aRep,aGranularity)
1851 inline const T &CArrayPak<T>::operator[](TInt anIndex) const
1853 Gets a reference to the element located at the specified position within the
1856 The compiler uses this variant of the function when the returned reference
1857 is used in an expression where it cannot be modified.
1859 @param anIndex The position of the element within the array. The position
1860 is relative to zero; i.e. zero implies the first element in
1863 @return A const reference to the element located at position anIndex within
1866 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to
1867 number of objects currently within the array.
1869 {return(*((const T *)CArrayPakBase::At(anIndex)));}
1875 inline T &CArrayPak<T>::operator[](TInt anIndex)
1877 Gets a reference to the element located at the specified position within the
1880 The compiler uses this variant of the function when the returned reference
1881 is used in an expression where it can be modified.
1883 @param anIndex The position of the element within the array. The position
1884 is relative to zero; i.e. zero implies the first element in
1887 @return A non-const reference to the element located at position anIndex within
1890 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to
1891 number of objects currently within the array.
1893 {return(*((T *)CArrayPakBase::At(anIndex)));}
1899 inline const T &CArrayPak<T>::At(TInt anIndex) const
1901 Gets a reference to the element located at the specified position within the
1904 The compiler uses this variant of the function when the returned reference
1905 is used in an expression where it cannot be modified.
1907 @param anIndex The position of the element within the array. The position
1908 is relative to zero; i.e. zero implies the first element in
1911 @return A const reference to the element located at position anIndex within
1914 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to
1915 number of objects currently within the array.
1917 {return(*((const T *)CArrayPakBase::At(anIndex)));}
1923 inline T &CArrayPak<T>::At(TInt anIndex)
1925 Gets a reference to the element located at the specified position within the
1928 The compiler uses this variant of the function when the returned reference
1929 is used in an expression where it can be modified.
1931 @param anIndex The position of the element within the array. The position
1932 is relative to zero; i.e. zero implies the first element in
1935 @return A non-const reference to the element located at position anIndex within
1938 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to
1939 number of objects currently within the array.
1941 {return(*((T *)CArrayPakBase::At(anIndex)));}
1947 inline void CArrayPak<T>::AppendL(const T &aRef,TInt aLength)
1949 Appends an element of a specified length onto the array.
1951 @param aRef A reference to the class T element to be appended.
1952 @param aLength The length of the element to be appended.
1954 @leave KErrNoMemory The function attempted to allocate from the heap and there
1955 is insufficient memory available. In this case, the array is left in
1956 the state it was in before the call.
1958 @panic E32USER-CBase 30, if aLength is negative.
1960 {CArrayPakBase::InsertL(Count(),&aRef,aLength);}
1966 inline T &CArrayPak<T>::ExpandL(TInt anIndex,TInt aLength)
1968 Expands the array by one element of specified length at the specified position.
1972 1. expands the array by one element at the specified position.
1974 2. constructs a new element of specified length at that position.
1976 3. returns a reference to the new element.
1978 All existing elements from position anIndex to the end of the array are moved
1979 up, so that the element originally at position anIndex is now at position
1982 The new element of type <class T> and length aLength is constructed at position
1983 anIndex, using the default constructor of that class.
1985 @param anIndex The position within the array where the array is to be expanded
1986 and the new <class T> object is to be constructed.
1987 @param aLength The length of the new element.
1989 @return A reference to the newly constructed <class T> object at position
1990 anIndex within the array.
1992 @leave KErrNoMemory The function attempted to allocate from the heap and there
1993 is insufficient memory available. In this case, the array is left in the
1994 state it was in before the call.
1996 @panic E32USER-CBase 21, if anIndex is negative or greater than the number of
1997 elements currently in the array.
1998 @panic E32USER-CBase 30, if aLength is negative.
2000 {return(*new(CArrayPakBase::ExpandL(anIndex,aLength)) T);}
2006 inline T &CArrayPak<T>::ExtendL(TInt aLength)
2008 Expands the array by one element of specified length at the end of the array.
2012 1. expands the array by one element at the end of the array, i.e. at position
2013 CArrayPakbase::Count().
2015 2. constructs a new element of length aLength at that position.
2017 3. returns a reference to the new element.
2019 The new element of type <class T> is constructed at the end of the array,
2020 using the default constructor of that class.
2022 @param aLength The length of the new element.
2024 @return A reference to the newly constructed <class T> object at the end of
2027 @leave KErrNoMemory The function attempted to allocate from the heap and there
2028 is insufficient memory available. In this case, the array is left in the
2029 state it was in before the call.
2031 @panic E32USER-CBase 30, if aLength is negative.
2033 {return(*new(CArrayPakBase::ExpandL(Count(),aLength)) T);}
2039 inline TInt CArrayPak<T>::Find(const T &aRef,TKeyArrayPak &aKey,TInt &anIndex) const
2041 Finds the position of an element within the array, based on the matching of
2042 keys, using a sequential search.
2044 The array is searched sequentially for an element whose key matches the key
2045 of the supplied <class T> object. The search starts with the first element
2048 Note that where an array has elements with duplicate keys, the function only
2049 supplies the position of the first element in the array with that key.
2051 @param aRef A reference to an object of type <class T> whose key is used
2053 @param aKey A reference to a key object defining the properties of the key.
2054 @param anIndex A reference to a TInt supplied by the caller. On return, if the
2055 element is found, this is set to the position
2056 of that element within the array. The position is relative to zero, (i.e.
2057 the first element in the array is at position 0).
2058 If the element is not found or the array is empty, then this is undefined.
2060 @return Zero, if the element with the specified key is found. Non-zero, if
2061 the element with the specified key is not found.
2063 {return(CArrayPakBase::Find(&aRef,aKey,anIndex));}
2069 inline TInt CArrayPak<T>::FindIsq(const T &aRef,TKeyArrayPak &aKey,TInt &anIndex) const
2071 Finds the position of an element within the array, based on the matching of
2072 keys, using a binary search technique.
2074 The array is searched, using a binary search technique, for an element whose
2075 key matches the key of the supplied <class T> object.
2077 The array must be in key order.
2079 Note that where an array has elements with duplicate keys, the function cannot
2080 guarantee which element, with the given key value, it will return, except that it
2081 will find one of them.
2083 @param aRef A reference to an object of type <class T> whose key is used
2085 @param aKey A reference to a key object defining the properties of the key.
2086 @param anIndex A reference to a TInt supplied by the caller. On return, if the
2087 element is found, this is set to the position of that element
2088 within the array. The position is relative to zero, (i.e.
2089 the first element in the array is at position 0).
2090 If the element is not found and the array is not empty, then
2091 this is set to the position of the first element in the array
2092 with a key which is greater than the key of the object aRef.
2093 If the element is not found and the array is empty, then this
2096 @return Zero, if the element with the specified key is found or the array is
2098 Non-zero, if the element with the specified key is not found.
2100 {return(CArrayPakBase::FindIsq(&aRef,aKey,anIndex));}
2106 inline void CArrayPak<T>::InsertL(TInt anIndex,const T &aRef,TInt aLength)
2108 Inserts an element of a specified length into the array at the specified
2111 @param anIndex The position within the array where the element is to be
2112 inserted. The position is relative to zero, i.e. zero implies
2113 that elements are inserted at the beginning of the array.
2114 @param aRef A reference to the class T object to be inserted into
2116 @param aLength The length of the element to be inserted into the array.
2118 @leave KErrNoMemory The function attempted to expand the array buffer and there
2119 is insufficient memory available. In this case, the array is left in the
2120 state it was in before the call.
2122 @panic E32USER-CBase 21, if anIndex is negative or greater than the number of
2123 objects currently in the array.
2124 @panic E32USER-CBase 30, if aLength is negative.
2126 {CArrayPakBase::InsertL(anIndex,&aRef,aLength);}
2132 inline TInt CArrayPak<T>::InsertIsqL(const T &aRef,TInt aLength,TKeyArrayPak &aKey)
2134 Inserts a single element of a specified length into the array at a position
2135 determined by a key.
2137 The array MUST already be in key sequence (as defined by the key), otherwise
2138 the position of the new element is unpredictable, or duplicates may occur.
2140 Elements with duplicate keys are not permitted.
2142 @param aRef A reference to the element of type <class T> to be inserted into
2144 @param aLength The length of the new element of type <class T> to be inserted
2146 @param aKey A reference to a key object defining the properties of the key.
2148 @return The position within the array of the newly inserted element.
2150 @leave KErrAlreadyExists An element with the same key already exists within
2151 the array. NB the array MUST already be in key sequence, otherwise
2152 the function may insert a duplicate and fail to leave with
2154 @leave KErrNoMemory The function attempted to expand the array buffer and there
2155 is insufficient memory available. In this case, the array is left in the
2156 state it was in before the call.
2158 {return(CArrayPakBase::InsertIsqL(&aRef,aLength,aKey));}
2164 inline TInt CArrayPak<T>::InsertIsqAllowDuplicatesL(const T &aRef,TInt aLength,TKeyArrayPak &aKey)
2166 Inserts a single element of a specified length into the array at a position
2167 determined by a key, allowing duplicates.
2169 The array MUST already be in key sequence, otherwise the position of the
2170 new element is unpredictable.
2172 Elements with duplicate keys are permitted. If the new element's key is a
2173 duplicate of an existing element's key, then the new element is positioned
2174 after the existing element.
2176 @param aRef A reference to the element of type <class T> to be inserted into
2178 @param aLength The length of the new element to be inserted into the array.
2179 @param aKey A reference to a key object defining the properties of the key.
2181 @return The position within the array of the newly inserted element.
2183 @leave KErrNoMemory The function attempted to expand the array buffer and there
2184 is insufficient memory available. In this case, the array is left in the
2185 state it was in before the call.
2187 {return(CArrayPakBase::InsertIsqAllowDuplicatesL(&aRef,aLength,aKey));}
2193 inline const TArray<T> CArrayPak<T>::Array() const
2195 Constructs and returns a TArray<T> object.
2197 @return A Tarray<T> object for this array.
2199 {return(TArray<T>(CountR,AtR,this));}
2204 inline CArrayPak<TAny>::CArrayPak(TBufRep aRep,TInt aGranularity)
2205 : CArrayPakBase(aRep,aGranularity)
2207 Constructs a variable array with the specified granularity and
2208 buffer organisation.
2210 Note that no memory is allocated to the array buffer by this constructor.
2212 @param aRep A pointer to a function used to expand the array buffer.
2213 The organisation of the array buffer is implied by the
2214 choice of this function.
2215 For a flat array buffer, pass (TBufRep)CBufFlat::NewL.
2216 For a segmented array buffer, pass (TBufRep)CBufSeg::NewL.
2217 @param aGranularity The granularity of the array.
2219 @panic E32USER-CBase 19, if aGranularity is not positive.
2226 inline const TAny *CArrayPak<TAny>::At(TInt anIndex) const
2228 Gets a pointer to the untyped element located at the specified position
2231 The compiler uses this variant of the function if the returned reference is
2232 used in an expression where that reference cannot be modified.
2234 @param anIndex The position of the element within the array, relative to zero;
2235 i.e. zero implies the first element.
2237 @return A pointer to the const element located at position anIndex within
2240 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to
2241 the number of objects currently within the array.
2243 {return(CArrayPakBase::At(anIndex));}
2248 inline TAny *CArrayPak<TAny>::At(TInt anIndex)
2250 Gets a pointer to the untyped element located at the specified position
2253 The compiler uses this variant of the function if the returned reference is
2254 used in an expression where that reference can be modified.
2256 @param anIndex The position of the element within the array, relative to zero;
2257 i.e. zero implies the first element.
2259 @return A pointer to the non-const element located at position anIndex within
2262 @panic E32USER-CBase 21, if anIndex is negative or greater than or equal to
2263 the number of objects currently within the array.
2265 {return(CArrayPakBase::At(anIndex));}
2270 inline void CArrayPak<TAny>::AppendL(const TAny *aPtr,TInt aLength)
2272 Appends the untyped element of the specified length onto the end of the array.
2274 @param aPtr A pointer to an untyped element to be appended.
2275 @param aLength The length of the untyped element.
2277 @leave KErrNoMemory The function attempted to expand the array buffer and there
2278 is insufficient memory available. In this case, the array is left in the
2279 state it was in before the call.
2281 {CArrayPakBase::InsertL(Count(),aPtr,aLength);}
2286 inline TAny *CArrayPak<TAny>::ExtendL(TInt aLength)
2288 Expands the array by one element of the specified length at the end of
2289 the array, and returns a pointer to this new location.
2291 As elements are untyped, no construction is possible and the content of
2292 the new location remains undefined.
2294 @param aLength The length of the new element.
2296 @return A pointer to the new element location at the end of the array.
2298 @leave KErrNoMemory The function attempted to expand the array buffer and there
2299 is insufficient memory available. In this case, the array is left in the
2300 state it was in before the call.
2302 {return(CArrayPakBase::ExpandL(Count(),aLength));}
2307 // Template class CArrayPakFlat
2309 inline CArrayPakFlat<T>::CArrayPakFlat(TInt aGranularity)
2310 : CArrayPak<T>((TBufRep)CBufFlat::NewL,aGranularity)
2312 Constructs a packed flat array with specified granularity.
2314 Note that no memory is allocated to the array buffer by this constructor.
2316 @param aGranularity The granularity of the array.
2318 @panic E32USER-CBase 20, if aGranularity is not positive.
2326 inline TInt CObject::UniqueID() const
2328 Gets this reference counting object's unique ID.
2330 The unique ID is an integer which is a property of the object container. It
2331 forms part of the identity of all reference counting objects and is the same
2332 value for all reference counting objects held within the same object container.
2334 @return This reference counting object's unique ID.
2338 {return(iContainer->UniqueID());}
2343 inline TInt CObject::AccessCount() const
2345 Gets the number of open references to this reference counting object.
2347 @return The number of open references.
2349 {return(iAccessCount);}
2354 inline void CObject::Inc()
2356 Adds one to the reference count.
2358 This function is called by the default implementation of the Open() member
2359 function of this class.
2368 inline void CObject::Dec()
2370 Subtracts one from the reference count.
2372 This function is called by the default implementation of the Close() member
2373 function of this class.
2382 inline CObject * CObject::Owner() const
2384 Gets a pointer to the reference counting object which owns this
2385 reference counting object.
2387 @return A pointer to the owning reference counting object. This is NULL, if
2395 inline void CObject::SetOwner(CObject *anOwner)
2397 Sets the owner of this reference counting object.
2399 If this reference counting object already has an owner, then all knowledge
2400 of that owner is lost.
2402 @param anOwner A pointer to the reference counting object which is to be the
2403 new owner of this reference counting object.
2411 inline TInt CObjectIx::Count() const
2413 Gets the number greater then the last slot number used to hold valid CObject pointer.
2414 The input argument of CObject* CObjectIx::operator[]() must be less then the number returned by this method.
2416 @return The number greater then the last used slot.
2418 @see CObjectIx::ActiveCount
2419 @see CObjectIx::operator[]
2421 {return iHighWaterMark;}
2426 inline TInt CObjectIx::ActiveCount() const
2428 Gets the current number of reference counting objects held by this
2431 @return The current number.
2433 {return iNumEntries;}
2438 inline TInt CObjectCon::UniqueID() const
2440 Gets this object container's unique ID.
2442 @return The unique ID value.
2449 inline TInt CObjectCon::Count() const
2451 Gets the number of reference counting objects in this object container.
2453 @return The number of objects.
2461 // class CCirBufBase
2462 inline TInt CCirBufBase::Count() const
2464 Gets the current number of objects in this circular buffer.
2466 @return The number of objects in this circular buffer.
2467 This value can never be greater than the maximum capacity.
2474 inline TInt CCirBufBase::Length() const
2476 Gets the maximum capacity of this circular buffer.
2478 The capacity is the maximum number of elements that the buffer can hold.
2480 Use SetLengthL() to change the capacity of the circular buffer.
2482 @return The maximum capacity of this circular buffer.
2484 @see CCirBufBase::SetLengthL
2491 // Template class CCirBuf
2493 inline CCirBuf<T>::CCirBuf()
2494 : CCirBufBase(sizeof(T))
2496 Default C++ constructor.
2498 The size of each object in the buffer is fixed and is the length of the class
2499 passed as the template parameter.
2501 @panic E32USER-CBase 72, if the length of the template class is zero.
2509 inline TInt CCirBuf<T>::Add(const T *aPtr)
2511 Adds a single object to the circular buffer.
2513 The object is of type class T and is only added if there is space available.
2515 @param aPtr A pointer to the object of type class T to be added to the circular
2518 @return 1 if the object is successfully added. 0 if the object cannot be added
2519 because the circular buffer is full.
2521 @panic E32USER-CBase 74, if a call to CCirBufBase::SetLengthL() has not been
2522 made before calling this function.
2524 @see CCirBufBase::SetLengthL
2526 {return(DoAdd((const TUint8 *)aPtr));}
2532 inline TInt CCirBuf<T>::Add(const T *aPtr,TInt aCount)
2534 Adds multiple objects to the circular buffer.
2536 The function attempts to add aCount objects of type class T. The objects are
2537 only added if there is space available.
2539 @param aPtr A pointer to a set of contiguous objects of type class T to be
2540 added to the circular buffer.
2542 @param aCount The number of objects to be added to the circular buffer.
2544 @return The number of objects successfully added to the buffer. This value
2545 may be less than the number requested and can range from 0 to aCount.
2547 @panic E32USER-CBase 74, if a call to CCirBufBase::SetLengthL() has not been
2548 made before calling this function.
2549 @panic E32USER-CBase 75, if aCount is not a positive value.
2551 @see CCirBufBase::SetLengthL
2553 {return(DoAdd((const TUint8 *)aPtr,aCount));}
2559 inline TInt CCirBuf<T>::Remove(T *aPtr)
2561 Removes a single object from the circular buffer.
2563 An object can only be removed if there are objects in the buffer.
2565 A binary copy of the object is made to aPtr.
2567 @param aPtr A pointer to an object of type class T supplied by the caller.
2569 @return 1 if an object is successfully removed. 0 if an object cannot be removed
2570 because the circular buffer is empty.
2572 {return(DoRemove((TUint8 *)aPtr));}
2578 inline TInt CCirBuf<T>::Remove(T *aPtr,TInt aCount)
2580 Removes multiple objects from the circular buffer.
2582 The function attempts to remove aCount objects of type class T.
2583 Objects can only be removed if there are objects in the buffer
2585 A binary copy of the objects is made to aPtr.
2587 @param aPtr A pointer to contiguous memory able to hold aCount class T objects,
2588 supplied by the caller.
2590 @param aCount The number of objects to be removed from the circular buffer.
2592 @return The number of objects successfully removed from the buffer. This value
2593 may be less than the number requested, and can range from 0 to aCount.
2595 @panic E32USER-CBase 76, if aCount is not a positive value.
2597 {return(DoRemove((TUint8 *)aPtr,aCount));}
2603 inline TBool CActive::IsActive() const
2605 Determines whether the active object has a request outstanding.
2607 A request is outstanding when:
2609 1. it has been issued
2611 2. it has not been cancelled
2613 3. it servicing has not yet begun.
2615 @return True, if a request is outstanding; false, otherwise.
2617 {return(iStatus.iFlags&TRequestStatus::EActive);}
2622 inline TBool CActive::IsAdded() const
2624 Determines whether the active object has been added to the active scheduler's
2625 list of active objects.
2627 If the active object has not been added to a scheduler, it cannot handle the
2628 completion of any request. No request should be issued until the active object
2629 has been added to a scheduler because completion of that request generates
2630 what appears to be a stray signal.
2632 Use the active object function Deque() to remove the active object from the
2635 @return True, if the active object has been added to an active scheduler;
2640 {return(iLink.iNext!=NULL);}
2645 inline TInt CActive::Priority() const
2647 Gets the priority of the active object.
2649 @return The active object's priority value.
2651 {return iLink.iPriority;}
2656 // class CDeltaTimer
2657 inline TDeltaTimerEntry::TDeltaTimerEntry(const TCallBack& aCallback)
2659 Constructor specifying a general callback.
2661 @param aCallback The callback to be called when this timed event entry expires.
2663 {iCallBack=aCallback;}
2668 inline TDeltaTimerEntry::TDeltaTimerEntry()
2670 Default constructor.
2677 inline void TDeltaTimerEntry::Set(TCallBack& aCallback)
2679 Sets the specified callback.
2681 @param aCallback The callback to be called when this timed event entry expires.
2683 {iCallBack=aCallback;}
2689 Gets a reference to the server's current message.
2691 @return The current message that contains the client request details.
2693 inline const RMessage2 &CServer2::Message() const
2700 Gets the server active object that handles messages for this session.
2702 This is the instance of the CServer2 derived class that created
2703 this session object.
2705 @return The server active object.
2707 inline const CServer2 *CSession2::Server() const
2713 // Class CAsyncOneShot
2714 inline RThread& CAsyncOneShot::Thread()
2716 Gets a handle to the current thread.
2718 @return The handle to the current thread.
2725 // Class CActiveScheduler
2726 inline TInt CActiveScheduler::Level() const
2728 @deprecated Use the StackDepth() function instead.
2730 Gets the scheduler's level of nestedness.
2732 @return The level of nestedness.
2736 {return StackDepth();}
2741 // Class CActiveSchedulerWait
2742 inline TBool CActiveSchedulerWait::IsStarted() const
2744 Reports whether this CActiveSchedulerWait object is currently started.
2746 Note: a CActiveSchedulerWait object itself becomes "stopped" as
2747 soon as AsyncStop() is called, and can be started again immediately if
2748 required (but this would start a new nested level of the scheduler).
2750 @return True if the scheduling loop is active; false, otherwise.
2752 @see CActiveSchedulerWait::Start
2753 @see CActiveSchedulerWait::AsyncStop
2755 {return iLoop != NULL;}
2760 // Class CleanupStack
2762 inline void CleanupStack::Pop(TAny* aExpectedItem)
2764 Pops an object from the top of the cleanup stack.
2766 The function has two modes of operation, depending on whether it is part of
2767 a debug build or a release build.
2769 1. In a debug build, the function checks that the specified item is at the top
2770 of the cleanup stack before attempting to pop it; an E32USER-CBase 90 panic
2771 is raised if the check fails.
2773 2 In a release build, the function just pops the object which is at the top
2774 of the cleanup stack; no checking is done.
2776 @param aExpectedItem A pointer to the item expected to be at the top of the
2777 cleanup stack. In a release build, this parameter
2780 { CleanupStack::Check(aExpectedItem); CleanupStack::Pop(); }
2785 inline void CleanupStack::Pop(TInt aCount, TAny* aLastExpectedItem)
2787 Pops the specified number of objects from the top of the cleanup stack.
2789 The function has two modes of operation, depending on whether it is part of
2790 a debug build or a release build.
2792 1. In a debug build, the function pops (aCount-1) items from the cleanup stack,
2793 and then checks that the specified item is the next one on the cleanup stack
2794 before attempting to pop it; an E32USER-CBase 90 panic is raised if the
2797 2. In a release build, the function just pops aCount items from the cleanup stack;
2798 no checking is done.
2800 @param aCount The number of items top be popped from
2802 @param aLastExpectedItem A pointer to the item expected to be at the top of
2803 the cleanup stack, after (aCount-1) items have been
2804 popped. In a release build, this parameter is
2809 CleanupStack::Pop(aCount);
2810 CleanupStack::Check(aLastExpectedItem);
2811 CleanupStack::Pop();
2817 inline void CleanupStack::PopAndDestroy(TAny* aExpectedItem)
2819 Pops an object from the top of the cleanup stack, and cleans it up.
2821 The function has two modes of operation, depending on whether it is part of
2822 a debug build or a release build.
2824 1. In a debug build, the function checks that the specified item is at the top
2825 of the cleanup stack before attempting to pop and clean it up;
2826 an E32USER-CBase 90 panic is raised if the check fails.
2828 2. In a release build, the function just pops and cleans up the object at
2829 the top of the cleanup stack; no checking is done.
2831 @param aExpectedItem A pointer to the item expected to be at the top of the
2832 cleanup stack. In a release build, this parameter is
2835 { CleanupStack::Check(aExpectedItem); CleanupStack::PopAndDestroy(); }
2840 inline void CleanupStack::PopAndDestroy(TInt aCount, TAny* aLastExpectedItem)
2842 Pops the specified number of objects from the top of the cleanup stack, and
2845 The function has two modes of operation, depending on whether it is part of
2846 a debug build or a release build.
2848 1. In a debug build, the function pops and cleans up (aCount-1) items from the
2849 cleanup stack, and then checks that the specified item is the next one on
2850 the cleanup stack before attempting to pop it and clean it up;
2851 an E32USER-CBase 90 panic is raised if the check fails.
2853 2. In a release build, the function just pops and cleans up aCount items from
2854 the cleanup stack; no checking is done.
2856 @param aCount The number of items top be popped from the
2857 cleanup stack, and cleaned up.
2858 @param aLastExpectedItem A pointer to the item expected to be at the top of
2859 the cleanup stack, after (aCount-1) items have been
2860 popped and cleaned up. In a release build, this
2861 parameter is not used.
2865 CleanupStack::PopAndDestroy(aCount);
2866 CleanupStack::Check(aLastExpectedItem);
2867 CleanupStack::PopAndDestroy();
2870 inline void CleanupStack::Pop(TAny*)
2872 Pops an object from the top of the cleanup stack.
2874 The function has two modes of operation, depending on whether it is part of
2875 a debug build or a release build.
2877 1. In a debug build, the function checks that the specified item is at the top
2878 of the cleanup stack before attempting to pop it; an E32USER-CBase 90 panic
2879 is raised if the check fails.
2881 2 In a release build, the function just pops the object which is at the top
2882 of the cleanup stack; no checking is done.
2884 @param aExpectedItem A pointer to the item expected to be at the top of the
2885 cleanup stack. In a release build, this parameter
2888 { CleanupStack::Pop(); }
2893 inline void CleanupStack::Pop(TInt aCount, TAny*)
2895 Pops the specified number of objects from the top of the cleanup stack.
2897 The function has two modes of operation, depending on whether it is part of
2898 a debug build or a release build.
2900 1. In a debug build, the function pops (aCount-1) items from the cleanup stack,
2901 and then checks that the specified item is the next one on the cleanup stack
2902 before attempting to pop it; an E32USER-CBase 90 panic is raised if the
2905 2. In a release build, the function just pops aCount items from the cleanup stack;
2906 no checking is done.
2908 @param aCount The number of items top be popped from
2910 @param aLastExpectedItem A pointer to the item expected to be at the top of
2911 the cleanup stack, after (aCount-1) items have been
2912 popped. In a release build, this parameter is
2915 { CleanupStack::Pop(aCount); }
2920 inline void CleanupStack::PopAndDestroy(TAny*)
2922 Pops an object from the top of the cleanup stack, and cleans it up.
2924 The function has two modes of operation, depending on whether it is part of
2925 a debug build or a release build.
2927 1. In a debug build, the function checks that the specified item is at the top
2928 of the cleanup stack before attempting to pop and clean it up;
2929 an E32USER-CBase 90 panic is raised if the check fails.
2931 2. In a release build, the function just pops and cleans up the object at
2932 the top of the cleanup stack; no checking is done.
2934 @param aExpectedItem A pointer to the item expected to be at the top of the
2935 cleanup stack. In a release build, this parameter is
2938 { CleanupStack::PopAndDestroy(); }
2943 inline void CleanupStack::PopAndDestroy(TInt aCount, TAny*)
2945 Pops the specified number of objects from the top of the cleanup stack, and
2948 The function has two modes of operation, depending on whether it is part of
2949 a debug build or a release build.
2951 1. In a debug build, the function pops and cleans up (aCount-1) items from the
2952 cleanup stack, and then checks that the specified item is the next one on
2953 the cleanup stack before attempting to pop it and clean it up;
2954 an E32USER-CBase 90 panic is raised if the check fails.
2956 2. In a release build, the function just pops and cleans up aCount items from
2957 the cleanup stack; no checking is done.
2959 @param aCount The number of items top be popped from the
2960 cleanup stack, and cleaned up.
2961 @param aLastExpectedItem A pointer to the item expected to be at the top of
2962 the cleanup stack, after (aCount-1) items have been
2963 popped and cleaned up. In a release build, this
2964 parameter is not used.
2966 { CleanupStack::PopAndDestroy(aCount); }
2972 // Class TCleanupItem
2973 inline TCleanupItem::TCleanupItem(TCleanupOperation anOperation)
2974 : iOperation(anOperation)
2976 Constructs the object with a cleanup operation.
2978 @param anOperation A cleanup operation which will be invoked by the pop and
2979 destroy action resulting from a subsequent call to
2980 CleanupStack::PopAndDestroy().
2987 inline TCleanupItem::TCleanupItem(TCleanupOperation anOperation,TAny *aPtr)
2988 : iOperation(anOperation), iPtr(aPtr)
2990 Constructs the object with a cleanup operation and a pointer to the object
2993 @param anOperation A cleanup operation which will be invoked by the pop
2994 and destroy action resulting from a subsequent call to
2995 CleanupStack::PopAndDestroy().
2997 @param aPtr A pointer to an object which is the target of the
3005 // Class TCleanupTrapHandler
3006 inline CCleanup &TCleanupTrapHandler::Cleanup()
3007 {return(*iCleanup);}
3011 inline TAutoClose<T>::~TAutoClose()
3015 The implementation calls Close() on iObj, the instance of the template class.
3017 #ifdef __LEAVE_EQUALS_THROW__
3018 {if (!std::uncaught_exception()) iObj.Close();}
3027 inline void TAutoClose<T>::PushL()
3029 Pushes a cleanup item onto the cleanup stack, so that Close() is called on the
3030 templated class object, iObj, if a leave occurs.
3032 {CleanupStack::PushL(TCleanupItem(Close, (TAny *)&iObj));}
3038 inline void TAutoClose<T>::Pop()
3040 Pops a single cleanup item from the cleanup stack.
3042 {CleanupStack::Pop();}
3048 void TAutoClose<T>::Close(TAny *aObj)
3049 {((T *)aObj)->Close();}
3054 // Template class CleanupDelete
3056 inline void CleanupDelete<T>::PushL(T* aPtr)
3058 Creates a TCleanupItem for the specified object.
3060 The cleanup operation is the private static function Delete() of this class, which
3061 deletes the specified object.
3063 @param aPtr The object for which a TCleanupItem is to be constructed.
3065 {CleanupStack::PushL(TCleanupItem(&Delete,aPtr));}
3071 void CleanupDelete<T>::Delete(TAny *aPtr)
3073 The cleanup operation to be performed.
3075 @param aPtr A pointer to the object for which clean up is to be performed.
3076 The implementation deletes this object.
3078 {delete STATIC_CAST(T*,aPtr);}
3083 // See header file e32base.h for in-source comment.
3085 inline void CleanupDeletePushL(T* aPtr)
3086 {CleanupDelete<T>::PushL(aPtr);}
3091 // Template class CleanupArrayDelete
3093 inline void CleanupArrayDelete<T>::PushL(T* aPtr)
3095 Creates a TCleanupItem for the specified array.
3097 The cleanup operation is the private static function ArrayDelete() of
3098 this class, which deletes the specified array.
3100 @param aPtr The array of class T type objects for which a TCleanupItem is
3103 {CleanupStack::PushL(TCleanupItem(&ArrayDelete,aPtr));}
3109 void CleanupArrayDelete<T>::ArrayDelete(TAny *aPtr)
3111 The cleanup operation to be performed.
3113 @param aPtr A pointer to the array for which clean up is to be performed.
3114 The implementation deletes this array.
3116 {delete [] STATIC_CAST(T*,aPtr);}
3121 // See header file e32base.h for in-source comment.
3123 inline void CleanupArrayDeletePushL(T* aPtr)
3124 {CleanupArrayDelete<T>::PushL(aPtr);}
3129 // Template class CleanupClose
3131 inline void CleanupClose<T>::PushL(T& aRef)
3133 Creates a TCleanupItem for the specified object.
3135 The cleanup operation is the private static function Close() of this class.
3137 @param aRef The object for which a TCleanupItem is to be constructed.
3139 {CleanupStack::PushL(TCleanupItem(&Close,&aRef));}
3145 void CleanupClose<T>::Close(TAny *aPtr)
3147 The cleanup operation to be performed.
3149 @param aPtr A pointer to the object for which clean up is to be performed.
3150 The implementation calls Close() on this object.
3152 {(STATIC_CAST(T*,aPtr))->Close();}
3157 // See header file e32base.h for in-source comment.
3159 inline void CleanupClosePushL(T& aRef)
3160 {CleanupClose<T>::PushL(aRef);}
3165 // Template class CleanupRelease
3167 inline void CleanupRelease<T>::PushL(T& aRef)
3169 Creates a TCleanupItem for the specified object.
3171 The cleanup operation is the private static function Release() of this class.
3173 @param aRef The object for which a TCleanupItem is to be constructed.
3175 {CleanupStack::PushL(TCleanupItem(&Release,&aRef));}
3181 void CleanupRelease<T>::Release(TAny *aPtr)
3183 The cleanup operation to be performed.
3185 @param aPtr A pointer to the object for which clean up is to be performed.
3186 The implementation calls Release() on this object.
3188 {(STATIC_CAST(T*,aPtr))->Release();}
3193 // See header file e32base.h for in-source comment.
3195 inline void CleanupReleasePushL(T& aRef)
3196 {CleanupRelease<T>::PushL(aRef);}