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