sl@0: // Copyright (c) 2001-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: // All rights reserved. sl@0: // This component and the accompanying materials are made available sl@0: // under the terms of "Eclipse Public License v1.0" sl@0: // which accompanies this distribution, and is available sl@0: // at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: // sl@0: // Initial Contributors: sl@0: // Nokia Corporation - initial contribution. sl@0: // sl@0: // Contributors: sl@0: // sl@0: // Description: sl@0: // sl@0: sl@0: #include sl@0: #include sl@0: #include "StringPoolImplementation.h" sl@0: sl@0: //#define BAFL_SHOW_TRACE sl@0: sl@0: #ifdef BAFL_SHOW_TRACE sl@0: void BaflShowTrace(TRefByValue aFmt,...) sl@0: { sl@0: RDebug::Print(aFmt); sl@0: } sl@0: #else sl@0: void BaflShowTrace(TRefByValue /*aFmt*/,...) sl@0: { sl@0: } sl@0: #endif sl@0: sl@0: #ifdef _DEBUG sl@0: sl@0: _LIT8(KLogPrefix, "StringPool: "); sl@0: _LIT8(KTooLong, "(Value Too Long to print)"); sl@0: sl@0: NONSHARABLE_CLASS(TStringLogOverflow) : public TDes8Overflow sl@0: { sl@0: public: sl@0: virtual void Overflow(TDes8& aDes); sl@0: }; sl@0: sl@0: void TStringLogOverflow::Overflow(TDes8& /* aDes*/) sl@0: { sl@0: } sl@0: sl@0: void StringUtils::LogIt(TRefByValue aFmt, ...) sl@0: // sl@0: // Messages to the front end emulator and to the WAP log sl@0: { sl@0: VA_LIST list; sl@0: VA_START(list,aFmt); sl@0: sl@0: _LIT8(KLogPrefix, "StringPool: "); sl@0: sl@0: TStringLogOverflow overflow; sl@0: sl@0: TBuf8 buf; sl@0: buf.Copy(KLogPrefix); sl@0: buf.AppendFormatList(aFmt, list, &overflow); sl@0: VA_END(list); sl@0: sl@0: TBuf buf16; sl@0: buf16.Copy(buf); sl@0: BaflShowTrace(buf16); sl@0: BaflShowTrace(_L("\n")); sl@0: } sl@0: void StringUtils::LogIt1(TRefByValue aFmt) sl@0: // sl@0: // Messages to the front end emulator and to the WAP log sl@0: { sl@0: const TDesC8& format = aFmt; sl@0: sl@0: TBuf8 buf; sl@0: buf.Copy(KLogPrefix); sl@0: if (buf.Length() + format.Length() > KMaxFileName - 1) sl@0: buf.Append(KTooLong); sl@0: else sl@0: buf.Append(aFmt); sl@0: sl@0: TBuf buf16; sl@0: buf16.Copy(buf); sl@0: BaflShowTrace(_L("%S"), &buf16); sl@0: BaflShowTrace(_L("\n")); sl@0: } sl@0: sl@0: #endif // _DEBUG