os/persistentdata/loggingservices/rfilelogger/Logger/Src/server.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/loggingservices/rfilelogger/Logger/Src/server.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,132 @@
     1.4 +/**
     1.5 +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.6 +* All rights reserved.
     1.7 +* This component and the accompanying materials are made available
     1.8 +* under the terms of "Eclipse Public License v1.0"
     1.9 +* which accompanies this distribution, and is available
    1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.11 +*
    1.12 +* Initial Contributors:
    1.13 +* Nokia Corporation - initial contribution.
    1.14 +*
    1.15 +* Contributors:
    1.16 +*
    1.17 +* Description:
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +
    1.23 +/**
    1.24 + @file Server.h
    1.25 +*/
    1.26 +
    1.27 +#if (!defined __ET_RFILELOGGER_SERVER_H__)
    1.28 +#define __ET_RFILELOGGER_SERVER_H__
    1.29 +#include <e32base.h>
    1.30 +#include <f32file.h>
    1.31 +#include <test/rfilelogger.h>
    1.32 +
    1.33 +
    1.34 +class CActiveBase : public CActive
    1.35 +	{
    1.36 +public:
    1.37 +	inline 	TRequestStatus& Status();
    1.38 +	inline 	void SetActive();
    1.39 +	inline	void Kick();
    1.40 +	inline	void Prime();
    1.41 +	inline	void Complete(TInt aCode);
    1.42 +	inline	virtual ~CActiveBase();
    1.43 +protected:
    1.44 +	inline	CActiveBase();
    1.45 +	};
    1.46 +
    1.47 +class CLogBuffer : public CBase
    1.48 +	{
    1.49 +public:
    1.50 +	CLogBuffer(HBufC8& aBuffer);
    1.51 +	~CLogBuffer();
    1.52 +	inline const TDesC8& Buf();
    1.53 +	inline static TInt LinkOffset();
    1.54 +private:
    1.55 +	TSglQueLink iLink;
    1.56 +	HBufC8& iLogBuffer;
    1.57 +	};
    1.58 +
    1.59 +class CLogServer;
    1.60 +class CLogFileControl : public CActiveBase
    1.61 +	{
    1.62 +public:
    1.63 +	enum TLogFormat{ETxt=10,EXml};
    1.64 +	
    1.65 +	static CLogFileControl* NewL(CLogServer& aParent, const TDesC& aLogFilePath,RFileFlogger::TLogMode aMode);
    1.66 +	~CLogFileControl();
    1.67 +	void RunL();
    1.68 +	inline void AddLogBuffer(CLogBuffer& aBuffer);
    1.69 +	inline const TDesC& LogFile();
    1.70 +	inline void DoCancel();
    1.71 +	inline void AddSession();
    1.72 +	inline void RemoveSession();
    1.73 +	inline TInt SessionCount() const;
    1.74 +	inline TBool QueueEmpty() const;
    1.75 +	void SetLogType(TLogFormat aLogFormat)
    1.76 +	{
    1.77 +		iLogFormat=aLogFormat;
    1.78 +	};
    1.79 +
    1.80 +private:
    1.81 +	void ConstructL(RFileFlogger::TLogMode aMode);
    1.82 +	CLogFileControl(CLogServer& aParent, const TDesC& aLogFilePath);
    1.83 +	void WriteTxt(const TDesC8 &aDes);
    1.84 +	void WriteXml(const TDesC8 &aDes);
    1.85 +	
    1.86 +	struct TLogField8
    1.87 +	{
    1.88 +	TBuf8<KMaxSizOfTag> iLogTag8;
    1.89 +	TBuf8<KMaxSizOfString> iLogValue8;	
    1.90 +	};
    1.91 +
    1.92 +private:
    1.93 +	CLogServer& iParent;
    1.94 +	TBuf<KMaxLoggerFilePath> iLogFileName;
    1.95 +	RFile iLogFile;
    1.96 +	TSglQue<CLogBuffer> iQueue;
    1.97 +	TInt iSessionCount;
    1.98 +	TBool iTransmitted;
    1.99 +	TLogFormat iLogFormat;
   1.100 +	};
   1.101 +
   1.102 +class CLogServer : public CServer2
   1.103 +	{
   1.104 +public:
   1.105 +	static CLogServer* NewL();
   1.106 +	~CLogServer();
   1.107 +	void ControlComplete(CLogFileControl& aControl);
   1.108 +	
   1.109 +	inline RPointerArray<CLogFileControl>& LogControl();
   1.110 +	inline RFs& Fs();
   1.111 +
   1.112 +	CSession2* NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const;
   1.113 +	void SessionClosed();
   1.114 +private:
   1.115 +	CLogServer();
   1.116 +	void ConstructL();
   1.117 +private:
   1.118 +	RFs iFs;
   1.119 +	RPointerArray<CLogFileControl> iControl;
   1.120 +	};
   1.121 +
   1.122 +class CLogSession : public CSession2
   1.123 +	{
   1.124 +public:
   1.125 +	inline const CLogServer& LogServer() const;
   1.126 +	CLogSession();
   1.127 +	~CLogSession();
   1.128 +	void ServiceL(const RMessage2& aMessage);
   1.129 +private:
   1.130 +	CLogFileControl* iControl;
   1.131 +	};
   1.132 +
   1.133 +#include "Server.inl"
   1.134 +
   1.135 +#endif