1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/pluginfw/Framework/frame/EComServerStart.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,88 @@
1.4 +// Copyright (c) 1997-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 +// Server startup code and session object implementation.
1.18 +//
1.19 +//
1.20 +
1.21 +#include "EComDebug.h"
1.22 +#include "EComServerStart.h"
1.23 +#include "EComServer.h"
1.24 +
1.25 +// __________________________________________________________________________
1.26 +// Server startup code
1.27 +static void RunServerL()
1.28 +//
1.29 +// Perform all server initialisation, in particular creation of the
1.30 +// scheduler and server and then run the scheduler
1.31 +//
1.32 + {
1.33 + // naming the server thread after the server helps to debug panics
1.34 + User::LeaveIfError(User::RenameThread(KEComServerName));
1.35 + //
1.36 + // create and install the active scheduler we need
1.37 + CActiveScheduler* scheduler=new(ELeave) CActiveScheduler;
1.38 + CleanupStack::PushL(scheduler);
1.39 + CActiveScheduler::Install(scheduler);
1.40 + //
1.41 + // create the server (leave it on the cleanup stack)
1.42 + CEComServer::NewLC();
1.43 + //
1.44 + // Initialisation complete, now signal the client
1.45 + RProcess::Rendezvous(KErrNone);
1.46 + //
1.47 + // Ready to run
1.48 + __ECOM_TRACE("ECOM: Server ready, starting active scheduler");
1.49 + CActiveScheduler::Start();
1.50 + //
1.51 + // Cleanup the server and scheduler
1.52 + CleanupStack::PopAndDestroy(2, scheduler);
1.53 + }
1.54 +
1.55 +
1.56 +
1.57 +TInt ServerStart()
1.58 + {
1.59 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.60 + TInt err=KErrNoMemory;
1.61 + if (cleanup)
1.62 + {
1.63 + TRAP(err,RunServerL());
1.64 + if (err != KErrNone)
1.65 + {
1.66 + __ECOM_LOG1("ECOM: Server unexpectedly exited, error = %d", err);
1.67 + }
1.68 + delete cleanup;
1.69 + }
1.70 + return err;
1.71 + }
1.72 +
1.73 +//
1.74 +// Main entry-point for the server thread
1.75 +//
1.76 +#ifndef __ECOMSERVER_TESTING__
1.77 +TInt E32Main()
1.78 +//
1.79 +// Server process entry-point
1.80 +// Recover the startup parameters and run the server
1.81 +//
1.82 + {
1.83 + __UHEAP_MARK;
1.84 + __ECOM_TRACE("ECOM: Server started, initialisation begun");
1.85 +
1.86 + TInt err = ServerStart();
1.87 +
1.88 + __UHEAP_MARKEND;
1.89 + return err;
1.90 + }
1.91 +#endif // __ECOMSERVER_TESTING__