Update contrib.
1 // Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
27 class CFileLoggerManager;
28 class CFileLogSessionCounter;
30 NONSHARABLE_CLASS(CFileLoggerServer) : public CServer2
36 static CFileLoggerServer* NewL();
39 virtual CSession2* NewSessionL(const TVersion& aVersion, const RMessage2& aMessage) const;
41 CFileLogSessionCounter* SessionCounter() const;
42 void Error(TInt aError);
49 CFileLoggerManager* iLoggerManager;
50 CFileLogSessionCounter* iSessionCounter;
53 NONSHARABLE_CLASS(CFileLogSession) : public CSession2
59 static CFileLogSession* NewL(CFileLoggerServer* aServer, CFileLoggerManager* aManager);
62 virtual void ServiceL(const RMessage2& aMessage);
65 CFileLogSession(CFileLoggerServer* aServer, CFileLoggerManager* aManager);
67 void DispatchMessageL(const RMessage2& aMessage);
68 void OpenLogL(TLogFile& aLogFile);
69 void CloseLog(TLogFile& aLogFile);
71 CFileLoggerServer* iLoggerServer;
72 CFileLoggerManager* iLoggerManager;
73 CArrayFixFlat<TLogFile>* iOpenLogFiles;
78 NONSHARABLE_CLASS(CFileLogSessionCounter) : public CBase
84 static CFileLogSessionCounter* NewL();
85 ~CFileLogSessionCounter();
87 void DecrementSessionCount();
88 void IncrementSessionCount();
90 CFileLogSessionCounter();
93 CShutdownTimer* iShutdownTimer;
97 NONSHARABLE_CLASS(CShutdownTimer) : public CTimer
103 static CShutdownTimer* NewL();
110 #endif // __FLOGSVR_H__