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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
24 #include <libc/limits.h> //UINT_MAX
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"
34 // class CTPseudoAppEng
36 CTPseudoAppEng::CTPseudoAppEng(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow)
37 : CTimer(CActive::EPriorityStandard),
40 iScreenDevice(aScreenDevice),
45 CTPseudoAppEng* CTPseudoAppEng::NewL(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow)
47 CTPseudoAppEng* self = new (ELeave) CTPseudoAppEng(aClient, aScreenDevice, aWindow);
48 CleanupStack::PushL(self);
50 CleanupStack::Pop(); // self;
54 CTPseudoAppEng::~CTPseudoAppEng()
56 iSurfaceUpdateSession.Close();
63 delete iPseudoAppShared;
67 void CTPseudoAppEng::ConstructL()
71 //Create CIniData class for reading in values form ini files
73 iUtils = CIniData::NewL(KWServPseudoAppConfigFile);
75 iUtils = CIniData::NewL(KWServPseudoApp1ConfigFile);
78 //Connect to the surface update server
79 TInt err = iSurfaceUpdateSession.Connect();
82 RDebug::Print(_L("error in connecting surface update session\n"));
86 User::LeaveIfError(HAL::Get(HALData::EFastCounterFrequency, iCounterFreq));
88 //Enter the animation loop
89 RDebug::Print(_L("Enter Animation Loop\n"));
91 CActiveScheduler::Add(this);
94 void CTPseudoAppEng::StartDrawingL()
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"));
108 User::Panic(KTPseudoAppPanicTxt(), TPseudoAppEngAlreadyStarted);
113 //A value of 0 will provoke a E32User-Cbase 46 panic
114 After(TTimeIntervalMicroSeconds32(100000));
116 //Set iStartTime to current time
117 iStartTime.UniversalTime();
120 void CTPseudoAppEng::StopDrawing()
124 User::Panic(KTPseudoAppPanicTxt(), TPseudoAppEngAlreadyStopped);
127 // Cancel timer and display
132 void CTPseudoAppEng::TestFinishedL(const TDesC& aFileName)
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");
141 CleanupStack::PopAndDestroy(&writer);
145 void CTPseudoAppEng::WriteResultsL(const TDesC& aFileName)
148 User::LeaveIfError(myFs.Connect());
150 TInt err = myFs.MkDirAll(aFileName);
152 if (err==KErrNone || err==KErrAlreadyExists)
154 RFileWriteStream writer;
155 writer.PushL(); // writer on cleanup stack
157 User::LeaveIfError(writer.Replace(myFs, aFileName, EFileStreamText|EFileWrite));
159 CleanupStack::PopAndDestroy(&writer); // writer
161 CIniData* myData = CIniData::NewL(aFileName);
162 CleanupStack::PushL(myData);
165 _LIT(KIntData, "%d");
166 _LIT(KRealData, "%4.1f");
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();
174 //Write out the theoretical maximum frame rate
175 TReal frameRate = (iCounterFreq*static_cast<TReal>(iFrameDuration))/iGceTestResults.iTotalCompoTime;
177 tempStore.Format(KRealData, frameRate);
178 err = myData->AddValue(KDefaultSectionName, KGraphicsWservSurfaceFrameRate, tempStore);
179 myData->WriteToFileL();
181 //Write out the total test time
182 TReal compoTime = static_cast<TReal>(iGceTestResults.iElapsedTime)/1000;
184 tempStore.Format(KRealData, compoTime);
185 err = myData->AddValue(KDefaultSectionName, KGraphicsWservSurfaceTotalTestTime, tempStore);
186 myData->WriteToFileL();
188 CleanupStack::PopAndDestroy(myData);
195 void CTPseudoAppEng::RunL()
197 if(iFrameCounter != iFrameDuration)
199 //If no surface update is required, aSurfaceId will remain as 0
201 iSurfDetails.aSurfaceId = temp.CreateNullId() ;
203 while(iScreenCounter < iPseudoAppShared->iTestScreens.Count())
205 iPseudoAppShared->iTestScreens[iScreenCounter]->UpdateL(iSurfDetails);
210 if(!iSurfDetails.aSurfaceId.IsNull())
214 SendUpdateRequest(KAllScreens);
218 SendUpdateRequest(iScreenCounter - 1);
222 if(iScreenCounter == iPseudoAppShared->iTestScreens.Count())
229 After(TTimeIntervalMicroSeconds32(iFrameDelay));
234 WriteResultsL(KWServPseudoAppResultFile);
235 TestFinishedL(KWServPseudoAppFinishFile);
237 WriteResultsL(KWServPseudoApp1ResultFile);
238 TestFinishedL(KWServPseudoApp1FinishFile);
239 #endif //T_PSEUDOAPP1
243 // Timer's DoCancel()
244 void CTPseudoAppEng::DoCancel()
250 TBool CTPseudoAppEng::Drawing()
255 void CTPseudoAppEng::SendUpdateRequest(TInt /*aScreen*/)
260 TRect(0, 0, iSurfDetails.aSurfaceSize.iWidth, iSurfDetails.aSurfaceSize.iHeight)
263 RRegion region(1, rc);
265 //Use timestamp notification to measure frame rate
266 TRequestStatus status;
268 TTimeStamp timeStamp;
269 iSurfaceUpdateSession.NotifyWhenDisplayed(status, timeStamp);
270 iTimeStampBefore = User::FastCounter();
272 TInt ret = iSurfaceUpdateSession.SubmitUpdate(KAllScreens, iSurfDetails.aSurfaceId, iSurfDetails.aBufferNumber, ®ion);
274 User::WaitForRequest(status);
276 TUint64 time = timeStamp();
278 if(time < iTimeStampBefore)
283 iTotalCompositionTime += (time - iTimeStampBefore);
286 currentTime.UniversalTime();
287 TTimeIntervalMicroSeconds elapsedTime = currentTime.MicroSecondsFrom(iStartTime);
289 iGceTestResults.iElapsedTime = (TUint32)(elapsedTime.Int64()/1000);
290 iGceTestResults.iTotalCompoTime = (TUint32)(iTotalCompositionTime);
294 RDebug::Print(_L("Error submitting update request\n"));
298 void CTPseudoAppEng::ImportPseudoAppConfigL()
302 TInt numberOfScreens;
304 READ_INI1(number_of_screens, numberOfScreens, iUtils);
306 iPseudoAppShared = new(ELeave) CTPseudoAppShared;
307 for(TInt i=0; i<numberOfScreens; i++)
309 RDebug::Print(_L("Set up screen %d\n"), i);
310 TImportPseudoAppConfig::ImportPseudoAppConfigL(i, iFrameDuration, iFrameDelay, mode, aScreenSize, iUtils);
312 iPseudoAppShared->AddTestScreenL(i, mode, iFrameDuration, aScreenSize, &iGceTestResults, KWServPseudoAppConfigFile);
314 iPseudoAppShared->AddTestScreenL(i, mode, iFrameDuration, aScreenSize, &iGceTestResults, KWServPseudoApp1ConfigFile);
315 #endif //T_PSEUDOAPP1
317 READ_INI2A(KNullDesC, use_global_surface_update, True, False, iUseGlobalUpdate, ETrue, EFalse, iUtils);
320 void CTPseudoAppEng::RotateL()
322 if (iPseudoAppShared)
324 for(TInt i=0; i<iPseudoAppShared->iTestScreens.Count(); i++)
326 if (iPseudoAppShared->iTestScreens[i])
328 if(iPseudoAppShared->iTestScreens[i]->Rotation())
330 iPseudoAppShared->iTestScreens[i]->RotateL(i, iFrameCounter);