Update contrib.
2 #define __e32base_h__/*
3 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
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".
10 * Initial Contributors:
11 * Nokia Corporation - initial contribution.
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
43 #define __UHEAP_MARKEND
44 #define __LEAVE(err) FatalError()
46 extern void FatalError();
48 typedef uint64_t TUint64;
49 typedef int64_t TInt64;
52 typedef unsigned int TUint32;
55 typedef unsigned short TUint16;
57 typedef signed char TInt8;
58 typedef unsigned char TUint8;
60 typedef TUint32 TChar;
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) )
72 #define I64HIGH(x) ( (TUint32)((x)>>32) )
73 #define I64LOW(x) ( (TUint32)(x) )
74 #define I64INT(x) ( (TInt)(x) )
77 typedef unsigned short int TText16;
78 typedef TText16 TText;
80 typedef unsigned int TUint;
82 #define __Size (sizeof(TUint)/sizeof(TUint16))
83 #define __Align(s) ((((s)+__Size-1)/__Size)*__Size)
85 /** The largest integer value which can be stored as a TCardinality type. */
86 const TInt KMaxCardinality=0x1fffffff;
87 const TInt KMaxName=0x80;
100 #define _FOFF(c,f) (((TInt)&(((c *)0x1000)->f))-0x1000)
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)
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);
136 TSize(TInt aWidth, TInt aHeight)
137 : iWidth(aWidth), iHeight(aHeight)
151 return iCurrentLength;
156 return iCurrentLength;
159 virtual const TUint8 *Ptr() const = 0;
160 virtual const TUint8 &operator[](TInt anIndex) const = 0;
162 TBool operator==(const TDesC8 &aDes) const;
166 TDesC8(const TDesC8 &aRef);
167 TDesC8(TInt aLength);
172 // Assignment is not publicly available
173 TDesC8 &operator=(const TDesC8 &aRhs);
177 class TDes8 : public TDesC8
181 void Copy(const TDesC16 &aDes);
182 virtual void Append(TChar aChar) = 0;
183 TInt MaxLength() const
193 void SetLength(TInt aLength);
197 TDes8(const TDes8 &aRef);
198 TDes8(TInt aLength,TInt aMaxLength);
202 // Copy construction and assignment not supported
203 TDes8 &operator=(const TDes8 &aRhs);
206 class TPtr8 : public TDes8
209 TPtr8(TUint8 *aBuf, TInt aLength, TInt aMaxLength)
210 : TDes8(aLength, aMaxLength), iPtr(aBuf)
213 TPtr8(TUint8 *aBuf, TInt aMaxLength)
214 : TDes8(0, aMaxLength), iPtr(aBuf)
218 TPtr8(const TPtr8 &aRhs); // Points at same data
219 TPtr8 &operator=(const TPtr8 &aRhs); // copies data
221 virtual const TUint8 *Ptr() const;
222 virtual const TUint8 &operator[](TInt anIndex) const;
224 virtual void Append(TChar aChar);
230 class TPtrC8 : public TDesC8
233 TPtrC8(const TUint8 *aBuf, TInt aLength)
234 : TDesC8(aLength), iPtr(aBuf)
237 TPtrC8(const TPtrC8 &aRhs); // Points at same data
238 TPtrC8 &operator=(const TPtrC8 &aRhs); // copies data
239 void Set(TUint8 *aBuf, TInt aLength);
241 virtual const TUint8 *Ptr() const;
242 virtual const TUint8 &operator[](TInt anIndex) const;
253 return iCurrentLength;
258 return iCurrentLength * sizeof(TUint16);
261 virtual const TUint16 *Ptr() const = 0;
262 virtual const TUint16 &operator[](TInt anIndex) const = 0;
264 TBool operator==(const TDesC8 &aDes) const;
268 TDesC16(const TDesC16 &aRef);
269 TDesC16( TInt aLength);
273 // Disable assignment
274 TDesC16 &operator=(const TDesC16 &aRhs);
277 class TDes16 : public TDesC16
280 TInt MaxLength() const
286 return iMaxLength * sizeof(TUint16);
288 void SetLength(TInt aLength);
290 virtual void Append(TChar aChar) = 0;
294 TDes16(const TDes16 &aRef);
295 TDes16(TInt aLength, TInt aMaxLength);
298 // Disabled assignment
299 TDes16 &operator=(const TDes16 &aRhs);
302 class TPtr16 : public TDes16
305 TPtr16(TUint16 *aBuf, TInt aLength, TInt aMaxLength)
306 : TDes16(aLength, aMaxLength), iPtr(aBuf)
309 TPtr16(TUint16 *aBuf, TInt aMaxLength)
310 : TDes16(0, aMaxLength), iPtr(aBuf)
313 TPtr16(const TPtr16 &aRhs); // Points at same data
314 TPtr16 &operator=(const TPtr16 &aRhs); // copies data
316 void Copy(const TDesC8 &aDes);
318 virtual const TUint16 *Ptr() const;
319 virtual const TUint16 &operator[](TInt anIndex) const;
320 virtual void Append(TChar aChar);
326 class TPtrC16 : public TDesC16
329 TPtrC16(const TUint16 *aBuf, TInt aLength)
330 : TDesC16(aLength), iPtr(aBuf)
333 TPtrC16(const TPtrC16 &aRhs); // Points at same data
334 TPtrC16 &operator=(const TPtrC16 &aRhs); // copies data
336 void Set(TUint16 *aBuf, TInt aLength);
338 virtual const TUint16 *Ptr() const;
340 virtual const TUint16 &operator[](TInt anIndex) const;
347 typedef TDesC16 TDesC;
350 Packages a modifiable pointer descriptor which represents an object of specific
353 The template parameter defines the type of object.
355 The object represented by the packaged pointer descriptor is accessible through
359 class TPckg : public TPtr8
362 inline TPckg(const T& aRef);
363 inline T& operator()();
365 TPckg<T>& operator=(const TPckg<T>& aRef);
368 // Template class TPckg
370 inline TPckg<T>::TPckg(const T &aRef)
371 : TPtr8((TUint8 *)&aRef,sizeof(T),sizeof(T))
373 Constructs a packaged modifiable pointer descriptor to represent the specified
374 object whose type is defined by the template parameter.
376 @param aRef The object to be represented by this packaged modifiable pointer
382 inline T &TPckg<T>::operator()()
384 Gets a reference to the object represented by this packaged
385 modifiable pointer descriptor.
387 @return The packaged object.
389 {return(*((T *)iPtr));}
395 // TLIT16 is an internal port class
399 TLIT16(const char *aStr);
400 TLIT16(const TLIT16 &);
402 const TDesC16* operator&() const;
403 operator const TDesC16&() const;
404 const TDesC16& operator()() const;
406 TLIT16 &operator=(const TLIT16 &);
410 // TLIT8 is an internal port class
411 class TLIT8 : public TPtrC8
414 TLIT8(const char *aStr);
415 TLIT8(const TLIT8 &);
421 class TBuf : public TPtr16
425 inline explicit TBuf(TInt aLength);
426 inline TBuf(const TDesC& aDes);
428 TText iBuf[__Align(S)];
431 template <TInt S>TBuf<S>::TBuf()
436 template <TInt S>TBuf<S>::TBuf(TInt aLength)
437 : TPtr16(iBuf, aLength, S)
441 template <TInt S>TBuf<S>::TBuf(const TDesC& aDes)
442 : TPtr16(iBuf, aDes.Length(), S)
444 if(aDes.Length() > S) FatalError();
445 memcpy(iBuf, aDes.Ptr(), aDes.Length()*2); // *2 for 16 bit copy
450 class TBuf8 : public TPtr8
454 inline explicit TBuf8(TInt aLength);
455 inline TBuf8(const TDesC8& aDes);
457 TUint8 iBuf[__Align(S)];
460 template <TInt S>TBuf8<S>::TBuf8()
465 template <TInt S>TBuf8<S>::TBuf8(TInt aLength)
466 : TPtr8(iBuf, aLength, S)
470 template <TInt S>TBuf8<S>::TBuf8(const TDesC8& aDes)
471 : TPtr8(iBuf, aDes.Length(), S)
473 if(aDes.Length() > S) FatalError();
474 memcpy(iBuf, aDes.Ptr(), aDes.Length());
478 typedef TBuf<KMaxName> TName;
483 enum { KNullUidValue };
485 static TUid Uid(TInt aUid)
486 {TUid uid={aUid};return uid;}
489 {TUid uid={KNullUidValue};return uid;}
491 TBool operator==(const TUid &aUid) const
493 return iUid == aUid.iUid;
496 TBool operator!=(const TUid &aUid) const
498 return iUid != aUid.iUid;
505 const TInt KMaxCheckedUid=3;
511 #ifndef __KERNEL_MODE__
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;
524 TUid iUid[KMaxCheckedUid];
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;};
538 IMPORT_C TUint Check() const;
549 virtual ~RArrayBase() {}
550 virtual void Close() = 0;
553 template<typename T> class RArray : public RArrayBase
557 explicit RArray(TInt);
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();};
565 typedef std::vector<T> VectorT;
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);
578 void Panic(TInt aCode);
581 #define KNullUid TUid::Null()
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 *)
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);
616 template <typename T> RArray<T>::RArray()
620 template<typename T> RArray<T>::RArray(TInt)
624 template<typename T> TInt RArray<T>::Count() const
630 template<typename T> const T& RArray<T>::operator[](TInt aIndex) const
635 template<typename T> T& RArray<T>::operator[](TInt aIndex)
641 template<typename T> void RArray<T>::Remove(TInt aIndex)
643 typename std::vector<T>::itrator it = vec.begin();
648 template<typename T> void RArray<T>::AppendL(const T &aEntry)
650 vec.push_back(aEntry);