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