os/persistentdata/persistentstorage/centralrepository/cenrepsrv/sessmgr.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
     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 #include <e32base.h>
    17 #include "sessmgr.h"
    18 #include "srvparams.h"
    19 #include "srvsess.h"
    20 
    21 CSessionManager* CSessionManager::NewLC()
    22 	{
    23 	CSessionManager* s = new(ELeave) CSessionManager();
    24 	CleanupStack::PushL(s);
    25 	s->ConstructL();
    26 	return s;
    27 	}
    28 
    29 CSessionManager::CSessionManager() : 
    30 	CServer2(KServerPriority, ESharableSessions)
    31 	{}
    32 
    33 void CSessionManager::ConstructL()
    34 	{
    35 	iContainerIx=CObjectConIx::NewL();
    36 	StartL(KServerName);
    37 	}
    38 
    39 CSessionManager::~CSessionManager()
    40 	{
    41 	delete iContainerIx;
    42 	}
    43 	
    44 CSession2* CSessionManager::NewSessionL(
    45 	const TVersion& aVersion, const RMessage2&) const
    46 	{
    47 	// Test if the version specifies a repository session
    48 	const TVersion KRepositoryVersion(
    49 		KServerMajorVersion, KServerMinorVersion, KServerBuildVersion);
    50  	TBool r = User::QueryVersionSupported(aVersion, KRepositoryVersion);
    51 	if(r)
    52 		return new(ELeave) CServerSession();
    53 
    54 	//the version is not supported
    55 	User::Leave(KErrNotSupported);
    56 	return 0; //compiler, be quiet!
    57 	}
    58 
    59 //Creates and returns a new object container using the server's object container index.
    60 //This is a service that is used by a session.
    61 CObjectCon* CSessionManager::NewContainerL()
    62 	{
    63 	return iContainerIx->CreateL();
    64 	}
    65 	
    66 //Removes the object container using the server's object container index.
    67 //This is a service that is used by a session.
    68 void CSessionManager::RemoveContainer(CObjectCon *aCon)
    69 	{
    70 	iContainerIx->Remove(aCon);	
    71 	}
    72