os/security/cryptomgmtlibs/securitycommonutils/inc/securitylog.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/*
sl@0
     2
* Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of the License "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
* Implements common print functions used in debug mode for all security components.
sl@0
    16
* A component that wants to use these common debugging functions should define its
sl@0
    17
* own log header file and include this header file. In the component's header file,
sl@0
    18
* the followings should be defined:
sl@0
    19
* _LIT8(KComponentName, "[TheComponentName]");
sl@0
    20
*
sl@0
    21
*/
sl@0
    22
sl@0
    23
sl@0
    24
/**
sl@0
    25
 @file
sl@0
    26
 @internalTechnology
sl@0
    27
 @released
sl@0
    28
*/
sl@0
    29
 
sl@0
    30
#ifndef SECURITYLOG_H
sl@0
    31
#define SECURITYLOG_H
sl@0
    32
sl@0
    33
#include <e32debug.h>
sl@0
    34
sl@0
    35
sl@0
    36
class TTruncateOverflowHandler16 : public TDes16Overflow
sl@0
    37
	{
sl@0
    38
	public:
sl@0
    39
		virtual void Overflow(TDes16& aDes);
sl@0
    40
	};
sl@0
    41
	
sl@0
    42
inline void TTruncateOverflowHandler16::Overflow(TDes16&)
sl@0
    43
	{
sl@0
    44
sl@0
    45
	}
sl@0
    46
	
sl@0
    47
class TTruncateOverflowHandler8 : public TDes8Overflow
sl@0
    48
	{
sl@0
    49
	public:
sl@0
    50
		virtual void Overflow(TDes8& aDes);
sl@0
    51
	};
sl@0
    52
	
sl@0
    53
inline void TTruncateOverflowHandler8::Overflow(TDes8&)
sl@0
    54
	{
sl@0
    55
   
sl@0
    56
	}
sl@0
    57
sl@0
    58
#ifdef _DEBUG
sl@0
    59
sl@0
    60
const TInt KMaxLogBufferSize8   = 512;
sl@0
    61
const TInt KMaxLogBufferSize16  = 256;
sl@0
    62
sl@0
    63
#define SEC_DEBUG_PRINTF(x, a) {::CommonDebugPrintf(x, __LINE__, __FILE__, a);}
sl@0
    64
#define SEC_DEBUG_PRINTF2(x, a, b) {::CommonDebugPrintf(x, __LINE__, __FILE__, a, b);}
sl@0
    65
#define SEC_DEBUG_PRINTF3(x, a, b, c) {::CommonDebugPrintf(x, __LINE__, __FILE__, a, b, c);}
sl@0
    66
#define SEC_DEBUG_PRINTF4(x, a, b, c, d) {::CommonDebugPrintf(x, __LINE__, __FILE__, a, b, c, d);}
sl@0
    67
#define SEC_DEBUG_PRINTF5(x, a, b, c, d, e) {::CommonDebugPrintf(x, __LINE__, __FILE__, a, b, c, d, e);}
sl@0
    68
sl@0
    69
#define SEC_DEBUG_CODE_SECTION(a) TRAP_IGNORE({ a; }) 
sl@0
    70
sl@0
    71
inline void FileFormatLine(TDes8& aBuffer, const TDesC8& aComponent, TInt aLine, char* aFile)
sl@0
    72
	{
sl@0
    73
	TTime now;
sl@0
    74
	now.HomeTime();
sl@0
    75
	
sl@0
    76
	_LIT8(KLineFileFormat, "%Ld Line: % 5d, File: %s -- ");
sl@0
    77
	aBuffer.Append(aComponent);
sl@0
    78
	aBuffer.AppendFormat(KLineFileFormat, now.Int64(), aLine, aFile);
sl@0
    79
	}
sl@0
    80
sl@0
    81
// UTF-8 overload of the CoomonDebufPrintf method. Should be used by default,
sl@0
    82
// since it's cheaper both in CPU cycles and stack space.
sl@0
    83
inline void CommonDebugPrintf(const TDesC8& aComponent, TInt aLine, char* aFile, TRefByValue<const TDesC8> aFormat, ...)
sl@0
    84
	{
sl@0
    85
	TTruncateOverflowHandler8 overflowHandler8;
sl@0
    86
	VA_LIST list;
sl@0
    87
	VA_START(list, aFormat);
sl@0
    88
	
sl@0
    89
	TBuf8<KMaxLogBufferSize8> buffer;
sl@0
    90
	FileFormatLine(buffer, aComponent, aLine, aFile);
sl@0
    91
	
sl@0
    92
	buffer.AppendFormatList(aFormat, list, &overflowHandler8);
sl@0
    93
	_LIT8(KLogMsgEnd, "\r\n");
sl@0
    94
	if(buffer.MaxLength() >= (buffer.Length() + KLogMsgEnd().Length()))
sl@0
    95
		{
sl@0
    96
		buffer.Append(KLogMsgEnd);
sl@0
    97
		}
sl@0
    98
	
sl@0
    99
	RDebug::RawPrint(buffer);
sl@0
   100
	
sl@0
   101
	VA_END(list);
sl@0
   102
	}
sl@0
   103
	
sl@0
   104
// Unicode CommonDebufPrintf overload
sl@0
   105
inline void CommonDebugPrintf(const TDesC8& aComponent, TInt aLine, char* aFile, TRefByValue<const TDesC16> aFormat, ...)
sl@0
   106
	{
sl@0
   107
	TTruncateOverflowHandler16 overflowHandler16;
sl@0
   108
	VA_LIST list;
sl@0
   109
	VA_START(list, aFormat);
sl@0
   110
	
sl@0
   111
	TBuf8<KMaxLogBufferSize16> header;
sl@0
   112
	FileFormatLine(header, aComponent, aLine, aFile);
sl@0
   113
	
sl@0
   114
	TBuf<KMaxLogBufferSize16> buffer;
sl@0
   115
	buffer.Copy(header);
sl@0
   116
	buffer.AppendFormatList(aFormat, list , &overflowHandler16);
sl@0
   117
	
sl@0
   118
	_LIT(KLogMsgEnd, "\r\n");
sl@0
   119
	if(buffer.MaxLength() >= (buffer.Length() + KLogMsgEnd().Length()))
sl@0
   120
		{
sl@0
   121
		buffer.Append(KLogMsgEnd);
sl@0
   122
		}
sl@0
   123
	
sl@0
   124
	RDebug::RawPrint(buffer);
sl@0
   125
	
sl@0
   126
	VA_END(list);
sl@0
   127
	}
sl@0
   128
sl@0
   129
#else
sl@0
   130
sl@0
   131
#define SEC_DEBUG_PRINTF(x, a)
sl@0
   132
#define SEC_DEBUG_PRINTF2(x, a, b)
sl@0
   133
#define SEC_DEBUG_PRINTF3(x, a, b, c)
sl@0
   134
#define SEC_DEBUG_PRINTF4(x, a, b, c, d)
sl@0
   135
#define SEC_DEBUG_PRINTF5(x, a, b, c, d, e)
sl@0
   136
sl@0
   137
#define SEC_DEBUG_CODE_SECTION(a)
sl@0
   138
sl@0
   139
#endif  // _DEBUG
sl@0
   140
sl@0
   141
#endif // SECURITYLOG_H