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: #include sl@0: #include "sessmgr.h" sl@0: #include "srvparams.h" sl@0: #include "srvsess.h" sl@0: sl@0: CSessionManager* CSessionManager::NewLC() sl@0: { sl@0: CSessionManager* s = new(ELeave) CSessionManager(); sl@0: CleanupStack::PushL(s); sl@0: s->ConstructL(); sl@0: return s; sl@0: } sl@0: sl@0: CSessionManager::CSessionManager() : sl@0: CServer2(KServerPriority, ESharableSessions) sl@0: {} sl@0: sl@0: void CSessionManager::ConstructL() sl@0: { sl@0: iContainerIx=CObjectConIx::NewL(); sl@0: StartL(KServerName); sl@0: } sl@0: sl@0: CSessionManager::~CSessionManager() sl@0: { sl@0: delete iContainerIx; sl@0: } sl@0: sl@0: CSession2* CSessionManager::NewSessionL( sl@0: const TVersion& aVersion, const RMessage2&) const sl@0: { sl@0: // Test if the version specifies a repository session sl@0: const TVersion KRepositoryVersion( sl@0: KServerMajorVersion, KServerMinorVersion, KServerBuildVersion); sl@0: TBool r = User::QueryVersionSupported(aVersion, KRepositoryVersion); sl@0: if(r) sl@0: return new(ELeave) CServerSession(); sl@0: sl@0: //the version is not supported sl@0: User::Leave(KErrNotSupported); sl@0: return 0; //compiler, be quiet! sl@0: } sl@0: sl@0: //Creates and returns a new object container using the server's object container index. sl@0: //This is a service that is used by a session. sl@0: CObjectCon* CSessionManager::NewContainerL() sl@0: { sl@0: return iContainerIx->CreateL(); sl@0: } sl@0: sl@0: //Removes the object container using the server's object container index. sl@0: //This is a service that is used by a session. sl@0: void CSessionManager::RemoveContainer(CObjectCon *aCon) sl@0: { sl@0: iContainerIx->Remove(aCon); sl@0: } sl@0: