os/graphics/windowing/windowserver/wins_switching/wservswitch.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
sl@0
     1
// Copyright (c) 2007-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
// For the Winscw Emulator only, selects between NGA and Non-NGA version of wsgraphicdrawer.
sl@0
    15
// The default is the non-GCE based version.
sl@0
    16
// To select the NGA version do one of:
sl@0
    17
// 1. Add a line to the epoc.ini file in \epoc32\data like this:
sl@0
    18
// symbian_graphics_use_gce ON
sl@0
    19
// or
sl@0
    20
// 2. Start epoc.exe with these parameters, (the "--" IS necessary):
sl@0
    21
// -Dsymbian_graphics_use_gce=ON --
sl@0
    22
// or
sl@0
    23
// 3. epoc.exe can be told to switch to a different initialisation file than epoc.ini, with the -M parameter.
sl@0
    24
// Progress chaining to the real Wserv is logged in epocwind.out.
sl@0
    25
// 
sl@0
    26
//
sl@0
    27
sl@0
    28
#include <e32svr.h>
sl@0
    29
#include <u32hal.h>
sl@0
    30
sl@0
    31
sl@0
    32
_LIT(KProcessName, "WservSwitch");
sl@0
    33
sl@0
    34
sl@0
    35
TInt ChainWservSwitch()
sl@0
    36
	{
sl@0
    37
	_LIT(KWservSwitchNga,"z:\\sys\\bin\\wserv_nga.exe");
sl@0
    38
	_LIT(KWservSwitchNonNga,"z:\\sys\\bin\\wserv_nonnga.exe");
sl@0
    39
	// need to forward the command parameters to the chained version of Wserv
sl@0
    40
	TInt argLen = User::CommandLineLength();
sl@0
    41
	HBufC* arg = HBufC::New(argLen);
sl@0
    42
	if (arg == NULL)
sl@0
    43
		{
sl@0
    44
		return KErrNoMemory;
sl@0
    45
		}
sl@0
    46
	TPtr argPtr = arg->Des();
sl@0
    47
	User::CommandLine(argPtr);
sl@0
    48
sl@0
    49
	// NGA or Non-NGA WServ version?
sl@0
    50
	TBool nga = EFalse;
sl@0
    51
	UserSvr::HalFunction(EHalGroupEmulator, EEmulatorHalBoolProperty,  (TAny*)"symbian_graphics_use_gce",  &nga);
sl@0
    52
sl@0
    53
	// try to launch it
sl@0
    54
	const TPtrC exeName = nga ?  KWservSwitchNga() : KWservSwitchNonNga();
sl@0
    55
sl@0
    56
#ifdef _DEBUG
sl@0
    57
	RDebug::Print(_L("%S: Starting \"%S\" \"%S\""), &KProcessName, &exeName, &argPtr);
sl@0
    58
#endif
sl@0
    59
sl@0
    60
	RProcess server;
sl@0
    61
	TInt err = server.Create(exeName, argPtr, EOwnerThread);
sl@0
    62
	delete arg;
sl@0
    63
	arg = NULL;
sl@0
    64
	if (err)
sl@0
    65
		{
sl@0
    66
		return err;
sl@0
    67
		}
sl@0
    68
sl@0
    69
	// wait for server to start
sl@0
    70
#ifdef _DEBUG
sl@0
    71
	RDebug::Print(_L("%S: waiting on process ..."), &KProcessName);
sl@0
    72
#endif
sl@0
    73
	TRequestStatus stat;
sl@0
    74
	server.Rendezvous(stat);
sl@0
    75
sl@0
    76
	if (stat!=KRequestPending)
sl@0
    77
		{ // abort startup
sl@0
    78
		server.Kill(0);
sl@0
    79
		}
sl@0
    80
	else
sl@0
    81
		{ // logon OK - start the server
sl@0
    82
		server.Resume();
sl@0
    83
		}
sl@0
    84
sl@0
    85
	User::WaitForRequest(stat);
sl@0
    86
	return (server.ExitType() == EExitPanic) ? KErrGeneral : stat.Int();
sl@0
    87
	}
sl@0
    88
sl@0
    89
sl@0
    90
TInt E32Main()
sl@0
    91
	{
sl@0
    92
	TInt error = ChainWservSwitch();
sl@0
    93
	// propagate error to SysStart
sl@0
    94
	if (error)
sl@0
    95
		{
sl@0
    96
#ifdef _DEBUG
sl@0
    97
		RDebug::Print(_L("%S: Failed with error %i"), &KProcessName, error);
sl@0
    98
#endif
sl@0
    99
		}
sl@0
   100
	RProcess::Rendezvous(error);
sl@0
   101
	return error;
sl@0
   102
	}
sl@0
   103