os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/inc/DataFormat.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 // Defines the configuration for the format of the log data. 
    15 // 
    16 //
    17 
    18 /**
    19  @test
    20 */
    21 
    22 #ifndef __DATAFORMAT_H__
    23 #define __DATAFORMAT_H__
    24 
    25 #include <e32std.h>
    26 
    27 /**
    28 	@internalAll
    29 	@enum TLoggingStyle
    30 	Comments : Indicates the logging style which should be used by CDataLogger
    31  */
    32 enum TLoggingStyle {EText, EHtml, ECustom};
    33 
    34 /**
    35 	@internalAll
    36 	@struct TLogFormat
    37 	Configures the format of the DataLogger's
    38 	documentatry output. (see the comments 
    39 	for an example usage.
    40  */
    41 typedef struct
    42 	{
    43 	const TDesC* iDocumentStart;	// <HTML><HEAD><TITLE>
    44 	const TDesC* iContentStart;		// </TITLE><BODY>
    45 	const TDesC* iCommentStart;		// <P>
    46 	const TDesC* iCommentEnd;		// </P>
    47 	const TDesC* iDocumentEnd;		// </BODY></HTML>
    48 	} TLogFormat;
    49 
    50 /**
    51 	@internalAll
    52 
    53  */
    54 
    55 class MLogOutput
    56 	{
    57 public:
    58 /**
    59 	@fn				OpenL() = 0
    60 	Intended Usage	: Sets up the logging facility provided by the implementation of this
    61 					interface.  If logging cannot be established for any reason then
    62 					this function should leave.
    63 	@leave  		Implementation dependant.
    64 	@since			7.0
    65 	@pre 			None
    66 	@post			Nothing is left on the CleanupStack
    67  */
    68 	
    69 	virtual void OpenL() = 0;
    70 
    71 /**
    72 	@fn				Write(const TDesC& aOutput) = 0
    73 	Intended Usage	: Logs the specified descriptor.
    74 	@since			7.0
    75 	@param			aOutput The descriptor to stream to the logging facility
    76 	@pre 			OpenL has been called to set up logging
    77 	@post			aOutput has been logged
    78  */
    79 	
    80 	virtual void Write(const TDesC& aOutput) = 0;
    81 
    82 /**
    83 	@fn				Close() = 0
    84 	Intended Usage	: Called when all logging has finished to close down any log
    85 					connections.
    86 	@since			7.0
    87 	@pre 			None
    88 	@post			Logging facility is closed down and this object can be deleted.
    89  */
    90 	
    91 	virtual void Close() = 0;
    92 	};
    93 
    94 /**
    95 	@internalAll
    96 	@struct TLoggingInfo
    97 	Specifies the logging configuration.
    98  */
    99 typedef struct
   100 	{
   101 	/** The title to be used in the output logs */
   102 	const TDesC*	iTitle;
   103 	/** If logging messages should also be printed using RDebug */
   104 	TBool			iUseRDebug;
   105 	/** The output style of the logging (plain text, html etc) */
   106 	TLoggingStyle	iStyle;
   107 	/** If iStyle is set to ECustom then this will be used for outputting log comments */
   108 	TLogFormat*		iLogFormat;
   109 	/** The logging mechanism.  NULL will default to RFileLogger */
   110 	MLogOutput*		iLogOutput;
   111 	/** The reporting mechanism.  NULL will default to RFileLogger */
   112 	MLogOutput*		iReportOutput;
   113 	} TLoggingInfo;
   114 
   115 #endif
   116