sl@0
|
1 |
// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// Written by DavidW, October 1996
|
sl@0
|
15 |
// Descriptor arrays
|
sl@0
|
16 |
//
|
sl@0
|
17 |
//
|
sl@0
|
18 |
|
sl@0
|
19 |
#if !defined(__BADESCA_H__)
|
sl@0
|
20 |
#define __BADESCA_H__
|
sl@0
|
21 |
|
sl@0
|
22 |
#if !defined(__BAMDESCA_H__)
|
sl@0
|
23 |
#include <bamdesca.h>
|
sl@0
|
24 |
#endif
|
sl@0
|
25 |
|
sl@0
|
26 |
#if !defined(__E32BASE_H__)
|
sl@0
|
27 |
#include <e32base.h>
|
sl@0
|
28 |
#endif
|
sl@0
|
29 |
|
sl@0
|
30 |
|
sl@0
|
31 |
class CDesC8Array : public CArrayFixBase, public MDesC8Array
|
sl@0
|
32 |
/** An implementation base class for 8 bit descriptor arrays.
|
sl@0
|
33 |
|
sl@0
|
34 |
It provides some of the behaviour for 8 bit descriptor arrays. The class is
|
sl@0
|
35 |
abstract and cannot be instantiated.
|
sl@0
|
36 |
@publishedAll
|
sl@0
|
37 |
@released
|
sl@0
|
38 |
*/
|
sl@0
|
39 |
{
|
sl@0
|
40 |
protected:
|
sl@0
|
41 |
IMPORT_C CDesC8Array(TBufRep aRep,TInt aGranularity);
|
sl@0
|
42 |
public:
|
sl@0
|
43 |
IMPORT_C ~CDesC8Array();
|
sl@0
|
44 |
IMPORT_C void AppendL(const TDesC8& aPtr);
|
sl@0
|
45 |
IMPORT_C void InsertL(TInt aPos,const TDesC8& aPtr);
|
sl@0
|
46 |
IMPORT_C TInt InsertIsqL(const TDesC8& aPtr,TKeyCmpText aTextComparisonType=ECmpFolded);
|
sl@0
|
47 |
IMPORT_C TInt InsertIsqAllowDuplicatesL(const TDesC8& aPtr,TKeyCmpText aTextComparisonType=ECmpFolded);
|
sl@0
|
48 |
IMPORT_C void Sort(TKeyCmpText aTextComparisonType=ECmpFolded);
|
sl@0
|
49 |
IMPORT_C TInt Find(const TDesC8& aPtr,TInt& aPos,TKeyCmpText aTextComparisonType=ECmpFolded) const;
|
sl@0
|
50 |
IMPORT_C TInt FindIsq(const TDesC8& aPtr,TInt& aPos,TKeyCmpText aTextComparisonType=ECmpFolded) const;
|
sl@0
|
51 |
IMPORT_C void Delete(TInt aPos);
|
sl@0
|
52 |
IMPORT_C void Delete(TInt aIndex,TInt aCount);
|
sl@0
|
53 |
IMPORT_C void Reset();
|
sl@0
|
54 |
inline TPtrC8 operator[](TInt aIndex) const;
|
sl@0
|
55 |
// from MDesC8Array
|
sl@0
|
56 |
IMPORT_C TInt MdcaCount() const;
|
sl@0
|
57 |
IMPORT_C TPtrC8 MdcaPoint(TInt aIndex) const;
|
sl@0
|
58 |
};
|
sl@0
|
59 |
|
sl@0
|
60 |
inline TPtrC8 CDesC8Array::operator[](TInt aIndex) const
|
sl@0
|
61 |
{ return(MdcaPoint(aIndex)); }
|
sl@0
|
62 |
|
sl@0
|
63 |
|
sl@0
|
64 |
class CDesC8ArrayFlat : public CDesC8Array
|
sl@0
|
65 |
/** An array of 8 bit descriptors implemented using a flat buffer.
|
sl@0
|
66 |
"bafl.lib"
|
sl@0
|
67 |
@since 5.0
|
sl@0
|
68 |
@publishedAll
|
sl@0
|
69 |
@released
|
sl@0
|
70 |
*/
|
sl@0
|
71 |
{
|
sl@0
|
72 |
public:
|
sl@0
|
73 |
IMPORT_C CDesC8ArrayFlat(TInt aGranularity);
|
sl@0
|
74 |
IMPORT_C ~CDesC8ArrayFlat();
|
sl@0
|
75 |
};
|
sl@0
|
76 |
|
sl@0
|
77 |
|
sl@0
|
78 |
class CDesC8ArraySeg : public CDesC8Array
|
sl@0
|
79 |
/** An array of 8 bit descriptors implemented using a segmented buffer.
|
sl@0
|
80 |
"bafl.lib"
|
sl@0
|
81 |
@since 5.0
|
sl@0
|
82 |
@publishedAll
|
sl@0
|
83 |
@released
|
sl@0
|
84 |
*/
|
sl@0
|
85 |
{
|
sl@0
|
86 |
public:
|
sl@0
|
87 |
IMPORT_C CDesC8ArraySeg(TInt aGranularity);
|
sl@0
|
88 |
IMPORT_C ~CDesC8ArraySeg();
|
sl@0
|
89 |
};
|
sl@0
|
90 |
|
sl@0
|
91 |
|
sl@0
|
92 |
class CDesC16Array : public CArrayFixBase, public MDesC16Array
|
sl@0
|
93 |
/** An implementation base class for 16 bit descriptor arrays. It provides some
|
sl@0
|
94 |
of the behaviour for 16 bit descriptor arrays.
|
sl@0
|
95 |
|
sl@0
|
96 |
The class is abstract and cannot be instantiated.
|
sl@0
|
97 |
" bafl.lib "
|
sl@0
|
98 |
@since 5.0
|
sl@0
|
99 |
@publishedAll
|
sl@0
|
100 |
@released
|
sl@0
|
101 |
*/
|
sl@0
|
102 |
{
|
sl@0
|
103 |
protected:
|
sl@0
|
104 |
IMPORT_C CDesC16Array(TBufRep aRep,TInt aGranularity);
|
sl@0
|
105 |
public:
|
sl@0
|
106 |
IMPORT_C ~CDesC16Array();
|
sl@0
|
107 |
IMPORT_C void AppendL(const TDesC16& aPtr);
|
sl@0
|
108 |
IMPORT_C void InsertL(TInt aPos,const TDesC16& aPtr);
|
sl@0
|
109 |
IMPORT_C TInt InsertIsqL(const TDesC16& aPtr,TKeyCmpText aTextComparisonType=ECmpFolded);
|
sl@0
|
110 |
IMPORT_C TInt InsertIsqAllowDuplicatesL(const TDesC16& aPtr,TKeyCmpText aTextComparisonType=ECmpFolded);
|
sl@0
|
111 |
IMPORT_C void Sort(TKeyCmpText aTextComparisonType=ECmpFolded);
|
sl@0
|
112 |
IMPORT_C TInt Find(const TDesC16& aPtr,TInt& aPos,TKeyCmpText aTextComparisonType=ECmpFolded) const;
|
sl@0
|
113 |
IMPORT_C TInt FindIsq(const TDesC16& aPtr,TInt& aPos,TKeyCmpText aTextComparisonType=ECmpFolded) const;
|
sl@0
|
114 |
IMPORT_C void Delete(TInt aPos);
|
sl@0
|
115 |
IMPORT_C void Delete(TInt aIndex,TInt aCount);
|
sl@0
|
116 |
IMPORT_C void Reset();
|
sl@0
|
117 |
inline TPtrC16 operator[](TInt aIndex) const;
|
sl@0
|
118 |
// from MDesC16Array
|
sl@0
|
119 |
IMPORT_C TInt MdcaCount() const;
|
sl@0
|
120 |
IMPORT_C TPtrC16 MdcaPoint(TInt aIndex) const;
|
sl@0
|
121 |
};
|
sl@0
|
122 |
|
sl@0
|
123 |
|
sl@0
|
124 |
|
sl@0
|
125 |
inline TPtrC16 CDesC16Array::operator[](TInt aIndex) const
|
sl@0
|
126 |
/** Returns a non-modifiable descriptor to represent the descriptor
|
sl@0
|
127 |
element located at the specified index within the array.
|
sl@0
|
128 |
|
sl@0
|
129 |
@param aIndex The position of the descriptor element within the array.
|
sl@0
|
130 |
The position is relative to zero; i.e. zero implies the first descriptor
|
sl@0
|
131 |
element in the array. This value must be non-negative and less than the
|
sl@0
|
132 |
number of descriptors currently within the array otherwise the operator
|
sl@0
|
133 |
panics with
|
sl@0
|
134 |
@code
|
sl@0
|
135 |
EArrayIndexOutOfRange
|
sl@0
|
136 |
@endcode
|
sl@0
|
137 |
@return A 16 bit non-modifiable pointer descriptor. */
|
sl@0
|
138 |
{ return(MdcaPoint(aIndex)); }
|
sl@0
|
139 |
|
sl@0
|
140 |
|
sl@0
|
141 |
class CDesC16ArrayFlat : public CDesC16Array
|
sl@0
|
142 |
/** Array of 16 bit descriptors implemented using a flat buffer.
|
sl@0
|
143 |
"bafl.lib
|
sl@0
|
144 |
@since 5.0
|
sl@0
|
145 |
@publishedAll
|
sl@0
|
146 |
@released
|
sl@0
|
147 |
*/
|
sl@0
|
148 |
{
|
sl@0
|
149 |
public:
|
sl@0
|
150 |
IMPORT_C CDesC16ArrayFlat(TInt aGranularity);
|
sl@0
|
151 |
IMPORT_C ~CDesC16ArrayFlat();
|
sl@0
|
152 |
};
|
sl@0
|
153 |
|
sl@0
|
154 |
|
sl@0
|
155 |
class CDesC16ArraySeg : public CDesC16Array
|
sl@0
|
156 |
/** An array of 16 bit descriptors implemented using a segmented buffer.
|
sl@0
|
157 |
"bafl.lib"
|
sl@0
|
158 |
@since 5.0
|
sl@0
|
159 |
@publishedAll
|
sl@0
|
160 |
@released
|
sl@0
|
161 |
*/
|
sl@0
|
162 |
{
|
sl@0
|
163 |
public:
|
sl@0
|
164 |
IMPORT_C CDesC16ArraySeg(TInt aGranularity);
|
sl@0
|
165 |
IMPORT_C ~CDesC16ArraySeg();
|
sl@0
|
166 |
};
|
sl@0
|
167 |
|
sl@0
|
168 |
|
sl@0
|
169 |
class CPtrC8Array : public CArrayFixFlat<TPtrC8>, public MDesC8Array
|
sl@0
|
170 |
/** Array of 8 bit non-modifiable pointer descriptors, TPtrC8, implemented using
|
sl@0
|
171 |
a flat buffer.
|
sl@0
|
172 |
"bafl.lib"
|
sl@0
|
173 |
@since 5.0
|
sl@0
|
174 |
@publishedAll
|
sl@0
|
175 |
@released
|
sl@0
|
176 |
*/
|
sl@0
|
177 |
{
|
sl@0
|
178 |
public:
|
sl@0
|
179 |
IMPORT_C CPtrC8Array(TInt aGranularity);
|
sl@0
|
180 |
IMPORT_C ~CPtrC8Array();
|
sl@0
|
181 |
//
|
sl@0
|
182 |
IMPORT_C void CopyL(const MDesC8Array& aArray);
|
sl@0
|
183 |
inline void operator=(const MDesC8Array& aArray);
|
sl@0
|
184 |
// Mixin members
|
sl@0
|
185 |
IMPORT_C TInt MdcaCount() const;
|
sl@0
|
186 |
IMPORT_C TPtrC8 MdcaPoint(TInt aIndex) const;
|
sl@0
|
187 |
};
|
sl@0
|
188 |
|
sl@0
|
189 |
|
sl@0
|
190 |
class CPtrC16Array : public CArrayFixFlat<TPtrC16>, public MDesC16Array
|
sl@0
|
191 |
/** An array of 16 bit non-modifiable pointer descriptors, TPtrC16, implemented
|
sl@0
|
192 |
using a flat buffer.
|
sl@0
|
193 |
"bafl.lib"
|
sl@0
|
194 |
@since 5.0
|
sl@0
|
195 |
@publishedAll
|
sl@0
|
196 |
@released
|
sl@0
|
197 |
*/
|
sl@0
|
198 |
{
|
sl@0
|
199 |
public:
|
sl@0
|
200 |
IMPORT_C CPtrC16Array(TInt aGranularity);
|
sl@0
|
201 |
IMPORT_C ~CPtrC16Array();
|
sl@0
|
202 |
//
|
sl@0
|
203 |
IMPORT_C void CopyL(const MDesC16Array& aArray);
|
sl@0
|
204 |
inline void operator=(const MDesC16Array& aArray);
|
sl@0
|
205 |
// Mixin members
|
sl@0
|
206 |
IMPORT_C TInt MdcaCount() const;
|
sl@0
|
207 |
IMPORT_C TPtrC16 MdcaPoint(TInt aIndex) const;
|
sl@0
|
208 |
};
|
sl@0
|
209 |
|
sl@0
|
210 |
|
sl@0
|
211 |
inline void CPtrC8Array::operator=(const MDesC8Array& aArray)
|
sl@0
|
212 |
/** Copies a descriptor array into this array, deleting any pre-existing
|
sl@0
|
213 |
elements.
|
sl@0
|
214 |
|
sl@0
|
215 |
The function constructs TPtrC8 elements for each descriptor element
|
sl@0
|
216 |
in the specified descriptor array. This operator behaves in the
|
sl@0
|
217 |
same ways as CPtrC8Array::CopyL().
|
sl@0
|
218 |
|
sl@0
|
219 |
@param aArrayA reference to any descriptor array which satisfies
|
sl@0
|
220 |
the protocol defined by this mixin class. */
|
sl@0
|
221 |
{CopyL(aArray);}
|
sl@0
|
222 |
|
sl@0
|
223 |
|
sl@0
|
224 |
inline void CPtrC16Array::operator=(const MDesC16Array& aArray)
|
sl@0
|
225 |
/** Copies a descriptor array into this array, deleting any pre-existing
|
sl@0
|
226 |
elements.
|
sl@0
|
227 |
|
sl@0
|
228 |
The function constructs TPtrC16 elements for each descriptor element
|
sl@0
|
229 |
in the specified descriptor array.This operator behaves in the
|
sl@0
|
230 |
same ways as CPtrC16Array::CopyL().
|
sl@0
|
231 |
|
sl@0
|
232 |
@param aArray A reference to any descriptor array which satisfies
|
sl@0
|
233 |
the protocol defined by this mixin class. */
|
sl@0
|
234 |
{CopyL(aArray);}
|
sl@0
|
235 |
|
sl@0
|
236 |
// generic text array definitions
|
sl@0
|
237 |
|
sl@0
|
238 |
#if defined (_UNICODE)
|
sl@0
|
239 |
/** Build independent implementation base class for descriptor arrays.
|
sl@0
|
240 |
|
sl@0
|
241 |
@see CDesC8Array
|
sl@0
|
242 |
@see CDesC16Array
|
sl@0
|
243 |
@publishedAll
|
sl@0
|
244 |
@released
|
sl@0
|
245 |
*/
|
sl@0
|
246 |
typedef CDesC16Array CDesCArray;
|
sl@0
|
247 |
|
sl@0
|
248 |
/** Build independent array of descriptors implemented using a flat buffer.
|
sl@0
|
249 |
|
sl@0
|
250 |
@see CDesC8ArrayFlat
|
sl@0
|
251 |
@see CDesC16ArrayFlat
|
sl@0
|
252 |
@publishedAll
|
sl@0
|
253 |
@released
|
sl@0
|
254 |
*/
|
sl@0
|
255 |
typedef CDesC16ArrayFlat CDesCArrayFlat;
|
sl@0
|
256 |
|
sl@0
|
257 |
/** Build independent array of descriptors implemented using a segmented buffer.
|
sl@0
|
258 |
|
sl@0
|
259 |
@see CDesC16ArraySeg
|
sl@0
|
260 |
@see CDesC8ArraySeg
|
sl@0
|
261 |
@publishedAll
|
sl@0
|
262 |
@released
|
sl@0
|
263 |
*/
|
sl@0
|
264 |
typedef CDesC16ArraySeg CDesCArraySeg;
|
sl@0
|
265 |
|
sl@0
|
266 |
/** Build independent array of non-modifiable pointer descriptors.
|
sl@0
|
267 |
|
sl@0
|
268 |
A 16 bit build variant is generated for a Unicode build and an 8 bit build
|
sl@0
|
269 |
variant generated for a non-Unicode build.
|
sl@0
|
270 |
|
sl@0
|
271 |
This build independent type should always be used unless an explicit 8 bit
|
sl@0
|
272 |
or 16 bit build variant is required.
|
sl@0
|
273 |
|
sl@0
|
274 |
@see CPtrC16Array
|
sl@0
|
275 |
@see CPtrC8Array
|
sl@0
|
276 |
@publishedAll
|
sl@0
|
277 |
@released
|
sl@0
|
278 |
*/
|
sl@0
|
279 |
typedef CPtrC16Array CPtrCArray;
|
sl@0
|
280 |
#else
|
sl@0
|
281 |
/** Build independent implementation base class for descriptor arrays.
|
sl@0
|
282 |
|
sl@0
|
283 |
@see CDesC8Array
|
sl@0
|
284 |
@see CDesC16Array
|
sl@0
|
285 |
@publishedAll
|
sl@0
|
286 |
@released
|
sl@0
|
287 |
*/
|
sl@0
|
288 |
typedef CDesC8Array CDesCArray;
|
sl@0
|
289 |
/** Build independent array of descriptors implemented using a flat buffer.
|
sl@0
|
290 |
|
sl@0
|
291 |
@see CDesC8ArrayFlat
|
sl@0
|
292 |
@see CDesC16ArrayFlat
|
sl@0
|
293 |
@publishedAll
|
sl@0
|
294 |
@released
|
sl@0
|
295 |
*/
|
sl@0
|
296 |
typedef CDesC8ArrayFlat CDesCArrayFlat;
|
sl@0
|
297 |
/** Build independent array of descriptors implemented using a segmented buffer.
|
sl@0
|
298 |
|
sl@0
|
299 |
@see CDesC16ArraySeg
|
sl@0
|
300 |
@see CDesC8ArraySeg
|
sl@0
|
301 |
@publishedAll
|
sl@0
|
302 |
@released
|
sl@0
|
303 |
*/
|
sl@0
|
304 |
typedef CDesC8ArraySeg CDesCArraySeg;
|
sl@0
|
305 |
/** Build independent array of non-modifiable pointer descriptors.
|
sl@0
|
306 |
|
sl@0
|
307 |
A 16 bit build variant is generated for a Unicode build and an 8 bit build
|
sl@0
|
308 |
variant generated for a non-Unicode build.
|
sl@0
|
309 |
|
sl@0
|
310 |
This build independent type should always be used unless an explicit 8 bit
|
sl@0
|
311 |
or 16 bit build variant is required.
|
sl@0
|
312 |
|
sl@0
|
313 |
@see CPtrC16Array
|
sl@0
|
314 |
@see CPtrC8Array
|
sl@0
|
315 |
@publishedAll
|
sl@0
|
316 |
@released
|
sl@0
|
317 |
*/
|
sl@0
|
318 |
typedef CPtrC8Array CPtrCArray;
|
sl@0
|
319 |
#endif
|
sl@0
|
320 |
|
sl@0
|
321 |
|
sl@0
|
322 |
#endif // __BADESCA_H__
|
sl@0
|
323 |
|
sl@0
|
324 |
|
sl@0
|
325 |
|
sl@0
|
326 |
|