1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/src/BADESCA.CPP Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,796 @@
1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Written by DavidW, October 1996
1.18 +// Descriptor arrays
1.19 +//
1.20 +//
1.21 +
1.22 +#include <badesca.h>
1.23 +
1.24 +
1.25 +// Class to provide an interface for Sort function - two variants
1.26 +// for 8 and 16-bit descriptors. (should this be templated? -PNJ)
1.27 +
1.28 +
1.29 +NONSHARABLE_CLASS(TKeyDesC8Array) : public TKeyArrayFix
1.30 + {
1.31 +public:
1.32 + TKeyDesC8Array(TKeyCmpText aType);
1.33 +private: // from TKey
1.34 + TInt Compare(TInt aLeft,TInt aRight) const;
1.35 + };
1.36 +
1.37 +TKeyDesC8Array::TKeyDesC8Array(TKeyCmpText aType)
1.38 + : TKeyArrayFix(0,aType,0)
1.39 + {
1.40 + }
1.41 +
1.42 +TInt TKeyDesC8Array::Compare(TInt aLeft,TInt aRight) const
1.43 + {
1.44 + TDesC8* left=(*(TDesC8**)At(aLeft));
1.45 + TDesC8* right=(*(TDesC8**)At(aRight));
1.46 + switch (iCmpType)
1.47 + {
1.48 + case ECmpFolded:
1.49 + return(left->CompareF(*right));
1.50 + case ECmpCollated:
1.51 + return(left->CompareC(*right));
1.52 + default:
1.53 + break;
1.54 + }
1.55 + return(left->Compare(*right));
1.56 + }
1.57 +
1.58 +
1.59 +NONSHARABLE_CLASS(TKeyDesC16Array) : public TKeyArrayFix
1.60 + {
1.61 +public:
1.62 + TKeyDesC16Array(TKeyCmpText aType);
1.63 +private: // from TKey
1.64 + TInt Compare(TInt aLeft,TInt aRight) const;
1.65 + };
1.66 +
1.67 +TKeyDesC16Array::TKeyDesC16Array(TKeyCmpText aType)
1.68 + : TKeyArrayFix(0,aType,0)
1.69 + {
1.70 + }
1.71 +
1.72 +TInt TKeyDesC16Array::Compare(TInt aLeft,TInt aRight) const
1.73 + {
1.74 + TDesC16* left=(*(TDesC16**)At(aLeft));
1.75 + TDesC16* right=(*(TDesC16**)At(aRight));
1.76 + switch (iCmpType)
1.77 + {
1.78 + case ECmpFolded:
1.79 + return(left->CompareF(*right));
1.80 + case ECmpCollated:
1.81 + return(left->CompareC(*right));
1.82 + default:
1.83 + break;
1.84 + }
1.85 + return(left->Compare(*right));
1.86 + }
1.87 +
1.88 +
1.89 +
1.90 +// CDesCxArray implementation...
1.91 +
1.92 +
1.93 +EXPORT_C CDesC8Array::CDesC8Array(TBufRep aRep,TInt aGranularity)
1.94 + : CArrayFixBase(aRep,sizeof(HBufC8*),aGranularity)
1.95 + {
1.96 + }
1.97 +
1.98 +EXPORT_C CDesC8Array::~CDesC8Array()
1.99 +/** Frees all resources owned by the object, prior to its destruction. In particular,
1.100 +it deletes all descriptors from the array and frees the memory allocated to
1.101 +the array buffer. */
1.102 + {
1.103 + Reset();
1.104 + }
1.105 +
1.106 +EXPORT_C void CDesC8Array::Reset()
1.107 +/** Deletes all descriptors from the array and frees the memory allocated to the
1.108 +array buffer.
1.109 +
1.110 +@see CDesC8Array::Delete() */
1.111 + {
1.112 + Delete(0,Count());
1.113 + }
1.114 +
1.115 +EXPORT_C void CDesC8Array::Delete(TInt aIndex)
1.116 + {
1.117 + Delete(aIndex,1);
1.118 + }
1.119 +
1.120 +/**
1.121 + *
1.122 + * Deletes one or more logically contiguous descriptor elements from the
1.123 + * array.
1.124 + *
1.125 + * The deletion starts at the specified position.Deleting descriptor
1.126 + * elements from the array frees the memory occupied by the associated
1.127 + * heap descriptors and removes their pointers from the array buffer but
1.128 + * does not cause the array buffer to be automatically compressed. Call
1.129 + * the Compress() function to return excess space in the array buffer to
1.130 + * the heap.
1.131 + *
1.132 + * @param " TInt aPos "
1.133 + * The starting position in the array from which
1.134 + * descriptor elements are to be deleted. The position is
1.135 + * relative to zero, i.e. zero implies the first
1.136 + * descriptor element. This value must not be negative
1.137 + * and must not be greater than the number of descriptor
1.138 + * elements currently in the array, otherwise the
1.139 + * functions raise an E32USER-CBase 21 panic.
1.140 + * @param " TInt aCount "
1.141 + * If specified, the number of contiguous descriptor
1.142 + * elements to be deleted from the array. This value must
1.143 + * not be negative otherwise the function raises an
1.144 + * E32USER-CBase 22 panic. This value plus the value of
1.145 + * the starting position must not be greater than the
1.146 + * number of descriptor elements in the array, otherwise
1.147 + * the function raises an E32USER-CBase 29 panic. This
1.148 + * value must not be negative otherwise the function
1.149 + * raises an E32USER-CBase 22 panic. This value plus the
1.150 + * value of the starting position must not be greater
1.151 + * than the number of descriptor elements in the array,
1.152 + * otherwise the function raises an E32USER-CBase 29
1.153 + * panic. If not specified, one element is assumed.
1.154 + */
1.155 +EXPORT_C void CDesC8Array::Delete(TInt aIndex,TInt aCount)
1.156 + {
1.157 + TInt count=aCount;
1.158 + for (TInt ii=aIndex; count--; ii++)
1.159 + User::Free(*(HBufC8**)At(ii));
1.160 + CArrayFixBase::Delete(aIndex,aCount);
1.161 + }
1.162 +
1.163 +EXPORT_C TInt CDesC8Array::MdcaCount() const
1.164 +/** Returns the number of descriptor elements in the array. The function implements
1.165 +the interface MDesC8Array::MdcaCount().
1.166 +
1.167 +@return The number of descriptor elements. */
1.168 + {
1.169 + return Count();
1.170 + }
1.171 +
1.172 +EXPORT_C TPtrC8 CDesC8Array::MdcaPoint(TInt anIndex) const
1.173 +/** Indexes into a descriptor array. The function implements the interface
1.174 +MDesC8Array::MdcaPoint().
1.175 +
1.176 +@param aIndex The position of the descriptor element within the array. The
1.177 +position is relative to zero; i.e. zero implies the first descriptor element
1.178 +in the array. This value must be non-negative and less than the number of
1.179 +descriptors currently within the array otherwise the operator panics with
1.180 +EArrayIndexOutOfRange.
1.181 +@return A non-modifiable pointer descriptor representing the descriptor element
1.182 +located at position aIndex within the array. */
1.183 + {
1.184 + HBufC8* temp=(*(HBufC8**)At(anIndex));
1.185 + return (TPtrC8)(*temp);
1.186 + }
1.187 +
1.188 +EXPORT_C void CDesC8Array::AppendL(const TDesC8& aPtr)
1.189 +/** Appends a descriptor onto the end of any existing descriptor elements in the
1.190 +array.
1.191 +
1.192 +@param aPtr A reference to the descriptor to be appended to the array.
1.193 +@leave KErrNoMemory There is insufficient memory available. If the function
1.194 +leaves, the array is left in the state it was in before the call. */
1.195 + {
1.196 + InsertL(Count(),aPtr);
1.197 + }
1.198 +
1.199 +EXPORT_C void CDesC8Array::InsertL(TInt aPos,const TDesC8& aPtr)
1.200 +/** Inserts a descriptor into the array at the specified position.
1.201 +
1.202 +If the specified position is the same as the current number of descriptor
1.203 +elements in the array, this has the effect of appending the element.
1.204 +
1.205 +@param aPos The position within the array where the descriptor element is
1.206 +to be inserted. The position is relative to zero, i.e. zero implies the first
1.207 +descriptor element. This value must not be negative and must not be greater
1.208 +than the number of descriptor elements currently in the array, otherwise the
1.209 +function rasises an E32USER-CBase 21 panic.
1.210 +@param aPtr The descriptor to be inserted into the array.
1.211 +@leave KErrNoMemory There is insufficient memory available. If the function
1.212 +leaves, the array is left in the state it was in before the call. */
1.213 + {
1.214 + HBufC8* bufPtr=aPtr.AllocLC();
1.215 + CArrayFixBase::InsertL(aPos,&bufPtr);
1.216 + CleanupStack::Pop();
1.217 + }
1.218 +
1.219 +EXPORT_C TInt CDesC8Array::InsertIsqL(const TDesC8& aPtr,TKeyCmpText aTextComparisonType)
1.220 +/** Inserts a descriptor into the array at a position which maintains the
1.221 +sequence of the descriptors.
1.222 +
1.223 +The sequence is determined by comparing descriptors using one of the TDesC
1.224 +comparison functions. The enumeration aTextComparisonType governs how the
1.225 +descriptors are to be compared.
1.226 +
1.227 +The array should already be in sequence, otherwise the position of the new
1.228 +descriptor element is unpredictable. Descriptor elements which are the same
1.229 +are not permitted.
1.230 +
1.231 +@param aPtr A reference to the descriptor to be inserted into the array.
1.232 +@param aTextComparisonType An enumeration which determines the type of
1.233 +comparison to be made between descriptors for the purpose of choosing the
1.234 +insertion position. If no parameter is explicitly passed, ECmpFolded is used
1.235 +by default.
1.236 +@leave KErrAlreadyExists A descriptor with the same data (i.e. the same length
1.237 +and the same content) already exists within the array.
1.238 +@leave KErrNoMemory There is insufficient memory available. If the function
1.239 +leaves, the array is left in the state it was in before the call.
1.240 +@return The position within the array of the inserted descriptor. */
1.241 + {
1.242 + HBufC8* bufPtr=aPtr.AllocLC();
1.243 + TKeyDesC8Array key(aTextComparisonType);
1.244 + TInt found=CArrayFixBase::InsertIsqL(&bufPtr,key);
1.245 + CleanupStack::Pop();
1.246 + return(found);
1.247 + }
1.248 +
1.249 +EXPORT_C TInt CDesC8Array::InsertIsqAllowDuplicatesL(const TDesC8& aPtr,TKeyCmpText aTextComparisonType)
1.250 +/** Inserts a descriptor into the array at a position which maintains the
1.251 +sequence of the descriptors - allows duplicates.
1.252 +
1.253 +The sequence is determined by comparing descriptors using one of the TDesC
1.254 +comparison functions. The enumeration aTextComparisonType governs how the
1.255 +descriptors are to be compared.
1.256 +
1.257 +The array should already be in sequence, otherwise the position of the new
1.258 +descriptor element is unpredictable. Descriptor elements which are the same
1.259 +are permitted; if the descriptor aPtr is a duplicate of an existing descriptor
1.260 +within the array, then the new descriptor element is positioned after the
1.261 +existing descriptor element.
1.262 +
1.263 +@param aPtr A reference to the descriptor to be inserted into the array.
1.264 +@param aTextComparisonType An enumeration which determines the type of comparison
1.265 +to be made between descriptors for the purpose of choosing the insertion position.
1.266 +If no parameter is explicitly passed, ECmpFolded is used by default.
1.267 +@leave KErrNoMemory There is insufficient memory available. If the function
1.268 +leaves, the array is left in the state it was in before the call.
1.269 +@return The position within the array of the inserted descriptor. */
1.270 + {
1.271 + HBufC8* bufPtr=aPtr.AllocLC();
1.272 + TKeyDesC8Array key(aTextComparisonType);
1.273 + TInt found=CArrayFixBase::InsertIsqAllowDuplicatesL(&bufPtr,key);
1.274 + CleanupStack::Pop();
1.275 + return(found);
1.276 + }
1.277 +
1.278 +EXPORT_C void CDesC8Array::Sort(TKeyCmpText aTextComparisonType)
1.279 +/** Sorts the descriptor elements into sequence.
1.280 +
1.281 +The sequence is determined by comparing descriptors using one of the member
1.282 +functions of the descriptor base class TDesC.
1.283 +
1.284 +@param aTextComparisonType An enumeration which defines the type of comparison
1.285 +to be made between descriptors. By default the comparison type is ECmpFolded. */
1.286 + {
1.287 + TKeyDesC8Array key(aTextComparisonType);
1.288 + CArrayFixBase::Sort(key);
1.289 + }
1.290 +
1.291 +EXPORT_C TInt CDesC8Array::Find(const TDesC8& aPtr,TInt& aPos,TKeyCmpText aTextComparisonType) const
1.292 +/** Finds the position of a descriptor element within the array which matches the
1.293 +specified descriptor using a sequential search.
1.294 +
1.295 +The array is searched sequentially for a matching descriptor element, starting
1.296 +with the first descriptor element in the array. Descriptors are compared using
1.297 +one of the TDesC comparison functions. The enumeration aTextComparisonType
1.298 +governs how the descriptors are to be compared.
1.299 +
1.300 +Where an array has duplicate descriptor elements, the function only supplies
1.301 +the position of the first descriptor element.
1.302 +
1.303 +@param aPtr A reference to a descriptor to be used for comparison.
1.304 +@param aPos If the descriptor element is found, this reference is set to the
1.305 +position of that descriptor element within the array. The position is relative
1.306 +to zero, (i.e. the first descriptor element in the array is at position 0).
1.307 +If the descriptor element is not found and the array is not empty, then the
1.308 +value of the reference is set to the number of descriptor elements in the
1.309 +array. If the descriptor element is not found and the array is empty, then
1.310 +the reference is set to zero.
1.311 +@param aTextComparisonType An enumeration which determines the type of comparison
1.312 +to be made between descriptors. If no parameter is explicitly passed, ECmpFolded
1.313 +is used by default.
1.314 +@return Zero, if a matching descriptor element is found. Non-zero, if no matching
1.315 +descriptor element can be found. */
1.316 + {
1.317 + TKeyDesC8Array key(aTextComparisonType);
1.318 + const TDesC8* tmp=(&aPtr);
1.319 + return(CArrayFixBase::Find(&tmp,key,aPos));
1.320 + }
1.321 +
1.322 +EXPORT_C TInt CDesC8Array::FindIsq(const TDesC8& aPtr,TInt& aPos,TKeyCmpText aTextComparisonType) const
1.323 +/** Finds the position of a descriptor element within the array which matches
1.324 +the specified descriptor using a binary search technique. The array must
1.325 +be in sequence, otherwise the outcome is unpredictable.
1.326 +
1.327 +Descriptors are compared using one of the TDesC comparison functions. The
1.328 +enumeration aTextComparisonType governs how the descriptors are to be compared.
1.329 +
1.330 +Where an array has duplicate descriptor elements, the function cannot guarantee
1.331 +which matching descriptor element it will return; except that it will find
1.332 +one of them.
1.333 +
1.334 +@param aPtr A reference to a descriptor to be used for comparison.
1.335 +@param aPos If the descriptor element is found, the reference is set to the
1.336 +position of that descriptor element within the array. The position is relative
1.337 +to zero, (i.e. the first descriptor element in the array is at position 0).
1.338 +If the descriptor element is not found and the array is not empty, then the
1.339 +reference is set to the position of the first descriptor element in the array
1.340 +whose content is greater than the content of aPtr. If the descriptor element
1.341 +is not found and the array is empty, then the reference is set to zero.
1.342 +@param aTextComparisonType An enumeration which determines the type of comparison
1.343 +to be made between descriptors. If no parameter is explicitly passed, ECmpFolded
1.344 +is used by default.
1.345 +@return Zero, if a matching descriptor element is found. Non-zero, if no matching
1.346 +descriptor element can be found. */
1.347 + {
1.348 + TKeyDesC8Array key(aTextComparisonType);
1.349 + const TDesC8* tmp=(&aPtr);
1.350 + return(CArrayFixBase::FindIsq(&tmp,key,aPos));
1.351 + }
1.352 +
1.353 +
1.354 +/**
1.355 + *
1.356 + * Constructs a flat descriptor array with the specified granularity.
1.357 + *
1.358 + * No memory is allocated to the array buffer by this constructor.
1.359 + *
1.360 + * @param "TInt aGranularity"
1.361 + * The granularity of the array. This value must be
1.362 + * positive otherwise the constructor raises an
1.363 + * E32USER-CBase 18 panic.
1.364 + */
1.365 +EXPORT_C CDesC8ArrayFlat::CDesC8ArrayFlat(TInt aGranularity)
1.366 + : CDesC8Array((TBufRep)CBufFlat::NewL,aGranularity)
1.367 + {
1.368 + __DECLARE_NAME(_S("CDesC8ArrayFlat"));
1.369 + }
1.370 +
1.371 +EXPORT_C CDesC8ArrayFlat::~CDesC8ArrayFlat()
1.372 +/** Frees all resources owned by the object, prior to its destruction. */
1.373 + {}
1.374 +
1.375 +EXPORT_C CDesC8ArraySeg::CDesC8ArraySeg(TInt aGranularity)
1.376 + : CDesC8Array((TBufRep)CBufSeg::NewL,aGranularity)
1.377 +/** Constructs a segmented descriptor array with the specified granularity.
1.378 +
1.379 +No memory is allocated to the array buffer by this constructor.
1.380 +
1.381 +@param aGranularity The granularity of the array. This value must be positive
1.382 +otherwise the constructor raises an E32USER-CBase 18 panic. */
1.383 + {
1.384 + __DECLARE_NAME(_S("CDesC8ArraySeg"));
1.385 + }
1.386 +
1.387 +EXPORT_C CDesC8ArraySeg::~CDesC8ArraySeg()
1.388 +/** Frees all resources owned by the object, prior to its destruction. */
1.389 + {}
1.390 +
1.391 +
1.392 +// 16-bit equivalents to the above.
1.393 +
1.394 +
1.395 +EXPORT_C CDesC16Array::CDesC16Array(TBufRep aRep,TInt aGranularity)
1.396 + : CArrayFixBase(aRep,sizeof(HBufC16*),aGranularity)
1.397 + {
1.398 + }
1.399 +
1.400 +EXPORT_C CDesC16Array::~CDesC16Array()
1.401 +/** Frees all resources owned by the object, prior to its destruction. In particular,
1.402 +it deletes all descriptors from the array and frees the memory allocated to
1.403 +the array buffer. */
1.404 + {
1.405 + Reset();
1.406 + }
1.407 +
1.408 +EXPORT_C void CDesC16Array::Reset()
1.409 +/** Deletes all descriptors from the array and frees the memory allocated to the
1.410 +array buffer.
1.411 +
1.412 +@see CDesC16Array::Delete() */
1.413 + {
1.414 + Delete(0,Count());
1.415 + }
1.416 +
1.417 +EXPORT_C void CDesC16Array::Delete(TInt aIndex)
1.418 + {
1.419 + Delete(aIndex,1);
1.420 + }
1.421 +
1.422 +/**
1.423 + *
1.424 + * Deletes one or more logically contiguous descriptor elements from the
1.425 + * array.
1.426 + *
1.427 + * The deletion starts at the specified position.Deleting descriptor
1.428 + * elements from the array frees the memory occupied by the associated
1.429 + * heap descriptors and removes their pointers from the array buffer but
1.430 + * does not cause the array buffer to be automatically compressed. Call
1.431 + * the Compress() function to return excess space in the array buffer to
1.432 + * the heap.
1.433 + *
1.434 + * @param " TInt aPos "
1.435 + * The starting position in the array from which
1.436 + * descriptor elements are to be deleted. The position is
1.437 + * relative to zero, i.e. zero implies the first
1.438 + * descriptor element. This value must not be negative
1.439 + * and must not be greater than the number of descriptor
1.440 + * elements currently in the array, otherwise the
1.441 + * functions raise an E32USER-CBase 21 panic.
1.442 + * @param " TInt aCount "
1.443 + * If specified, the number of contiguous descriptor
1.444 + * elements to be deleted from the array. This value must
1.445 + * not be negative otherwise the function raises an
1.446 + * E32USER-CBase 22 panic. This value must not be
1.447 + * negative otherwise the function raises an
1.448 + * E32USER-CBase 22 panic. This value must not be
1.449 + * negative otherwise the function raises an
1.450 + * E32USER-CBase 22 panic. This value plus the value of
1.451 + * the starting position must not be greater than the
1.452 + * number of descriptor elements in the array, otherwise
1.453 + * the function raises an E32USER-CBase 29 panic. If not
1.454 + * specified, one element is assumed.
1.455 + */
1.456 +EXPORT_C void CDesC16Array::Delete(TInt aIndex,TInt aCount)
1.457 + {
1.458 + TInt count=aCount;
1.459 + for (TInt ii=aIndex; count--; ii++)
1.460 + User::Free(*(HBufC16**)At(ii));
1.461 + CArrayFixBase::Delete(aIndex,aCount);
1.462 + }
1.463 +
1.464 +EXPORT_C TInt CDesC16Array::MdcaCount() const
1.465 +/** Returns the number of descriptor elements in the array. The function implements
1.466 +the function interface MDesC16Array::MdcaCount().
1.467 +
1.468 +@return The number of descriptor elements. */
1.469 + {
1.470 + return Count();
1.471 + }
1.472 +
1.473 +EXPORT_C TPtrC16 CDesC16Array::MdcaPoint(TInt anIndex) const
1.474 +/** Indexes into a descriptor array. The function implements the interface MDesC16Array::MdcaPoint().
1.475 +
1.476 + @param aIndex The position of the descriptor element within the array. The
1.477 + position is relative to zero; i.e. zero implies the first descriptor element
1.478 + in the array. This value must be non-negative and less than the number of
1.479 + descriptors currently within the array otherwise the operator panics with
1.480 + EArrayIndexOutOfRange.
1.481 + @return A non-modifiable pointer descriptor representing the descriptor element
1.482 + located at position aIndex within the array. */
1.483 + {
1.484 + HBufC16* temp=(*(HBufC16**)At(anIndex));
1.485 + return (TPtrC16)(*temp);
1.486 + }
1.487 +
1.488 +EXPORT_C void CDesC16Array::AppendL(const TDesC16& aPtr)
1.489 +/** Appends a descriptor onto the end of any existing descriptor elements in the
1.490 +array.
1.491 +
1.492 +@param aPtr A reference to the descriptor to be appended to the array. */
1.493 + {
1.494 + InsertL(Count(),aPtr);
1.495 + }
1.496 +
1.497 +EXPORT_C void CDesC16Array::InsertL(TInt aPos,const TDesC16& aPtr)
1.498 +/** Inserts a descriptor into the array at the specified position.
1.499 +
1.500 +If the specified position is the same as the current number of descriptor
1.501 +elements in the array, this has the effect of appending the element.
1.502 +
1.503 +@param aPos The position within the array where the descriptor element is
1.504 +to be inserted. The position is relative to zero, i.e. zero implies the first
1.505 +descriptor element. This value must not be negative and must not be greater
1.506 +than the number of descriptor elements currently in the array, otherwise the
1.507 +function raises an E32USER-CBase 21 panic.
1.508 +@param aPtr The descriptor to be inserted into the array. */
1.509 + {
1.510 + HBufC16* bufPtr=aPtr.AllocLC();
1.511 + CArrayFixBase::InsertL(aPos,&bufPtr);
1.512 + CleanupStack::Pop();
1.513 + }
1.514 +
1.515 +EXPORT_C TInt CDesC16Array::InsertIsqL(const TDesC16& aPtr,TKeyCmpText aTextComparisonType)
1.516 +/** Inserts a descriptor into the array at a position which maintains the sequence
1.517 +of the descriptors.
1.518 +
1.519 +The sequence is determined by comparing descriptors using one of the TDesC
1.520 +comparison functions. The enumeration aTextComparisonType governs how the
1.521 +descriptors are to be compared.
1.522 +
1.523 +The array should already be in sequence, otherwise the position of the new
1.524 +descriptor element is unpredictable. Descriptor elements which are the same
1.525 +are not permitted.
1.526 +
1.527 +@param aPtr A reference to the descriptor to be inserted into the array.
1.528 +@param aTextComparisonType An enumeration which determines the type of comparison
1.529 +to be made between descriptors for the purpose of choosing the insertion position.
1.530 +If no parameter is explicitly passed, ECmpFolded is used by default.
1.531 +@return The position within the array of the inserted descriptor. */
1.532 + {
1.533 + HBufC16* bufPtr=aPtr.AllocLC();
1.534 + TKeyDesC16Array key(aTextComparisonType);
1.535 + TInt found=CArrayFixBase::InsertIsqL(&bufPtr,key);
1.536 + CleanupStack::Pop();
1.537 + return(found);
1.538 + }
1.539 +
1.540 +EXPORT_C TInt CDesC16Array::InsertIsqAllowDuplicatesL(const TDesC16& aPtr,TKeyCmpText aTextComparisonType)
1.541 +/** Inserts a descriptor into the array at a position which maintains the sequence
1.542 +of the descriptors; allows duplicates.
1.543 +
1.544 +The sequence is determined by comparing descriptors using one of the TDesC
1.545 +comparison functions. The enumeration aTextComparisonType governs how the
1.546 +descriptors are to be compared.
1.547 +
1.548 +The array should already be in sequence, otherwise the position of the new
1.549 +descriptor element is unpredictable. Descriptor elements which are the same
1.550 +are permitted; if the descriptor aPtr is a duplicate of an existing descriptor
1.551 +within the array, then the new descriptor element is positioned after the
1.552 +existing descriptor element.
1.553 +
1.554 +@param aPtr A reference to the descriptor to be inserted into the array.
1.555 +@param aTextComparisonType An enumeration which determines the type of comparison
1.556 +to be made between descriptors for the purpose of choosing the insertion position.
1.557 +If no parameter is explicitly passed, ECmpFolded is used by default.
1.558 +@return The position within the array of the inserted descriptor. */
1.559 + {
1.560 + HBufC16* bufPtr=aPtr.AllocLC();
1.561 + TKeyDesC16Array key(aTextComparisonType);
1.562 + TInt found=CArrayFixBase::InsertIsqAllowDuplicatesL(&bufPtr,key);
1.563 + CleanupStack::Pop();
1.564 + return(found);
1.565 + }
1.566 +
1.567 +EXPORT_C void CDesC16Array::Sort(TKeyCmpText aTextComparisonType)
1.568 +/** Sorts the descriptor elements into sequence.
1.569 +
1.570 +The sequence is determined by comparing descriptors using one of the member
1.571 +functions of the descriptor base class TDesC.
1.572 +
1.573 +@param aTextComparisonType An enumeration which defines the type of comparison
1.574 +to be made between descriptors. By default the comparison type is ECmpFolded. */
1.575 + {
1.576 + TKeyDesC16Array key(aTextComparisonType);
1.577 + CArrayFixBase::Sort(key);
1.578 + }
1.579 +
1.580 +EXPORT_C TInt CDesC16Array::Find(const TDesC16& aPtr,TInt& aPos,TKeyCmpText aTextComparisonType) const
1.581 +/** Finds the position of a descriptor element within the array which matches the
1.582 +specified descriptor, using a sequential search.
1.583 +
1.584 +The array is searched sequentially for a matching descriptor element, starting
1.585 +with the first descriptor element in the array. Descriptors are compared using
1.586 +one of the TDesC comparison functions. The enumeration aTextComparisonType
1.587 +governs how the descriptors are to be compared.
1.588 +
1.589 +Where an array has duplicate descriptor elements, the function only supplies
1.590 +the position of the first descriptor element.
1.591 +
1.592 +@param aPtr A reference to a descriptor to be used for comparison.
1.593 +@param aPos If the descriptor element is found, this reference is set to the
1.594 +position of that descriptor element within the array. The position is relative
1.595 +to zero, (i.e. the first descriptor element in the array is at position 0).
1.596 +If the descriptor element is not found and the array is not empty, then the
1.597 +value of the reference is set to the number of descriptor elements in the
1.598 +array. If the descriptor element is not found and the array is empty, then
1.599 +the reference is set to zero.
1.600 +@param aTextComparisonType An enumeration which determines the type of comparison
1.601 +to be made between descriptors. If no parameter is explicitly passed,ECmpFolded
1.602 +is used by default.
1.603 +@return Zero, if a matching descriptor element is found. Non-zero, if no matching
1.604 +descriptor element can be found. */
1.605 + {
1.606 + TKeyDesC16Array key(aTextComparisonType);
1.607 + const TDesC16* tmp=(&aPtr);
1.608 + return(CArrayFixBase::Find(&tmp,key,aPos));
1.609 + }
1.610 +
1.611 +EXPORT_C TInt CDesC16Array::FindIsq(const TDesC16& aPtr,TInt& aPos,TKeyCmpText aTextComparisonType) const
1.612 +/** Finds the position of a descriptor element within the array which matches the
1.613 +specified descriptor, using a binary search technique. The array must
1.614 +be in sequence, otherwise the outcome is unpredictable.
1.615 +
1.616 +Descriptors are compared using one of the TDesC comparison functions. The
1.617 +enumeration aTextComparisonType governs how the descriptors are to be compared.
1.618 +
1.619 +Where an array has duplicate descriptor elements, the function cannot guarantee
1.620 +which matching descriptor element it will return; except that it will find
1.621 +one of them.
1.622 +
1.623 +@param aPtr A reference to a descriptor to be used for comparison.
1.624 +@param aPos If the descriptor element is found, the reference is set to the
1.625 +position of that descriptor element within the array. The position is relative
1.626 +to zero, (i.e. the first descriptor element in the array is at position 0).
1.627 +If the descriptor element is not found and the array is not empty, then the
1.628 +reference is set to the position of the first descriptor element in the array
1.629 +whose content is greater than the content of aPtr. If the descriptor element
1.630 +is not found and the array is empty, then the reference is set to zero.
1.631 +@param aTextComparisonType An enumeration which determines the type of comparison
1.632 +to be made between descriptors. If no parameter is explicitly passed, ECmpFolded
1.633 +is used by default.
1.634 +@return Zero, if a matching descriptor element is found. Non-zero, if no matching
1.635 +descriptor element can be found. */
1.636 + {
1.637 + TKeyDesC16Array key(aTextComparisonType);
1.638 + const TDesC16* tmp=(&aPtr);
1.639 + return(CArrayFixBase::FindIsq(&tmp,key,aPos));
1.640 + }
1.641 +
1.642 +/**
1.643 + *
1.644 + * Constructs a flat descriptor array with the specified granularity.
1.645 + *
1.646 + * No memory is allocated to the array buffer by this constructor.
1.647 + *
1.648 + * @param "TInt aGranularity"
1.649 + * The granularity of the array. This value must be
1.650 + * positive otherwise the constructor raises an
1.651 + * E32USER-CBase 18 panic.
1.652 + */
1.653 +EXPORT_C CDesC16ArrayFlat::CDesC16ArrayFlat(TInt aGranularity)
1.654 + : CDesC16Array((TBufRep)CBufFlat::NewL,aGranularity)
1.655 + {
1.656 + __DECLARE_NAME(_S("CDesC16ArrayFlat"));
1.657 + }
1.658 +
1.659 +EXPORT_C CDesC16ArrayFlat::~CDesC16ArrayFlat()
1.660 +/** Frees all resources owned by the object, prior to its destruction. */
1.661 + {}
1.662 +
1.663 +EXPORT_C CDesC16ArraySeg::CDesC16ArraySeg(TInt aGranularity)
1.664 + : CDesC16Array((TBufRep)CBufSeg::NewL,aGranularity)
1.665 +/** Construct a segmented descriptor array with the specified granularity.
1.666 +
1.667 +No memory is allocated to the array buffer by this C++ constructor.
1.668 +
1.669 +@param aGranularity The granularity of the array. This value must be positive
1.670 +otherwise the constructor raises an E32USER-CBase 18 panic. */
1.671 + {
1.672 + __DECLARE_NAME(_S("CDesC16ArraySeg"));
1.673 + }
1.674 +
1.675 +EXPORT_C CDesC16ArraySeg::~CDesC16ArraySeg()
1.676 +/** Frees all resources owned by the object, prior to its destruction. */
1.677 + {}
1.678 +
1.679 +//
1.680 +// class CPtrC8Array
1.681 +//
1.682 +
1.683 +EXPORT_C CPtrC8Array::CPtrC8Array(TInt aGranularity)
1.684 + : CArrayFixFlat<TPtrC8>(aGranularity)
1.685 +/** Constructs an array of 8 bit non-modifiable descriptors with the specified
1.686 +granularity. The length of all elements in the array buffer is the length
1.687 +of a TPtrC8 object.
1.688 +
1.689 +No memory is allocated to the array buffer by this constructor.
1.690 +
1.691 +@param aGranularity The granularity of the array. This value must be positive
1.692 +otherwise the constructor raises an E32USER-CBase 18 panic. */
1.693 + {
1.694 + __DECLARE_NAME(_S("CPtrC8Array"));
1.695 + }
1.696 +
1.697 +EXPORT_C CPtrC8Array::~CPtrC8Array()
1.698 +/** Frees all resources owned by the object, prior to its destruction. */
1.699 + {}
1.700 +
1.701 +EXPORT_C TInt CPtrC8Array::MdcaCount() const
1.702 +/** Returns the number of elements in the array. The function implements the pure
1.703 +virtual function MDesC8Array::MdcaCount().
1.704 +
1.705 +@return The number of elements. */
1.706 + {
1.707 + return(Count());
1.708 + }
1.709 +
1.710 +EXPORT_C TPtrC8 CPtrC8Array::MdcaPoint(TInt aIndex) const
1.711 +/** Indexes into the descriptor array. The function implements the pure virtual
1.712 +function MDesC8Array::MdcaPoint().
1.713 +
1.714 +@param aIndex The position of the descriptor element within the array. The
1.715 +position is relative to zero; i.e. zero implies the first descriptor element
1.716 +in the array. This value must be non-negative and must be less than the number
1.717 +of elements currently in the array otherwise the operator raises a E32USER-CBase
1.718 +21 panic.
1.719 +@return A non-modifiable pointer descriptor for the data represented by the
1.720 +element at position aIndex within the array. */
1.721 + {
1.722 + return(At(aIndex));
1.723 + }
1.724 +
1.725 +EXPORT_C void CPtrC8Array::CopyL(const MDesC8Array& aArray)
1.726 +/** Copies a descriptor array into this array, deleting any pre-existing elements.
1.727 +
1.728 +The function constructs TPtrC8 elements for each descriptor element in the
1.729 +specified descriptor array.
1.730 +
1.731 +@param aArray A reference to any descriptor array which satisfies the protocol
1.732 +defined by this mixin class. */
1.733 + {
1.734 + Reset();
1.735 + TInt count=aArray.MdcaCount();
1.736 + for (TInt i=0;i<count;++i)
1.737 + AppendL(aArray.MdcaPoint(i));
1.738 + }
1.739 +
1.740 +//
1.741 +// class CPtrC16Array
1.742 +//
1.743 +
1.744 +EXPORT_C CPtrC16Array::CPtrC16Array(TInt aGranularity)
1.745 + : CArrayFixFlat<TPtrC16>(aGranularity)
1.746 +/** Constructs an array of 16 bit non-modifiable descriptors with the specified
1.747 +granularity. The length of all elements in the array buffer is the length
1.748 +of a TPtrC16 object.
1.749 +
1.750 +No memory is allocated to the array buffer by constructor.
1.751 +
1.752 +@param aGranularity The granularity of the array. This value must be positive
1.753 +otherwise the constructor raises an E32USER-CBase 18 panic. */
1.754 + {
1.755 + __DECLARE_NAME(_S("CPtrC16Array"));
1.756 + }
1.757 +
1.758 +EXPORT_C CPtrC16Array::~CPtrC16Array()
1.759 +/** Frees all resources owned by the object, prior to its destruction. */
1.760 + {}
1.761 +
1.762 +EXPORT_C TInt CPtrC16Array::MdcaCount() const
1.763 +/** Returns the number of elements in the array. The function implements the pure
1.764 +virtual function MDesC16Array::MdcaCount().
1.765 +
1.766 +@return The number of elements. */
1.767 + {
1.768 + return(Count());
1.769 + }
1.770 +
1.771 +EXPORT_C TPtrC16 CPtrC16Array::MdcaPoint(TInt aIndex) const
1.772 +/** Indexes into the descriptor array. The function implements the pure virtual
1.773 +function MDesC16Array::MdcaPoint().
1.774 +
1.775 +@param aIndex The position of the descriptor element within the array. The
1.776 +position is relative to zero; i.e. zero implies the first descriptor element
1.777 +in the array. This value must be non-negative and must be less than the number
1.778 +of elements currently in the array otherwise the operator raises a E32USER-CBase
1.779 +21 panic.
1.780 +@return A non-modifiable pointer descriptor for the data represented by the
1.781 +element at position aIndex within the array. */
1.782 + {
1.783 + return(At(aIndex));
1.784 + }
1.785 +
1.786 +EXPORT_C void CPtrC16Array::CopyL(const MDesC16Array& aArray)
1.787 +/** Copies a descriptor array into this array, deleting any pre-existing elements.
1.788 +
1.789 +The function constructs TPtrC16 elements for each descriptor element in the
1.790 +specified descriptor array.
1.791 +
1.792 +@param aArray A reference to any descriptor array which satisfies the protocol
1.793 +defined by this mixin class. */
1.794 + {
1.795 + Reset();
1.796 + TInt count=aArray.MdcaCount();
1.797 + for (TInt i=0;i<count;++i)
1.798 + AppendL(aArray.MdcaPoint(i));
1.799 + }