Update contrib.
1 // Copyright (c) 1997-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.
14 // Server startup code and session object implementation.
18 #include "EComDebug.h"
19 #include "EComServerStart.h"
20 #include "EComServer.h"
22 // __________________________________________________________________________
23 // Server startup code
24 static void RunServerL()
26 // Perform all server initialisation, in particular creation of the
27 // scheduler and server and then run the scheduler
30 // naming the server thread after the server helps to debug panics
31 User::LeaveIfError(User::RenameThread(KEComServerName));
33 // create and install the active scheduler we need
34 CActiveScheduler* scheduler=new(ELeave) CActiveScheduler;
35 CleanupStack::PushL(scheduler);
36 CActiveScheduler::Install(scheduler);
38 // create the server (leave it on the cleanup stack)
41 // Initialisation complete, now signal the client
42 RProcess::Rendezvous(KErrNone);
45 __ECOM_TRACE("ECOM: Server ready, starting active scheduler");
46 CActiveScheduler::Start();
48 // Cleanup the server and scheduler
49 CleanupStack::PopAndDestroy(2, scheduler);
56 CTrapCleanup* cleanup=CTrapCleanup::New();
57 TInt err=KErrNoMemory;
60 TRAP(err,RunServerL());
63 __ECOM_LOG1("ECOM: Server unexpectedly exited, error = %d", err);
71 // Main entry-point for the server thread
73 #ifndef __ECOMSERVER_TESTING__
76 // Server process entry-point
77 // Recover the startup parameters and run the server
81 __ECOM_TRACE("ECOM: Server started, initialisation begun");
83 TInt err = ServerStart();
88 #endif // __ECOMSERVER_TESTING__