Update contrib.
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.
20 #include "SchLogger.h"
24 #include "SchSSAMan.h"
26 extern const BSUL::TClientMessageServerData KServerData;
28 CSchServer* CSchServer::NewLC()
30 CSchServer* self=new(ELeave) CSchServer(EPriority);
31 CleanupStack::PushL(self);
36 CSchServer::CSchServer(TInt aPriority)
41 CSchServer::~CSchServer()
43 delete iTaskScheduler;
51 void CSchServer::ConstructL()
54 iTheLog = CSheduleServerLog::NewL(_L("SchSvr"));
58 // Create server storage path
60 User::LeaveIfError(fs.Connect());
62 TInt err = fs.CreatePrivatePath(RFs::GetSystemDrive());
64 if(err != KErrNone && err != KErrAlreadyExists)
69 iTaskScheduler = CTaskScheduler::NewL();
71 #ifdef SYMBIAN_SYSTEM_STATE_MANAGEMENT
72 iSSAMgr = new(ELeave) CSchStartupStateMgr(KDmHierarchyIdStartup, KSM2OSServicesDomain3);
74 iSSAMgr = new(ELeave) CSchStartupStateMgr(KDmHierarchyIdStartup, KBaseServicesDomain3);
75 #endif //SYMBIAN_SYSTEM_STATE_MANAGEMENT
77 iSSAMgr->RegisterObserverL(iTaskScheduler);
78 iSSAMgr->InitialiseL();
80 //Initialise message framework
81 BSUL::CClientMessage::InitialiseFrameworkL(KServerData);
86 CSession2* CSchServer::NewSessionL(const TVersion &aVersion, const RMessage2& /*aMessage*/) const
88 // Create a new client for this server.
91 TVersion v(KESchSvrMajorVersionNumber,KESchSvrMinorVersionNumber,KESchSvrBuildVersionNumber);
92 TBool r=User::QueryVersionSupported(v,aVersion);
94 User::Leave(KErrNotSupported);
95 return new(ELeave) CSchSession(*iTaskScheduler);
98 // Perform all server initialisation, in particular creation of the
99 // scheduler and server and then run the scheduler
100 static void RunSchedulerL()
102 // naming the server thread after the server helps to debug panics
103 User::LeaveIfError(User::RenameThread(KSchSvrName));
104 User::LeaveIfError(User::SetProcessCritical(User::ESystemCritical));
105 RProcess().SetPriority(EPriorityHigh);
107 // create and install the active scheduler we need
108 CActiveScheduler* s=new(ELeave) CActiveScheduler;
109 CleanupStack::PushL(s);
110 CActiveScheduler::Install(s);
112 // create the server (leave it on the cleanup stack)
115 // Initialisation complete, now signal the client
116 RProcess::Rendezvous(KErrNone);
119 CActiveScheduler::Start();
121 // Cleanup the server and scheduler
122 CleanupStack::PopAndDestroy(2);
125 EXPORT_C TInt RunScheduler()
132 CTrapCleanup* cleanup=CTrapCleanup::New();
136 TRAP(r,RunSchedulerL());