sl@0: // Copyright (c) 2004-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: #ifndef SRVSESS_H sl@0: #define SRVSESS_H sl@0: sl@0: #include sl@0: #include "clientrequest.h" sl@0: sl@0: class CSessionManager; sl@0: class CServerSubSession; sl@0: sl@0: class CServerSession : public CSession2 sl@0: { sl@0: public: sl@0: virtual ~CServerSession(); sl@0: sl@0: private: sl@0: //methods inherited from CSession2 sl@0: virtual void ServiceError(const RMessage2 &aMessage, TInt aError); sl@0: virtual void ServiceL(const RMessage2& aMessage); sl@0: virtual void CreateL(); sl@0: sl@0: //methods for handling subsessions sl@0: CServerSubSession* NewSubSessionL(const RMessage2& aMessage); sl@0: void DeleteSubSession(TInt aHandle); sl@0: CServerSubSession* SubSessionFromHandle(const RMessage2& aMessage,TInt aHandle); sl@0: sl@0: inline CSessionManager* Server(); sl@0: sl@0: private: sl@0: CObjectCon* iContainer; sl@0: CObjectIx* iSubSessionIx; sl@0: sl@0: //following methods and members are used for testing purposes only sl@0: #if defined(__CENTREP_SERVER_PERFTEST__) || defined (__CENTREP_SERVER_MEMTEST__) || defined(__CENTREP_SERVER_CACHETEST__) sl@0: TInt GetSetParameters(const TClientRequest& aMessage); sl@0: #endif // __CENTREP_SERVER_PERFTEST__ || __CENTREP_SERVER_MEMTEST__ || __CENTREP_SERVER_CACHETEST__ sl@0: sl@0: }; sl@0: sl@0: sl@0: #endif // SRVSESS_H sl@0: