diff -r 000000000000 -r e686773b3f54 predictivesearch/PcsServer/src/CPcsStartup.cpp --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/predictivesearch/PcsServer/src/CPcsStartup.cpp Tue Feb 02 10:12:17 2010 +0200 @@ -0,0 +1,85 @@ +/* +* Copyright (c) 2007 Nokia Corporation and/or its subsidiary(-ies). +* All rights reserved. +* This component and the accompanying materials are made available +* under the terms of "Eclipse Public License v1.0" +* which accompanies this distribution, and is available +* at the URL "http://www.eclipse.org/legal/epl-v10.html". +* +* Initial Contributors: +* Nokia Corporation - initial contribution. +* +* Contributors: +* +* Description: PCS Server Startup module +* +*/ + + +// INCLUDE FILES +#include +#include + +#include "CPcsDebug.h" +#include "CPcsStartup.h" +#include "CPcsServer.h" + +// ---------------------------------------------------------------------------- +// Initialize and run the server +// ---------------------------------------------------------------------------- +static void RunTheServerL() +{ + PRINT ( _L("Enter RunTheServerL") ); + + // First create and install the active scheduler + CActiveScheduler* scheduler = new (ELeave) CActiveScheduler; + CActiveScheduler::Install(scheduler); + + // Create the server + CPcsServer* server = CPcsServer::NewL(); + + + // Signal the client the startup is complete + RProcess::Rendezvous(KErrNone); + + // Enter the wait loop + CActiveScheduler::Start(); + + // Exited cleanup scheduler and server + delete server; + delete scheduler; + + REComSession::FinalClose(); + + PRINT ( _L("End RunTheServerL") ); +} + + +// ---------------------------------------------------------------------------- +// Main entry-point for the server thread/process +// ---------------------------------------------------------------------------- +static TInt RunTheServer() +{ + PRINT ( _L("Enter RunTheServer") ); + + CTrapCleanup* cleanup=CTrapCleanup::New(); + TInt r = KErrNoMemory; + if (cleanup) + { + TRAP(r,RunTheServerL()); + delete cleanup; + } + + PRINT ( _L("End RunTheServer") ); + + return (r); +} + + +// ---------------------------------------------------------------------------- +// Process entry point +// ---------------------------------------------------------------------------- +TInt E32Main() +{ + return RunTheServer(); +}