1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/ossrv/lowlevellibsandfws/apputils/src/Baksrvs.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,89 @@
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 +//
1.18 +
1.19 +#include "Baksrvs.h"
1.20 +#include <baksrv.h>
1.21 +#include <bafl/backup_std.h>
1.22 +#include <basched.h>
1.23 +#include <w32std.h>
1.24 +
1.25 +_LIT(KRomPath,"Z:\\System\\Libs\\");
1.26 +_LIT(KFullBackUpServer,"eikbackupsrv.dll");
1.27 +
1.28 +static void RunServerL()
1.29 + {
1.30 +
1.31 + RThread thread;
1.32 + User::LeaveIfError(User::RenameThread(__BACKUP_SERVER_NAME_V2));
1.33 + thread.SetPriority(EPriorityRealTime);
1.34 + thread.Close();
1.35 +
1.36 + RLibrary library;
1.37 +
1.38 + CBaServBackupScheduler* scheduler = new (ELeave) CBaServBackupScheduler;
1.39 + CleanupStack::PushL(scheduler);
1.40 + CActiveScheduler::Install(scheduler);
1.41 +
1.42 + CBaBackupServer* server = NULL;
1.43 +
1.44 + TFullName threadName(_L("*"));
1.45 + threadName.Append(KWSERVThreadName);
1.46 + TFindThread findWserv(threadName);
1.47 + TFullName name;
1.48 + TBool wservLoaded = EFalse;
1.49 + if (findWserv.Next(name) != KErrNone)
1.50 + server = CBaBackupServer::NewL();
1.51 + else
1.52 + {
1.53 + User::LeaveIfError(library.Load(KFullBackUpServer, KRomPath));
1.54 + CleanupClosePushL(library);
1.55 + TLibraryFunction loadServer = library.Lookup(1);
1.56 + server = reinterpret_cast<CBaBackupServer*>((*loadServer)());
1.57 + User::LeaveIfNull(server);
1.58 + wservLoaded = ETrue;
1.59 + }
1.60 + CleanupStack::PushL(server);
1.61 + server->ConstructL();
1.62 +
1.63 + RProcess::Rendezvous(KErrNone);
1.64 +
1.65 + CActiveScheduler::Start();
1.66 +
1.67 + CleanupStack::PopAndDestroy(server);
1.68 + if (wservLoaded)
1.69 + CleanupStack::PopAndDestroy(); //library
1.70 + CleanupStack::PopAndDestroy(scheduler);
1.71 + }
1.72 +
1.73 +
1.74 +TInt E32Main()
1.75 + //
1.76 + // Server process entry-point
1.77 + //
1.78 + {
1.79 + __UHEAP_MARK;
1.80 + //
1.81 + CTrapCleanup* cleanup=CTrapCleanup::New();
1.82 + TInt r=KErrNoMemory;
1.83 + if (cleanup)
1.84 + {
1.85 + TRAP(r,RunServerL());
1.86 + delete cleanup;
1.87 + }
1.88 + //
1.89 + __UHEAP_MARKEND;
1.90 + return r;
1.91 + }
1.92 +