Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
24 #if (!defined __ET_RFILELOGGER_SERVER_H__)
25 #define __ET_RFILELOGGER_SERVER_H__
28 #include <test/rfilelogger.h>
31 class CActiveBase : public CActive
34 inline TRequestStatus& Status();
35 inline void SetActive();
38 inline void Complete(TInt aCode);
39 inline virtual ~CActiveBase();
44 class CLogBuffer : public CBase
47 CLogBuffer(HBufC8& aBuffer);
49 inline const TDesC8& Buf();
50 inline static TInt LinkOffset();
57 class CLogFileControl : public CActiveBase
60 enum TLogFormat{ETxt=10,EXml};
62 static CLogFileControl* NewL(CLogServer& aParent, const TDesC& aLogFilePath,RFileFlogger::TLogMode aMode);
65 inline void AddLogBuffer(CLogBuffer& aBuffer);
66 inline const TDesC& LogFile();
67 inline void DoCancel();
68 inline void AddSession();
69 inline void RemoveSession();
70 inline TInt SessionCount() const;
71 inline TBool QueueEmpty() const;
72 void SetLogType(TLogFormat aLogFormat)
74 iLogFormat=aLogFormat;
78 void ConstructL(RFileFlogger::TLogMode aMode);
79 CLogFileControl(CLogServer& aParent, const TDesC& aLogFilePath);
80 void WriteTxt(const TDesC8 &aDes);
81 void WriteXml(const TDesC8 &aDes);
85 TBuf8<KMaxSizOfTag> iLogTag8;
86 TBuf8<KMaxSizOfString> iLogValue8;
91 TBuf<KMaxLoggerFilePath> iLogFileName;
93 TSglQue<CLogBuffer> iQueue;
96 TLogFormat iLogFormat;
99 class CLogServer : public CServer2
102 static CLogServer* NewL();
104 void ControlComplete(CLogFileControl& aControl);
106 inline RPointerArray<CLogFileControl>& LogControl();
109 CSession2* NewSessionL(const TVersion& aVersion,const RMessage2& aMessage) const;
110 void SessionClosed();
116 RPointerArray<CLogFileControl> iControl;
119 class CLogSession : public CSession2
122 inline const CLogServer& LogServer() const;
125 void ServiceL(const RMessage2& aMessage);
127 CLogFileControl* iControl;
130 #include "Server.inl"