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 "sessmgr.h" // CSessionManager
|
sl@0
|
17 |
#include "srvparams.h" // KServerName
|
sl@0
|
18 |
#include "srvres.h" // TServerResources
|
sl@0
|
19 |
#include "srvrepos_noc.h" // CServerRepository
|
sl@0
|
20 |
#include <bacline.h> // CCommandLineArguments
|
sl@0
|
21 |
#include "backup.h" // CRepositoryBackupClient
|
sl@0
|
22 |
#include "install.h" // SWI watcher
|
sl@0
|
23 |
|
sl@0
|
24 |
enum
|
sl@0
|
25 |
{
|
sl@0
|
26 |
ESoftReset = 0x01,
|
sl@0
|
27 |
} TStartupOptions;
|
sl@0
|
28 |
|
sl@0
|
29 |
_LIT(KSoftReset, "--SoftReset");
|
sl@0
|
30 |
|
sl@0
|
31 |
static void ParseCmdLineOptionsL(TInt& aOptions)
|
sl@0
|
32 |
{
|
sl@0
|
33 |
CCommandLineArguments* args = CCommandLineArguments::NewLC();
|
sl@0
|
34 |
|
sl@0
|
35 |
for (TInt i = 1; i < args->Count(); ++i)
|
sl@0
|
36 |
{
|
sl@0
|
37 |
if (args->Arg(i).Compare(KSoftReset) == 0)
|
sl@0
|
38 |
{
|
sl@0
|
39 |
aOptions |= ESoftReset;
|
sl@0
|
40 |
}
|
sl@0
|
41 |
}
|
sl@0
|
42 |
|
sl@0
|
43 |
CleanupStack::PopAndDestroy(args);
|
sl@0
|
44 |
}
|
sl@0
|
45 |
|
sl@0
|
46 |
static void CloseTServerResources(TAny*)
|
sl@0
|
47 |
{
|
sl@0
|
48 |
// Ready to exit.
|
sl@0
|
49 |
TServerResources::Close();
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
//
|
sl@0
|
53 |
// Perform all server initialisation, in particular creation of the
|
sl@0
|
54 |
// scheduler and server and then run the scheduler
|
sl@0
|
55 |
//
|
sl@0
|
56 |
static void RunServerL()
|
sl@0
|
57 |
{
|
sl@0
|
58 |
TInt options = 0;
|
sl@0
|
59 |
|
sl@0
|
60 |
#ifndef SYSLIBS_TEST
|
sl@0
|
61 |
// Set the server as a system critical thread.
|
sl@0
|
62 |
User::LeaveIfError(User::SetCritical(User::ESystemCritical));
|
sl@0
|
63 |
#endif
|
sl@0
|
64 |
|
sl@0
|
65 |
ParseCmdLineOptionsL(options);
|
sl@0
|
66 |
|
sl@0
|
67 |
// NOTE: Insert TraceHeap install here,
|
sl@0
|
68 |
// when RAllocator is available.
|
sl@0
|
69 |
//
|
sl@0
|
70 |
// naming the server thread after the server helps to debug panics
|
sl@0
|
71 |
User::LeaveIfError(User::RenameThread(KServerName));
|
sl@0
|
72 |
|
sl@0
|
73 |
// create and install the active scheduler we need
|
sl@0
|
74 |
CActiveScheduler* s=new(ELeave) CActiveScheduler;
|
sl@0
|
75 |
CleanupStack::PushL(s);
|
sl@0
|
76 |
CActiveScheduler::Install(s);
|
sl@0
|
77 |
|
sl@0
|
78 |
CleanupStack::PushL(TCleanupItem(CloseTServerResources, 0));
|
sl@0
|
79 |
TServerResources::InitialiseL();
|
sl@0
|
80 |
|
sl@0
|
81 |
CSessionManager::NewLC();
|
sl@0
|
82 |
|
sl@0
|
83 |
CCentRepSWIWatcher* swiWatcher = 0;
|
sl@0
|
84 |
|
sl@0
|
85 |
|
sl@0
|
86 |
if( TServerResources::iInstallDirectory)
|
sl@0
|
87 |
{
|
sl@0
|
88 |
swiWatcher = CCentRepSWIWatcher::NewL(TServerResources::iFs);
|
sl@0
|
89 |
CleanupStack::PushL(swiWatcher) ;
|
sl@0
|
90 |
swiWatcher->Start();
|
sl@0
|
91 |
}
|
sl@0
|
92 |
|
sl@0
|
93 |
CRepositoryBackupClient* backupClient =
|
sl@0
|
94 |
CRepositoryBackupClient::NewL(TServerResources::iFs);
|
sl@0
|
95 |
|
sl@0
|
96 |
CleanupStack::PushL(backupClient) ;
|
sl@0
|
97 |
|
sl@0
|
98 |
backupClient->StartL();
|
sl@0
|
99 |
#ifdef SYMBIAN_BAFL_SYSUTIL
|
sl@0
|
100 |
PERF_TEST_SERVER_START();
|
sl@0
|
101 |
|
sl@0
|
102 |
TRAPD(err, CServerRepository::CheckROMReflashL());
|
sl@0
|
103 |
if(err != KErrNone)
|
sl@0
|
104 |
{
|
sl@0
|
105 |
if(err == KErrNoMemory)
|
sl@0
|
106 |
{
|
sl@0
|
107 |
User::LeaveNoMemory();
|
sl@0
|
108 |
}
|
sl@0
|
109 |
else
|
sl@0
|
110 |
{//Dont stop the centrep from starting up from any other error.
|
sl@0
|
111 |
__CENTREP_TRACE1("CENTREP: CServerRepository::CheckROMReflashL - Error = %d", err);
|
sl@0
|
112 |
}
|
sl@0
|
113 |
}
|
sl@0
|
114 |
PERF_TEST_SERVER_END();
|
sl@0
|
115 |
#endif
|
sl@0
|
116 |
|
sl@0
|
117 |
// check command line options
|
sl@0
|
118 |
if (options & ESoftReset)
|
sl@0
|
119 |
{
|
sl@0
|
120 |
CServerRepository::RFSAllRepositoriesL();
|
sl@0
|
121 |
}
|
sl@0
|
122 |
|
sl@0
|
123 |
// Initialisation complete, now signal the client
|
sl@0
|
124 |
RProcess::Rendezvous(KErrNone);
|
sl@0
|
125 |
|
sl@0
|
126 |
// Ready to run
|
sl@0
|
127 |
CActiveScheduler::Start();
|
sl@0
|
128 |
|
sl@0
|
129 |
// Delete backup client if it exists
|
sl@0
|
130 |
if(backupClient)
|
sl@0
|
131 |
CleanupStack::PopAndDestroy(backupClient);
|
sl@0
|
132 |
|
sl@0
|
133 |
// Delete file watcher if it exists
|
sl@0
|
134 |
if(swiWatcher)
|
sl@0
|
135 |
CleanupStack::PopAndDestroy(swiWatcher);
|
sl@0
|
136 |
|
sl@0
|
137 |
// Ready to exit.
|
sl@0
|
138 |
|
sl@0
|
139 |
TServerResources::Close();
|
sl@0
|
140 |
|
sl@0
|
141 |
// Cleanup the server and scheduler
|
sl@0
|
142 |
CleanupStack::PopAndDestroy(2);//CSessionManager, s
|
sl@0
|
143 |
}
|
sl@0
|
144 |
|
sl@0
|
145 |
// Entry point for the server
|
sl@0
|
146 |
TInt E32Main()
|
sl@0
|
147 |
{
|
sl@0
|
148 |
__UHEAP_MARK;
|
sl@0
|
149 |
CTrapCleanup* cleanup = CTrapCleanup::New();
|
sl@0
|
150 |
TInt r = KErrNoMemory;
|
sl@0
|
151 |
if(cleanup)
|
sl@0
|
152 |
{
|
sl@0
|
153 |
TRAP(r, RunServerL());
|
sl@0
|
154 |
delete cleanup;
|
sl@0
|
155 |
}
|
sl@0
|
156 |
|
sl@0
|
157 |
__UHEAP_MARKEND;
|
sl@0
|
158 |
|
sl@0
|
159 |
return r;
|
sl@0
|
160 |
}
|
sl@0
|
161 |
|