sl@0: // Copyright (c) 1997-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: @file sl@0: @internalTechnology sl@0: */ sl@0: sl@0: #ifndef __FLOGSVR_H__ sl@0: #define __FLOGSVR_H__ sl@0: sl@0: #include sl@0: #include sl@0: sl@0: class CFileLoggerManager; sl@0: class CFileLogSessionCounter; sl@0: sl@0: NONSHARABLE_CLASS(CFileLoggerServer) : public CServer2 sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: static CFileLoggerServer* NewL(); sl@0: ~CFileLoggerServer(); sl@0: // CServer sl@0: virtual CSession2* NewSessionL(const TVersion& aVersion, const RMessage2& aMessage) const; sl@0: // sl@0: CFileLogSessionCounter* SessionCounter() const; sl@0: void Error(TInt aError); sl@0: private: sl@0: CFileLoggerServer(); sl@0: void ConstructL(); sl@0: public: sl@0: enum {EPriority=950}; sl@0: private: sl@0: CFileLoggerManager* iLoggerManager; sl@0: CFileLogSessionCounter* iSessionCounter; sl@0: }; sl@0: sl@0: NONSHARABLE_CLASS(CFileLogSession) : public CSession2 sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: static CFileLogSession* NewL(CFileLoggerServer* aServer, CFileLoggerManager* aManager); sl@0: ~CFileLogSession(); sl@0: // CSession sl@0: virtual void ServiceL(const RMessage2& aMessage); sl@0: // sl@0: private: sl@0: CFileLogSession(CFileLoggerServer* aServer, CFileLoggerManager* aManager); sl@0: void ConstructL(); sl@0: void DispatchMessageL(const RMessage2& aMessage); sl@0: void OpenLogL(TLogFile& aLogFile); sl@0: void CloseLog(TLogFile& aLogFile); sl@0: private: sl@0: CFileLoggerServer* iLoggerServer; sl@0: CFileLoggerManager* iLoggerManager; sl@0: CArrayFixFlat* iOpenLogFiles; sl@0: }; sl@0: sl@0: class CShutdownTimer; sl@0: sl@0: NONSHARABLE_CLASS(CFileLogSessionCounter) : public CBase sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: static CFileLogSessionCounter* NewL(); sl@0: ~CFileLogSessionCounter(); sl@0: void CancelTimer(); sl@0: void DecrementSessionCount(); sl@0: void IncrementSessionCount(); sl@0: private: sl@0: CFileLogSessionCounter(); sl@0: void ConstructL(); sl@0: private: sl@0: CShutdownTimer* iShutdownTimer; sl@0: TInt iSessionCount; sl@0: }; sl@0: sl@0: NONSHARABLE_CLASS(CShutdownTimer) : public CTimer sl@0: /** sl@0: @internalComponent sl@0: */ sl@0: { sl@0: public: sl@0: static CShutdownTimer* NewL(); sl@0: ~CShutdownTimer(); sl@0: protected: sl@0: CShutdownTimer(); sl@0: void RunL(); sl@0: }; sl@0: sl@0: #endif // __FLOGSVR_H__ sl@0: