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 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#include "Baksrvs.h"
|
sl@0
|
17 |
#include <baksrv.h>
|
sl@0
|
18 |
#include <bafl/backup_std.h>
|
sl@0
|
19 |
#include <basched.h>
|
sl@0
|
20 |
#include <w32std.h>
|
sl@0
|
21 |
|
sl@0
|
22 |
_LIT(KRomPath,"Z:\\System\\Libs\\");
|
sl@0
|
23 |
_LIT(KFullBackUpServer,"eikbackupsrv.dll");
|
sl@0
|
24 |
|
sl@0
|
25 |
static void RunServerL()
|
sl@0
|
26 |
{
|
sl@0
|
27 |
|
sl@0
|
28 |
RThread thread;
|
sl@0
|
29 |
User::LeaveIfError(User::RenameThread(__BACKUP_SERVER_NAME_V2));
|
sl@0
|
30 |
thread.SetPriority(EPriorityRealTime);
|
sl@0
|
31 |
thread.Close();
|
sl@0
|
32 |
|
sl@0
|
33 |
RLibrary library;
|
sl@0
|
34 |
|
sl@0
|
35 |
CBaServBackupScheduler* scheduler = new (ELeave) CBaServBackupScheduler;
|
sl@0
|
36 |
CleanupStack::PushL(scheduler);
|
sl@0
|
37 |
CActiveScheduler::Install(scheduler);
|
sl@0
|
38 |
|
sl@0
|
39 |
CBaBackupServer* server = NULL;
|
sl@0
|
40 |
|
sl@0
|
41 |
TFullName threadName(_L("*"));
|
sl@0
|
42 |
threadName.Append(KWSERVThreadName);
|
sl@0
|
43 |
TFindThread findWserv(threadName);
|
sl@0
|
44 |
TFullName name;
|
sl@0
|
45 |
TBool wservLoaded = EFalse;
|
sl@0
|
46 |
if (findWserv.Next(name) != KErrNone)
|
sl@0
|
47 |
server = CBaBackupServer::NewL();
|
sl@0
|
48 |
else
|
sl@0
|
49 |
{
|
sl@0
|
50 |
User::LeaveIfError(library.Load(KFullBackUpServer, KRomPath));
|
sl@0
|
51 |
CleanupClosePushL(library);
|
sl@0
|
52 |
TLibraryFunction loadServer = library.Lookup(1);
|
sl@0
|
53 |
server = reinterpret_cast<CBaBackupServer*>((*loadServer)());
|
sl@0
|
54 |
User::LeaveIfNull(server);
|
sl@0
|
55 |
wservLoaded = ETrue;
|
sl@0
|
56 |
}
|
sl@0
|
57 |
CleanupStack::PushL(server);
|
sl@0
|
58 |
server->ConstructL();
|
sl@0
|
59 |
|
sl@0
|
60 |
RProcess::Rendezvous(KErrNone);
|
sl@0
|
61 |
|
sl@0
|
62 |
CActiveScheduler::Start();
|
sl@0
|
63 |
|
sl@0
|
64 |
CleanupStack::PopAndDestroy(server);
|
sl@0
|
65 |
if (wservLoaded)
|
sl@0
|
66 |
CleanupStack::PopAndDestroy(); //library
|
sl@0
|
67 |
CleanupStack::PopAndDestroy(scheduler);
|
sl@0
|
68 |
}
|
sl@0
|
69 |
|
sl@0
|
70 |
|
sl@0
|
71 |
TInt E32Main()
|
sl@0
|
72 |
//
|
sl@0
|
73 |
// Server process entry-point
|
sl@0
|
74 |
//
|
sl@0
|
75 |
{
|
sl@0
|
76 |
__UHEAP_MARK;
|
sl@0
|
77 |
//
|
sl@0
|
78 |
CTrapCleanup* cleanup=CTrapCleanup::New();
|
sl@0
|
79 |
TInt r=KErrNoMemory;
|
sl@0
|
80 |
if (cleanup)
|
sl@0
|
81 |
{
|
sl@0
|
82 |
TRAP(r,RunServerL());
|
sl@0
|
83 |
delete cleanup;
|
sl@0
|
84 |
}
|
sl@0
|
85 |
//
|
sl@0
|
86 |
__UHEAP_MARKEND;
|
sl@0
|
87 |
return r;
|
sl@0
|
88 |
}
|
sl@0
|
89 |
|