Update contrib.
2 * Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of the License "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
15 * Implements common print functions used in debug mode for all security components.
16 * A component that wants to use these common debugging functions should define its
17 * own log header file and include this header file. In the component's header file,
18 * the followings should be defined:
19 * _LIT8(KComponentName, "[TheComponentName]");
36 class TTruncateOverflowHandler16 : public TDes16Overflow
39 virtual void Overflow(TDes16& aDes);
42 inline void TTruncateOverflowHandler16::Overflow(TDes16&)
47 class TTruncateOverflowHandler8 : public TDes8Overflow
50 virtual void Overflow(TDes8& aDes);
53 inline void TTruncateOverflowHandler8::Overflow(TDes8&)
60 const TInt KMaxLogBufferSize8 = 512;
61 const TInt KMaxLogBufferSize16 = 256;
63 #define SEC_DEBUG_PRINTF(x, a) {::CommonDebugPrintf(x, __LINE__, __FILE__, a);}
64 #define SEC_DEBUG_PRINTF2(x, a, b) {::CommonDebugPrintf(x, __LINE__, __FILE__, a, b);}
65 #define SEC_DEBUG_PRINTF3(x, a, b, c) {::CommonDebugPrintf(x, __LINE__, __FILE__, a, b, c);}
66 #define SEC_DEBUG_PRINTF4(x, a, b, c, d) {::CommonDebugPrintf(x, __LINE__, __FILE__, a, b, c, d);}
67 #define SEC_DEBUG_PRINTF5(x, a, b, c, d, e) {::CommonDebugPrintf(x, __LINE__, __FILE__, a, b, c, d, e);}
69 #define SEC_DEBUG_CODE_SECTION(a) TRAP_IGNORE({ a; })
71 inline void FileFormatLine(TDes8& aBuffer, const TDesC8& aComponent, TInt aLine, char* aFile)
76 _LIT8(KLineFileFormat, "%Ld Line: % 5d, File: %s -- ");
77 aBuffer.Append(aComponent);
78 aBuffer.AppendFormat(KLineFileFormat, now.Int64(), aLine, aFile);
81 // UTF-8 overload of the CoomonDebufPrintf method. Should be used by default,
82 // since it's cheaper both in CPU cycles and stack space.
83 inline void CommonDebugPrintf(const TDesC8& aComponent, TInt aLine, char* aFile, TRefByValue<const TDesC8> aFormat, ...)
85 TTruncateOverflowHandler8 overflowHandler8;
87 VA_START(list, aFormat);
89 TBuf8<KMaxLogBufferSize8> buffer;
90 FileFormatLine(buffer, aComponent, aLine, aFile);
92 buffer.AppendFormatList(aFormat, list, &overflowHandler8);
93 _LIT8(KLogMsgEnd, "\r\n");
94 if(buffer.MaxLength() >= (buffer.Length() + KLogMsgEnd().Length()))
96 buffer.Append(KLogMsgEnd);
99 RDebug::RawPrint(buffer);
104 // Unicode CommonDebufPrintf overload
105 inline void CommonDebugPrintf(const TDesC8& aComponent, TInt aLine, char* aFile, TRefByValue<const TDesC16> aFormat, ...)
107 TTruncateOverflowHandler16 overflowHandler16;
109 VA_START(list, aFormat);
111 TBuf8<KMaxLogBufferSize16> header;
112 FileFormatLine(header, aComponent, aLine, aFile);
114 TBuf<KMaxLogBufferSize16> buffer;
116 buffer.AppendFormatList(aFormat, list , &overflowHandler16);
118 _LIT(KLogMsgEnd, "\r\n");
119 if(buffer.MaxLength() >= (buffer.Length() + KLogMsgEnd().Length()))
121 buffer.Append(KLogMsgEnd);
124 RDebug::RawPrint(buffer);
131 #define SEC_DEBUG_PRINTF(x, a)
132 #define SEC_DEBUG_PRINTF2(x, a, b)
133 #define SEC_DEBUG_PRINTF3(x, a, b, c)
134 #define SEC_DEBUG_PRINTF4(x, a, b, c, d)
135 #define SEC_DEBUG_PRINTF5(x, a, b, c, d, e)
137 #define SEC_DEBUG_CODE_SECTION(a)
141 #endif // SECURITYLOG_H