os/persistentdata/persistentstorage/centralrepository/cenrepsrv/srvsess.h
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2004-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".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 #ifndef SRVSESS_H
    17 #define SRVSESS_H
    18 
    19 #include <e32base.h>
    20 #include "clientrequest.h"
    21 
    22 class CSessionManager;
    23 class CServerSubSession;
    24 
    25 class CServerSession : public CSession2
    26 	{
    27 public:
    28 	virtual ~CServerSession();
    29 
    30 private:
    31 	//methods inherited from CSession2
    32 	virtual void ServiceError(const RMessage2 &aMessage, TInt aError);
    33 	virtual void ServiceL(const RMessage2& aMessage);
    34 	virtual void CreateL();
    35 
    36 	//methods for handling subsessions
    37 	CServerSubSession* NewSubSessionL(const RMessage2& aMessage);
    38 	void DeleteSubSession(TInt aHandle);
    39 	CServerSubSession* SubSessionFromHandle(const RMessage2& aMessage,TInt aHandle);
    40 	
    41 	inline CSessionManager* Server();
    42 	
    43 private:
    44 	CObjectCon* iContainer;
    45 	CObjectIx* iSubSessionIx;
    46 
    47 //following methods and members are used for testing purposes only	
    48 #if defined(__CENTREP_SERVER_PERFTEST__) || defined (__CENTREP_SERVER_MEMTEST__) || defined(__CENTREP_SERVER_CACHETEST__)
    49 	TInt GetSetParameters(const TClientRequest& aMessage);
    50 #endif // __CENTREP_SERVER_PERFTEST__ || __CENTREP_SERVER_MEMTEST__ || __CENTREP_SERVER_CACHETEST__
    51 
    52 	};
    53 
    54 
    55 #endif // SRVSESS_H
    56