phonebookengines/contactsmodel/cntsrv/inc/CCntSession.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Fri, 19 Mar 2010 09:27:18 +0200
changeset 24 0ba2181d7c28
parent 0 e686773b3f54
permissions -rw-r--r--
Revision: 201007 Kit: 201011

/*
* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description: 
*
*/




/**
 @file
 @internalComponent
 @released
*/


#ifndef CCNTSESSION_H
#define CCNTSESSION_H


#include "ccntdbmanager.h" // for tcntfilemode.
#include "ccntserver.h"

class CCntCrud;
class CCntDbManager;
class CCntServer;
class CCntPackager;
class CContactViewDef;
class CViewSubSessionBase;
struct TContactDbObserverEvent;
class CEventQueue;
class CCntMsgHandler;

// Message handler type.
enum TCntMsgHandlerType
	{
	ECntItemMsgHandler,
	ECntEventMsgHandler,
	ECntTransactionMsgHandler,
	ECntFileManagerMsgHandler,
	ECntPropertiesMsgHandler,
	ECntViewMsgHandler
	};
	
/**
Implementation of the CCntServer session.

Each session maps to a client-side RCntModel object.  The RCntModel::Connect()
method calls the RSessionBase::CreateSession() method which ultimately causes an
instance of this object to be created.
*/
class CCntSession : public CSession2, public MContactDbObserver
	{
public:
	virtual ~CCntSession();
	static	CCntSession* NewL(CCntPackager& aPackager, TUint aSessionId);

	void ServiceL(const RMessage2& aMessage);
	void ServiceError(const RMessage2& aMessage, TInt aError);

	// From MContactDbObserver.
	void HandleDatabaseEventL(TContactDbObserverEvent aEvent);
	
	friend class CCntMsgHandler;
		
private:
	void ConstructL();
	CCntSession(CCntPackager& aPackager, TUint aSessionId);
		
	inline CCntServer& Server();
	void SessionUnlockL();
	void UnRegisterDatabaseEventObserver();

private:
	CCntDbManager*	 iManager;
	CCntPackager& 	 iPackager;
	CContactViewDef* iView;
	const RMessage2* iMessage;
	TInt 			 iTimeOut;
	TUint	     iSessionId;
	
	// Message Handlers	
	RPointerArray<CCntMsgHandler> iMsgHandlerArray;
 	};

#include "ccntsession.inl"

#endif