os/persistentdata/loggingservices/rfilelogger/Logger/inc/RFileLogger.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
/**
sl@0
     2
* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description:
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
sl@0
    20
/**
sl@0
    21
 @file RFileLogger.h
sl@0
    22
*/
sl@0
    23
sl@0
    24
#if !(defined __ET_RFILELOGGER_H__)
sl@0
    25
#define __ET_RFILELOGGER_H__
sl@0
    26
sl@0
    27
#include <e32base.h>
sl@0
    28
sl@0
    29
const TInt KMaxSizOfTag=128;
sl@0
    30
const TInt KMaxSizOfString = 256;
sl@0
    31
const TInt KMaxFilename = 50;
sl@0
    32
sl@0
    33
// *** Maintaince warning: the constant designed
sl@0
    34
// used on both server side and client side. Any change shoud be
sl@0
    35
// checked on both side
sl@0
    36
_LIT(KMessageFormat," - %d - %S - %d - ");
sl@0
    37
sl@0
    38
_LIT(KSeperation," - ");
sl@0
    39
_LIT8(KSeperation8," - ");
sl@0
    40
_LIT(KTagSeperation,"LogFieldsRequiredBeingAddedToAboveLogMessage");
sl@0
    41
_LIT(KTagSeperationEnd,"\t\t\t\t\t\t"); // make them invisible
sl@0
    42
_LIT(KTagSeperation8,"LogFieldsRequiredBeingAddedToAboveLogMessage");
sl@0
    43
_LIT(KTagSeperationEnd8,"\t\t\t\t\t\t"); // make them invisible
sl@0
    44
// *** End of Maintaince warning
sl@0
    45
sl@0
    46
sl@0
    47
//#if !(defined __FILELOGGER_UREL)
sl@0
    48
_LIT(KFileLogrerServerName,"RFileLoggerServer");
sl@0
    49
const TInt KMaxLoggerFilePath = 256;
sl@0
    50
const TInt KMaxLoggerLineLength = 512;
sl@0
    51
sl@0
    52
const TInt KRFileLoggerMajorVersion = 1;
sl@0
    53
const TInt KRFileLoggerMinorVersion = 1;
sl@0
    54
const TInt KRFileLoggerBuildVersion = 1;
sl@0
    55
sl@0
    56
struct TExtraLogField
sl@0
    57
	{
sl@0
    58
	TBuf<KMaxSizOfTag> iLogFieldName;
sl@0
    59
	TBuf<KMaxSizOfString> iLogFieldValue;
sl@0
    60
	};
sl@0
    61
/**
sl@0
    62
 * RFileLoggerBody - class to provide internal data for the client side
sl@0
    63
 *
sl@0
    64
 * This class contains all data members which would otherwise be in the
sl@0
    65
 * RFileLogger class. They are instead in this file since that because
sl@0
    66
 * CreateSession is a protected member of RSessionBase, so we must derive
sl@0
    67
 *from it and provide a means to call this via pass-through inline functions.
sl@0
    68
 */
sl@0
    69
class RFileLoggerBody : public RSessionBase
sl@0
    70
{
sl@0
    71
public:
sl@0
    72
	inline TInt DoCreateSession(const TDesC& aServer,const TVersion& aVersion,TInt aAsyncMessageSlots);
sl@0
    73
	inline TInt DoSendReceive(TInt aFunction,const TIpcArgs& aArgs) const;
sl@0
    74
	inline TInt DoSendReceive(TInt aFunction) const;
sl@0
    75
sl@0
    76
	
sl@0
    77
};
sl@0
    78
sl@0
    79
inline TInt RFileLoggerBody::DoCreateSession(const TDesC& aServer,const TVersion& aVersion,TInt aAsyncMessageSlots)
sl@0
    80
	{
sl@0
    81
	return CreateSession(aServer,aVersion,aAsyncMessageSlots);
sl@0
    82
	}
sl@0
    83
sl@0
    84
inline TInt RFileLoggerBody::DoSendReceive(TInt aFunction,const TIpcArgs& aArgs) const
sl@0
    85
	{
sl@0
    86
	return SendReceive(aFunction,aArgs);
sl@0
    87
	}
sl@0
    88
sl@0
    89
inline TInt RFileLoggerBody::DoSendReceive(TInt aFunction) const
sl@0
    90
	{
sl@0
    91
	return SendReceive(aFunction);
sl@0
    92
	}
sl@0
    93
sl@0
    94
class RFileFlogger
sl@0
    95
/**
sl@0
    96
@internalComponent
sl@0
    97
@test
sl@0
    98
*/
sl@0
    99
	{
sl@0
   100
public:
sl@0
   101
	enum TLogMode{ELogModeAppend,ELogModeOverWrite};
sl@0
   102
	// Logging level
sl@0
   103
	enum TLogSeverity{ESevrErr  = 1,ESevrHigh, ESevrWarn, ESevrMedium, ESevrInfo, ESevrLow, ESevrTEFUnit, ESevrAll};
sl@0
   104
	enum TLogCommand{ECreateLog,EWriteLog};
sl@0
   105
sl@0
   106
	enum TLogType{EXml,ETxt};
sl@0
   107
	
sl@0
   108
	IMPORT_C RFileFlogger();
sl@0
   109
	IMPORT_C ~RFileFlogger();
sl@0
   110
	
sl@0
   111
sl@0
   112
	IMPORT_C TInt Connect(); 
sl@0
   113
	IMPORT_C TInt CreateLog(const TDesC& aLogFilePath,TLogMode aMode);
sl@0
   114
	IMPORT_C void Log(const TText8* aFile, TInt aLine, TLogSeverity aSeverity, TRefByValue<const TDesC> aFmt,...);
sl@0
   115
	IMPORT_C void Log(const TText8* aFile, TInt aLine, TLogSeverity aSeverity, TInt arraylength, TExtraLogField* aLogFields, TRefByValue<const TDesC> aFmt,...);
sl@0
   116
sl@0
   117
	IMPORT_C void SetLogLevel(TLogSeverity aloglevel); 
sl@0
   118
	IMPORT_C void Close();
sl@0
   119
	IMPORT_C void Log(const TText8* aFile, TInt aLine, TLogSeverity aSeverity,TRefByValue<const TDesC> aFmt, VA_LIST aList);
sl@0
   120
	IMPORT_C void Log(const TText8* aFile, TInt aLine, TLogSeverity aSeverity, TInt arraylength, TExtraLogField* aLogFields, TRefByValue<const TDesC> aFmt, VA_LIST aList);	
sl@0
   121
sl@0
   122
private:
sl@0
   123
	void GetCPPModuleName(TDes& aModuleName, const TText8* aCPPFileName);
sl@0
   124
	void WriteL(const TDesC& aLogBuffer);
sl@0
   125
	void WriteL(TDes8& aLogBuffer);
sl@0
   126
	void AddTime(TDes8& aTime);
sl@0
   127
sl@0
   128
	RFileLoggerBody* ilogbody;
sl@0
   129
sl@0
   130
	TLogSeverity iloglevel;
sl@0
   131
	TBool iLogfileTag;
sl@0
   132
sl@0
   133
sl@0
   134
	};
sl@0
   135
sl@0
   136
sl@0
   137
#endif