os/graphics/windowing/windowserver/test/t_integ/src/t_pseudoappeng.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 <s32file.h>
    23 #include <hal.h>
    24 #include <libc/limits.h> //UINT_MAX
    25 
    26 #include "t_pseudoappeng.h"
    27 #include "t_pseudoapputils.h"
    28 #include "t_wservconsts.h"
    29 #include "t_winutils.h"
    30 #include <graphics/suerror.h>
    31 #include "t_pseudoappshared.h"
    32 
    33 //
    34 // class CTPseudoAppEng
    35 //
    36 CTPseudoAppEng::CTPseudoAppEng(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow)
    37 : CTimer(CActive::EPriorityStandard),
    38 	iClient(aClient),
    39 	iWindow(aWindow),
    40 	iScreenDevice(aScreenDevice),
    41 	iDrawing(EFalse)
    42 	{
    43 	}
    44 
    45 CTPseudoAppEng* CTPseudoAppEng::NewL(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow)
    46     {
    47     CTPseudoAppEng* self = new (ELeave) CTPseudoAppEng(aClient, aScreenDevice, aWindow);
    48     CleanupStack::PushL(self);
    49     self->ConstructL();
    50     CleanupStack::Pop(); // self;
    51     return self;
    52     }
    53 
    54 CTPseudoAppEng::~CTPseudoAppEng()
    55 	{
    56 	iSurfaceUpdateSession.Close();
    57 
    58     if(IsActive())
    59     	{
    60 	    Cancel();
    61     	}
    62 
    63 	delete iPseudoAppShared;
    64 	delete iUtils;
    65 	}
    66 
    67 void CTPseudoAppEng::ConstructL()
    68 	{
    69 	CTimer::ConstructL();
    70 
    71 	//Create CIniData class for reading in values form ini files
    72 #ifndef T_PSEUDOAPP1
    73 	iUtils = CIniData::NewL(KWServPseudoAppConfigFile);
    74 #else
    75 	iUtils = CIniData::NewL(KWServPseudoApp1ConfigFile);
    76 #endif //T_PSEUDOAPP1
    77 
    78 	//Connect to the surface update server
    79 	TInt err = iSurfaceUpdateSession.Connect();
    80 	if (err!=KErrNone)
    81 		{
    82 		RDebug::Print(_L("error in connecting surface update session\n"));
    83 	 	User::Exit(0);
    84 		}
    85 
    86 	User::LeaveIfError(HAL::Get(HALData::EFastCounterFrequency, iCounterFreq));
    87 
    88 	//Enter the animation loop
    89 	RDebug::Print(_L("Enter Animation Loop\n"));
    90 
    91 	CActiveScheduler::Add(this);
    92 	}
    93 
    94 void CTPseudoAppEng::StartDrawingL()
    95 	{
    96 	/* Read in the configuration fron the config file *
    97 	 * and check the validity of the parameters. If   *
    98 	 * invalid, take remedial action                  *
    99 	 * Exit if the config is really unusable          *
   100 	 * Window and animation classes are created if    *
   101 	 * the configs are ok                             */
   102 	RDebug::Print(_L("Import configuration for t_pseudoapp class and create test screen(s)\n"));
   103 	ImportPseudoAppConfigL();
   104 	RDebug::Print(_L("Test screen(s) created for t_pseudoapp\n"));
   105 
   106 	if (iDrawing)
   107 		{
   108 		User::Panic(KTPseudoAppPanicTxt(), TPseudoAppEngAlreadyStarted);
   109 		}
   110 
   111 	iDrawing = ETrue;
   112 
   113 	//A value of 0 will provoke a E32User-Cbase 46 panic
   114 	After(TTimeIntervalMicroSeconds32(100000));
   115 
   116 	//Set iStartTime to current time
   117 	iStartTime.UniversalTime();
   118 	}
   119 
   120 void CTPseudoAppEng::StopDrawing()
   121 	{
   122 	if (!iDrawing)
   123 		{
   124 		User::Panic(KTPseudoAppPanicTxt(), TPseudoAppEngAlreadyStopped);
   125 		}
   126 
   127 	// Cancel timer and display
   128 	Cancel();
   129 	iDrawing = EFalse;
   130 	}
   131 
   132 void CTPseudoAppEng::TestFinishedL(const TDesC& aFileName)
   133 	{
   134 	RFs myFs;
   135 	User::LeaveIfError(myFs.Connect());
   136 	RFileWriteStream writer;
   137 	writer.PushL(); // writer on cleanup stack
   138 	User::LeaveIfError(writer.Replace(myFs, aFileName, EFileWrite));
   139 	writer << _L("Surfaces Test Finished");
   140 	writer.CommitL();
   141 	CleanupStack::PopAndDestroy(&writer);
   142 	myFs.Close();
   143 	}
   144 
   145 void CTPseudoAppEng::WriteResultsL(const TDesC& aFileName)
   146 	{
   147 	RFs myFs;
   148 	User::LeaveIfError(myFs.Connect());
   149 
   150 	TInt err = myFs.MkDirAll(aFileName);
   151 
   152 	if (err==KErrNone || err==KErrAlreadyExists)
   153 		{
   154 		RFileWriteStream writer;
   155 		writer.PushL(); // writer on cleanup stack
   156 
   157 		User::LeaveIfError(writer.Replace(myFs, aFileName, EFileStreamText|EFileWrite));
   158 		writer.CommitL();
   159 		CleanupStack::PopAndDestroy(&writer); // writer
   160 
   161 		CIniData* myData = CIniData::NewL(aFileName);
   162 		CleanupStack::PushL(myData);
   163 
   164 		TBuf<255> tempStore;
   165 		_LIT(KIntData, "%d");
   166 		_LIT(KRealData, "%4.1f");
   167 
   168 		//Write out the test result, which is essentially a pass if the code reaches here
   169 		tempStore.Format(KIntData, 1);
   170 		TInt err = myData->AddValue(KDefaultSectionName, KGraphicsWservSurfaceTestResult, tempStore);
   171 		User::LeaveIfError(err);
   172 		myData->WriteToFileL();
   173 
   174 		//Write out the theoretical maximum frame rate
   175 		TReal frameRate = (iCounterFreq*static_cast<TReal>(iFrameDuration))/iGceTestResults.iTotalCompoTime;
   176 
   177 		tempStore.Format(KRealData, frameRate);
   178 		err = myData->AddValue(KDefaultSectionName, KGraphicsWservSurfaceFrameRate, tempStore);
   179 		myData->WriteToFileL();
   180 
   181 		//Write out the total test time
   182 		TReal compoTime = static_cast<TReal>(iGceTestResults.iElapsedTime)/1000;
   183 
   184 		tempStore.Format(KRealData, compoTime);
   185 		err = myData->AddValue(KDefaultSectionName, KGraphicsWservSurfaceTotalTestTime, tempStore);
   186 		myData->WriteToFileL();
   187 
   188 		CleanupStack::PopAndDestroy(myData);
   189 		}
   190 
   191 	myFs.Close();
   192 	}
   193 
   194 // Timer's RunL()
   195 void CTPseudoAppEng::RunL()
   196 	{
   197 	if(iFrameCounter != iFrameDuration)
   198 		{
   199 		//If no surface update is required, aSurfaceId will remain as 0
   200 		TSurfaceId temp;
   201 		iSurfDetails.aSurfaceId = temp.CreateNullId() ;
   202 
   203 		while(iScreenCounter < iPseudoAppShared->iTestScreens.Count())
   204 			{
   205 			iPseudoAppShared->iTestScreens[iScreenCounter]->UpdateL(iSurfDetails);
   206 			iScreenCounter++;
   207 			break;
   208 			}
   209 
   210 		if(!iSurfDetails.aSurfaceId.IsNull())
   211 			{
   212 			if(iUseGlobalUpdate)
   213 				{
   214 				SendUpdateRequest(KAllScreens);				
   215 				}
   216 			else
   217 				{
   218 				SendUpdateRequest(iScreenCounter - 1);
   219 				}
   220 			}
   221 
   222 		if(iScreenCounter == iPseudoAppShared->iTestScreens.Count())
   223 			{
   224 			iScreenCounter = 0;
   225 			iFrameCounter++;
   226 			}
   227 
   228 		// Renew request
   229 		After(TTimeIntervalMicroSeconds32(iFrameDelay));
   230 		}
   231 	else
   232 		{
   233 #ifndef T_PSEUDOAPP1
   234 		WriteResultsL(KWServPseudoAppResultFile);
   235 		TestFinishedL(KWServPseudoAppFinishFile);
   236 #else
   237 		WriteResultsL(KWServPseudoApp1ResultFile);
   238 		TestFinishedL(KWServPseudoApp1FinishFile);
   239 #endif //T_PSEUDOAPP1
   240 		}
   241 	}
   242 
   243 // Timer's DoCancel()
   244 void CTPseudoAppEng::DoCancel()
   245 	{
   246 	// Cancel timer
   247 	CTimer::DoCancel();
   248 	}
   249 
   250 TBool  CTPseudoAppEng::Drawing()
   251 	{
   252 	return iDrawing;
   253 	}
   254 
   255 void CTPseudoAppEng::SendUpdateRequest(TInt /*aScreen*/)
   256  	{
   257  	//Submit update
   258 	TRect rc[1] =
   259 			{
   260 			TRect(0, 0, iSurfDetails.aSurfaceSize.iWidth, iSurfDetails.aSurfaceSize.iHeight)
   261 			};
   262 
   263 	RRegion region(1, rc);
   264 
   265 	//Use timestamp notification to measure frame rate
   266 	TRequestStatus status;
   267 
   268 	TTimeStamp timeStamp;
   269 	iSurfaceUpdateSession.NotifyWhenDisplayed(status, timeStamp);
   270 	iTimeStampBefore = User::FastCounter();
   271 
   272 	TInt ret = iSurfaceUpdateSession.SubmitUpdate(KAllScreens, iSurfDetails.aSurfaceId, iSurfDetails.aBufferNumber, &region);
   273 
   274 	User::WaitForRequest(status);
   275 
   276 	TUint64 time = timeStamp();
   277 
   278 	if(time < iTimeStampBefore)
   279 		{
   280 		time += UINT_MAX;
   281 		}
   282 
   283 	iTotalCompositionTime += (time - iTimeStampBefore);
   284 
   285 	TTime currentTime;
   286 	currentTime.UniversalTime();
   287 	TTimeIntervalMicroSeconds elapsedTime = currentTime.MicroSecondsFrom(iStartTime);
   288 
   289 	iGceTestResults.iElapsedTime = (TUint32)(elapsedTime.Int64()/1000);
   290 	iGceTestResults.iTotalCompoTime = (TUint32)(iTotalCompositionTime);
   291 
   292 	if(ret != KErrNone)
   293 		{
   294 		RDebug::Print(_L("Error submitting update request\n"));
   295 		}
   296  	}
   297 
   298 void CTPseudoAppEng::ImportPseudoAppConfigL()
   299 	{
   300 	TDisplayMode mode;
   301 	TSize aScreenSize;
   302 	TInt numberOfScreens;
   303 
   304 	READ_INI1(number_of_screens, numberOfScreens, iUtils);
   305 
   306 	iPseudoAppShared = new(ELeave) CTPseudoAppShared;
   307 	for(TInt i=0; i<numberOfScreens; i++)
   308 		{
   309 		RDebug::Print(_L("Set up screen %d\n"), i);
   310 		TImportPseudoAppConfig::ImportPseudoAppConfigL(i, iFrameDuration, iFrameDelay, mode, aScreenSize, iUtils);
   311 #ifndef T_PSEUDOAPP1
   312 		iPseudoAppShared->AddTestScreenL(i, mode, iFrameDuration, aScreenSize, &iGceTestResults, KWServPseudoAppConfigFile);
   313 #else
   314 		iPseudoAppShared->AddTestScreenL(i, mode, iFrameDuration, aScreenSize, &iGceTestResults, KWServPseudoApp1ConfigFile);
   315 #endif //T_PSEUDOAPP1
   316 		}
   317 	READ_INI2A(KNullDesC, use_global_surface_update, True, False, iUseGlobalUpdate, ETrue, EFalse, iUtils);
   318 	}
   319 
   320 void CTPseudoAppEng::RotateL()
   321 	{
   322 	if (iPseudoAppShared)
   323 		{
   324 		for(TInt i=0; i<iPseudoAppShared->iTestScreens.Count(); i++)
   325 			{
   326 			if (iPseudoAppShared->iTestScreens[i])
   327 				{
   328 				if(iPseudoAppShared->iTestScreens[i]->Rotation())
   329 					{
   330 					iPseudoAppShared->iTestScreens[i]->RotateL(i, iFrameCounter);
   331 					}
   332 				}
   333 			}
   334 		}
   335 	}