1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/persistentdata/persistentstorage/centralrepository/cenrepsrv/main.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,161 @@
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 "sessmgr.h" // CSessionManager
1.20 +#include "srvparams.h" // KServerName
1.21 +#include "srvres.h" // TServerResources
1.22 +#include "srvrepos_noc.h" // CServerRepository
1.23 +#include <bacline.h> // CCommandLineArguments
1.24 +#include "backup.h" // CRepositoryBackupClient
1.25 +#include "install.h" // SWI watcher
1.26 +
1.27 +enum
1.28 + {
1.29 + ESoftReset = 0x01,
1.30 + } TStartupOptions;
1.31 +
1.32 +_LIT(KSoftReset, "--SoftReset");
1.33 +
1.34 +static void ParseCmdLineOptionsL(TInt& aOptions)
1.35 + {
1.36 + CCommandLineArguments* args = CCommandLineArguments::NewLC();
1.37 +
1.38 + for (TInt i = 1; i < args->Count(); ++i)
1.39 + {
1.40 + if (args->Arg(i).Compare(KSoftReset) == 0)
1.41 + {
1.42 + aOptions |= ESoftReset;
1.43 + }
1.44 + }
1.45 +
1.46 + CleanupStack::PopAndDestroy(args);
1.47 + }
1.48 +
1.49 +static void CloseTServerResources(TAny*)
1.50 + {
1.51 + // Ready to exit.
1.52 + TServerResources::Close();
1.53 + }
1.54 +
1.55 +//
1.56 +// Perform all server initialisation, in particular creation of the
1.57 +// scheduler and server and then run the scheduler
1.58 +//
1.59 +static void RunServerL()
1.60 + {
1.61 + TInt options = 0;
1.62 +
1.63 +#ifndef SYSLIBS_TEST
1.64 + // Set the server as a system critical thread.
1.65 + User::LeaveIfError(User::SetCritical(User::ESystemCritical));
1.66 +#endif
1.67 +
1.68 + ParseCmdLineOptionsL(options);
1.69 +
1.70 + // NOTE: Insert TraceHeap install here,
1.71 + // when RAllocator is available.
1.72 + //
1.73 + // naming the server thread after the server helps to debug panics
1.74 + User::LeaveIfError(User::RenameThread(KServerName));
1.75 +
1.76 + // create and install the active scheduler we need
1.77 + CActiveScheduler* s=new(ELeave) CActiveScheduler;
1.78 + CleanupStack::PushL(s);
1.79 + CActiveScheduler::Install(s);
1.80 +
1.81 + CleanupStack::PushL(TCleanupItem(CloseTServerResources, 0));
1.82 + TServerResources::InitialiseL();
1.83 +
1.84 + CSessionManager::NewLC();
1.85 +
1.86 + CCentRepSWIWatcher* swiWatcher = 0;
1.87 +
1.88 +
1.89 + if( TServerResources::iInstallDirectory)
1.90 + {
1.91 + swiWatcher = CCentRepSWIWatcher::NewL(TServerResources::iFs);
1.92 + CleanupStack::PushL(swiWatcher) ;
1.93 + swiWatcher->Start();
1.94 + }
1.95 +
1.96 + CRepositoryBackupClient* backupClient =
1.97 + CRepositoryBackupClient::NewL(TServerResources::iFs);
1.98 +
1.99 + CleanupStack::PushL(backupClient) ;
1.100 +
1.101 + backupClient->StartL();
1.102 +#ifdef SYMBIAN_BAFL_SYSUTIL
1.103 + PERF_TEST_SERVER_START();
1.104 +
1.105 + TRAPD(err, CServerRepository::CheckROMReflashL());
1.106 + if(err != KErrNone)
1.107 + {
1.108 + if(err == KErrNoMemory)
1.109 + {
1.110 + User::LeaveNoMemory();
1.111 + }
1.112 + else
1.113 + {//Dont stop the centrep from starting up from any other error.
1.114 + __CENTREP_TRACE1("CENTREP: CServerRepository::CheckROMReflashL - Error = %d", err);
1.115 + }
1.116 + }
1.117 + PERF_TEST_SERVER_END();
1.118 +#endif
1.119 +
1.120 + // check command line options
1.121 + if (options & ESoftReset)
1.122 + {
1.123 + CServerRepository::RFSAllRepositoriesL();
1.124 + }
1.125 +
1.126 + // Initialisation complete, now signal the client
1.127 + RProcess::Rendezvous(KErrNone);
1.128 +
1.129 + // Ready to run
1.130 + CActiveScheduler::Start();
1.131 +
1.132 + // Delete backup client if it exists
1.133 + if(backupClient)
1.134 + CleanupStack::PopAndDestroy(backupClient);
1.135 +
1.136 + // Delete file watcher if it exists
1.137 + if(swiWatcher)
1.138 + CleanupStack::PopAndDestroy(swiWatcher);
1.139 +
1.140 + // Ready to exit.
1.141 +
1.142 + TServerResources::Close();
1.143 +
1.144 + // Cleanup the server and scheduler
1.145 + CleanupStack::PopAndDestroy(2);//CSessionManager, s
1.146 + }
1.147 +
1.148 +// Entry point for the server
1.149 +TInt E32Main()
1.150 + {
1.151 + __UHEAP_MARK;
1.152 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.153 + TInt r = KErrNoMemory;
1.154 + if(cleanup)
1.155 + {
1.156 + TRAP(r, RunServerL());
1.157 + delete cleanup;
1.158 + }
1.159 +
1.160 + __UHEAP_MARKEND;
1.161 +
1.162 + return r;
1.163 + }
1.164 +