sl@0
|
1 |
// Copyright (c) 1997-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 |
// Server startup code and session object implementation.
|
sl@0
|
15 |
//
|
sl@0
|
16 |
//
|
sl@0
|
17 |
|
sl@0
|
18 |
#include "EComDebug.h"
|
sl@0
|
19 |
#include "EComServerStart.h"
|
sl@0
|
20 |
#include "EComServer.h"
|
sl@0
|
21 |
|
sl@0
|
22 |
// __________________________________________________________________________
|
sl@0
|
23 |
// Server startup code
|
sl@0
|
24 |
static void RunServerL()
|
sl@0
|
25 |
//
|
sl@0
|
26 |
// Perform all server initialisation, in particular creation of the
|
sl@0
|
27 |
// scheduler and server and then run the scheduler
|
sl@0
|
28 |
//
|
sl@0
|
29 |
{
|
sl@0
|
30 |
// naming the server thread after the server helps to debug panics
|
sl@0
|
31 |
User::LeaveIfError(User::RenameThread(KEComServerName));
|
sl@0
|
32 |
//
|
sl@0
|
33 |
// create and install the active scheduler we need
|
sl@0
|
34 |
CActiveScheduler* scheduler=new(ELeave) CActiveScheduler;
|
sl@0
|
35 |
CleanupStack::PushL(scheduler);
|
sl@0
|
36 |
CActiveScheduler::Install(scheduler);
|
sl@0
|
37 |
//
|
sl@0
|
38 |
// create the server (leave it on the cleanup stack)
|
sl@0
|
39 |
CEComServer::NewLC();
|
sl@0
|
40 |
//
|
sl@0
|
41 |
// Initialisation complete, now signal the client
|
sl@0
|
42 |
RProcess::Rendezvous(KErrNone);
|
sl@0
|
43 |
//
|
sl@0
|
44 |
// Ready to run
|
sl@0
|
45 |
__ECOM_TRACE("ECOM: Server ready, starting active scheduler");
|
sl@0
|
46 |
CActiveScheduler::Start();
|
sl@0
|
47 |
//
|
sl@0
|
48 |
// Cleanup the server and scheduler
|
sl@0
|
49 |
CleanupStack::PopAndDestroy(2, scheduler);
|
sl@0
|
50 |
}
|
sl@0
|
51 |
|
sl@0
|
52 |
|
sl@0
|
53 |
|
sl@0
|
54 |
TInt ServerStart()
|
sl@0
|
55 |
{
|
sl@0
|
56 |
CTrapCleanup* cleanup=CTrapCleanup::New();
|
sl@0
|
57 |
TInt err=KErrNoMemory;
|
sl@0
|
58 |
if (cleanup)
|
sl@0
|
59 |
{
|
sl@0
|
60 |
TRAP(err,RunServerL());
|
sl@0
|
61 |
if (err != KErrNone)
|
sl@0
|
62 |
{
|
sl@0
|
63 |
__ECOM_LOG1("ECOM: Server unexpectedly exited, error = %d", err);
|
sl@0
|
64 |
}
|
sl@0
|
65 |
delete cleanup;
|
sl@0
|
66 |
}
|
sl@0
|
67 |
return err;
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
//
|
sl@0
|
71 |
// Main entry-point for the server thread
|
sl@0
|
72 |
//
|
sl@0
|
73 |
#ifndef __ECOMSERVER_TESTING__
|
sl@0
|
74 |
TInt E32Main()
|
sl@0
|
75 |
//
|
sl@0
|
76 |
// Server process entry-point
|
sl@0
|
77 |
// Recover the startup parameters and run the server
|
sl@0
|
78 |
//
|
sl@0
|
79 |
{
|
sl@0
|
80 |
__UHEAP_MARK;
|
sl@0
|
81 |
__ECOM_TRACE("ECOM: Server started, initialisation begun");
|
sl@0
|
82 |
|
sl@0
|
83 |
TInt err = ServerStart();
|
sl@0
|
84 |
|
sl@0
|
85 |
__UHEAP_MARKEND;
|
sl@0
|
86 |
return err;
|
sl@0
|
87 |
}
|
sl@0
|
88 |
#endif // __ECOMSERVER_TESTING__
|