os/security/securityanddataprivacytools/securitytools/certapp/store--/e32base.cpp
Update contrib.
2 * Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
21 #include "stringconv.h"
25 void Panic(TInt aCode)
27 dbg << Log::Indent() << "Panic(" << aCode << ")" << Log::Endl();
31 void User::LeaveIfError(TInt aError)
33 if(aError<0) User::Leave(aError);
36 void User::Invariant()
40 void User::Panic(const TDesC &aCategory, TInt aReason)
42 dbg << Log::Indent() << "User::Panic('" << stringFromUtf16(aCategory) << "'," << aReason << ") called" << Log::Endl();
46 void User::Leave(TInt aReason)
48 dbg << Log::Indent() << "User::Leave(" << aReason << ") - Not supported by this port" << Log::Endl();
57 TDesC8::TDesC8(const TDesC8 &aRef)
58 : iCurrentLength(aRef.iCurrentLength)
62 TDesC8::TDesC8(TInt aLength)
63 : iCurrentLength(aLength)
67 TBool TDesC8::operator==(const TDesC8 &aDes) const
69 if(Length() != aDes.Length())
74 if(memcmp(Ptr(), aDes.Ptr(), Length()) == 0)
76 return ETrue; // Identical
84 : TDesC8(0), iMaxLength(0)
88 TDes8::TDes8(const TDes8 &aRef)
89 : TDesC8(aRef), iMaxLength(aRef.iMaxLength)
95 TDes8::TDes8(TInt aLength,TInt aMaxLength)
96 : TDesC8(aLength), iMaxLength(aMaxLength)
100 void TDes8::Copy(const TDesC16 &aDes)
102 TInt len=aDes.Length();
104 const TUint16 *pS=aDes.Ptr();
105 const TUint16 *pE=pS+len;
106 TUint8 *pT=const_cast<TUint8 *>(Ptr());
118 void TDes8::SetLength(TInt aLength)
120 if(aLength < 0 || aLength > iMaxLength) FatalError();
121 iCurrentLength = aLength;
125 TPtr8::TPtr8(const TPtr8 &aRef)
126 : TDes8(aRef), iPtr(aRef.iPtr)
130 TPtr8 &TPtr8::operator=(const TPtr8 &aRhs)
132 if(this == &aRhs) return *this; // handle self assignment
133 if(aRhs.Length() > MaxLength()) FatalError();
134 memcpy(iPtr, aRhs.Ptr(), aRhs.Length());
135 SetLength(aRhs.Length());
140 const TUint8 *TPtr8::Ptr() const
145 const TUint8 &TPtr8::operator[](TInt anIndex) const
147 if(anIndex < 0 || anIndex >= Length())
149 dbg << Log::Indent() << "TPtrC8 bounds check failure" << Log::Endl();
152 return iPtr[anIndex];
156 void TPtr8::Append(TChar aChar)
158 if(iCurrentLength+1 > iMaxLength)
160 dbg << Log::Indent() << "TPtr8::Append range check failure" << Log::Endl();
163 iPtr[iCurrentLength++] = aChar;
170 TPtrC8::TPtrC8(const TPtrC8 &aRef)
171 : TDesC8(aRef), iPtr(aRef.iPtr)
175 TPtrC8 &TPtrC8::operator=(const TPtrC8 &aRhs)
177 if(this == &aRhs) return *this; // handle self assignment
178 if(aRhs.Length() > Length()) FatalError();
179 memcpy(const_cast<TUint8 *>(iPtr), aRhs.Ptr(), aRhs.Length());
184 void TPtrC8::Set(TUint8 *aBuf, TInt aLength)
187 iCurrentLength = aLength;
190 const TUint8 *TPtrC8::Ptr() const
195 const TUint8 &TPtrC8::operator[](TInt anIndex) const
197 if(anIndex < 0 || anIndex >= Length())
199 dbg << Log::Indent() << "TPtrC8 bounds check failure" << Log::Endl();
202 return iPtr[anIndex];
212 TDesC16::TDesC16(const TDesC16 &aRef)
213 : iCurrentLength(aRef.iCurrentLength)
217 TDesC16::TDesC16(TInt aLength)
218 : iCurrentLength(aLength)
224 : TDesC16(0), iMaxLength(0)
228 TDes16::TDes16(const TDes16 &aRef)
229 : TDesC16(aRef), iMaxLength(aRef.iMaxLength)
235 TDes16::TDes16(TInt aLength,TInt aMaxLength)
236 : TDesC16(aLength), iMaxLength(aMaxLength)
241 void TDes16::SetLength(TInt aLength)
243 if(aLength < 0 || aLength > iMaxLength) FatalError();
244 iCurrentLength = aLength;
247 TBool TDesC16::operator==(const TDesC8 &aDes) const
249 if(Length() != aDes.Length())
254 if(memcmp(Ptr(), aDes.Ptr(), Length()*2) == 0)
256 return ETrue; // Identical
262 TPtrC16::TPtrC16(const TPtrC16 &aRef)
263 : TDesC16(aRef), iPtr(aRef.iPtr)
267 TPtrC16 &TPtrC16::operator=(const TPtrC16 &aRhs)
269 if(this == &aRhs) return *this; // handle self assignment
270 if(aRhs.Length() > Length()) FatalError();
271 memcpy(const_cast<TUint16 *>(iPtr), aRhs.Ptr(), aRhs.Length()*2);
276 void TPtrC16::Set(TUint16 *aBuf, TInt aLength)
279 iCurrentLength = aLength;
283 const TUint16 *TPtrC16::Ptr() const
288 const TUint16 &TPtrC16::operator[](TInt anIndex) const
290 if(anIndex < 0 || anIndex >= Length())
292 dbg << Log::Indent() << "TPtrC16 bounds check failure" << Log::Endl();
296 return iPtr[anIndex];
302 TPtr16::TPtr16(const TPtr16 &aRef)
303 : TDes16(aRef), iPtr(aRef.iPtr)
307 TPtr16 &TPtr16::operator=(const TPtr16 &aRhs)
309 if(this == &aRhs) return *this; // handle self assignment
310 if(aRhs.Length() > MaxLength()) FatalError();
311 memcpy(iPtr, aRhs.Ptr(), aRhs.Length()*sizeof(TUint16));
312 SetLength(aRhs.Length());
317 void TPtr16::Copy(const TDesC8 &aDes)
319 // This is not quite 100% compatible because it does a correct
320 // UTF-8 to UCS-2 conversion, instead of just stuffing in zeros.
322 TText *outBuf = utf16FromUtf8(aDes.Ptr(), aDes.Length(), outLength);
324 if(outLength > MaxLength()) FatalError();
325 memcpy(iPtr, outBuf, outLength*2);
326 SetLength(outLength);
331 const TUint16 *TPtr16::Ptr() const
336 const TUint16 &TPtr16::operator[](TInt anIndex) const
338 if(anIndex < 0 || anIndex >= Length())
340 dbg << Log::Indent() << "TPtr16 bounds check failure" << Log::Endl();
344 return iPtr[anIndex];
347 void TPtr16::Append(TChar aChar)
349 if(iCurrentLength+1 > iMaxLength)
351 dbg << Log::Indent() << "TPtr16::Append range check failure" << Log::Endl();
354 iPtr[iCurrentLength++] = aChar;
362 TLIT16::TLIT16(const char *aStr)
367 // Expand UTF-8 into internal UTF-16LE representation
368 TInt outputWords = 0;
369 TText *outputBuf = utf16FromUtf8((TUint8 *)aStr, strlen(aStr), outputWords);
370 // Work out actual string length and save the buffer and ptr in out descriptor
371 iDes.Set(outputBuf, outputWords);
374 TLIT16::TLIT16(const TLIT16 &aRef)
375 : iDes(aRef.iDes.Ptr(), aRef.iDes.Length())
382 // May leak here, but TLITs should be at global scope anyway...
386 const TDesC16* TLIT16::operator&() const
391 TLIT16::operator const TDesC16&() const
396 const TDesC16& TLIT16::operator()() const
402 TLIT8::TLIT8(const char *aStr)
403 : TPtrC8((const TUint8 *)aStr, strlen(aStr))
407 TLIT8::TLIT8(const TLIT8 &aRef)
414 void CleanupStack::PopAndDestroy(RArrayBase *aRArray)
420 void CleanupStack::PopAndDestroy(RFs *aFs)