sl@0: /** sl@0: * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: /** sl@0: @file Server.h sl@0: */ sl@0: sl@0: #if (!defined __ET_RFILELOGGER_SERVER_H__) sl@0: #define __ET_RFILELOGGER_SERVER_H__ sl@0: #include sl@0: #include sl@0: #include sl@0: sl@0: sl@0: class CActiveBase : public CActive sl@0: { sl@0: public: sl@0: inline TRequestStatus& Status(); sl@0: inline void SetActive(); sl@0: inline void Kick(); sl@0: inline void Prime(); sl@0: inline void Complete(TInt aCode); sl@0: inline virtual ~CActiveBase(); sl@0: protected: sl@0: inline CActiveBase(); sl@0: }; sl@0: sl@0: class CLogBuffer : public CBase sl@0: { sl@0: public: sl@0: CLogBuffer(HBufC8& aBuffer); sl@0: ~CLogBuffer(); sl@0: inline const TDesC8& Buf(); sl@0: inline static TInt LinkOffset(); sl@0: private: sl@0: TSglQueLink iLink; sl@0: HBufC8& iLogBuffer; sl@0: }; sl@0: sl@0: class CLogServer; sl@0: class CLogFileControl : public CActiveBase sl@0: { sl@0: public: sl@0: enum TLogFormat{ETxt=10,EXml}; sl@0: sl@0: static CLogFileControl* NewL(CLogServer& aParent, const TDesC& aLogFilePath,RFileFlogger::TLogMode aMode); sl@0: ~CLogFileControl(); sl@0: void RunL(); sl@0: inline void AddLogBuffer(CLogBuffer& aBuffer); sl@0: inline const TDesC& LogFile(); sl@0: inline void DoCancel(); sl@0: inline void AddSession(); sl@0: inline void RemoveSession(); sl@0: inline TInt SessionCount() const; sl@0: inline TBool QueueEmpty() const; sl@0: void SetLogType(TLogFormat aLogFormat) sl@0: { sl@0: iLogFormat=aLogFormat; sl@0: }; sl@0: sl@0: private: sl@0: void ConstructL(RFileFlogger::TLogMode aMode); sl@0: CLogFileControl(CLogServer& aParent, const TDesC& aLogFilePath); sl@0: void WriteTxt(const TDesC8 &aDes); sl@0: void WriteXml(const TDesC8 &aDes); sl@0: sl@0: struct TLogField8 sl@0: { sl@0: TBuf8 iLogTag8; sl@0: TBuf8 iLogValue8; sl@0: }; sl@0: sl@0: private: sl@0: CLogServer& iParent; sl@0: TBuf iLogFileName; sl@0: RFile iLogFile; sl@0: TSglQue iQueue; sl@0: TInt iSessionCount; sl@0: TBool iTransmitted; sl@0: TLogFormat iLogFormat; sl@0: }; sl@0: sl@0: class CLogServer : public CServer2 sl@0: { sl@0: public: sl@0: static CLogServer* NewL(); sl@0: ~CLogServer(); sl@0: void ControlComplete(CLogFileControl& aControl); sl@0: sl@0: inline RPointerArray& LogControl(); sl@0: inline RFs& Fs(); sl@0: sl@0: CSession2* NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const; sl@0: void SessionClosed(); sl@0: private: sl@0: CLogServer(); sl@0: void ConstructL(); sl@0: private: sl@0: RFs iFs; sl@0: RPointerArray iControl; sl@0: }; sl@0: sl@0: class CLogSession : public CSession2 sl@0: { sl@0: public: sl@0: inline const CLogServer& LogServer() const; sl@0: CLogSession(); sl@0: ~CLogSession(); sl@0: void ServiceL(const RMessage2& aMessage); sl@0: private: sl@0: CLogFileControl* iControl; sl@0: }; sl@0: sl@0: #include "Server.inl" sl@0: sl@0: #endif