sl@0
|
1 |
// Copyright (c) 2004-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include <e32base.h>
|
sl@0
|
17 |
#include "sessmgr.h"
|
sl@0
|
18 |
#include "srvparams.h"
|
sl@0
|
19 |
#include "srvsess.h"
|
sl@0
|
20 |
|
sl@0
|
21 |
CSessionManager* CSessionManager::NewLC()
|
sl@0
|
22 |
{
|
sl@0
|
23 |
CSessionManager* s = new(ELeave) CSessionManager();
|
sl@0
|
24 |
CleanupStack::PushL(s);
|
sl@0
|
25 |
s->ConstructL();
|
sl@0
|
26 |
return s;
|
sl@0
|
27 |
}
|
sl@0
|
28 |
|
sl@0
|
29 |
CSessionManager::CSessionManager() :
|
sl@0
|
30 |
CServer2(KServerPriority, ESharableSessions)
|
sl@0
|
31 |
{}
|
sl@0
|
32 |
|
sl@0
|
33 |
void CSessionManager::ConstructL()
|
sl@0
|
34 |
{
|
sl@0
|
35 |
iContainerIx=CObjectConIx::NewL();
|
sl@0
|
36 |
StartL(KServerName);
|
sl@0
|
37 |
}
|
sl@0
|
38 |
|
sl@0
|
39 |
CSessionManager::~CSessionManager()
|
sl@0
|
40 |
{
|
sl@0
|
41 |
delete iContainerIx;
|
sl@0
|
42 |
}
|
sl@0
|
43 |
|
sl@0
|
44 |
CSession2* CSessionManager::NewSessionL(
|
sl@0
|
45 |
const TVersion& aVersion, const RMessage2&) const
|
sl@0
|
46 |
{
|
sl@0
|
47 |
// Test if the version specifies a repository session
|
sl@0
|
48 |
const TVersion KRepositoryVersion(
|
sl@0
|
49 |
KServerMajorVersion, KServerMinorVersion, KServerBuildVersion);
|
sl@0
|
50 |
TBool r = User::QueryVersionSupported(aVersion, KRepositoryVersion);
|
sl@0
|
51 |
if(r)
|
sl@0
|
52 |
return new(ELeave) CServerSession();
|
sl@0
|
53 |
|
sl@0
|
54 |
//the version is not supported
|
sl@0
|
55 |
User::Leave(KErrNotSupported);
|
sl@0
|
56 |
return 0; //compiler, be quiet!
|
sl@0
|
57 |
}
|
sl@0
|
58 |
|
sl@0
|
59 |
//Creates and returns a new object container using the server's object container index.
|
sl@0
|
60 |
//This is a service that is used by a session.
|
sl@0
|
61 |
CObjectCon* CSessionManager::NewContainerL()
|
sl@0
|
62 |
{
|
sl@0
|
63 |
return iContainerIx->CreateL();
|
sl@0
|
64 |
}
|
sl@0
|
65 |
|
sl@0
|
66 |
//Removes the object container using the server's object container index.
|
sl@0
|
67 |
//This is a service that is used by a session.
|
sl@0
|
68 |
void CSessionManager::RemoveContainer(CObjectCon *aCon)
|
sl@0
|
69 |
{
|
sl@0
|
70 |
iContainerIx->Remove(aCon);
|
sl@0
|
71 |
}
|
sl@0
|
72 |
|