os/persistentdata/loggingservices/filelogger/SSVR/FLOGSVR.H
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/persistentdata/loggingservices/filelogger/SSVR/FLOGSVR.H	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,111 @@
     1.4 +// Copyright (c) 1997-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +/**
    1.20 + @file
    1.21 + @internalTechnology
    1.22 +*/
    1.23 +
    1.24 +#ifndef __FLOGSVR_H__
    1.25 +#define __FLOGSVR_H__
    1.26 +
    1.27 +#include <f32file.h>
    1.28 +#include <flogger.h>
    1.29 +
    1.30 +class CFileLoggerManager;
    1.31 +class CFileLogSessionCounter;
    1.32 +
    1.33 +NONSHARABLE_CLASS(CFileLoggerServer) : public CServer2
    1.34 +/**
    1.35 +@internalComponent
    1.36 +*/
    1.37 +	{
    1.38 +public:
    1.39 +	static CFileLoggerServer* NewL();
    1.40 +	~CFileLoggerServer();
    1.41 +// CServer
    1.42 +	virtual CSession2* NewSessionL(const TVersion& aVersion, const RMessage2& aMessage) const;
    1.43 +//
    1.44 +	CFileLogSessionCounter* SessionCounter() const;
    1.45 +	void Error(TInt aError);
    1.46 +private:
    1.47 +	CFileLoggerServer();
    1.48 +	void ConstructL();
    1.49 +public:
    1.50 +	enum {EPriority=950};
    1.51 +private:
    1.52 +	CFileLoggerManager* iLoggerManager;
    1.53 +	CFileLogSessionCounter* iSessionCounter;
    1.54 +	};	
    1.55 +
    1.56 +NONSHARABLE_CLASS(CFileLogSession) : public CSession2
    1.57 +/**
    1.58 +@internalComponent
    1.59 +*/
    1.60 +	{
    1.61 +public:
    1.62 +	static CFileLogSession* NewL(CFileLoggerServer* aServer, CFileLoggerManager* aManager);
    1.63 +	~CFileLogSession();
    1.64 +	// CSession
    1.65 +	virtual void ServiceL(const RMessage2& aMessage);
    1.66 +	//
    1.67 +private:
    1.68 +	CFileLogSession(CFileLoggerServer* aServer, CFileLoggerManager* aManager);
    1.69 +	void ConstructL();
    1.70 +	void DispatchMessageL(const RMessage2& aMessage);
    1.71 +	void OpenLogL(TLogFile& aLogFile);
    1.72 +	void CloseLog(TLogFile& aLogFile);
    1.73 +private:
    1.74 +	CFileLoggerServer* iLoggerServer;
    1.75 +	CFileLoggerManager* iLoggerManager;
    1.76 +	CArrayFixFlat<TLogFile>* iOpenLogFiles;
    1.77 +	};
    1.78 +
    1.79 +class CShutdownTimer;
    1.80 +
    1.81 +NONSHARABLE_CLASS(CFileLogSessionCounter) : public CBase
    1.82 +/**
    1.83 +@internalComponent
    1.84 +*/
    1.85 +	{
    1.86 +public:
    1.87 +	static CFileLogSessionCounter* NewL();
    1.88 +	~CFileLogSessionCounter();
    1.89 +	void CancelTimer();
    1.90 +	void DecrementSessionCount();
    1.91 +	void IncrementSessionCount();
    1.92 +private:
    1.93 +	CFileLogSessionCounter();
    1.94 +	void ConstructL();
    1.95 +private:
    1.96 +	CShutdownTimer* iShutdownTimer;
    1.97 +	TInt iSessionCount;
    1.98 +	};
    1.99 +
   1.100 +NONSHARABLE_CLASS(CShutdownTimer) : public CTimer
   1.101 +/**
   1.102 +@internalComponent
   1.103 +*/
   1.104 +	{
   1.105 +public:
   1.106 +	static CShutdownTimer* NewL();
   1.107 +	~CShutdownTimer();
   1.108 +protected:
   1.109 +	CShutdownTimer();
   1.110 +	void RunL();
   1.111 +	};
   1.112 +
   1.113 +#endif // __FLOGSVR_H__
   1.114 +