installationservices/swi/source/sisregistry/server_legacy/sisregistryserver.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 26 Jan 2010 12:06:03 +0200
changeset 5 3eebb1e54d3a
parent 0 ba25891c3a9e
permissions -rw-r--r--
Revision: 201001 Kit: 201004

/*
* Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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: 
* CSisRegistryServer classe definition
*
*/


/**
 @file 
 @released
 @internalComponent
*/
#ifndef __SISREGISTRYSERVER_H__
#define __SISREGISTRYSERVER_H__

#include <e32base.h>
#include "sisregistryclientserver.h"
#include "sisregistrycache.h"
#include "sisregistryservershutdown.h"

namespace Swi
{

_LIT_SECURE_ID(KDaemonSecureId, 0x10202DCE);
_LIT_SECURE_ID(KSwisSecureId, 0x101F7295);	

const TInt KPolicyRanges= 12;
const TInt KPolicyElements = 5;

class CSisRegistrySession;

enum TSisRegistryPanic
	{
	EPanicBadDescriptor,
	EPanicIllegalFunction,
	EPanicAlreadyReceiving,
	EPanicBadOperationMode
	};

class CSisRegistryServer : public CPolicyServer
	{
public:
	static CSisRegistryServer* NewLC(CActive::TPriority = CActive::EPriorityStandard);
	void AddSession();
	void DropSession();
	CSisRegistryCache& Cache();
	
private:
	CSisRegistryServer(CActive::TPriority aPriority);
	void ConstructL();
	~CSisRegistryServer();
	CSession2* NewSessionL(const TVersion& aVersion, const RMessage2& aMessage) const;

private:
	TInt iSessionCount;
	CShutdown* iShutdown;
	CSisRegistryCache* iCache;

private:
	// Server Policies
  	static const TUint iRangeCount = KPolicyRanges;
  	static const TInt iRanges[KPolicyRanges];
  	static const TUint8 iElementsIndex[KPolicyRanges];
  	static const CPolicyServer::TPolicyElement iPolicyElements[KPolicyElements];
  	static const CPolicyServer::TPolicy iPolicy;
	};

inline CSisRegistryCache& CSisRegistryServer::Cache()
	{ 
	return *iCache; 
	};	
} //namespace

#endif // __SISREGISTRYSERVER_H__