os/kernelhwsrv/kernel/eka/include/e32des8.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 1995-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 the License "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
// e32\include\e32des8.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#ifndef __E32DES8_H__
sl@0
    19
#define __E32DES8_H__
sl@0
    20
sl@0
    21
/**
sl@0
    22
@internalComponent
sl@0
    23
*/
sl@0
    24
const TUint KMaskDesLength8=0xfffffff;
sl@0
    25
sl@0
    26
class TBufCBase8;
sl@0
    27
class TDes8;
sl@0
    28
class TPtrC8;
sl@0
    29
class TPtr8;
sl@0
    30
class TPtr16;
sl@0
    31
#ifndef __KERNEL_MODE__
sl@0
    32
class HBufC8;
sl@0
    33
#endif
sl@0
    34
class TDesC8
sl@0
    35
/**
sl@0
    36
@publishedAll
sl@0
    37
@released
sl@0
    38
sl@0
    39
Abstract base class for 8-bit non-modifiable descriptors.
sl@0
    40
sl@0
    41
The class encapsulates the data member containing the length of data
sl@0
    42
represented by an 8-bit descriptor. It also provides member functions through
sl@0
    43
which the data can be accessed, but not modified.
sl@0
    44
sl@0
    45
Data represented by this class is treated as a contiguous set of 8-bit (i.e. 
sl@0
    46
single byte) values or data items.
sl@0
    47
sl@0
    48
This class cannot be instantiated as it is intended to form part of a class 
sl@0
    49
hierarchy; it provides a well defined part of descriptor behaviour. It can, 
sl@0
    50
however, be passed as an argument type for functions which want access to 
sl@0
    51
descriptor data but do not need to modify that data.
sl@0
    52
sl@0
    53
@see TDesC
sl@0
    54
@see TPtrC8
sl@0
    55
*/
sl@0
    56
    {
sl@0
    57
public:
sl@0
    58
	inline TBool operator<(const TDesC8 &aDes) const;
sl@0
    59
	inline TBool operator<=(const TDesC8 &aDes) const;
sl@0
    60
	inline TBool operator>(const TDesC8 &aDes) const;
sl@0
    61
	inline TBool operator>=(const TDesC8 &aDes) const;
sl@0
    62
	inline TBool operator==(const TDesC8 &aDes) const;
sl@0
    63
	inline TBool operator!=(const TDesC8 &aDes) const;
sl@0
    64
	inline const TUint8 &operator[](TInt anIndex) const;
sl@0
    65
	inline TInt Length() const;
sl@0
    66
	inline TInt Size() const;
sl@0
    67
	IMPORT_C const TUint8 *Ptr() const;
sl@0
    68
	IMPORT_C TInt Compare(const TDesC8 &aDes) const;
sl@0
    69
	IMPORT_C TInt Match(const TDesC8 &aDes) const;
sl@0
    70
	IMPORT_C TInt MatchF(const TDesC8 &aDes) const;
sl@0
    71
	IMPORT_C TInt MatchC(const TDesC8 &aDes) const;
sl@0
    72
	IMPORT_C TInt Locate(TChar aChar) const;
sl@0
    73
	IMPORT_C TInt LocateReverse(TChar aChar) const;
sl@0
    74
	IMPORT_C TInt Find(const TDesC8 &aDes) const;
sl@0
    75
	IMPORT_C TInt Find(const TUint8 *pS,TInt aLenS) const;
sl@0
    76
	IMPORT_C TPtrC8 Left(TInt aLength) const;
sl@0
    77
	IMPORT_C TPtrC8 Right(TInt aLength) const;
sl@0
    78
	IMPORT_C TPtrC8 Mid(TInt aPos) const;
sl@0
    79
	IMPORT_C TPtrC8 Mid(TInt aPos,TInt aLength) const;
sl@0
    80
	IMPORT_C TInt CompareF(const TDesC8 &aDes) const;
sl@0
    81
#ifndef __KERNEL_MODE__
sl@0
    82
	IMPORT_C TInt CompareC(const TDesC8 &aDes) const;
sl@0
    83
	IMPORT_C TInt LocateF(TChar aChar) const;
sl@0
    84
	IMPORT_C TInt LocateReverseF(TChar aChar) const;
sl@0
    85
	IMPORT_C TInt FindF(const TDesC8 &aDes) const;
sl@0
    86
	IMPORT_C TInt FindF(const TUint8 *pS,TInt aLenS) const;
sl@0
    87
	IMPORT_C TInt FindC(const TDesC8 &aDes) const;
sl@0
    88
	IMPORT_C TInt FindC(const TUint8 *pS,TInt aLenS) const;
sl@0
    89
	IMPORT_C HBufC8 *Alloc() const;
sl@0
    90
	IMPORT_C HBufC8 *AllocL() const;
sl@0
    91
	IMPORT_C HBufC8 *AllocLC() const;
sl@0
    92
#endif
sl@0
    93
protected:
sl@0
    94
	inline TDesC8(TInt aType,TInt aLength);
sl@0
    95
	inline TDesC8() {}
sl@0
    96
// delay this for a while
sl@0
    97
#ifdef SYMBIAN_FIX_TDESC_CONSTRUCTORS
sl@0
    98
	inline TDesC8( const TDesC8& aOther) : iLength(aOther.iLength) {}
sl@0
    99
#endif
sl@0
   100
//	inline ~TDesC8() {}			Commented out for the moment since it breaks code
sl@0
   101
	inline TInt Type() const;
sl@0
   102
	inline void DoSetLength(TInt aLength);
sl@0
   103
	IMPORT_C const TUint8 &AtC(TInt anIndex) const;
sl@0
   104
private:
sl@0
   105
	TUint iLength;
sl@0
   106
	__DECLARE_TEST;
sl@0
   107
    };
sl@0
   108
//
sl@0
   109
class TPtrC8 : public TDesC8
sl@0
   110
/**
sl@0
   111
@publishedAll
sl@0
   112
@released
sl@0
   113
sl@0
   114
8-bit non-modifiable pointer descriptor.
sl@0
   115
sl@0
   116
This is a descriptor class intended for instantiation and encapsulates a
sl@0
   117
pointer to the 8-bit data that it represents. The data can live in ROM or RAM
sl@0
   118
and this location is separate from the descriptor object itself.
sl@0
   119
sl@0
   120
The data is intended to be accessed, but not changed, through this descriptor. 
sl@0
   121
The base class provides the functions through which data is accessed.
sl@0
   122
sl@0
   123
@see TPtr8
sl@0
   124
@see TDesC8
sl@0
   125
@see TDes8
sl@0
   126
@see TBufC8
sl@0
   127
@see TBuf8
sl@0
   128
@see HBufC8
sl@0
   129
*/
sl@0
   130
	{
sl@0
   131
public:
sl@0
   132
	IMPORT_C TPtrC8();
sl@0
   133
	IMPORT_C TPtrC8(const TDesC8 &aDes);
sl@0
   134
	IMPORT_C TPtrC8(const TUint8 *aString);
sl@0
   135
	IMPORT_C TPtrC8(const TUint8 *aBuf,TInt aLength);
sl@0
   136
	inline void Set(const TUint8 *aBuf,TInt aLength);
sl@0
   137
	inline void Set(const TDesC8 &aDes);
sl@0
   138
	inline void Set(const TPtrC8& aPtr);
sl@0
   139
private:
sl@0
   140
	TPtrC8& operator=(const TPtrC8 &aDes);
sl@0
   141
protected:
sl@0
   142
	const TUint8 *iPtr;
sl@0
   143
private:
sl@0
   144
	__DECLARE_TEST;
sl@0
   145
	};
sl@0
   146
//
sl@0
   147
class TDes8Overflow
sl@0
   148
/**
sl@0
   149
@publishedAll
sl@0
   150
@released
sl@0
   151
sl@0
   152
An interface that defines an overflow handler for an 8-bit descriptor.
sl@0
   153
sl@0
   154
The interface encapsulates a function that is called when an attempt to append 
sl@0
   155
formatted text fails because the descriptor is already at its maximum length.
sl@0
   156
sl@0
   157
A derived class must provide an implementation for the Overflow() member
sl@0
   158
function.
sl@0
   159
sl@0
   160
@see TDes8::AppendFormat
sl@0
   161
*/
sl@0
   162
	{
sl@0
   163
public:
sl@0
   164
    /**
sl@0
   165
    Handles the overflow.
sl@0
   166
    
sl@0
   167
    This function is called when the TDes8::AppendFormat() variant that takes
sl@0
   168
    an overflow handler argument, fails.
sl@0
   169
	
sl@0
   170
	@param aDes The 8-bit modifiable descriptor whose overflow results in the 
sl@0
   171
	            call to this overflow handler.
sl@0
   172
	*/
sl@0
   173
	virtual void Overflow(TDes8 &aDes)=0;
sl@0
   174
	};
sl@0
   175
//
sl@0
   176
class TDes8IgnoreOverflow : public TDes8Overflow
sl@0
   177
/**
sl@0
   178
@publishedAll
sl@0
   179
@released
sl@0
   180
sl@0
   181
A derived class which provides an implementation for the Overflow() member function
sl@0
   182
where truncation is required.
sl@0
   183
sl@0
   184
@see TDes16::AppendFormat
sl@0
   185
*/
sl@0
   186
	{
sl@0
   187
public:
sl@0
   188
	/**
sl@0
   189
	Handles the overflow.
sl@0
   190
	
sl@0
   191
	This function is called when the TDes8::AppendFormat() 
sl@0
   192
	variant that takes an overflow handler argument, fails.
sl@0
   193
	
sl@0
   194
	@param aDes The 8-bit modifiable descriptor whose overflow results in the 
sl@0
   195
	            call to this overflow handler.
sl@0
   196
	*/
sl@0
   197
	IMPORT_C virtual void Overflow(TDes8 &aDes);
sl@0
   198
	};
sl@0
   199
//
sl@0
   200
class TDesC16;
sl@0
   201
class TRealFormat;
sl@0
   202
class TDes8 : public TDesC8
sl@0
   203
/** 
sl@0
   204
@publishedAll
sl@0
   205
@released
sl@0
   206
sl@0
   207
Abstract base class for 8-bit modifiable descriptors.
sl@0
   208
sl@0
   209
The class encapsulates the data member containing the maximum length of data
sl@0
   210
represented by an 8-bit descriptor. It also provides member functions through
sl@0
   211
which the data can be modified.
sl@0
   212
sl@0
   213
The class adds to the behaviour provided by TDesC8.
sl@0
   214
sl@0
   215
This class cannot be instantiated as it is intended to form part of a class 
sl@0
   216
hierarchy; it provides a well defined part of descriptor behaviour. It can, 
sl@0
   217
however, be passed as an argument type for functions which need to both modify 
sl@0
   218
and access descriptor data.
sl@0
   219
sl@0
   220
@see TDes
sl@0
   221
@see TDesC8
sl@0
   222
@see TDesC16
sl@0
   223
*/
sl@0
   224
	{
sl@0
   225
public:
sl@0
   226
	inline TDes8& operator=(const TUint8 *aString);
sl@0
   227
	inline TDes8& operator=(const TDesC8 &aDes);
sl@0
   228
	inline TDes8& operator=(const TDes8 &aDes);
sl@0
   229
	inline TInt MaxLength() const;
sl@0
   230
	inline TInt MaxSize() const;
sl@0
   231
	inline const TUint8 &operator[](TInt anIndex) const;
sl@0
   232
	inline TUint8 &operator[](TInt anIndex);
sl@0
   233
	inline TDes8 &operator+=(const TDesC8 &aDes);
sl@0
   234
	IMPORT_C void Zero();
sl@0
   235
 	IMPORT_C void SetLength(TInt aLength);
sl@0
   236
 	IMPORT_C void SetMax();
sl@0
   237
	IMPORT_C void Copy(const TDesC8 &aDes);
sl@0
   238
	IMPORT_C void Copy(const TUint8 *aBuf,TInt aLength);
sl@0
   239
	IMPORT_C void Copy(const TUint8 *aString);
sl@0
   240
	IMPORT_C void Copy(const TDesC16 &aDes);
sl@0
   241
	IMPORT_C void Append(TChar aChar);
sl@0
   242
	IMPORT_C void Append(const TDesC8 &aDes);
sl@0
   243
	IMPORT_C void Append(const TDesC16 &aDes);
sl@0
   244
	IMPORT_C void Append(const TUint8 *aBuf,TInt aLength);
sl@0
   245
	IMPORT_C void Fill(TChar aChar);
sl@0
   246
	IMPORT_C void Fill(TChar aChar,TInt aLength);
sl@0
   247
	IMPORT_C void FillZ();
sl@0
   248
	IMPORT_C void FillZ(TInt aLength);
sl@0
   249
	IMPORT_C void Num(TInt64 aVal);
sl@0
   250
	IMPORT_C void Num(TUint64 aVal, TRadix aRadix);
sl@0
   251
	IMPORT_C void NumFixedWidth(TUint aVal,TRadix aRadix,TInt aWidth);
sl@0
   252
	IMPORT_C void AppendNum(TInt64 aVal);
sl@0
   253
	IMPORT_C void AppendNum(TUint64 aVal, TRadix aRadix);
sl@0
   254
	IMPORT_C void AppendNumFixedWidth(TUint aVal,TRadix aRadix,TInt aWidth);
sl@0
   255
#ifndef __KERNEL_MODE__
sl@0
   256
	IMPORT_C TPtr8 LeftTPtr(TInt aLength) const;
sl@0
   257
	IMPORT_C TPtr8 RightTPtr(TInt aLength) const;
sl@0
   258
	IMPORT_C TPtr8 MidTPtr(TInt aPos) const;
sl@0
   259
	IMPORT_C TPtr8 MidTPtr(TInt aPos,TInt aLength) const;
sl@0
   260
	IMPORT_C const TUint8 *PtrZ();
sl@0
   261
	IMPORT_C void CopyF(const TDesC8 &aDes);
sl@0
   262
	IMPORT_C void CopyC(const TDesC8 &aDes);
sl@0
   263
	IMPORT_C void CopyLC(const TDesC8 &aDes);
sl@0
   264
	IMPORT_C void CopyUC(const TDesC8 &aDes);
sl@0
   265
	IMPORT_C void CopyCP(const TDesC8 &aDes);
sl@0
   266
	IMPORT_C void Swap(TDes8 &aDes);
sl@0
   267
	IMPORT_C void AppendFill(TChar aChar,TInt aLength);
sl@0
   268
	IMPORT_C void ZeroTerminate();
sl@0
   269
	IMPORT_C void Fold();
sl@0
   270
	IMPORT_C void Collate();
sl@0
   271
	IMPORT_C void LowerCase();
sl@0
   272
	IMPORT_C void UpperCase();
sl@0
   273
	IMPORT_C void Capitalize();
sl@0
   274
	IMPORT_C void Repeat(const TUint8 *aBuf,TInt aLength);
sl@0
   275
	IMPORT_C void Repeat(const TDesC8 &aDes);
sl@0
   276
	IMPORT_C void Trim();
sl@0
   277
	IMPORT_C void TrimAll();
sl@0
   278
	IMPORT_C void TrimLeft();
sl@0
   279
	IMPORT_C void TrimRight();
sl@0
   280
	IMPORT_C void Insert(TInt aPos,const TDesC8 &aDes);
sl@0
   281
	IMPORT_C void Delete(TInt aPos,TInt aLength);
sl@0
   282
	IMPORT_C void Replace(TInt aPos,TInt aLength,const TDesC8 &aDes);
sl@0
   283
	IMPORT_C void Justify(const TDesC8 &aDes,TInt aWidth,TAlign anAlignment,TChar aFill);
sl@0
   284
	IMPORT_C void NumFixedWidthUC(TUint aVal,TRadix aRadix,TInt aWidth);
sl@0
   285
	IMPORT_C void NumUC(TUint64 aVal, TRadix aRadix=EDecimal);
sl@0
   286
	IMPORT_C TInt Num(TReal aVal,const TRealFormat &aFormat) __SOFTFP;
sl@0
   287
	IMPORT_C void AppendNumFixedWidthUC(TUint aVal,TRadix aRadix,TInt aWidth);
sl@0
   288
	IMPORT_C TInt AppendNum(TReal aVal,const TRealFormat &aFormat) __SOFTFP;
sl@0
   289
	IMPORT_C void AppendNumUC(TUint64 aVal,TRadix aRadix=EDecimal);
sl@0
   290
	IMPORT_C void Format(TRefByValue<const TDesC8> aFmt,...);
sl@0
   291
	IMPORT_C void FormatList(const TDesC8 &aFmt,VA_LIST aList);
sl@0
   292
	IMPORT_C void AppendJustify(const TDesC8 &Des,TInt aWidth,TAlign anAlignment,TChar aFill);
sl@0
   293
	IMPORT_C void AppendJustify(const TDesC8 &Des,TInt aLength,TInt aWidth,TAlign anAlignment,TChar aFill);
sl@0
   294
	IMPORT_C void AppendJustify(const TUint8 *aString,TInt aWidth,TAlign anAlignment,TChar aFill);
sl@0
   295
	IMPORT_C void AppendJustify(const TUint8 *aString,TInt aLength,TInt aWidth,TAlign anAlignment,TChar aFill);
sl@0
   296
	IMPORT_C void AppendFormat(TRefByValue<const TDesC8> aFmt,TDes8Overflow *aOverflowHandler,...);
sl@0
   297
	IMPORT_C void AppendFormat(TRefByValue<const TDesC8> aFmt,...);
sl@0
   298
	IMPORT_C void AppendFormatList(const TDesC8 &aFmt,VA_LIST aList,TDes8Overflow *aOverflowHandler=NULL);
sl@0
   299
	IMPORT_C TPtr16 Expand();
sl@0
   300
	IMPORT_C void Collapse();
sl@0
   301
#endif //__KERNEL_MODE__
sl@0
   302
protected:
sl@0
   303
	inline TDes8(TInt aType,TInt aLength,TInt aMaxLength);
sl@0
   304
	inline TUint8 *WPtr() const;
sl@0
   305
	inline TDes8() {}
sl@0
   306
// delay this for a while
sl@0
   307
#ifdef SYMBIAN_FIX_TDESC_CONSTRUCTORS
sl@0
   308
	inline TDes8(const TDes8& aOther) : TDesC8(aOther), iMaxLength(aOther.iMaxLength) {}
sl@0
   309
#endif
sl@0
   310
	void DoAppendNum(TUint64 aVal, TRadix aRadix, TUint aA, TInt aW);
sl@0
   311
	void DoPadAppendNum(TInt aLength, TInt aW, const TUint8* aBuf);
sl@0
   312
protected:
sl@0
   313
	TInt iMaxLength;
sl@0
   314
	__DECLARE_TEST;
sl@0
   315
    };
sl@0
   316
//
sl@0
   317
class TPtr8 : public TDes8
sl@0
   318
/**
sl@0
   319
@publishedAll
sl@0
   320
@released
sl@0
   321
sl@0
   322
8-bit modifiable pointer descriptor.
sl@0
   323
sl@0
   324
This is a descriptor class intended for instantiation and encapsulates a
sl@0
   325
pointer to the 8-bit data that it represents. The data can live in ROM or
sl@0
   326
RAM and this location is separate from the descriptor object itself.
sl@0
   327
sl@0
   328
The data is intended to be accessed and modified through this descriptor. 
sl@0
   329
The base classes provide the functions through which the data can be 
sl@0
   330
manipulated.
sl@0
   331
sl@0
   332
@see TPtr
sl@0
   333
@see TPtrC8
sl@0
   334
@see TDesC8
sl@0
   335
@see TDes8
sl@0
   336
@see TBufC8
sl@0
   337
@see TBuf8
sl@0
   338
@see HBufC8
sl@0
   339
*/
sl@0
   340
	{
sl@0
   341
public:
sl@0
   342
	IMPORT_C TPtr8(TUint8 *aBuf,TInt aMaxLength);
sl@0
   343
	IMPORT_C TPtr8(TUint8 *aBuf,TInt aLength,TInt aMaxLength);
sl@0
   344
	inline TPtr8& operator=(const TUint8 *aString);
sl@0
   345
	inline TPtr8& operator=(const TDesC8& aDes);
sl@0
   346
	inline TPtr8& operator=(const TPtr8& aPtr);
sl@0
   347
	inline void Set(TUint8 *aBuf,TInt aLength,TInt aMaxLength);
sl@0
   348
	inline void Set(const TPtr8 &aPtr);
sl@0
   349
private:
sl@0
   350
	IMPORT_C TPtr8(TBufCBase8 &aLcb,TInt aMaxLength);
sl@0
   351
protected:
sl@0
   352
	TUint8 *iPtr;
sl@0
   353
private:
sl@0
   354
	friend class TBufCBase8;
sl@0
   355
	__DECLARE_TEST;
sl@0
   356
	};
sl@0
   357
//
sl@0
   358
class TBufCBase8 : public TDesC8
sl@0
   359
/**
sl@0
   360
@internalAll
sl@0
   361
*/
sl@0
   362
	{
sl@0
   363
protected:
sl@0
   364
	IMPORT_C TBufCBase8();
sl@0
   365
	inline TBufCBase8(TInt aLength);
sl@0
   366
	IMPORT_C TBufCBase8(const TUint8 *aString,TInt aMaxLength);
sl@0
   367
	IMPORT_C TBufCBase8(const TDesC8 &aDes,TInt aMaxLength);
sl@0
   368
	IMPORT_C void Copy(const TUint8 *aString,TInt aMaxLength);
sl@0
   369
	IMPORT_C void Copy(const TDesC8 &aDes,TInt aMaxLength);
sl@0
   370
	inline TPtr8 DoDes(TInt aMaxLength);
sl@0
   371
	inline TUint8 *WPtr() const;
sl@0
   372
	};
sl@0
   373
//
sl@0
   374
#ifndef __KERNEL_MODE__
sl@0
   375
class RReadStream;
sl@0
   376
class HBufC8 : public TBufCBase8
sl@0
   377
/**
sl@0
   378
@publishedAll
sl@0
   379
@released
sl@0
   380
sl@0
   381
8-bit heap descriptor.
sl@0
   382
sl@0
   383
This is a descriptor class which provides a buffer of fixed length, allocated 
sl@0
   384
on the heap, for containing and accessing data.
sl@0
   385
sl@0
   386
The class is intended for instantiation.
sl@0
   387
sl@0
   388
Heap descriptors have the important property that they can be made larger 
sl@0
   389
or smaller, changing the size of the descriptor buffer. This is achieved by 
sl@0
   390
reallocating the descriptor. Unlike the behaviour of dynamic buffers, 
sl@0
   391
reallocation is not done automatically.
sl@0
   392
sl@0
   393
Data is intended to be accessed, but not modified; however, it can be 
sl@0
   394
completely replaced using the assignment operators of this class. The base
sl@0
   395
class (TDesC8) provides the functions through which the data is accessed.
sl@0
   396
sl@0
   397
The descriptor is hosted by a heap cell, and the 8-bit data that the
sl@0
   398
descriptor represents is part of the descriptor object itself. The size of the
sl@0
   399
cell depends on the requested maximum length of the descriptor buffer when the
sl@0
   400
descriptor is created or re-allocated.
sl@0
   401
sl@0
   402
It is important to note that the size of the allocated cell, and, therefore, 
sl@0
   403
the resulting maximum length of the descriptor, may be larger than requested 
sl@0
   404
due to the way memory is allocated in Symbian OS. The amount by which this 
sl@0
   405
may be rounded up depends on the platform and build type.
sl@0
   406
sl@0
   407
@see HBufC
sl@0
   408
@see TPtr8
sl@0
   409
@see TDesC8
sl@0
   410
*/
sl@0
   411
	{
sl@0
   412
public:
sl@0
   413
	IMPORT_C static HBufC8 *New(TInt aMaxLength);
sl@0
   414
	IMPORT_C static HBufC8 *NewL(TInt aMaxLength);
sl@0
   415
	IMPORT_C static HBufC8 *NewLC(TInt aMaxLength);
sl@0
   416
	IMPORT_C static HBufC8 *NewMax(TInt aMaxLength);
sl@0
   417
	IMPORT_C static HBufC8 *NewMaxL(TInt aMaxLength);
sl@0
   418
	IMPORT_C static HBufC8 *NewMaxLC(TInt aMaxLength);
sl@0
   419
	IMPORT_C static HBufC8 *NewL(RReadStream &aStream,TInt aMaxLength);
sl@0
   420
	IMPORT_C static HBufC8 *NewLC(RReadStream &aStream,TInt aMaxLength);
sl@0
   421
	IMPORT_C HBufC8& operator=(const TUint8 *aString);
sl@0
   422
	IMPORT_C HBufC8& operator=(const TDesC8 &aDes);
sl@0
   423
	inline HBufC8& operator=(const HBufC8 &aLcb);
sl@0
   424
	IMPORT_C HBufC8 *ReAlloc(TInt aMaxLength);
sl@0
   425
	IMPORT_C HBufC8 *ReAllocL(TInt aMaxLength);
sl@0
   426
	IMPORT_C TPtr8 Des();
sl@0
   427
private:
sl@0
   428
	inline HBufC8(TInt aLength);
sl@0
   429
private:
sl@0
   430
	TText8 iBuf[1];
sl@0
   431
	__DECLARE_TEST;
sl@0
   432
	};
sl@0
   433
#endif
sl@0
   434
//
sl@0
   435
/**
sl@0
   436
@internalComponent
sl@0
   437
*/
sl@0
   438
#define __Size8 (sizeof(TInt)/sizeof(TInt8))
sl@0
   439
/**
sl@0
   440
@internalComponent
sl@0
   441
*/
sl@0
   442
#define __Align8(s) ((((s)+__Size8-1)/__Size8)*__Size8)
sl@0
   443
//
sl@0
   444
template <TInt S>
sl@0
   445
class TBufC8 : public TBufCBase8
sl@0
   446
/**
sl@0
   447
@publishedAll
sl@0
   448
@released
sl@0
   449
sl@0
   450
8-bit non-modifiable buffer descriptor. 
sl@0
   451
sl@0
   452
This is a descriptor class which provides a buffer of fixed length for
sl@0
   453
containing and accessing TUint8 data.
sl@0
   454
sl@0
   455
The class intended for instantiation. The 8-bit data that the descriptor
sl@0
   456
represents is part of the descriptor object itself. 
sl@0
   457
sl@0
   458
The class is templated, based on an integer value which defines the size of 
sl@0
   459
the descriptor's data area.
sl@0
   460
sl@0
   461
The data is intended to be accessed, but not modified; however, it can be 
sl@0
   462
completely replaced using the assignment operators of this class. The base 
sl@0
   463
class provides the functions through which the data is accessed.
sl@0
   464
sl@0
   465
@see TBufC
sl@0
   466
@see TDesC8
sl@0
   467
@see TPtr8
sl@0
   468
@see TUint8
sl@0
   469
*/
sl@0
   470
	{
sl@0
   471
public:
sl@0
   472
	inline TBufC8();
sl@0
   473
    inline TBufC8(const TUint8 *aString);
sl@0
   474
	inline TBufC8(const TDesC8 &aDes);
sl@0
   475
	inline TBufC8<S> &operator=(const TUint8 *aString);
sl@0
   476
	inline TBufC8<S> &operator=(const TDesC8 &aDes);
sl@0
   477
	inline TPtr8 Des();
sl@0
   478
protected:
sl@0
   479
	TUint8 iBuf[__Align8(S)];
sl@0
   480
	};
sl@0
   481
//
sl@0
   482
class TBufBase8 : public TDes8
sl@0
   483
/**
sl@0
   484
@internalAll
sl@0
   485
*/
sl@0
   486
	{
sl@0
   487
protected:
sl@0
   488
	IMPORT_C TBufBase8(TInt aMaxLength);
sl@0
   489
	IMPORT_C TBufBase8(TInt aLength,TInt aMaxLength);
sl@0
   490
	IMPORT_C TBufBase8(const TUint8* aString,TInt aMaxLength);
sl@0
   491
	IMPORT_C TBufBase8(const TDesC8& aDes,TInt aMaxLength);
sl@0
   492
	};
sl@0
   493
//
sl@0
   494
template <TInt S>
sl@0
   495
class TBuf8 : public TBufBase8
sl@0
   496
/**
sl@0
   497
@publishedAll
sl@0
   498
@released
sl@0
   499
sl@0
   500
A descriptor class which provides a buffer of fixed length for
sl@0
   501
containing, accessing and manipulating TUint8 data.
sl@0
   502
sl@0
   503
The class is intended for instantiation. The 8-bit data that the descriptor 
sl@0
   504
represents is part of the descriptor object itself.
sl@0
   505
sl@0
   506
The class is templated, based on an integer value which determines the size 
sl@0
   507
of the data area which is created as part of the buffer descriptor object; 
sl@0
   508
this is also the maximum length of the descriptor.
sl@0
   509
sl@0
   510
The data is intended to be both accessed and modified. The base classes provide 
sl@0
   511
the functions through which the data is accessed.
sl@0
   512
sl@0
   513
@see TBuf
sl@0
   514
@see TDesC8
sl@0
   515
@see TDes8
sl@0
   516
@see TPtr8
sl@0
   517
*/
sl@0
   518
	{
sl@0
   519
public:
sl@0
   520
	inline TBuf8();
sl@0
   521
	inline explicit TBuf8(TInt aLength);
sl@0
   522
    inline TBuf8(const TUint8* aString);
sl@0
   523
	inline TBuf8(const TDesC8& aDes);
sl@0
   524
	inline TBuf8<S>& operator=(const TUint8* aString);
sl@0
   525
	inline TBuf8<S>& operator=(const TDesC8& aDes);
sl@0
   526
	inline TBuf8<S>& operator=(const TBuf8<S>& aBuf);
sl@0
   527
protected:
sl@0
   528
	TUint8 iBuf[__Align8(S)];
sl@0
   529
	};
sl@0
   530
sl@0
   531
//
sl@0
   532
template <TInt S>
sl@0
   533
class TAlignedBuf8 : public TBufBase8
sl@0
   534
/**
sl@0
   535
@internalComponent
sl@0
   536
sl@0
   537
A descriptor class functionally identical to TBuf8, the only
sl@0
   538
difference from it being that TAlignedBuf8's internal buffer 
sl@0
   539
is guaranteed to be 64-bit aligned.
sl@0
   540
sl@0
   541
At present this class is not intended for general use. It exists
sl@0
   542
solely to support TPckgBuf which derives from it.
sl@0
   543
sl@0
   544
@see TBuf8
sl@0
   545
@see TPckgBuf
sl@0
   546
*/
sl@0
   547
{
sl@0
   548
public:
sl@0
   549
	inline TAlignedBuf8();
sl@0
   550
	inline explicit TAlignedBuf8(TInt aLength);
sl@0
   551
    inline TAlignedBuf8(const TUint8* aString);
sl@0
   552
	inline TAlignedBuf8(const TDesC8& aDes);
sl@0
   553
	inline TAlignedBuf8<S>& operator=(const TUint8* aString);
sl@0
   554
	inline TAlignedBuf8<S>& operator=(const TDesC8& aDes);
sl@0
   555
	inline TAlignedBuf8<S>& operator=(const TAlignedBuf8<S>& aBuf);
sl@0
   556
protected:
sl@0
   557
	union {
sl@0
   558
		double only_here_to_force_8byte_alignment;
sl@0
   559
		TUint8 iBuf[__Align8(S)];
sl@0
   560
	};
sl@0
   561
};
sl@0
   562
sl@0
   563
#ifndef __KERNEL_MODE__
sl@0
   564
sl@0
   565
class RBuf8 : public TDes8
sl@0
   566
/**
sl@0
   567
@publishedAll
sl@0
   568
@released
sl@0
   569
sl@0
   570
8 bit resizable buffer descriptor.
sl@0
   571
sl@0
   572
The class provides a buffer that contains, accesses and manipulates
sl@0
   573
TUint8 data. The buffer itself is on the heap, and is managed by the class.
sl@0
   574
sl@0
   575
Internally, RBuf8 behaves in one of two ways:
sl@0
   576
sl@0
   577
- as a TPtr8 descriptor type, where the buffer just contains data
sl@0
   578
- as a pointer to a heap descriptor, an HBufC8* type, where the buffer
sl@0
   579
  contains both	descriptor information and the data.
sl@0
   580
sl@0
   581
Note that the handling of the distinction is hidden from view.
sl@0
   582
sl@0
   583
An RBuf8 object can allocate its own buffer. Alternatively, it can take
sl@0
   584
ownership of a pre-existing section of allocated memory, or it can take
sl@0
   585
ownership of a pre-existing heap descriptor. It can also reallocate the buffer
sl@0
   586
to resize it. Regardless of the way in which the buffer has been allocated,
sl@0
   587
the RBuf8 object is responsible for freeing memory when the object itself is closed.
sl@0
   588
sl@0
   589
The class is intended for instantiation.
sl@0
   590
sl@0
   591
The class is derived from TDes8, which means that data can be both accessed
sl@0
   592
and modified. The base classes provide the functions through which the data is
sl@0
   593
accessed. In addition, an RBuf8 object can be passed to any function that is
sl@0
   594
prototyped to take a TDes8 or a TDesC8 type.
sl@0
   595
sl@0
   596
@see TBuf8
sl@0
   597
@see TPtr8
sl@0
   598
@see HBufC8
sl@0
   599
@see TDesC8
sl@0
   600
@see TDes8
sl@0
   601
*/
sl@0
   602
	{
sl@0
   603
public:
sl@0
   604
	IMPORT_C RBuf8();
sl@0
   605
	IMPORT_C explicit RBuf8(HBufC8* aHBuf);
sl@0
   606
	inline RBuf8& operator=(const TUint8* aString);
sl@0
   607
	inline RBuf8& operator=(const TDesC8& aDes);
sl@0
   608
	inline RBuf8& operator=(const RBuf8& aDes);
sl@0
   609
	IMPORT_C void Assign(const RBuf8& aRBuf);
sl@0
   610
	IMPORT_C void Assign(TUint8 *aHeapCell,TInt aMaxLength);
sl@0
   611
	IMPORT_C void Assign(TUint8 *aHeapCell,TInt aLength,TInt aMaxLength);
sl@0
   612
	IMPORT_C void Assign(HBufC8* aHBuf);
sl@0
   613
	IMPORT_C void Swap(RBuf8& aRBuf);
sl@0
   614
	IMPORT_C TInt Create(TInt aMaxLength);
sl@0
   615
	IMPORT_C void CreateL(TInt aMaxLength);
sl@0
   616
	IMPORT_C TInt CreateMax(TInt aMaxLength);
sl@0
   617
	IMPORT_C void CreateMaxL(TInt aMaxLength);
sl@0
   618
	inline void CreateL(RReadStream &aStream,TInt aMaxLength);
sl@0
   619
	IMPORT_C TInt Create(const TDesC8& aDes);
sl@0
   620
	IMPORT_C void CreateL(const TDesC8& aDes);
sl@0
   621
	IMPORT_C TInt Create(const TDesC8& aDes,TInt aMaxLength);
sl@0
   622
	IMPORT_C void CreateL(const TDesC8& aDes,TInt aMaxLength);
sl@0
   623
	IMPORT_C TInt ReAlloc(TInt aMaxLength);
sl@0
   624
	IMPORT_C void ReAllocL(TInt aMaxLength);
sl@0
   625
	IMPORT_C void Close();
sl@0
   626
	IMPORT_C void CleanupClosePushL();
sl@0
   627
sl@0
   628
protected:
sl@0
   629
	IMPORT_C RBuf8(TInt aType,TInt aLength,TInt aMaxLength);
sl@0
   630
	RBuf8(const RBuf8&); // Outlaw copy construction
sl@0
   631
	union
sl@0
   632
		{
sl@0
   633
		TUint8* iEPtrType;		//Pointer to data used when RBuf is of EPtr type
sl@0
   634
		HBufC8* iEBufCPtrType;	//Pointer to data used when RBuf is of EBufCPtr type
sl@0
   635
		};
sl@0
   636
	__DECLARE_TEST;
sl@0
   637
	};
sl@0
   638
sl@0
   639
#endif
sl@0
   640
sl@0
   641
/**
sl@0
   642
@publishedAll
sl@0
   643
@released
sl@0
   644
sl@0
   645
Value reference used in operator TLitC8::__TRefDesC8()
sl@0
   646
sl@0
   647
@see TRefByValue
sl@0
   648
*/
sl@0
   649
typedef TRefByValue<const TDesC8> __TRefDesC8;
sl@0
   650
sl@0
   651
sl@0
   652
sl@0
   653
sl@0
   654
template <TInt S>
sl@0
   655
class TLitC8
sl@0
   656
/**
sl@0
   657
@publishedAll
sl@0
   658
@released
sl@0
   659
sl@0
   660
Encapsulates literal text. 
sl@0
   661
sl@0
   662
This is always constructed using an _LIT8 macro.
sl@0
   663
sl@0
   664
This class is build independent; i.e. an explicit 8-bit build variant
sl@0
   665
is generated for both a non-Unicode build and a Unicode build.
sl@0
   666
sl@0
   667
The class has no explicit constructors.
sl@0
   668
sl@0
   669
@see _LIT8
sl@0
   670
*/
sl@0
   671
	{
sl@0
   672
public:
sl@0
   673
	inline const TDesC8* operator&() const;
sl@0
   674
	inline operator const TDesC8&() const;
sl@0
   675
	inline const TDesC8& operator()() const;
sl@0
   676
	inline operator const __TRefDesC8() const;
sl@0
   677
public:
sl@0
   678
    /**
sl@0
   679
    @internalComponent
sl@0
   680
    */
sl@0
   681
	TUint iTypeLength;
sl@0
   682
	
sl@0
   683
	/**
sl@0
   684
    @internalComponent
sl@0
   685
    */
sl@0
   686
	TText8 iBuf[__Align8(S)];
sl@0
   687
	};
sl@0
   688
sl@0
   689
#ifndef SYMBIAN_ENABLE_SPLIT_HEADERS
sl@0
   690
#include <e32des8_private.h>
sl@0
   691
#endif
sl@0
   692
sl@0
   693
#endif