os/graphics/windowing/windowserver/test/t_integ/src/t_dsaappeng.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     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 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #include <eikenv.h>
    23 #include <s32file.h>
    24 #include <f32file.h>
    25 #include <iniparser.h>
    26 #include "t_inidata.h"
    27 #include "t_wservconsts.h"
    28 #include "t_dsaappeng.h"
    29 #include "t_perfdata.h"
    30 
    31 
    32 _LIT(KDsaPanicTxt,                  "t_dsaapp.exe");
    33 _LIT(KDsaRotationAbortCount,        "KDsaRotationAbortCount");
    34 
    35 //
    36 // class CTDsaAppEng
    37 //
    38 CTDsaAppEng::CTDsaAppEng(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow)
    39 : CTimer(CActive::EPriorityStandard),
    40 	iClient(aClient),
    41 	iScreenDevice(aScreenDevice),
    42 	iWindow(aWindow),
    43     iDrawing(EFalse)
    44 	{    
    45 	}
    46 
    47 CTDsaAppEng* CTDsaAppEng::NewL(RWsSession& aClient, CWsScreenDevice& aScreenDevice, 
    48                                RWindow& aWindow)
    49     {
    50     CTDsaAppEng* self = new (ELeave) CTDsaAppEng(aClient, aScreenDevice, aWindow);
    51     CleanupStack::PushL(self);
    52     self->ConstructL();
    53     CleanupStack::Pop(); // self;
    54     return self;
    55     }
    56 
    57 CTDsaAppEng::~CTDsaAppEng()
    58 	{
    59     if(IsActive())
    60     	{
    61 	    Cancel();
    62     	}
    63 
    64 	delete iDirectScreenAccess;	
    65 	iDirectScreenAccess = NULL;
    66 	delete iPerfData;
    67 	iPerfData = NULL;
    68 	iRegion->Close();
    69 	iSemaphore.Close();
    70 	}
    71 
    72 void CTDsaAppEng::ConstructL()
    73 	{
    74 	CTimer::ConstructL();
    75 	iDirectScreenAccess = CDirectScreenAccess::NewL(iClient, iScreenDevice, iWindow, *this);
    76 	iPerfData = CTPerfData::NewL();
    77 	READ_INT(KDsaAppIterations, KWServDsaAppConfigFile, iFinishTesting);
    78 	User::LeaveIfError(iSemaphore.CreateGlobal(KWservDsaSemaphoreName(), 0));
    79 	CActiveScheduler::Add(this);
    80 	}
    81 
    82 void CTDsaAppEng::StartDrawing()
    83 	{
    84 	if (iDrawing)
    85 		{
    86 		User::Panic(KDsaPanicTxt, DirScrAccEngAlreadyStarted);
    87 		}
    88     
    89  	TRAPD(dsaErr, iDirectScreenAccess->StartL());
    90     if(dsaErr == KErrNone)
    91         {
    92 
    93 	    // Get graphics context for it
    94 	    iGc = iDirectScreenAccess->Gc();
    95 
    96 	    // Get region that DSA can draw in
    97 	    iRegion = iDirectScreenAccess->DrawingRegion();
    98 
    99 	    // Set the display to clip to this region
   100 	    iGc->SetClippingRegion(iRegion);
   101 
   102         iDrawing = ETrue;
   103 
   104         // request a timer event after a defined interval
   105 		After(TTimeIntervalMicroSeconds32(0));
   106         }
   107 	}
   108 
   109 void CTDsaAppEng::StopDrawing()
   110 	{
   111 	if (!iDrawing)
   112 		{
   113 		User::Panic(KDsaPanicTxt, DirScrAccEngAlreadyStopped);
   114 		}
   115 	
   116 	// Cancel timer and display
   117 	Cancel();
   118 	iDrawing = EFalse;
   119 	}
   120 	
   121 // Implement MDirectScreenAccess
   122 void CTDsaAppEng::Restart(RDirectScreenAccess::TTerminationReasons /*aReason*/)
   123 	{
   124 	// Restart display   
   125 	TInt scrMode = iScreenDevice.CurrentScreenMode();
   126 	TPixelsTwipsAndRotation sizeAndRotation;
   127 	iScreenDevice.GetScreenModeSizeAndRotation(scrMode, sizeAndRotation);
   128 	
   129 	RDebug::Print(_L("CTDsaAppEng::Restart - Screen Mode: %d"), scrMode);
   130 	RDebug::Print(_L("CTDsaAppEng::Restart - Previous Rotation: %d"), iPrevRotation);
   131 	RDebug::Print(_L("CTDsaAppEng::Restart - Rotation: %d"), sizeAndRotation.iRotation);
   132 	RDebug::Print(_L("CTDsaAppEng::Restart - Height: %d"), sizeAndRotation.iPixelSize.iHeight);
   133 	RDebug::Print(_L("CTDsaAppEng::Restart - Width: %d"), sizeAndRotation.iPixelSize.iWidth);
   134 	
   135 	// since RDirectScreenAccess::ETerminateRegion takes precedence over 
   136 	// RDirectScreenAccess::ETerminateRotation a check of the current screen
   137 	// rotation against the previous rotation is performed to determine whether
   138 	// the abort reason is due to a rotation event
   139 	if (iPrevRotation!=sizeAndRotation.iRotation)
   140 		{
   141 		iRotationAbortCount++;
   142 		iPrevRotation=sizeAndRotation.iRotation;
   143 		}
   144 		
   145 	StartDrawing();    
   146 	}
   147 
   148 void CTDsaAppEng::AbortNow(RDirectScreenAccess::TTerminationReasons /*aReason*/)
   149 	{
   150 	// Cancel timer and display
   151 	StopDrawing();
   152 	}
   153 
   154 void CTDsaAppEng::CreateTestFileL(const TDesC& aFileName)
   155 	{
   156 	RFs myFs;
   157 	User::LeaveIfError(myFs.Connect());
   158 	RFileWriteStream writer;
   159 	writer.PushL(); // writer on cleanup stack
   160 	User::LeaveIfError(writer.Replace(myFs, aFileName, EFileWrite));
   161 	writer << _L("DSA Test");
   162 	writer.CommitL();
   163 	CleanupStack::PopAndDestroy(&writer);
   164 	myFs.Close();
   165 	}
   166 
   167 void CTDsaAppEng::WriteResultsL(const TDesC& aFileName)
   168 	{
   169 	CIniData* myData=CIniData::NewL(aFileName);
   170 	CleanupStack::PushL(myData);
   171 	
   172 	TBuf<255> tempStore;
   173 	_LIT(KIntData, "%d");
   174 	tempStore.Format(KIntData,iRotationAbortCount);
   175 	TInt err2 = myData->AddValue(KDefaultSectionName, KDsaRotationAbortCount, tempStore);
   176 	if (err2)
   177 		{
   178 		RDebug::Print(_L("CTDsaAppEng::WriteResultsL - unable to add abort count to result file: %d"), err2);
   179 		}
   180 	myData->WriteToFileL();
   181 		
   182 	CleanupStack::PopAndDestroy(myData);
   183 	}
   184 
   185 // Timer's RunL()
   186 void CTDsaAppEng::RunL()
   187 	{
   188 	if (iFrameCount==0)
   189 		{
   190 		iPerfData->StartCounter();
   191 		CreateTestFileL(KWServDsaAppStartFile());
   192 		}
   193 	else
   194 		{
   195 		iPerfData->StopCounterL();
   196 		iPerfData->StartCounter();
   197 		}
   198 	
   199 	if (iFrameCount == 100 || iFrameCount == 200)
   200 		{
   201 		iSemaphore.Wait();
   202 		}
   203 		
   204 	if (iFrameCount==iFinishTesting)
   205 		{
   206 		iDirectScreenAccess->Cancel();
   207 		iPerfData->WriteResultsL(KWServDsaAppResultFile());
   208 		TRAP_IGNORE(WriteResultsL(KWServDsaAppResultFile()));
   209 		TRAPD(err,CreateTestFileL(KWServDsaAppFinishFile()));
   210 		if (err)
   211 			{
   212 			User::Panic(KDsaPanicTxt, err);
   213 			}
   214 		}
   215 	else
   216 		{
   217 		iFrameCount++;
   218 
   219 	    iDirectScreenAccess->ScreenDevice()->Update();
   220 	    iGc->Clear();
   221 		TRgb color(0,0,255);
   222 		
   223 		if (iFrameCount%2)
   224 			{
   225 			color.SetRed(0);
   226 			color.SetBlue(0);
   227 			color.SetGreen(255);
   228 			}
   229 	    
   230 	    iGc->SetBrushColor(color);
   231 	    iGc->SetPenColor(color);
   232 	    iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
   233 		TRect myRect(iWindow.Size());
   234 		iGc->DrawRect(myRect);
   235 
   236 		// Renew request
   237 		After(TTimeIntervalMicroSeconds32(0));
   238 		}
   239 	}
   240 
   241 // Timer's DoCancel()
   242 void CTDsaAppEng::DoCancel()
   243 	{
   244 	// Cancel timer
   245 	CTimer::DoCancel();
   246 	
   247 	// Cancel DSA
   248 	iDirectScreenAccess->Cancel();    
   249 	}
   250 
   251