os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/inc/DataLogger.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 // This file contains the definition of the class CDataLogger
    15 // This file comment is for DOxygen only and is ignored by EDoc.
    16 // 
    17 //
    18 
    19 /**
    20  @test
    21 */
    22 
    23 #ifndef __DATALOGGER_H__
    24 #define __DATALOGGER_H__
    25 
    26 #include <e32base.h>
    27 #include <flogger.h>
    28 #include <ecom/test_bed/dataformat.h>
    29 #include <ecom/test_bed/defaultlogoutput.h>
    30 
    31 /**
    32 	@internalAll
    33 	Comments : Handles the transformation of input data into text suitable 
    34 		for output to a permanent store and the placing of that 
    35 		data in the store.
    36  */
    37 
    38 
    39 class CDataLogger : public CBase
    40 	{
    41 public:
    42 /**
    43 	@fn				static CDataLogger* NewL(TLoggingInfo* aLogInfo)
    44 	Intended Usage	: Standardized safe construction which leaves nothing on the cleanup stack.
    45 	@leave  		KErrNoMemory.	
    46 	@since			7.0
    47 	@param			aLogInfo The logging configuration information
    48 	@return			CDataLogger* A pointer to the newly created class.
    49 	@pre 			None
    50 	@post			Nothing is left on the CleanupStack
    51  */
    52 	
    53 	static CDataLogger* NewL(TLoggingInfo* aLogInfo);
    54 
    55 /**
    56 	@fn				static CDataLogger* NewLC(TLoggingInfo* aLogInfo)
    57 	Intended Usage	: Standardized safe construction which leaves CDataLogger* on the cleanup stack.
    58 	@leave  		KErrNoMemory.	
    59 	@since			7.0
    60 	@param			aLogInfo The logging configuration information
    61 	@return			CDataLogger* A pointer to the newly created class.
    62 	@pre 			None
    63 	@post			CDataLogger is on the CleanupStack
    64  */
    65 	
    66 	static CDataLogger* NewLC(TLoggingInfo* aLogInfo);
    67 
    68 /**
    69 	@fn				 ~CDataLogger()
    70 	Intended Usage	: Standardized virtual destruction method 
    71 	@since			7.0
    72  */
    73 	
    74 	~CDataLogger();
    75 
    76 /**
    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.
    79 					For example:
    80 					
    81 	@code
    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.          
    87 	@endcode
    88 
    89 	@since			7.0
    90 	@param			aAddress The address of the start of the block to be logged
    91 	@param			aLength The number of bytes to be logged
    92 	@pre 			None
    93 	@post			The specified block of memory is output to file in hex and ASCII format
    94  */
    95 	
    96 	IMPORT_C void DumpMemoryBlock(const TUint8* aAddress, TInt aLength);
    97 
    98 /**
    99 	@fn				IMPORT_C void LogInformation(const TDesC16& aComment)
   100 	Intended Usage	:	Add the specified comment to the log file. Wide descriptor version
   101 	Error Condition	:	
   102 	@since			7.0
   103 	@param			aComment The text to be logged
   104 	@pre 			None
   105 	@post			The specified text is added to the log file
   106  */
   107 	
   108 	IMPORT_C void LogInformation(const TDesC16& aComment);
   109 
   110 /**
   111 	@fn				IMPORT_C void LogInformation(const TDesC8& aComment)
   112 	Intended Usage	:	Add the specified comment to the log file. Narrow descriptor 
   113 	version
   114 	Error Condition	:	
   115 	@since			7.0
   116 	@param			aComment The text to be logged
   117 	@pre 			None
   118 	@post			The specified text is added to the log file
   119  */
   120 	
   121 	IMPORT_C void LogInformation(const TDesC8& aComment);
   122 
   123 /**
   124 	@fn				IMPORT_C void LogInformationWithParameters(TRefByValue<const TDesC16> aFormat, ...)
   125 	Intended Usage	:	Add the specified comment to the log file. Wide descriptor version
   126 	Error Condition	:	
   127 	@since			7.0
   128 	@param			aFormat The text to be formatted and logged
   129 	@param			...	An argument set
   130 	@pre 			None
   131 	@post			The specified text is formatted and added to the log file
   132  */
   133 	
   134 	IMPORT_C void LogInformationWithParameters(TRefByValue<const TDesC16> aFormat, ...);
   135 
   136 /**
   137 	@fn				IMPORT_C void LogInformationWithParameters(TRefByValue<const TDesC8> aFormat, ...)
   138 	Intended Usage	:	Add the specified comment to the log file. Narrow 
   139 					descriptor version
   140 	Error Condition	:	
   141 	@since			7.0
   142 	@param			aFormat The text to be formatted and logged
   143 	@param			...	An argument set
   144 	@pre 			None
   145 	@post			The specified text is formatted and added to the log file
   146  */
   147 	
   148 	IMPORT_C void LogInformationWithParameters(TRefByValue<const TDesC8> aFormat, ...);
   149 
   150 /**
   151 	@fn				IMPORT_C void ReportInformation(const TDesC& aComment)
   152 	Intended Usage	:	Add the specified comment to the report file
   153 	Error Condition	:	
   154 	@since			7.0
   155 	@param			aComment The text to be logged
   156 	@pre 			None
   157 	@post			The specified text is added to the report file
   158  */
   159 	
   160 	IMPORT_C void ReportInformation(const TDesC& aComment);
   161 
   162 /**
   163 	@fn				IMPORT_C void ReportInformationWithParameters(TRefByValue<const TDesC> aFormat, ...)
   164 	Intended Usage	:	Add the specified comment to the report file
   165 	Error Condition	:	
   166 	@since			7.0
   167 	@param			aFormat The text to be formatted and logged
   168 	@param			...	An argument set
   169 	@pre 			None
   170 	@post			The specified text is formatted and added to the log file
   171  */
   172 	
   173 	IMPORT_C void ReportInformationWithParameters(TRefByValue<const TDesC> aFormat, ...);
   174 
   175 private:
   176 /**
   177 	@fn				CDataLogger()
   178 	Intended Usage	: Constructor
   179 	@since			7.0
   180  */
   181 	
   182 	CDataLogger();
   183 
   184 /**
   185 	@fn				void ConstructL(TLoggingInfo* aLogInfo)
   186 	Intended Usage	: Completes the safe construction of the CDataLogger object
   187 	@leave  		KErrNoMemory.
   188 	@since			7.0
   189 	@param			aLogInfo The logging configuration information
   190 	@pre 			First phase of construction is complete
   191 	@post			CDatalogger is fully constructed
   192  */
   193 	
   194 	void ConstructL(TLoggingInfo* aLogInfo);
   195 
   196 /**
   197 	@fn				void SetupRDebugL(TBool aRequest)
   198 	Intended Usage	:	
   199 	Error Condition	:	
   200 	@since			7.0
   201 	@param			TBool aRequest " "
   202 	@pre 			Called only from ConstructL()
   203 	@post			iDebug is set up for debug outputting or not.
   204  */
   205 	
   206 	void SetupRDebugL(TBool aRequest);
   207 
   208 /**
   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.
   214 	@since			7.0
   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
   219  */
   220 	
   221 	void Log(MLogOutput* aLogOutput, const TDesC16& aMessage);
   222 
   223 /**
   224 	@fn				void SetupLoggingL(TLoggingInfo* aLogInfo)
   225 	Intended Usage	:
   226 	Error Condition	:
   227 	@since			7.0
   228 	@param			aLogInfo The user supplied logging configuration information
   229 	@pre 			Called from ConstructL()
   230 	@post			Logging output objects are configured.
   231  */
   232 	
   233 	void SetupLoggingL(TLoggingInfo* aLogInfo);
   234 
   235 private:
   236 /** A do nothing base class for debug logging */
   237 	class TNullDebugPrint
   238 		{
   239 		public:
   240 			virtual void Print(const TDesC&);
   241 		};
   242 
   243 /** An override class for debug logging to RDebug */
   244 	NONSHARABLE_CLASS(TDebugPrint) : public TNullDebugPrint
   245 		{
   246 		public:
   247 			/** Print the output to RDebug */
   248 			void Print(const TDesC& aMessage);
   249 		};
   250 /** The class instance */
   251 	
   252 	TNullDebugPrint* iDebug;
   253 
   254 /** The logging style to be used (plain text, HTML or custom). */
   255 	
   256 	TLoggingStyle	iLogStyle;
   257 /** The logging formats to be used if iLogStyle is HTML or custom. */
   258 	
   259 	TLogFormat		iLogFormat;
   260 /** Provides the file logging facilities*/
   261 	
   262 	MLogOutput*		iLogOutput;
   263 /** Provides the reporting facilities*/
   264 	
   265 	MLogOutput*		iReportOutput;
   266 /** Pointer to a default log output if the user doesn't supply one */
   267 	
   268 	CDefaultLogOutput*	iDefaultLogOutput;
   269 /** Pointer to a default report output if the user doesn't supply one */
   270 	
   271 	CDefaultLogOutput*	iDefaultReportOutput;
   272 /** Provides the file reporting facilities*/
   273 	
   274 	RFileLogger		iReportFlogger;
   275 /** Provides the area for formatting log and report data */
   276 	
   277 	HBufC*			iFormatBuf;
   278 /** Make the test State Accessor a friend */
   279 	friend class TDataLogger_StateAccessor;
   280 	};
   281 
   282 inline void CDataLogger::TNullDebugPrint::Print(const TDesC&)
   283 	{
   284 	// Do nothing
   285 	}
   286 
   287 #endif