sl@0
|
1 |
// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
// ULogger plug-in base class
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
/**
|
sl@0
|
19 |
@file
|
sl@0
|
20 |
@internalTechnology
|
sl@0
|
21 |
@prototype
|
sl@0
|
22 |
*/
|
sl@0
|
23 |
|
sl@0
|
24 |
#ifndef __ULOGGERTOOLS_H__
|
sl@0
|
25 |
#define __ULOGGERTOOLS_H__
|
sl@0
|
26 |
|
sl@0
|
27 |
#include <e32base.h>
|
sl@0
|
28 |
#include <s32mem.h>
|
sl@0
|
29 |
|
sl@0
|
30 |
namespace Ulogger
|
sl@0
|
31 |
{
|
sl@0
|
32 |
|
sl@0
|
33 |
//utility templates
|
sl@0
|
34 |
/*!Externilize T array to HBufC8 stream.
|
sl@0
|
35 |
This is for internal use only.
|
sl@0
|
36 |
*/
|
sl@0
|
37 |
template<class T> HBufC8* ExternalizeToBufL(const T& aArray, TInt aElementSize)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
CBufFlat* buf = CBufFlat::NewL(1 + aArray.Count()*aElementSize);
|
sl@0
|
40 |
CleanupStack::PushL(buf);
|
sl@0
|
41 |
RBufWriteStream stream(*buf);
|
sl@0
|
42 |
CleanupClosePushL(stream);
|
sl@0
|
43 |
|
sl@0
|
44 |
for (TInt i=0; i<aArray.Count(); ++i)
|
sl@0
|
45 |
stream << aArray[i];
|
sl@0
|
46 |
|
sl@0
|
47 |
CleanupStack::PopAndDestroy(&stream); //close
|
sl@0
|
48 |
|
sl@0
|
49 |
HBufC8* des = HBufC8::NewL(buf->Size());
|
sl@0
|
50 |
TPtr8 ptr(des->Des());
|
sl@0
|
51 |
buf->Read(0, ptr, buf->Size());
|
sl@0
|
52 |
|
sl@0
|
53 |
CleanupStack::PopAndDestroy(buf);
|
sl@0
|
54 |
return des;
|
sl@0
|
55 |
}
|
sl@0
|
56 |
|
sl@0
|
57 |
|
sl@0
|
58 |
|
sl@0
|
59 |
/*!Internalize stream to array.
|
sl@0
|
60 |
This is for internal use only.
|
sl@0
|
61 |
*/
|
sl@0
|
62 |
|
sl@0
|
63 |
template<class T, class T2> void InternalizeFromBufL(const TDesC8& aBuf, T& aArray, T2 aArrayMember)
|
sl@0
|
64 |
{
|
sl@0
|
65 |
TInt elements = (TInt)aBuf.Length()/sizeof(T2);
|
sl@0
|
66 |
RDesReadStream stream(aBuf);
|
sl@0
|
67 |
CleanupClosePushL(stream);
|
sl@0
|
68 |
for(TInt i=0; i<elements; ++i)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
stream >> aArrayMember;
|
sl@0
|
71 |
aArray.AppendL(aArrayMember);
|
sl@0
|
72 |
}
|
sl@0
|
73 |
CleanupStack::PopAndDestroy(&stream); //close
|
sl@0
|
74 |
}
|
sl@0
|
75 |
|
sl@0
|
76 |
void ResetAndDestroyPtrArray(TAny* aPtr)
|
sl@0
|
77 |
{
|
sl@0
|
78 |
(STATIC_CAST(RPointerArray<HBufC>*,aPtr))->ResetAndDestroy();
|
sl@0
|
79 |
(STATIC_CAST(RPointerArray<HBufC>*,aPtr))->Close();
|
sl@0
|
80 |
}
|
sl@0
|
81 |
|
sl@0
|
82 |
}
|
sl@0
|
83 |
|
sl@0
|
84 |
#endif //__ULOGGERTOOLS_H__
|