1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/centralrepository/cenrepsrv/sessmgr.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,72 @@
1.4 +// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +//
1.18 +
1.19 +#include <e32base.h>
1.20 +#include "sessmgr.h"
1.21 +#include "srvparams.h"
1.22 +#include "srvsess.h"
1.23 +
1.24 +CSessionManager* CSessionManager::NewLC()
1.25 + {
1.26 + CSessionManager* s = new(ELeave) CSessionManager();
1.27 + CleanupStack::PushL(s);
1.28 + s->ConstructL();
1.29 + return s;
1.30 + }
1.31 +
1.32 +CSessionManager::CSessionManager() :
1.33 + CServer2(KServerPriority, ESharableSessions)
1.34 + {}
1.35 +
1.36 +void CSessionManager::ConstructL()
1.37 + {
1.38 + iContainerIx=CObjectConIx::NewL();
1.39 + StartL(KServerName);
1.40 + }
1.41 +
1.42 +CSessionManager::~CSessionManager()
1.43 + {
1.44 + delete iContainerIx;
1.45 + }
1.46 +
1.47 +CSession2* CSessionManager::NewSessionL(
1.48 + const TVersion& aVersion, const RMessage2&) const
1.49 + {
1.50 + // Test if the version specifies a repository session
1.51 + const TVersion KRepositoryVersion(
1.52 + KServerMajorVersion, KServerMinorVersion, KServerBuildVersion);
1.53 + TBool r = User::QueryVersionSupported(aVersion, KRepositoryVersion);
1.54 + if(r)
1.55 + return new(ELeave) CServerSession();
1.56 +
1.57 + //the version is not supported
1.58 + User::Leave(KErrNotSupported);
1.59 + return 0; //compiler, be quiet!
1.60 + }
1.61 +
1.62 +//Creates and returns a new object container using the server's object container index.
1.63 +//This is a service that is used by a session.
1.64 +CObjectCon* CSessionManager::NewContainerL()
1.65 + {
1.66 + return iContainerIx->CreateL();
1.67 + }
1.68 +
1.69 +//Removes the object container using the server's object container index.
1.70 +//This is a service that is used by a session.
1.71 +void CSessionManager::RemoveContainer(CObjectCon *aCon)
1.72 + {
1.73 + iContainerIx->Remove(aCon);
1.74 + }
1.75 +