os/persistentdata/loggingservices/rfilelogger/Logger/Src/server.h
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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 Server.h
sl@0
    22
*/
sl@0
    23
sl@0
    24
#if (!defined __ET_RFILELOGGER_SERVER_H__)
sl@0
    25
#define __ET_RFILELOGGER_SERVER_H__
sl@0
    26
#include <e32base.h>
sl@0
    27
#include <f32file.h>
sl@0
    28
#include <test/rfilelogger.h>
sl@0
    29
sl@0
    30
sl@0
    31
class CActiveBase : public CActive
sl@0
    32
	{
sl@0
    33
public:
sl@0
    34
	inline 	TRequestStatus& Status();
sl@0
    35
	inline 	void SetActive();
sl@0
    36
	inline	void Kick();
sl@0
    37
	inline	void Prime();
sl@0
    38
	inline	void Complete(TInt aCode);
sl@0
    39
	inline	virtual ~CActiveBase();
sl@0
    40
protected:
sl@0
    41
	inline	CActiveBase();
sl@0
    42
	};
sl@0
    43
sl@0
    44
class CLogBuffer : public CBase
sl@0
    45
	{
sl@0
    46
public:
sl@0
    47
	CLogBuffer(HBufC8& aBuffer);
sl@0
    48
	~CLogBuffer();
sl@0
    49
	inline const TDesC8& Buf();
sl@0
    50
	inline static TInt LinkOffset();
sl@0
    51
private:
sl@0
    52
	TSglQueLink iLink;
sl@0
    53
	HBufC8& iLogBuffer;
sl@0
    54
	};
sl@0
    55
sl@0
    56
class CLogServer;
sl@0
    57
class CLogFileControl : public CActiveBase
sl@0
    58
	{
sl@0
    59
public:
sl@0
    60
	enum TLogFormat{ETxt=10,EXml};
sl@0
    61
	
sl@0
    62
	static CLogFileControl* NewL(CLogServer& aParent, const TDesC& aLogFilePath,RFileFlogger::TLogMode aMode);
sl@0
    63
	~CLogFileControl();
sl@0
    64
	void RunL();
sl@0
    65
	inline void AddLogBuffer(CLogBuffer& aBuffer);
sl@0
    66
	inline const TDesC& LogFile();
sl@0
    67
	inline void DoCancel();
sl@0
    68
	inline void AddSession();
sl@0
    69
	inline void RemoveSession();
sl@0
    70
	inline TInt SessionCount() const;
sl@0
    71
	inline TBool QueueEmpty() const;
sl@0
    72
	void SetLogType(TLogFormat aLogFormat)
sl@0
    73
	{
sl@0
    74
		iLogFormat=aLogFormat;
sl@0
    75
	};
sl@0
    76
sl@0
    77
private:
sl@0
    78
	void ConstructL(RFileFlogger::TLogMode aMode);
sl@0
    79
	CLogFileControl(CLogServer& aParent, const TDesC& aLogFilePath);
sl@0
    80
	void WriteTxt(const TDesC8 &aDes);
sl@0
    81
	void WriteXml(const TDesC8 &aDes);
sl@0
    82
	
sl@0
    83
	struct TLogField8
sl@0
    84
	{
sl@0
    85
	TBuf8<KMaxSizOfTag> iLogTag8;
sl@0
    86
	TBuf8<KMaxSizOfString> iLogValue8;	
sl@0
    87
	};
sl@0
    88
sl@0
    89
private:
sl@0
    90
	CLogServer& iParent;
sl@0
    91
	TBuf<KMaxLoggerFilePath> iLogFileName;
sl@0
    92
	RFile iLogFile;
sl@0
    93
	TSglQue<CLogBuffer> iQueue;
sl@0
    94
	TInt iSessionCount;
sl@0
    95
	TBool iTransmitted;
sl@0
    96
	TLogFormat iLogFormat;
sl@0
    97
	};
sl@0
    98
sl@0
    99
class CLogServer : public CServer2
sl@0
   100
	{
sl@0
   101
public:
sl@0
   102
	static CLogServer* NewL();
sl@0
   103
	~CLogServer();
sl@0
   104
	void ControlComplete(CLogFileControl& aControl);
sl@0
   105
	
sl@0
   106
	inline RPointerArray<CLogFileControl>& LogControl();
sl@0
   107
	inline RFs& Fs();
sl@0
   108
sl@0
   109
	CSession2* NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const;
sl@0
   110
	void SessionClosed();
sl@0
   111
private:
sl@0
   112
	CLogServer();
sl@0
   113
	void ConstructL();
sl@0
   114
private:
sl@0
   115
	RFs iFs;
sl@0
   116
	RPointerArray<CLogFileControl> iControl;
sl@0
   117
	};
sl@0
   118
sl@0
   119
class CLogSession : public CSession2
sl@0
   120
	{
sl@0
   121
public:
sl@0
   122
	inline const CLogServer& LogServer() const;
sl@0
   123
	CLogSession();
sl@0
   124
	~CLogSession();
sl@0
   125
	void ServiceL(const RMessage2& aMessage);
sl@0
   126
private:
sl@0
   127
	CLogFileControl* iControl;
sl@0
   128
	};
sl@0
   129
sl@0
   130
#include "Server.inl"
sl@0
   131
sl@0
   132
#endif