installationservices/swi/test/tuiscriptadaptors/sisregistryaccess_startup.cpp
author Simon Howkins <simonh@symbian.org>
Mon, 22 Nov 2010 12:04:39 +0000
branchRCL_3
changeset 84 e6c5e34cd9b9
parent 0 ba25891c3a9e
permissions -rw-r--r--
Adjusted to avoid exports, etc, from a top-level bld.inf

/*
* Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of the License "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: 
* SisRegistryAccess - entry point
*
*/


/**
 @file 
 @test
 @internalComponent
*/

#include <e32std.h>
#include <e32base.h>

#include "sisregistryaccess_server_session.h"
#include "sisregistryaccess_common.h"

//
// Perform server initialisation, in particular creation of the scheduler and 
// server and then run the scheduler
//
static void RunServerL()
	{
	// naming the server thread after the server helps to debug panics
	User::LeaveIfError(RThread().RenameMe(KSisRegistryAccessServerName));
	//
	// create and install the active scheduler we need
	CActiveScheduler* sched = new(ELeave) CActiveScheduler;
	CleanupStack::PushL(sched);
	CActiveScheduler::Install(sched);
	//
	// create the server (leave it on the cleanup stack)
	CSisRegistryAccessServer::NewLC();

	//
	// Initialisation complete, now signal the client
	RProcess::Rendezvous(KErrNone);

	//
	// Ready to run
	CActiveScheduler::Start();
	//
	// Cleanup the server and scheduler
	CleanupStack::PopAndDestroy(2, sched);
	}

//
// Server process entry-point
//
TInt E32Main()
	{
	__UHEAP_MARK;

	//
	CTrapCleanup* cleanup = CTrapCleanup::New();
	TInt r = KErrNoMemory;
	if (cleanup)
		{
		TRAP(r, RunServerL());
		delete cleanup;
		}
	//

	__UHEAP_MARKEND;
	return r;
	}

void PanicClient(const RMessagePtr2& aMessage, TSisRegistryAccessPanic aPanic)
	{
	_LIT(KPanic,"SisRegistryAccessServer");
	aMessage.Panic(KPanic,aPanic);		// Also completes the message
	}