sl@0
|
1 |
// Copyright (c) 2001-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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <e32base.h>
|
sl@0
|
17 |
#include <e32svr.h>
|
sl@0
|
18 |
#include "StringPoolImplementation.h"
|
sl@0
|
19 |
|
sl@0
|
20 |
//#define BAFL_SHOW_TRACE
|
sl@0
|
21 |
|
sl@0
|
22 |
#ifdef BAFL_SHOW_TRACE
|
sl@0
|
23 |
void BaflShowTrace(TRefByValue<const TDesC> aFmt,...)
|
sl@0
|
24 |
{
|
sl@0
|
25 |
RDebug::Print(aFmt);
|
sl@0
|
26 |
}
|
sl@0
|
27 |
#else
|
sl@0
|
28 |
void BaflShowTrace(TRefByValue<const TDesC> /*aFmt*/,...)
|
sl@0
|
29 |
{
|
sl@0
|
30 |
}
|
sl@0
|
31 |
#endif
|
sl@0
|
32 |
|
sl@0
|
33 |
#ifdef _DEBUG
|
sl@0
|
34 |
|
sl@0
|
35 |
_LIT8(KLogPrefix, "StringPool: ");
|
sl@0
|
36 |
_LIT8(KTooLong, "(Value Too Long to print)");
|
sl@0
|
37 |
|
sl@0
|
38 |
NONSHARABLE_CLASS(TStringLogOverflow) : public TDes8Overflow
|
sl@0
|
39 |
{
|
sl@0
|
40 |
public:
|
sl@0
|
41 |
virtual void Overflow(TDes8& aDes);
|
sl@0
|
42 |
};
|
sl@0
|
43 |
|
sl@0
|
44 |
void TStringLogOverflow::Overflow(TDes8& /* aDes*/)
|
sl@0
|
45 |
{
|
sl@0
|
46 |
}
|
sl@0
|
47 |
|
sl@0
|
48 |
void StringUtils::LogIt(TRefByValue<const TDesC8> aFmt, ...)
|
sl@0
|
49 |
//
|
sl@0
|
50 |
// Messages to the front end emulator and to the WAP log
|
sl@0
|
51 |
{
|
sl@0
|
52 |
VA_LIST list;
|
sl@0
|
53 |
VA_START(list,aFmt);
|
sl@0
|
54 |
|
sl@0
|
55 |
_LIT8(KLogPrefix, "StringPool: ");
|
sl@0
|
56 |
|
sl@0
|
57 |
TStringLogOverflow overflow;
|
sl@0
|
58 |
|
sl@0
|
59 |
TBuf8<KMaxFileName - 1> buf;
|
sl@0
|
60 |
buf.Copy(KLogPrefix);
|
sl@0
|
61 |
buf.AppendFormatList(aFmt, list, &overflow);
|
sl@0
|
62 |
VA_END(list);
|
sl@0
|
63 |
|
sl@0
|
64 |
TBuf<KMaxFileName> buf16;
|
sl@0
|
65 |
buf16.Copy(buf);
|
sl@0
|
66 |
BaflShowTrace(buf16);
|
sl@0
|
67 |
BaflShowTrace(_L("\n"));
|
sl@0
|
68 |
}
|
sl@0
|
69 |
void StringUtils::LogIt1(TRefByValue<const TDesC8> aFmt)
|
sl@0
|
70 |
//
|
sl@0
|
71 |
// Messages to the front end emulator and to the WAP log
|
sl@0
|
72 |
{
|
sl@0
|
73 |
const TDesC8& format = aFmt;
|
sl@0
|
74 |
|
sl@0
|
75 |
TBuf8<KMaxFileName - 1> buf;
|
sl@0
|
76 |
buf.Copy(KLogPrefix);
|
sl@0
|
77 |
if (buf.Length() + format.Length() > KMaxFileName - 1)
|
sl@0
|
78 |
buf.Append(KTooLong);
|
sl@0
|
79 |
else
|
sl@0
|
80 |
buf.Append(aFmt);
|
sl@0
|
81 |
|
sl@0
|
82 |
TBuf<KMaxFileName> buf16;
|
sl@0
|
83 |
buf16.Copy(buf);
|
sl@0
|
84 |
BaflShowTrace(_L("%S"), &buf16);
|
sl@0
|
85 |
BaflShowTrace(_L("\n"));
|
sl@0
|
86 |
}
|
sl@0
|
87 |
|
sl@0
|
88 |
#endif // _DEBUG
|