Update contrib.
1 // Copyright (c) 2001-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.
18 #include "StringPoolImplementation.h"
20 //#define BAFL_SHOW_TRACE
22 #ifdef BAFL_SHOW_TRACE
23 void BaflShowTrace(TRefByValue<const TDesC> aFmt,...)
28 void BaflShowTrace(TRefByValue<const TDesC> /*aFmt*/,...)
35 _LIT8(KLogPrefix, "StringPool: ");
36 _LIT8(KTooLong, "(Value Too Long to print)");
38 NONSHARABLE_CLASS(TStringLogOverflow) : public TDes8Overflow
41 virtual void Overflow(TDes8& aDes);
44 void TStringLogOverflow::Overflow(TDes8& /* aDes*/)
48 void StringUtils::LogIt(TRefByValue<const TDesC8> aFmt, ...)
50 // Messages to the front end emulator and to the WAP log
55 _LIT8(KLogPrefix, "StringPool: ");
57 TStringLogOverflow overflow;
59 TBuf8<KMaxFileName - 1> buf;
61 buf.AppendFormatList(aFmt, list, &overflow);
64 TBuf<KMaxFileName> buf16;
67 BaflShowTrace(_L("\n"));
69 void StringUtils::LogIt1(TRefByValue<const TDesC8> aFmt)
71 // Messages to the front end emulator and to the WAP log
73 const TDesC8& format = aFmt;
75 TBuf8<KMaxFileName - 1> buf;
77 if (buf.Length() + format.Length() > KMaxFileName - 1)
82 TBuf<KMaxFileName> buf16;
84 BaflShowTrace(_L("%S"), &buf16);
85 BaflShowTrace(_L("\n"));