Update contrib.
1 // Copyright (c) 1997-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.
14 // This file contains the definition of the class CDataLogger
15 // This file comment is for DOxygen only and is ignored by EDoc.
23 #ifndef __DATALOGGER_H__
24 #define __DATALOGGER_H__
28 #include <ecom/test_bed/dataformat.h>
29 #include <ecom/test_bed/defaultlogoutput.h>
33 Comments : Handles the transformation of input data into text suitable
34 for output to a permanent store and the placing of that
39 class CDataLogger : public CBase
43 @fn static CDataLogger* NewL(TLoggingInfo* aLogInfo)
44 Intended Usage : Standardized safe construction which leaves nothing on the cleanup stack.
47 @param aLogInfo The logging configuration information
48 @return CDataLogger* A pointer to the newly created class.
50 @post Nothing is left on the CleanupStack
53 static CDataLogger* NewL(TLoggingInfo* aLogInfo);
56 @fn static CDataLogger* NewLC(TLoggingInfo* aLogInfo)
57 Intended Usage : Standardized safe construction which leaves CDataLogger* on the cleanup stack.
60 @param aLogInfo The logging configuration information
61 @return CDataLogger* A pointer to the newly created class.
63 @post CDataLogger is on the CleanupStack
66 static CDataLogger* NewLC(TLoggingInfo* aLogInfo);
70 Intended Usage : Standardized virtual destruction method
77 @fn IMPORT_C void DumpMemoryBlock(const TUint8* aAddress, TInt aLength)
78 Intended Usage : Logs a block of memory to file in hexadecimal and ASCII format.
82 0000 : 40 fd 8f 01 38 fd 8f 01 21 5f 00 10 61 00 74 00 : @...8...!_..a.t.
83 0010 : 61 55 ff 00 48 fd 8f 01 ac fd 8f 01 ac fd 8f 01 : aU..H...........
84 0020 : 21 88 00 60 90 41 ff 00 01 00 00 00 24 1f 7b 00 : !..`.A......$.{.
85 0030 : 61 00 74 00 72 00 65 00 34 fd 8f 01 23 00 f1 77 : a.t.r.e.4...#..w
86 0040 : 23 00 00 00 38 00 : #...8.
90 @param aAddress The address of the start of the block to be logged
91 @param aLength The number of bytes to be logged
93 @post The specified block of memory is output to file in hex and ASCII format
96 IMPORT_C void DumpMemoryBlock(const TUint8* aAddress, TInt aLength);
99 @fn IMPORT_C void LogInformation(const TDesC16& aComment)
100 Intended Usage : Add the specified comment to the log file. Wide descriptor version
103 @param aComment The text to be logged
105 @post The specified text is added to the log file
108 IMPORT_C void LogInformation(const TDesC16& aComment);
111 @fn IMPORT_C void LogInformation(const TDesC8& aComment)
112 Intended Usage : Add the specified comment to the log file. Narrow descriptor
116 @param aComment The text to be logged
118 @post The specified text is added to the log file
121 IMPORT_C void LogInformation(const TDesC8& aComment);
124 @fn IMPORT_C void LogInformationWithParameters(TRefByValue<const TDesC16> aFormat, ...)
125 Intended Usage : Add the specified comment to the log file. Wide descriptor version
128 @param aFormat The text to be formatted and logged
129 @param ... An argument set
131 @post The specified text is formatted and added to the log file
134 IMPORT_C void LogInformationWithParameters(TRefByValue<const TDesC16> aFormat, ...);
137 @fn IMPORT_C void LogInformationWithParameters(TRefByValue<const TDesC8> aFormat, ...)
138 Intended Usage : Add the specified comment to the log file. Narrow
142 @param aFormat The text to be formatted and logged
143 @param ... An argument set
145 @post The specified text is formatted and added to the log file
148 IMPORT_C void LogInformationWithParameters(TRefByValue<const TDesC8> aFormat, ...);
151 @fn IMPORT_C void ReportInformation(const TDesC& aComment)
152 Intended Usage : Add the specified comment to the report file
155 @param aComment The text to be logged
157 @post The specified text is added to the report file
160 IMPORT_C void ReportInformation(const TDesC& aComment);
163 @fn IMPORT_C void ReportInformationWithParameters(TRefByValue<const TDesC> aFormat, ...)
164 Intended Usage : Add the specified comment to the report file
167 @param aFormat The text to be formatted and logged
168 @param ... An argument set
170 @post The specified text is formatted and added to the log file
173 IMPORT_C void ReportInformationWithParameters(TRefByValue<const TDesC> aFormat, ...);
178 Intended Usage : Constructor
185 @fn void ConstructL(TLoggingInfo* aLogInfo)
186 Intended Usage : Completes the safe construction of the CDataLogger object
189 @param aLogInfo The logging configuration information
190 @pre First phase of construction is complete
191 @post CDatalogger is fully constructed
194 void ConstructL(TLoggingInfo* aLogInfo);
197 @fn void SetupRDebugL(TBool aRequest)
201 @param TBool aRequest " "
202 @pre Called only from ConstructL()
203 @post iDebug is set up for debug outputting or not.
206 void SetupRDebugL(TBool aRequest);
209 @fn void Log(MLogOutput* aLogOutput, const TDesC16& aMessage)
210 Intended Usage : Helper function which will log out a descriptor. The destination for
211 logging depends whether an alternative logger was supplied by the user at construction.
212 Descriptors to be logged are broken up into maximum lengths of 150 as this is more
213 manageable and is the limit supported by RFileLogger. Wide descriptor version.
215 @param aLogOutput The logging mechanism to use
216 @param aMessage The descriptor to log
217 @pre This CDataLogger is constructed
218 @post The message is logged to the destination
221 void Log(MLogOutput* aLogOutput, const TDesC16& aMessage);
224 @fn void SetupLoggingL(TLoggingInfo* aLogInfo)
228 @param aLogInfo The user supplied logging configuration information
229 @pre Called from ConstructL()
230 @post Logging output objects are configured.
233 void SetupLoggingL(TLoggingInfo* aLogInfo);
236 /** A do nothing base class for debug logging */
237 class TNullDebugPrint
240 virtual void Print(const TDesC&);
243 /** An override class for debug logging to RDebug */
244 NONSHARABLE_CLASS(TDebugPrint) : public TNullDebugPrint
247 /** Print the output to RDebug */
248 void Print(const TDesC& aMessage);
250 /** The class instance */
252 TNullDebugPrint* iDebug;
254 /** The logging style to be used (plain text, HTML or custom). */
256 TLoggingStyle iLogStyle;
257 /** The logging formats to be used if iLogStyle is HTML or custom. */
259 TLogFormat iLogFormat;
260 /** Provides the file logging facilities*/
262 MLogOutput* iLogOutput;
263 /** Provides the reporting facilities*/
265 MLogOutput* iReportOutput;
266 /** Pointer to a default log output if the user doesn't supply one */
268 CDefaultLogOutput* iDefaultLogOutput;
269 /** Pointer to a default report output if the user doesn't supply one */
271 CDefaultLogOutput* iDefaultReportOutput;
272 /** Provides the file reporting facilities*/
274 RFileLogger iReportFlogger;
275 /** Provides the area for formatting log and report data */
278 /** Make the test State Accessor a friend */
279 friend class TDataLogger_StateAccessor;
282 inline void CDataLogger::TNullDebugPrint::Print(const TDesC&)