os/graphics/windowing/windowserver/test/tscreenconstruct/src/twservscreenconstructserver.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/tscreenconstruct/src/twservscreenconstructserver.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,112 @@
1.4 +// Copyright (c) 2008-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 +/**
1.20 + @file
1.21 + @test
1.22 + @internalComponent
1.23 +*/
1.24 +
1.25 +// User includes
1.26 +#include "twservscreenconstructserver.h"
1.27 +#include "twservscreenconstructstepload.h"
1.28 +#include "twservscreenconstructconsts.h"
1.29 +
1.30 +/**
1.31 + * @return - Instance of the test server
1.32 + * Same code for Secure and non-secure variants
1.33 + * Called inside the MainL() function to create and start the
1.34 + * CTestServer derived server.
1.35 + */
1.36 +CTWServScreenConstructServer* CTWServScreenConstructServer::NewL()
1.37 + {
1.38 + CTWServScreenConstructServer* server = new(ELeave) CTWServScreenConstructServer();
1.39 + CleanupStack::PushL(server);
1.40 + server->ConstructL();
1.41 + CleanupStack::Pop(server);
1.42 + return server;
1.43 + }
1.44 +
1.45 +void CTWServScreenConstructServer::ConstructL()
1.46 + {
1.47 + RProcess handle = RProcess();
1.48 + TParsePtrC serverName(handle.FileName());
1.49 + CTestServer::ConstructL(serverName.Name());
1.50 + }
1.51 +
1.52 +/**
1.53 + * Secure variant
1.54 + * Much simpler, uses the new Rendezvous() call to sync with the client
1.55 + */
1.56 +LOCAL_C void MainL()
1.57 + {
1.58 +#if (defined __DATA_CAGING__)
1.59 + RProcess().DataCaging(RProcess::EDataCagingOn);
1.60 + RProcess().SecureApi(RProcess::ESecureApiOn);
1.61 +#endif
1.62 + CActiveScheduler* sched=NULL;
1.63 + sched=new(ELeave) CActiveScheduler;
1.64 + CActiveScheduler::Install(sched);
1.65 + CTWServScreenConstructServer* server = NULL;
1.66 + // Create the CTestServer derived server
1.67 + TRAPD(err,server = CTWServScreenConstructServer::NewL());
1.68 + if(!err)
1.69 + {
1.70 + // Sync with the client and enter the active scheduler
1.71 + RProcess::Rendezvous(KErrNone);
1.72 + sched->Start();
1.73 + }
1.74 + delete server;
1.75 + delete sched;
1.76 + }
1.77 +
1.78 +/**
1.79 + * @return - Standard Epoc error code on process exit
1.80 + * Secure variant only
1.81 + * Process entry point. Called by client using RProcess Integ
1.82 + */
1.83 +GLDEF_C TInt E32Main()
1.84 + {
1.85 + __UHEAP_MARK;
1.86 + CTrapCleanup* cleanup = CTrapCleanup::New();
1.87 + if(cleanup == NULL)
1.88 + {
1.89 + return KErrNoMemory;
1.90 + }
1.91 +#if (defined TRAP_IGNORE)
1.92 + TRAP_IGNORE(MainL());
1.93 +#else
1.94 + TRAPD(err,MainL());
1.95 +#endif
1.96 + delete cleanup;
1.97 + __UHEAP_MARKEND;
1.98 + return KErrNone;
1.99 + }
1.100 +
1.101 +/**
1.102 + * @return - A CTestStep derived instance
1.103 + * Secure and non-secure variants
1.104 + * Implementation of CTestServer pure virtual
1.105 + */
1.106 +CTestStep* CTWServScreenConstructServer::CreateTestStep(const TDesC& aStepName)
1.107 + {
1.108 + CTestStep* testStep = NULL;
1.109 +
1.110 + if ( aStepName==KTWServScreenConstructStepLoad )
1.111 + {
1.112 + testStep=new CTWServScreenConstructStepLoad();
1.113 + }
1.114 + return testStep;
1.115 + }