First public contribution.
1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // ULogger plug-in base class
24 #ifndef __ULOGGERTOOLS_H__
25 #define __ULOGGERTOOLS_H__
34 /*!Externilize T array to HBufC8 stream.
35 This is for internal use only.
37 template<class T> HBufC8* ExternalizeToBufL(const T& aArray, TInt aElementSize)
39 CBufFlat* buf = CBufFlat::NewL(1 + aArray.Count()*aElementSize);
40 CleanupStack::PushL(buf);
41 RBufWriteStream stream(*buf);
42 CleanupClosePushL(stream);
44 for (TInt i=0; i<aArray.Count(); ++i)
47 CleanupStack::PopAndDestroy(&stream); //close
49 HBufC8* des = HBufC8::NewL(buf->Size());
50 TPtr8 ptr(des->Des());
51 buf->Read(0, ptr, buf->Size());
53 CleanupStack::PopAndDestroy(buf);
59 /*!Internalize stream to array.
60 This is for internal use only.
63 template<class T, class T2> void InternalizeFromBufL(const TDesC8& aBuf, T& aArray, T2 aArrayMember)
65 TInt elements = (TInt)aBuf.Length()/sizeof(T2);
66 RDesReadStream stream(aBuf);
67 CleanupClosePushL(stream);
68 for(TInt i=0; i<elements; ++i)
70 stream >> aArrayMember;
71 aArray.AppendL(aArrayMember);
73 CleanupStack::PopAndDestroy(&stream); //close
76 void ResetAndDestroyPtrArray(TAny* aPtr)
78 (STATIC_CAST(RPointerArray<HBufC>*,aPtr))->ResetAndDestroy();
79 (STATIC_CAST(RPointerArray<HBufC>*,aPtr))->Close();
84 #endif //__ULOGGERTOOLS_H__