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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
18 #include "srvparams.h"
21 CSessionManager* CSessionManager::NewLC()
23 CSessionManager* s = new(ELeave) CSessionManager();
24 CleanupStack::PushL(s);
29 CSessionManager::CSessionManager() :
30 CServer2(KServerPriority, ESharableSessions)
33 void CSessionManager::ConstructL()
35 iContainerIx=CObjectConIx::NewL();
39 CSessionManager::~CSessionManager()
44 CSession2* CSessionManager::NewSessionL(
45 const TVersion& aVersion, const RMessage2&) const
47 // Test if the version specifies a repository session
48 const TVersion KRepositoryVersion(
49 KServerMajorVersion, KServerMinorVersion, KServerBuildVersion);
50 TBool r = User::QueryVersionSupported(aVersion, KRepositoryVersion);
52 return new(ELeave) CServerSession();
54 //the version is not supported
55 User::Leave(KErrNotSupported);
56 return 0; //compiler, be quiet!
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()
63 return iContainerIx->CreateL();
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)
70 iContainerIx->Remove(aCon);