sl@0: // Copyright (c) 1997-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: // This file contains the definition of the class CDataLogger sl@0: // This file comment is for DOxygen only and is ignored by EDoc. sl@0: // sl@0: // sl@0: sl@0: /** sl@0: @test sl@0: */ sl@0: sl@0: #ifndef __DATALOGGER_H__ sl@0: #define __DATALOGGER_H__ sl@0: sl@0: #include sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: /** sl@0: @internalAll sl@0: Comments : Handles the transformation of input data into text suitable sl@0: for output to a permanent store and the placing of that sl@0: data in the store. sl@0: */ sl@0: sl@0: sl@0: class CDataLogger : public CBase sl@0: { sl@0: public: sl@0: /** sl@0: @fn static CDataLogger* NewL(TLoggingInfo* aLogInfo) sl@0: Intended Usage : Standardized safe construction which leaves nothing on the cleanup stack. sl@0: @leave KErrNoMemory. sl@0: @since 7.0 sl@0: @param aLogInfo The logging configuration information sl@0: @return CDataLogger* A pointer to the newly created class. sl@0: @pre None sl@0: @post Nothing is left on the CleanupStack sl@0: */ sl@0: sl@0: static CDataLogger* NewL(TLoggingInfo* aLogInfo); sl@0: sl@0: /** sl@0: @fn static CDataLogger* NewLC(TLoggingInfo* aLogInfo) sl@0: Intended Usage : Standardized safe construction which leaves CDataLogger* on the cleanup stack. sl@0: @leave KErrNoMemory. sl@0: @since 7.0 sl@0: @param aLogInfo The logging configuration information sl@0: @return CDataLogger* A pointer to the newly created class. sl@0: @pre None sl@0: @post CDataLogger is on the CleanupStack sl@0: */ sl@0: sl@0: static CDataLogger* NewLC(TLoggingInfo* aLogInfo); sl@0: sl@0: /** sl@0: @fn ~CDataLogger() sl@0: Intended Usage : Standardized virtual destruction method sl@0: @since 7.0 sl@0: */ sl@0: sl@0: ~CDataLogger(); sl@0: sl@0: /** sl@0: @fn IMPORT_C void DumpMemoryBlock(const TUint8* aAddress, TInt aLength) sl@0: Intended Usage : Logs a block of memory to file in hexadecimal and ASCII format. sl@0: For example: sl@0: sl@0: @code sl@0: 0000 : 40 fd 8f 01 38 fd 8f 01 21 5f 00 10 61 00 74 00 : @...8...!_..a.t. sl@0: 0010 : 61 55 ff 00 48 fd 8f 01 ac fd 8f 01 ac fd 8f 01 : aU..H........... sl@0: 0020 : 21 88 00 60 90 41 ff 00 01 00 00 00 24 1f 7b 00 : !..`.A......$.{. sl@0: 0030 : 61 00 74 00 72 00 65 00 34 fd 8f 01 23 00 f1 77 : a.t.r.e.4...#..w sl@0: 0040 : 23 00 00 00 38 00 : #...8. sl@0: @endcode sl@0: sl@0: @since 7.0 sl@0: @param aAddress The address of the start of the block to be logged sl@0: @param aLength The number of bytes to be logged sl@0: @pre None sl@0: @post The specified block of memory is output to file in hex and ASCII format sl@0: */ sl@0: sl@0: IMPORT_C void DumpMemoryBlock(const TUint8* aAddress, TInt aLength); sl@0: sl@0: /** sl@0: @fn IMPORT_C void LogInformation(const TDesC16& aComment) sl@0: Intended Usage : Add the specified comment to the log file. Wide descriptor version sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aComment The text to be logged sl@0: @pre None sl@0: @post The specified text is added to the log file sl@0: */ sl@0: sl@0: IMPORT_C void LogInformation(const TDesC16& aComment); sl@0: sl@0: /** sl@0: @fn IMPORT_C void LogInformation(const TDesC8& aComment) sl@0: Intended Usage : Add the specified comment to the log file. Narrow descriptor sl@0: version sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aComment The text to be logged sl@0: @pre None sl@0: @post The specified text is added to the log file sl@0: */ sl@0: sl@0: IMPORT_C void LogInformation(const TDesC8& aComment); sl@0: sl@0: /** sl@0: @fn IMPORT_C void LogInformationWithParameters(TRefByValue aFormat, ...) sl@0: Intended Usage : Add the specified comment to the log file. Wide descriptor version sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aFormat The text to be formatted and logged sl@0: @param ... An argument set sl@0: @pre None sl@0: @post The specified text is formatted and added to the log file sl@0: */ sl@0: sl@0: IMPORT_C void LogInformationWithParameters(TRefByValue aFormat, ...); sl@0: sl@0: /** sl@0: @fn IMPORT_C void LogInformationWithParameters(TRefByValue aFormat, ...) sl@0: Intended Usage : Add the specified comment to the log file. Narrow sl@0: descriptor version sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aFormat The text to be formatted and logged sl@0: @param ... An argument set sl@0: @pre None sl@0: @post The specified text is formatted and added to the log file sl@0: */ sl@0: sl@0: IMPORT_C void LogInformationWithParameters(TRefByValue aFormat, ...); sl@0: sl@0: /** sl@0: @fn IMPORT_C void ReportInformation(const TDesC& aComment) sl@0: Intended Usage : Add the specified comment to the report file sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aComment The text to be logged sl@0: @pre None sl@0: @post The specified text is added to the report file sl@0: */ sl@0: sl@0: IMPORT_C void ReportInformation(const TDesC& aComment); sl@0: sl@0: /** sl@0: @fn IMPORT_C void ReportInformationWithParameters(TRefByValue aFormat, ...) sl@0: Intended Usage : Add the specified comment to the report file sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aFormat The text to be formatted and logged sl@0: @param ... An argument set sl@0: @pre None sl@0: @post The specified text is formatted and added to the log file sl@0: */ sl@0: sl@0: IMPORT_C void ReportInformationWithParameters(TRefByValue aFormat, ...); sl@0: sl@0: private: sl@0: /** sl@0: @fn CDataLogger() sl@0: Intended Usage : Constructor sl@0: @since 7.0 sl@0: */ sl@0: sl@0: CDataLogger(); sl@0: sl@0: /** sl@0: @fn void ConstructL(TLoggingInfo* aLogInfo) sl@0: Intended Usage : Completes the safe construction of the CDataLogger object sl@0: @leave KErrNoMemory. sl@0: @since 7.0 sl@0: @param aLogInfo The logging configuration information sl@0: @pre First phase of construction is complete sl@0: @post CDatalogger is fully constructed sl@0: */ sl@0: sl@0: void ConstructL(TLoggingInfo* aLogInfo); sl@0: sl@0: /** sl@0: @fn void SetupRDebugL(TBool aRequest) sl@0: Intended Usage : sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param TBool aRequest " " sl@0: @pre Called only from ConstructL() sl@0: @post iDebug is set up for debug outputting or not. sl@0: */ sl@0: sl@0: void SetupRDebugL(TBool aRequest); sl@0: sl@0: /** sl@0: @fn void Log(MLogOutput* aLogOutput, const TDesC16& aMessage) sl@0: Intended Usage : Helper function which will log out a descriptor. The destination for sl@0: logging depends whether an alternative logger was supplied by the user at construction. sl@0: Descriptors to be logged are broken up into maximum lengths of 150 as this is more sl@0: manageable and is the limit supported by RFileLogger. Wide descriptor version. sl@0: @since 7.0 sl@0: @param aLogOutput The logging mechanism to use sl@0: @param aMessage The descriptor to log sl@0: @pre This CDataLogger is constructed sl@0: @post The message is logged to the destination sl@0: */ sl@0: sl@0: void Log(MLogOutput* aLogOutput, const TDesC16& aMessage); sl@0: sl@0: /** sl@0: @fn void SetupLoggingL(TLoggingInfo* aLogInfo) sl@0: Intended Usage : sl@0: Error Condition : sl@0: @since 7.0 sl@0: @param aLogInfo The user supplied logging configuration information sl@0: @pre Called from ConstructL() sl@0: @post Logging output objects are configured. sl@0: */ sl@0: sl@0: void SetupLoggingL(TLoggingInfo* aLogInfo); sl@0: sl@0: private: sl@0: /** A do nothing base class for debug logging */ sl@0: class TNullDebugPrint sl@0: { sl@0: public: sl@0: virtual void Print(const TDesC&); sl@0: }; sl@0: sl@0: /** An override class for debug logging to RDebug */ sl@0: NONSHARABLE_CLASS(TDebugPrint) : public TNullDebugPrint sl@0: { sl@0: public: sl@0: /** Print the output to RDebug */ sl@0: void Print(const TDesC& aMessage); sl@0: }; sl@0: /** The class instance */ sl@0: sl@0: TNullDebugPrint* iDebug; sl@0: sl@0: /** The logging style to be used (plain text, HTML or custom). */ sl@0: sl@0: TLoggingStyle iLogStyle; sl@0: /** The logging formats to be used if iLogStyle is HTML or custom. */ sl@0: sl@0: TLogFormat iLogFormat; sl@0: /** Provides the file logging facilities*/ sl@0: sl@0: MLogOutput* iLogOutput; sl@0: /** Provides the reporting facilities*/ sl@0: sl@0: MLogOutput* iReportOutput; sl@0: /** Pointer to a default log output if the user doesn't supply one */ sl@0: sl@0: CDefaultLogOutput* iDefaultLogOutput; sl@0: /** Pointer to a default report output if the user doesn't supply one */ sl@0: sl@0: CDefaultLogOutput* iDefaultReportOutput; sl@0: /** Provides the file reporting facilities*/ sl@0: sl@0: RFileLogger iReportFlogger; sl@0: /** Provides the area for formatting log and report data */ sl@0: sl@0: HBufC* iFormatBuf; sl@0: /** Make the test State Accessor a friend */ sl@0: friend class TDataLogger_StateAccessor; sl@0: }; sl@0: sl@0: inline void CDataLogger::TNullDebugPrint::Print(const TDesC&) sl@0: { sl@0: // Do nothing sl@0: } sl@0: sl@0: #endif