os/ossrv/lowlevellibsandfws/pluginfw/Test_Bed/inc/DefaultLogOutput.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 CDefaultLogOutput
    15 // This file comment is for DOxygen only and is ignored by EDoc.
    16 // 
    17 //
    18 
    19 /**
    20  @test
    21 */
    22 
    23 #ifndef __DEFAULTLOGOUTPUT_H__
    24 #define __DEFAULTLOGOUTPUT_H__
    25 
    26 #include <e32base.h>
    27 #include <flogger.h>
    28 
    29 #include <ecom/test_bed/dataformat.h>
    30 
    31 /**
    32 	@internalAll
    33 	Comments : Default implementation of the MLogOutput interface.  This will be used
    34 	if an alternative is not supplied at construction of the CTestController.
    35  */
    36 
    37 NONSHARABLE_CLASS(CDefaultLogOutput) : public CBase, public MLogOutput
    38 	{
    39 public:
    40 /**
    41 	@fn				CDefaultLogOutput(const TDesC& aTitle)
    42 	Intended Usage	:	Standard constructor
    43 	@leave  		KErrNoMemory
    44 	@since			7.0
    45 	@param			aTitle The title to be used in the log
    46  */
    47 	
    48 	explicit CDefaultLogOutput(const TDesC& aTitle);
    49 
    50 /**
    51 	@fn				~CDefaultLogOutput()
    52 	Intended Usage	:	Standard destructor
    53 	@since			7.0
    54  */
    55 	
    56 	~CDefaultLogOutput();
    57 
    58 /**
    59 	@fn				TInt OpenL()
    60 	Intended Usage	:	Opens the RFileLogger ready for logging
    61 	Error Condition	:	Fails to connect to RFileLogger
    62 	@leave  		@see RFileLogger::Connect()
    63 	@since			7.0
    64 	@pre 			This object is fully constructed
    65 	@post			RFileLogger is opened and ready for logging
    66  */
    67 	
    68 	void OpenL();
    69 
    70 /**
    71 	@fn				void Write(const TDesC& aOutput)
    72 	Intended Usage	:	Outputs the specified message to RFileLogger
    73 	@since			7.0
    74 	@param			aOutput The descriptor to be logged
    75 	@pre 			OpenL has previously been called
    76 	@post			The descriptor has been written to RFileLogger
    77  */
    78 	
    79 	void Write(const TDesC& aOutput);
    80 
    81 /**
    82 	@fn				void Close()
    83 	Intended Usage	:	Closes RFileLogger when logging has completed
    84 	@since			7.0
    85 	@pre 			OpenL has previously been called
    86 	@post			RFileLogger has been closed and this object can be deleted
    87  */
    88 	
    89 	void Close();
    90 
    91 protected:
    92 /** The title which is output to the log file */
    93 	
    94 	const TDesC&	iTitle;
    95 /** Handle to the file logging mechanism for outputting messages */
    96 	
    97 	RFileLogger		iFLogger;
    98 	};
    99 
   100 #endif	// __DEFAULTLOGOUTPUT_H__