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.
16 #include "sessmgr.h" // CSessionManager
17 #include "srvparams.h" // KServerName
18 #include "srvres.h" // TServerResources
19 #include "srvrepos_noc.h" // CServerRepository
20 #include <bacline.h> // CCommandLineArguments
21 #include "backup.h" // CRepositoryBackupClient
22 #include "install.h" // SWI watcher
29 _LIT(KSoftReset, "--SoftReset");
31 static void ParseCmdLineOptionsL(TInt& aOptions)
33 CCommandLineArguments* args = CCommandLineArguments::NewLC();
35 for (TInt i = 1; i < args->Count(); ++i)
37 if (args->Arg(i).Compare(KSoftReset) == 0)
39 aOptions |= ESoftReset;
43 CleanupStack::PopAndDestroy(args);
46 static void CloseTServerResources(TAny*)
49 TServerResources::Close();
53 // Perform all server initialisation, in particular creation of the
54 // scheduler and server and then run the scheduler
56 static void RunServerL()
61 // Set the server as a system critical thread.
62 User::LeaveIfError(User::SetCritical(User::ESystemCritical));
65 ParseCmdLineOptionsL(options);
67 // NOTE: Insert TraceHeap install here,
68 // when RAllocator is available.
70 // naming the server thread after the server helps to debug panics
71 User::LeaveIfError(User::RenameThread(KServerName));
73 // create and install the active scheduler we need
74 CActiveScheduler* s=new(ELeave) CActiveScheduler;
75 CleanupStack::PushL(s);
76 CActiveScheduler::Install(s);
78 CleanupStack::PushL(TCleanupItem(CloseTServerResources, 0));
79 TServerResources::InitialiseL();
81 CSessionManager::NewLC();
83 CCentRepSWIWatcher* swiWatcher = 0;
86 if( TServerResources::iInstallDirectory)
88 swiWatcher = CCentRepSWIWatcher::NewL(TServerResources::iFs);
89 CleanupStack::PushL(swiWatcher) ;
93 CRepositoryBackupClient* backupClient =
94 CRepositoryBackupClient::NewL(TServerResources::iFs);
96 CleanupStack::PushL(backupClient) ;
98 backupClient->StartL();
99 #ifdef SYMBIAN_BAFL_SYSUTIL
100 PERF_TEST_SERVER_START();
102 TRAPD(err, CServerRepository::CheckROMReflashL());
105 if(err == KErrNoMemory)
107 User::LeaveNoMemory();
110 {//Dont stop the centrep from starting up from any other error.
111 __CENTREP_TRACE1("CENTREP: CServerRepository::CheckROMReflashL - Error = %d", err);
114 PERF_TEST_SERVER_END();
117 // check command line options
118 if (options & ESoftReset)
120 CServerRepository::RFSAllRepositoriesL();
123 // Initialisation complete, now signal the client
124 RProcess::Rendezvous(KErrNone);
127 CActiveScheduler::Start();
129 // Delete backup client if it exists
131 CleanupStack::PopAndDestroy(backupClient);
133 // Delete file watcher if it exists
135 CleanupStack::PopAndDestroy(swiWatcher);
139 TServerResources::Close();
141 // Cleanup the server and scheduler
142 CleanupStack::PopAndDestroy(2);//CSessionManager, s
145 // Entry point for the server
149 CTrapCleanup* cleanup = CTrapCleanup::New();
150 TInt r = KErrNoMemory;
153 TRAP(r, RunServerL());