os/security/securityanddataprivacytools/securitytools/certapp/store--/e32base.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
#ifndef __e32base_h__
sl@0
     2
#define __e32base_h__/*
sl@0
     3
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     4
* All rights reserved.
sl@0
     5
* This component and the accompanying materials are made available
sl@0
     6
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     7
* which accompanies this distribution, and is available
sl@0
     8
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     9
*
sl@0
    10
* Initial Contributors:
sl@0
    11
* Nokia Corporation - initial contribution.
sl@0
    12
*
sl@0
    13
* Contributors:
sl@0
    14
*
sl@0
    15
* Description: 
sl@0
    16
*
sl@0
    17
*/
sl@0
    18
sl@0
    19
sl@0
    20
/**
sl@0
    21
 @file
sl@0
    22
 @internalComponent
sl@0
    23
*/
sl@0
    24
sl@0
    25
#include <string>
sl@0
    26
#include <vector>
sl@0
    27
#include <stdint.h>
sl@0
    28
#define __ASSERT_ALWAYS(cond, func) if(!(cond)) func
sl@0
    29
#define __ASSERT_DEBUG(cond, func) if(!(cond)) func
sl@0
    30
#define REINTERPRET_CAST(type,val) reinterpret_cast<type>(val)
sl@0
    31
#define CleanupClosePushL(xx) 
sl@0
    32
#define _LIT(name,str)  TLIT16 name(str)
sl@0
    33
#define _LIT16(name,str)  TLIT16 name(str)
sl@0
    34
#define _LIT8(name,str)  TLIT8 name(str)
sl@0
    35
#define _L8(str) TLIT8(str)
sl@0
    36
#define _L16(str) TLIT16(str)
sl@0
    37
//#define _L(str) TLIT16(str)
sl@0
    38
#define LOCAL_C static
sl@0
    39
#define GLDEF_C
sl@0
    40
#define IMPORT_C
sl@0
    41
#define EXPORT_C
sl@0
    42
#define __UHEAP_MARK
sl@0
    43
#define __UHEAP_MARKEND
sl@0
    44
#define __LEAVE(err) FatalError()	
sl@0
    45
sl@0
    46
extern void FatalError();
sl@0
    47
sl@0
    48
typedef uint64_t TUint64;
sl@0
    49
typedef int64_t TInt64;
sl@0
    50
sl@0
    51
typedef	int	TInt32;
sl@0
    52
typedef	unsigned int TUint32;
sl@0
    53
sl@0
    54
typedef	short TInt16;
sl@0
    55
typedef	unsigned short TUint16;
sl@0
    56
sl@0
    57
typedef	signed char	TInt8;
sl@0
    58
typedef	unsigned char TUint8;
sl@0
    59
sl@0
    60
typedef	TUint32 TChar;
sl@0
    61
sl@0
    62
typedef	int TBool;
sl@0
    63
sl@0
    64
typedef void TAny;
sl@0
    65
sl@0
    66
#define _MAKE_TINT64_ZX(x)	((TInt64)((TUint32)(x)))
sl@0
    67
#define _MAKE_TUINT64_ZX(x)	((TUint64)((TUint32)(x)))
sl@0
    68
#define MAKE_TINT64(h,l)	( (_MAKE_TINT64_ZX(h)<<32) | _MAKE_TINT64_ZX(l) )
sl@0
    69
#define MAKE_TUINT64(h,l)	( (_MAKE_TUINT64_ZX(h)<<32) | _MAKE_TUINT64_ZX(l) )
sl@0
    70
sl@0
    71
sl@0
    72
#define	I64HIGH(x)			( (TUint32)((x)>>32) )
sl@0
    73
#define	I64LOW(x)			( (TUint32)(x) )
sl@0
    74
#define	I64INT(x)			( (TInt)(x) )
sl@0
    75
sl@0
    76
sl@0
    77
typedef unsigned short int TText16;
sl@0
    78
typedef TText16 TText;
sl@0
    79
typedef int TInt;
sl@0
    80
typedef unsigned int TUint;
sl@0
    81
sl@0
    82
#define __Size (sizeof(TUint)/sizeof(TUint16))
sl@0
    83
#define __Align(s) ((((s)+__Size-1)/__Size)*__Size)
sl@0
    84
sl@0
    85
/** The largest integer value which can be stored as a TCardinality type. */
sl@0
    86
const TInt KMaxCardinality=0x1fffffff;
sl@0
    87
const TInt KMaxName=0x80;
sl@0
    88
sl@0
    89
#define FALSE false
sl@0
    90
#define TRUE true
sl@0
    91
enum TFalse {
sl@0
    92
            EFalse=FALSE
sl@0
    93
            };
sl@0
    94
enum TTrue {
sl@0
    95
           ETrue=TRUE
sl@0
    96
           };
sl@0
    97
sl@0
    98
#ifndef _FOFF
sl@0
    99
#if __GNUC__ < 4
sl@0
   100
#define _FOFF(c,f)			(((TInt)&(((c *)0x1000)->f))-0x1000)
sl@0
   101
#else
sl@0
   102
#define _FOFF(c,f)			(((TInt)&(((c *)0x1000)->f))-0x1000)
sl@0
   103
// __builtin_offset will issue warning of there are any member functions...
sl@0
   104
//#define _FOFF(c,f)			__builtin_offsetof(c,f)
sl@0
   105
#endif
sl@0
   106
#endif
sl@0
   107
sl@0
   108
sl@0
   109
const TInt KMaxTInt8=0x7f;
sl@0
   110
const TInt KMinTInt8=(-128);
sl@0
   111
const TUint KMaxTUint8=0xffu;
sl@0
   112
const TInt KMaxTInt16=0x7fff;
sl@0
   113
const TInt KMinTInt16=(-32768);
sl@0
   114
const TUint KMaxTUint16=0xffffu;
sl@0
   115
const TInt KMaxTInt32=0x7fffffff;
sl@0
   116
const TInt KMinTInt32=(TInt)0x80000000;
sl@0
   117
const TUint KMaxTUint32=0xffffffffu;
sl@0
   118
const TInt KMaxTInt=0x7fffffff;
sl@0
   119
const TInt KMinTInt=(TInt)0x80000000;
sl@0
   120
const TUint KMaxTUint=0xffffffffu;
sl@0
   121
//const TInt64 KMaxTInt64 = I64LIT(0x7fffffffffffffff);
sl@0
   122
//const TInt64 KMinTInt64 = UI64LIT(0x8000000000000000);
sl@0
   123
//const TUint64 KMaxTUint64 = UI64LIT(0xffffffffffffffff);
sl@0
   124
sl@0
   125
sl@0
   126
sl@0
   127
sl@0
   128
class TSize
sl@0
   129
	{
sl@0
   130
public:
sl@0
   131
	TSize() 
sl@0
   132
		{
sl@0
   133
		iWidth=0;
sl@0
   134
		iHeight=0;
sl@0
   135
		}
sl@0
   136
	TSize(TInt aWidth, TInt aHeight)
sl@0
   137
		: iWidth(aWidth), iHeight(aHeight)
sl@0
   138
		{
sl@0
   139
		}
sl@0
   140
private:
sl@0
   141
	TInt iWidth;
sl@0
   142
	TInt iHeight;
sl@0
   143
	};
sl@0
   144
sl@0
   145
class TDesC8
sl@0
   146
	{
sl@0
   147
public:
sl@0
   148
	
sl@0
   149
	TInt Length() const
sl@0
   150
		{
sl@0
   151
			return iCurrentLength;
sl@0
   152
		}
sl@0
   153
	
sl@0
   154
	TInt Size() const
sl@0
   155
		{
sl@0
   156
			return iCurrentLength;
sl@0
   157
		}
sl@0
   158
sl@0
   159
	virtual const TUint8 *Ptr() const = 0;
sl@0
   160
	virtual const TUint8 &operator[](TInt anIndex) const = 0;
sl@0
   161
sl@0
   162
	TBool operator==(const TDesC8 &aDes) const;
sl@0
   163
	
sl@0
   164
protected:
sl@0
   165
	TDesC8();
sl@0
   166
	TDesC8(const TDesC8 &aRef);
sl@0
   167
	TDesC8(TInt aLength);
sl@0
   168
	TInt iCurrentLength;
sl@0
   169
sl@0
   170
sl@0
   171
private:
sl@0
   172
	// Assignment is not publicly available
sl@0
   173
	TDesC8 &operator=(const TDesC8 &aRhs);
sl@0
   174
	};
sl@0
   175
sl@0
   176
class TDesC16;
sl@0
   177
class TDes8 : public TDesC8
sl@0
   178
	{
sl@0
   179
public:
sl@0
   180
sl@0
   181
	void Copy(const TDesC16 &aDes);
sl@0
   182
	virtual void Append(TChar aChar) = 0;
sl@0
   183
	TInt MaxLength() const
sl@0
   184
		{
sl@0
   185
			return iMaxLength;
sl@0
   186
		}
sl@0
   187
sl@0
   188
	TInt MaxSize() const
sl@0
   189
		{
sl@0
   190
			return iMaxLength;
sl@0
   191
		}
sl@0
   192
	
sl@0
   193
	void SetLength(TInt aLength);
sl@0
   194
sl@0
   195
protected:
sl@0
   196
	TDes8();
sl@0
   197
	TDes8(const TDes8 &aRef);
sl@0
   198
	TDes8(TInt aLength,TInt aMaxLength);
sl@0
   199
	TInt iMaxLength;
sl@0
   200
sl@0
   201
private:
sl@0
   202
	// Copy construction and assignment not supported
sl@0
   203
	TDes8 &operator=(const TDes8 &aRhs);
sl@0
   204
	};
sl@0
   205
sl@0
   206
class TPtr8 : public TDes8
sl@0
   207
	{
sl@0
   208
public:
sl@0
   209
	TPtr8(TUint8 *aBuf, TInt aLength, TInt aMaxLength)
sl@0
   210
		: TDes8(aLength, aMaxLength), iPtr(aBuf)
sl@0
   211
		{
sl@0
   212
		}
sl@0
   213
	TPtr8(TUint8 *aBuf, TInt aMaxLength)
sl@0
   214
		: TDes8(0, aMaxLength), iPtr(aBuf)
sl@0
   215
		{
sl@0
   216
		}
sl@0
   217
sl@0
   218
	TPtr8(const TPtr8 &aRhs); // Points at same data
sl@0
   219
	TPtr8 &operator=(const TPtr8 &aRhs); // copies data
sl@0
   220
sl@0
   221
	virtual const TUint8 *Ptr() const;
sl@0
   222
	virtual const TUint8 &operator[](TInt anIndex) const;
sl@0
   223
sl@0
   224
	virtual void Append(TChar aChar);
sl@0
   225
sl@0
   226
protected:
sl@0
   227
	TUint8 *iPtr;
sl@0
   228
	};
sl@0
   229
sl@0
   230
class TPtrC8 : public TDesC8
sl@0
   231
	{
sl@0
   232
public:
sl@0
   233
	TPtrC8(const TUint8 *aBuf, TInt aLength)
sl@0
   234
		: TDesC8(aLength), iPtr(aBuf)
sl@0
   235
		{
sl@0
   236
		}
sl@0
   237
	TPtrC8(const TPtrC8 &aRhs); // Points at same data
sl@0
   238
	TPtrC8 &operator=(const TPtrC8 &aRhs); // copies data
sl@0
   239
	void Set(TUint8 *aBuf, TInt aLength);
sl@0
   240
sl@0
   241
	virtual const TUint8 *Ptr() const;
sl@0
   242
	virtual const TUint8 &operator[](TInt anIndex) const;
sl@0
   243
sl@0
   244
protected:
sl@0
   245
	const TUint8 *iPtr;
sl@0
   246
	};
sl@0
   247
sl@0
   248
class TDesC16
sl@0
   249
	{
sl@0
   250
public:
sl@0
   251
	TInt Length() const
sl@0
   252
		{
sl@0
   253
			return iCurrentLength;
sl@0
   254
		}
sl@0
   255
	
sl@0
   256
	TInt Size() const
sl@0
   257
		{
sl@0
   258
			return iCurrentLength * sizeof(TUint16);
sl@0
   259
		}
sl@0
   260
sl@0
   261
	virtual const TUint16 *Ptr() const = 0;
sl@0
   262
	virtual const TUint16 &operator[](TInt anIndex) const = 0;
sl@0
   263
sl@0
   264
	TBool operator==(const TDesC8 &aDes) const;
sl@0
   265
sl@0
   266
protected:
sl@0
   267
	TDesC16();
sl@0
   268
	TDesC16(const TDesC16 &aRef);
sl@0
   269
	TDesC16( TInt aLength);
sl@0
   270
	TInt iCurrentLength;
sl@0
   271
sl@0
   272
private:
sl@0
   273
	// Disable assignment
sl@0
   274
	TDesC16 &operator=(const TDesC16 &aRhs);
sl@0
   275
	};
sl@0
   276
sl@0
   277
class TDes16 : public TDesC16
sl@0
   278
	{
sl@0
   279
public:
sl@0
   280
	TInt MaxLength() const 
sl@0
   281
		{
sl@0
   282
			return iMaxLength;
sl@0
   283
		}
sl@0
   284
	TInt MaxSize() const 
sl@0
   285
		{
sl@0
   286
			return iMaxLength * sizeof(TUint16);
sl@0
   287
		}
sl@0
   288
	void SetLength(TInt aLength);
sl@0
   289
sl@0
   290
	virtual void Append(TChar aChar) = 0;
sl@0
   291
sl@0
   292
protected:
sl@0
   293
	TDes16();
sl@0
   294
	TDes16(const TDes16 &aRef);
sl@0
   295
	TDes16(TInt aLength, TInt aMaxLength);
sl@0
   296
	TInt iMaxLength;
sl@0
   297
private:
sl@0
   298
	// Disabled assignment
sl@0
   299
	TDes16 &operator=(const TDes16 &aRhs);
sl@0
   300
	};
sl@0
   301
sl@0
   302
class TPtr16 : public TDes16
sl@0
   303
	{
sl@0
   304
public:
sl@0
   305
	TPtr16(TUint16 *aBuf, TInt aLength, TInt aMaxLength)
sl@0
   306
		: TDes16(aLength, aMaxLength), iPtr(aBuf)
sl@0
   307
		{
sl@0
   308
		}
sl@0
   309
	TPtr16(TUint16 *aBuf, TInt aMaxLength)
sl@0
   310
		: TDes16(0, aMaxLength), iPtr(aBuf)
sl@0
   311
		{
sl@0
   312
		}
sl@0
   313
	TPtr16(const TPtr16 &aRhs); // Points at same data
sl@0
   314
	TPtr16 &operator=(const TPtr16 &aRhs); // copies data
sl@0
   315
sl@0
   316
	void Copy(const TDesC8 &aDes);
sl@0
   317
sl@0
   318
	virtual const TUint16 *Ptr() const;
sl@0
   319
	virtual const TUint16 &operator[](TInt anIndex) const;
sl@0
   320
	virtual void Append(TChar aChar);
sl@0
   321
	
sl@0
   322
protected:
sl@0
   323
	TUint16 *iPtr;
sl@0
   324
	};
sl@0
   325
sl@0
   326
class TPtrC16 : public TDesC16
sl@0
   327
	{
sl@0
   328
public:
sl@0
   329
	TPtrC16(const TUint16 *aBuf, TInt aLength)
sl@0
   330
		: TDesC16(aLength), iPtr(aBuf)
sl@0
   331
		{
sl@0
   332
		}
sl@0
   333
	TPtrC16(const TPtrC16 &aRhs); // Points at same data
sl@0
   334
	TPtrC16 &operator=(const TPtrC16 &aRhs); // copies data
sl@0
   335
sl@0
   336
	void Set(TUint16 *aBuf, TInt aLength);
sl@0
   337
sl@0
   338
	virtual const TUint16 *Ptr() const;
sl@0
   339
sl@0
   340
	virtual const TUint16 &operator[](TInt anIndex) const;
sl@0
   341
	
sl@0
   342
protected:
sl@0
   343
	const TUint16 *iPtr;
sl@0
   344
	};
sl@0
   345
sl@0
   346
sl@0
   347
typedef TDesC16 TDesC;
sl@0
   348
sl@0
   349
/**
sl@0
   350
Packages a modifiable pointer descriptor which represents an object of specific 
sl@0
   351
type.
sl@0
   352
sl@0
   353
The template parameter defines the type of object.
sl@0
   354
sl@0
   355
The object represented by the packaged pointer descriptor is accessible through 
sl@0
   356
the package.
sl@0
   357
*/
sl@0
   358
template <class T>
sl@0
   359
class TPckg : public TPtr8
sl@0
   360
	{
sl@0
   361
public:
sl@0
   362
	inline TPckg(const T& aRef);
sl@0
   363
	inline T& operator()();
sl@0
   364
private:
sl@0
   365
	TPckg<T>& operator=(const TPckg<T>& aRef);
sl@0
   366
	};
sl@0
   367
sl@0
   368
// Template class TPckg
sl@0
   369
template <class T>
sl@0
   370
inline TPckg<T>::TPckg(const T &aRef)
sl@0
   371
	: TPtr8((TUint8 *)&aRef,sizeof(T),sizeof(T))
sl@0
   372
/**
sl@0
   373
Constructs a packaged modifiable pointer descriptor to represent the specified 
sl@0
   374
object whose type is defined by the template parameter.
sl@0
   375
sl@0
   376
@param aRef The object to be represented by this packaged modifiable pointer 
sl@0
   377
            descriptor.
sl@0
   378
*/
sl@0
   379
	{}
sl@0
   380
sl@0
   381
template <class T>
sl@0
   382
inline T &TPckg<T>::operator()()
sl@0
   383
/**
sl@0
   384
Gets a reference to the object represented by this packaged
sl@0
   385
modifiable pointer descriptor.
sl@0
   386
sl@0
   387
@return The packaged object.
sl@0
   388
*/
sl@0
   389
	{return(*((T *)iPtr));}
sl@0
   390
sl@0
   391
sl@0
   392
sl@0
   393
sl@0
   394
sl@0
   395
// TLIT16 is an internal port class
sl@0
   396
class TLIT16
sl@0
   397
	{
sl@0
   398
public:
sl@0
   399
	TLIT16(const char *aStr);
sl@0
   400
	TLIT16(const TLIT16 &);
sl@0
   401
	virtual ~TLIT16();
sl@0
   402
	const TDesC16* operator&() const;
sl@0
   403
	operator const TDesC16&() const;
sl@0
   404
	const TDesC16& operator()() const;
sl@0
   405
private:
sl@0
   406
	TLIT16 &operator=(const TLIT16 &);
sl@0
   407
	TPtrC16 iDes;
sl@0
   408
	};
sl@0
   409
sl@0
   410
// TLIT8 is an internal port class
sl@0
   411
class TLIT8 : public TPtrC8
sl@0
   412
	{
sl@0
   413
public:
sl@0
   414
	TLIT8(const char *aStr);
sl@0
   415
	TLIT8(const TLIT8 &);
sl@0
   416
	};
sl@0
   417
sl@0
   418
sl@0
   419
sl@0
   420
template <TInt S>
sl@0
   421
class TBuf : public TPtr16
sl@0
   422
	{
sl@0
   423
public:
sl@0
   424
	inline TBuf();
sl@0
   425
	inline explicit TBuf(TInt aLength);
sl@0
   426
	inline TBuf(const TDesC& aDes);
sl@0
   427
private:
sl@0
   428
	TText iBuf[__Align(S)];
sl@0
   429
	};
sl@0
   430
sl@0
   431
template <TInt S>TBuf<S>::TBuf()
sl@0
   432
	: TPtr16(iBuf, 0, S)
sl@0
   433
{
sl@0
   434
}
sl@0
   435
sl@0
   436
template <TInt S>TBuf<S>::TBuf(TInt aLength)
sl@0
   437
	: TPtr16(iBuf, aLength, S)
sl@0
   438
{
sl@0
   439
}
sl@0
   440
sl@0
   441
template <TInt S>TBuf<S>::TBuf(const TDesC& aDes)
sl@0
   442
	: TPtr16(iBuf, aDes.Length(), S)
sl@0
   443
{
sl@0
   444
	if(aDes.Length() > S) FatalError();
sl@0
   445
	memcpy(iBuf, aDes.Ptr(), aDes.Length()*2); // *2 for 16 bit copy
sl@0
   446
}
sl@0
   447
sl@0
   448
sl@0
   449
template <TInt S>
sl@0
   450
class TBuf8 : public TPtr8
sl@0
   451
	{
sl@0
   452
public:
sl@0
   453
	inline TBuf8();
sl@0
   454
	inline explicit TBuf8(TInt aLength);
sl@0
   455
	inline TBuf8(const TDesC8& aDes);
sl@0
   456
private:
sl@0
   457
	TUint8 iBuf[__Align(S)];
sl@0
   458
	};
sl@0
   459
sl@0
   460
template <TInt S>TBuf8<S>::TBuf8()
sl@0
   461
	: TPtr8(iBuf, 0, S)
sl@0
   462
{
sl@0
   463
}
sl@0
   464
sl@0
   465
template <TInt S>TBuf8<S>::TBuf8(TInt aLength)
sl@0
   466
	: TPtr8(iBuf, aLength, S)
sl@0
   467
{
sl@0
   468
}
sl@0
   469
sl@0
   470
template <TInt S>TBuf8<S>::TBuf8(const TDesC8& aDes)
sl@0
   471
	: TPtr8(iBuf, aDes.Length(), S)
sl@0
   472
{
sl@0
   473
	if(aDes.Length() > S) FatalError();
sl@0
   474
	memcpy(iBuf, aDes.Ptr(), aDes.Length());
sl@0
   475
}
sl@0
   476
sl@0
   477
sl@0
   478
typedef TBuf<KMaxName> TName;
sl@0
   479
sl@0
   480
class TUid
sl@0
   481
	{
sl@0
   482
public:
sl@0
   483
	enum { KNullUidValue };
sl@0
   484
	
sl@0
   485
	static TUid Uid(TInt aUid)
sl@0
   486
		{TUid uid={aUid};return uid;}
sl@0
   487
sl@0
   488
	static TUid Null()
sl@0
   489
		{TUid uid={KNullUidValue};return uid;}
sl@0
   490
sl@0
   491
	TBool operator==(const TUid &aUid) const
sl@0
   492
		{
sl@0
   493
		return iUid == aUid.iUid;
sl@0
   494
		}
sl@0
   495
sl@0
   496
	TBool operator!=(const TUid &aUid) const
sl@0
   497
		{
sl@0
   498
		return iUid != aUid.iUid;
sl@0
   499
		}
sl@0
   500
	
sl@0
   501
sl@0
   502
	TInt32 iUid;
sl@0
   503
	};
sl@0
   504
sl@0
   505
const TInt KMaxCheckedUid=3;
sl@0
   506
sl@0
   507
sl@0
   508
class TUidType
sl@0
   509
	{
sl@0
   510
public:
sl@0
   511
#ifndef __KERNEL_MODE__
sl@0
   512
	IMPORT_C TUidType();
sl@0
   513
	IMPORT_C TUidType(TUid aUid1);
sl@0
   514
	IMPORT_C TUidType(TUid aUid1,TUid aUid2);
sl@0
   515
	IMPORT_C TUidType(TUid aUid1,TUid aUid2,TUid aUid3);
sl@0
   516
	IMPORT_C TBool operator==(const TUidType& aUidType) const;
sl@0
   517
	IMPORT_C TBool operator!=(const TUidType& aUidType) const;
sl@0
   518
	IMPORT_C const TUid& operator[](TInt anIndex) const;
sl@0
   519
	IMPORT_C TUid MostDerived() const;
sl@0
   520
	IMPORT_C TBool IsPresent(TUid aUid) const;
sl@0
   521
	IMPORT_C TBool IsValid() const;
sl@0
   522
private:
sl@0
   523
#endif
sl@0
   524
	TUid iUid[KMaxCheckedUid];
sl@0
   525
	};
sl@0
   526
sl@0
   527
class TCheckedUid
sl@0
   528
	{
sl@0
   529
public:
sl@0
   530
	IMPORT_C TCheckedUid();
sl@0
   531
	IMPORT_C TCheckedUid(const TUidType& aUidType);
sl@0
   532
	IMPORT_C TCheckedUid(const TDesC8& aPtr);
sl@0
   533
	IMPORT_C void Set(const TUidType& aUidType);
sl@0
   534
	IMPORT_C void Set(const TDesC8& aPtr);
sl@0
   535
	IMPORT_C TPtrC8 Des() const;
sl@0
   536
	const TUidType& UidType() const {return iType;};
sl@0
   537
protected:
sl@0
   538
	IMPORT_C TUint Check() const;
sl@0
   539
private:
sl@0
   540
	TUidType iType;
sl@0
   541
	TUint iCheck;
sl@0
   542
	};
sl@0
   543
sl@0
   544
sl@0
   545
sl@0
   546
class RArrayBase
sl@0
   547
	{
sl@0
   548
public:
sl@0
   549
	virtual ~RArrayBase() {}
sl@0
   550
	virtual void Close() = 0;
sl@0
   551
	};
sl@0
   552
sl@0
   553
template<typename T> class RArray : public RArrayBase
sl@0
   554
	{
sl@0
   555
public:
sl@0
   556
	RArray();
sl@0
   557
	explicit RArray(TInt);
sl@0
   558
	TInt Count() const;
sl@0
   559
	const T& operator[](TInt aIndex) const;
sl@0
   560
	T& operator[](TInt aIndex);
sl@0
   561
	void Remove(TInt aIndex);
sl@0
   562
	void AppendL(const T &aEntry);
sl@0
   563
	virtual void Close() {vec.clear();};
sl@0
   564
private:
sl@0
   565
	typedef std::vector<T> VectorT;
sl@0
   566
	VectorT vec;
sl@0
   567
	};
sl@0
   568
sl@0
   569
class Mem
sl@0
   570
	{
sl@0
   571
public:
sl@0
   572
	static void FillZ(TAny *aTrg, TInt aLength);
sl@0
   573
	static void Crc(TUint16& aCrc,const TAny* aPtr,TInt aLength);
sl@0
   574
	static void Crc32(TUint32& aCrc, const TAny* aPtr, TInt aLength);
sl@0
   575
	static TUint8* Move(TAny *aTrg, const TAny *aSrc, TInt aLength);
sl@0
   576
	};
sl@0
   577
sl@0
   578
void Panic(TInt aCode);
sl@0
   579
sl@0
   580
sl@0
   581
#define KNullUid TUid::Null()
sl@0
   582
sl@0
   583
class RWriteStream;
sl@0
   584
class RReadStream;
sl@0
   585
class CFileStore;
sl@0
   586
class CConsoleBase;
sl@0
   587
class RFs;
sl@0
   588
class CleanupStack
sl@0
   589
	{
sl@0
   590
public:
sl@0
   591
	static void PopAndDestroy(RWriteStream *aStream);
sl@0
   592
	static void PopAndDestroy(RReadStream *aStream);
sl@0
   593
	static void PopAndDestroy(CFileStore *aStore);
sl@0
   594
	static void PopAndDestroy(RArrayBase *aRArray);
sl@0
   595
	static void PopAndDestroy(CConsoleBase *aCons);
sl@0
   596
	static void PopAndDestroy(RFs *aFs);
sl@0
   597
	static void PushL(void *)
sl@0
   598
		{
sl@0
   599
		}
sl@0
   600
	
sl@0
   601
	
sl@0
   602
	};
sl@0
   603
sl@0
   604
sl@0
   605
class User
sl@0
   606
	{
sl@0
   607
public:
sl@0
   608
	static void LeaveIfError(TInt aError);
sl@0
   609
	static void Leave(TInt aError); // Not supported!!!!
sl@0
   610
	static void Invariant();
sl@0
   611
	static void Panic(const TDesC &aCategory, TInt aReason);
sl@0
   612
	};
sl@0
   613
sl@0
   614
sl@0
   615
sl@0
   616
template <typename T> RArray<T>::RArray()
sl@0
   617
	{
sl@0
   618
	}
sl@0
   619
sl@0
   620
template<typename T> RArray<T>::RArray(TInt)
sl@0
   621
	{
sl@0
   622
	}
sl@0
   623
	
sl@0
   624
template<typename T> TInt RArray<T>::Count() const
sl@0
   625
	{
sl@0
   626
	return vec.size();
sl@0
   627
	}
sl@0
   628
sl@0
   629
sl@0
   630
template<typename T> const T& RArray<T>::operator[](TInt aIndex) const
sl@0
   631
	{
sl@0
   632
	return vec[aIndex];
sl@0
   633
	}
sl@0
   634
sl@0
   635
template<typename T> T& RArray<T>::operator[](TInt aIndex)
sl@0
   636
	{
sl@0
   637
	return vec[aIndex];
sl@0
   638
	}
sl@0
   639
sl@0
   640
sl@0
   641
template<typename T> void RArray<T>::Remove(TInt aIndex)
sl@0
   642
	{
sl@0
   643
	typename std::vector<T>::itrator it = vec.begin();
sl@0
   644
	while(aIndex) ++it;
sl@0
   645
	vec.erase(it);
sl@0
   646
	}
sl@0
   647
sl@0
   648
template<typename T> void RArray<T>::AppendL(const T &aEntry)
sl@0
   649
	{
sl@0
   650
	vec.push_back(aEntry);
sl@0
   651
	}
sl@0
   652
sl@0
   653
#endif