sl@0: // Copyright (c) 2007-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: // ULogger Server header file sl@0: // sl@0: sl@0: sl@0: sl@0: /** sl@0: @file sl@0: @internalTechnology sl@0: @prototype sl@0: */ sl@0: #ifndef ULOGGERSESSION_H_ sl@0: #define ULOGGERSESSION_H_ sl@0: sl@0: #include "uloggerserver.h" sl@0: namespace Ulogger { sl@0: sl@0: sl@0: /** Session object sl@0: This class is responsible for servicing the client requests sent. It forms the back-end server side of sl@0: each client connection to Ulogger server and implements the ServiceL() to service all client requests. sl@0: */ sl@0: class CULoggerSession : public CSession2 sl@0: { sl@0: public: sl@0: static CULoggerSession* NewL(RThread& aClient, CULoggerServer& aServer); sl@0: static CULoggerSession* NewLC(RThread& aClient, CULoggerServer& aServer); sl@0: ~CULoggerSession(); sl@0: sl@0: //from CSession sl@0: void ServiceL(const RMessage2& aMessage); sl@0: private: sl@0: CULoggerSession(RThread& aClient, CULoggerServer& aServer); sl@0: void ConstructL(); sl@0: sl@0: void SendIntegerL(const RMessage2& aMessage, TUint32 aInt); sl@0: //void PanicClient(TInt aPanic) const; sl@0: sl@0: //data sl@0: RMessage2 iMessage; sl@0: CULoggerServer& iServer; sl@0: RThread& iClient; sl@0: }; sl@0: } sl@0: #endif /*ULOGGERSESSION_H_*/