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