1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_stress/src/comparison.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,906 @@
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 +
1.26 +#include <e32std.h>
1.27 +#include <fbs.h>
1.28 +
1.29 +#include "test_step_logger.h"
1.30 +#include "comparison.h"
1.31 +#include "utils.h"
1.32 +#include "compwin.h"
1.33 +#include "crpwin.h"
1.34 +#include "edgedwin.h"
1.35 +#include "coordinatewin.h"
1.36 +#include "backedupwin.h"
1.37 +#include "enormouswin.h"
1.38 +#include "animatedwin.h"
1.39 +#include "spritewin.h"
1.40 +#include "panic.h"
1.41 +
1.42 +
1.43 +const TInt KSteps = 10;
1.44 +
1.45 +CComparison::COperationTimer::COperationTimer(CComparison* aComp):CTimer(0), iComp(aComp)
1.46 +{}
1.47 +
1.48 +void CComparison::COperationTimer::ConstructL()
1.49 + {
1.50 + CTimer::ConstructL();
1.51 + }
1.52 +
1.53 +void CComparison::COperationTimer::DoCancel()
1.54 + {}
1.55 +
1.56 +void CComparison::COperationTimer::RunL()
1.57 + {
1.58 + iComp->Tick();
1.59 + }
1.60 +
1.61 +
1.62 +/*-------------------------------------------------------------------------*/
1.63 +// COneShotCompare
1.64 +CComparison::COneShotCompare* CComparison::COneShotCompare::NewL(TInt aPriority, CComparison& aComparison)
1.65 + {
1.66 + return new(ELeave)CComparison::COneShotCompare(aPriority, aComparison);
1.67 + }
1.68 +
1.69 +CComparison::COneShotCompare::COneShotCompare(TInt aPriority, CComparison& aComparison)
1.70 + :CAsyncOneShot(aPriority), iComparison(aComparison)
1.71 + {
1.72 + }
1.73 +
1.74 +void CComparison::COneShotCompare::RunL()
1.75 + {
1.76 + iComparison.iScreen->CopyScreenToBitmap(iComparison.iScreenBitmap);
1.77 + iComparison.SetVerifyTick(User::NTickCount());
1.78 + iComparison.Verify(iComparison.iScreenBitmap);
1.79 + }
1.80 +/*-------------------------------------------------------------------------*/
1.81 +
1.82 +_LIT(KConfigurationWindowSuffix, "-Window");
1.83 +
1.84 +/*******************************************************************************
1.85 +This is the stresslet itself
1.86 +*******************************************************************************/
1.87 +CComparison * CComparison::NewLC(MTestStepReporter& aReporter)
1.88 + {
1.89 + CComparison * self = new (ELeave) CComparison(aReporter);
1.90 + CleanupStack::PushL(self);
1.91 + self->ConstructL();
1.92 + return self;
1.93 + }
1.94 +
1.95 +void CComparison::ConstructL()
1.96 + {
1.97 + iWatchCat = CTestExecWatchCat::NewL( CExecutionContext::ECtxRandomAndRecord );
1.98 + }
1.99 +
1.100 +CComparison::CComparison (MTestStepReporter& aReporter):
1.101 + CStresslet(aReporter), iDifferenceBitmap(NULL), iDifferenceDevice(NULL), iOneShotCompare(NULL)
1.102 + {
1.103 + }
1.104 +
1.105 +/**
1.106 + Sets stress-test configuration (read from ini file).
1.107 + @param aRunData configuration data
1.108 + @param aConfFactory a factory interface for creating "section" readers. These
1.109 + are used to supply configuration data for each window type.
1.110 + */
1.111 +void CComparison::SetRunDataL(const TRunData& aRunData, MTestStepConfigurationContextFactory* aConfFactory)
1.112 + {
1.113 + iData = aRunData;
1.114 + User::LeaveIfError(iFs.Connect());
1.115 + iFs.MkDirAll(iData.loggingPath);
1.116 + iWatchCat->SetLoggingPathL(iData.loggingPath);
1.117 +
1.118 + //each window type can have its own configuration
1.119 + MTestStepConfigurationContext* context; //context created by the factory argument
1.120 + RBuf section; //section name (window-type + "-window"
1.121 + section.Create(32);
1.122 + CleanupStack::PushL(§ion);
1.123 +
1.124 + struct STestStepConfEntry
1.125 + {
1.126 + const TPtrC8 iType; //section name
1.127 + void (*iFunc)(const MTestStepConfigurationContext*); //configuration loader
1.128 + } confLoaders[] =
1.129 + {
1.130 + {KCommonWindowType(), CCompWin::LoadConfiguration},
1.131 + {KAnimatedWindowType(), CAnimatedWin::LoadConfiguration},
1.132 + {KBackedupWindowType(), CBackedupWin::LoadConfiguration},
1.133 + {KCoordinateWindowType(), CCoordinateWin::LoadConfiguration},
1.134 + {KCrpWindowType(), CCrpWin::LoadConfiguration},
1.135 + {KEdgedWindowType(), CEdgedWin::LoadConfiguration},
1.136 + {KEnormousWindowType(), CEnormousWin::LoadConfiguration},
1.137 + {KSpritedWindowType(), CSpritedWin::LoadConfiguration}
1.138 + };
1.139 +
1.140 + for (int i=0; i<sizeof(confLoaders)/sizeof(STestStepConfEntry); i++)
1.141 + {
1.142 + section.Copy(confLoaders[i].iType);
1.143 + section.Append(KConfigurationWindowSuffix);
1.144 + context = aConfFactory->GetConfigurationContextLC(section);
1.145 + confLoaders[i].iFunc(context);
1.146 + CleanupStack::PopAndDestroy(context);
1.147 + }
1.148 +
1.149 + CleanupStack::Pop(§ion);
1.150 + }
1.151 +
1.152 +void CComparison::StartL()
1.153 + {
1.154 + iStartTime.UniversalTime();
1.155 + if (iData.randomSeed > -1)
1.156 + {
1.157 + //use seed from ini file
1.158 + iFirstSeed = iData.randomSeed;
1.159 + }
1.160 + else
1.161 + {
1.162 + // randomize seed by time
1.163 + iFirstSeed = iStartTime.Int64();
1.164 + }
1.165 + TRnd::SetSeed(iFirstSeed);
1.166 +
1.167 + iWasOk = ETrue;
1.168 + iMode = EAct;
1.169 + iErrorNum = 0;
1.170 + iWinGroup=new(ELeave) RWindowGroup(Session());
1.171 + User::LeaveIfError(iWinGroup->Construct( (TUint32)(iWinGroup) ));
1.172 + iWinGroup->SetOrdinalPosition(0,0);
1.173 +
1.174 + //make sure at least minNumWindows are created, or if it's zero no limit
1.175 + iNumWindowsLeft = iData.minNumWindows;
1.176 +
1.177 + iScreen = new (ELeave) CWsScreenDevice(Session());
1.178 + User::LeaveIfError(iScreen->Construct(0));
1.179 + TDisplayMode screenMode = iScreen->DisplayMode();
1.180 +
1.181 + iScreenBitmap = new (ELeave) CFbsBitmap;
1.182 + iScreenBitmap->Create(TSize(iData.windowWidth, iData.windowHeight), screenMode);
1.183 +
1.184 + iBackground = new(ELeave) RBlankWindow(Session());
1.185 + iBackground->Construct(*iWinGroup,reinterpret_cast<TUint32>(iBackground));
1.186 + iBackground->SetColor(KRgbBlack);
1.187 + iBackground->SetExtent(TPoint(0,0), TSize(iData.windowWidth, iData.windowHeight));
1.188 + iBackground->SetOrdinalPosition(0);
1.189 + iBackground->Activate();
1.190 +
1.191 + iCurrentBmp = 0;
1.192 + iLastBmp = 1;
1.193 + iBmpGc = CFbsBitGc::NewL();
1.194 + for (TInt bmp = 0; bmp < 2; ++bmp)
1.195 + {
1.196 + iBitmap[bmp] = new (ELeave) CFbsBitmap;
1.197 + iBitmap[bmp]->Create(TSize(iData.windowWidth, iData.windowHeight), screenMode); //EColor16MU); //
1.198 + iDevice[bmp] = CFbsBitmapDevice::NewL(iBitmap[bmp]);
1.199 + //clear bitmap background
1.200 + iBmpGc->Activate(iDevice[bmp]);
1.201 + iBmpGc->Reset();
1.202 + iBmpGc->SetPenStyle(CGraphicsContext::ENullPen);
1.203 + iBmpGc->SetBrushColor(KRgbBlack);
1.204 + iBmpGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.205 + TPoint origin(0,0);
1.206 + TRect rect(origin, TSize(iData.windowWidth, iData.windowHeight));
1.207 + iBmpGc->DrawRect(rect);
1.208 + }
1.209 +
1.210 + iDifferenceBitmap = new (ELeave) CFbsBitmap;
1.211 + iDifferenceBitmap->Create(TSize(iData.windowWidth, iData.windowHeight), screenMode); //EColor16MU); //
1.212 + iDifferenceDevice = CFbsBitmapDevice::NewL(iDifferenceBitmap);
1.213 +
1.214 + iTimer = new(ELeave) COperationTimer(this);
1.215 + iTimer->ConstructL();
1.216 + CActiveScheduler::Add (iTimer);
1.217 + iTimer->After(iData.initPeriod);
1.218 + }
1.219 +
1.220 +/**
1.221 + Simulate a Left key stroke
1.222 + */
1.223 +void CComparison::Touch()
1.224 + {
1.225 + User::ResetInactivityTime();
1.226 +
1.227 + TRawEvent keyDown;
1.228 + keyDown.Set(TRawEvent::EKeyDown,EStdKeyLeftArrow);
1.229 + Session().SimulateRawEvent(keyDown);
1.230 +
1.231 + TRawEvent keyUp;
1.232 + keyUp.Set(TRawEvent::EKeyUp,EStdKeyLeftArrow);
1.233 + Session().SimulateRawEvent(keyUp);
1.234 + }
1.235 +
1.236 +/**
1.237 + Non leaving version of TickL that reports failures
1.238 + */
1.239 +TInt CComparison::Tick()
1.240 + {
1.241 + TRAPD(err, TickL());
1.242 + if (err)
1.243 + {
1.244 + REPORT_EVENT( EFalse );
1.245 + }
1.246 + return err;
1.247 + }
1.248 +
1.249 +/**
1.250 + Called periodically
1.251 + */
1.252 +void CComparison::TickL()
1.253 + {
1.254 + if (iMustConclude)
1.255 + {
1.256 + WriteLog();
1.257 + ConcludeNow();
1.258 + return;
1.259 + }
1.260 + if (0 == iTestNum % 100)
1.261 + {
1.262 + Touch();
1.263 + }
1.264 + DoStuffL();
1.265 + if (iStuffDone)
1.266 + {
1.267 + ++iTestNum;
1.268 + }
1.269 + }
1.270 +
1.271 +/**
1.272 + Dispatch work to selected operation by mode
1.273 + */
1.274 +void CComparison::DoStuffL()
1.275 + {
1.276 + iStuffDone = EFalse;
1.277 + switch (iMode)
1.278 + {
1.279 + case EAct:
1.280 + ActL();
1.281 + break;
1.282 + case EMove:
1.283 + MoveL();
1.284 + break;
1.285 + case EResize:
1.286 + ResizeL();
1.287 + break;
1.288 + };
1.289 + if (iWasOk && iData.compareBitmaps && iStuffDone)
1.290 + {
1.291 + Session().Flush();
1.292 + // schedule a delayed compare, will take place after all updates to windows
1.293 + if (iOneShotCompare == NULL)
1.294 + {
1.295 + iOneShotCompare = CComparison::COneShotCompare::NewL(EPriorityMuchLess, *this);
1.296 + }
1.297 + iOneShotCompare->Call();
1.298 + }
1.299 + else
1.300 + {
1.301 + if (iTestNum > iData.maxRunCycles && iNumWindowsLeft == 0)
1.302 + {
1.303 + iMustConclude = ETrue;
1.304 + }
1.305 + iTimer->After(iData.period);
1.306 + }
1.307 + Session().Flush();
1.308 +
1.309 + Session().Finish();
1.310 + }
1.311 +
1.312 +/**
1.313 + Performs a random operation on a random window
1.314 + Operation can be one of create, destroy, move, bring to front/back,
1.315 + resize, tick, toggle-visibility
1.316 + */
1.317 +void CComparison::ActL()
1.318 + {
1.319 + TInt action = TRnd::rnd(EACount);
1.320 + if (iWindows.Count() == 0)
1.321 + {
1.322 + action = 0;
1.323 + }
1.324 +
1.325 + iBehaviour.iWin = RandomWindow();
1.326 + iAct = static_cast<TAct>(action);
1.327 + switch(iAct)
1.328 + {
1.329 + case EACreate:
1.330 + CreateWindowL();
1.331 + break;
1.332 + case EADestroy:
1.333 + DestroyWindow();
1.334 + break;
1.335 + case EAMove:
1.336 + MoveWindow();
1.337 + break;
1.338 + case EAFront:
1.339 + BringWindowToFrontL();
1.340 + break;
1.341 + case EABack:
1.342 + SendWindowToBackL();
1.343 + break;
1.344 + case EAResize:
1.345 + ResizeWindow();
1.346 + break;
1.347 + case EATick:
1.348 + TickWindowL();
1.349 + break;
1.350 + case EAToggleVisible:
1.351 + ToggleVisible();
1.352 + break;
1.353 + } //lint !e787 enum constant TAct::EACount not used within switch
1.354 + }
1.355 +
1.356 +void CComparison::MoveL()
1.357 + {
1.358 + if (iBehaviour.iCount < 1)
1.359 + {
1.360 + iMode = EAct;
1.361 + }
1.362 + else
1.363 + {
1.364 + TPoint pos = iBehaviour.iWin->Pos() + iBehaviour.iPos;
1.365 + iBehaviour.iWin->SetPos(pos);
1.366 + --iBehaviour.iCount;
1.367 + iStuffDone = ETrue;
1.368 + }
1.369 + }
1.370 +
1.371 +void CComparison::ResizeL()
1.372 + {
1.373 + if (iBehaviour.iCount < 1)
1.374 + {
1.375 + iMode = EAct;
1.376 + }
1.377 + else
1.378 + {
1.379 + TSize size = iBehaviour.iWin->Size();
1.380 + size.iWidth += iBehaviour.iPos.iX;
1.381 + size.iHeight += iBehaviour.iPos.iY;
1.382 + iBehaviour.iWin->SetSize(size);
1.383 + --iBehaviour.iCount;
1.384 + iStuffDone = ETrue;
1.385 + }
1.386 + }
1.387 +
1.388 +/**
1.389 + Sets the position for a future window-move command, the actual move will be
1.390 + done in the next step
1.391 + */
1.392 +void CComparison::MoveWindow()
1.393 + {
1.394 + __UHEAP_MARK;
1.395 + if (iBehaviour.iWin)
1.396 + {
1.397 + TPoint pos = TPoint(TRnd::rnd(KPosLimit), TRnd::rnd(KPosLimit));
1.398 + pos.iX -= iBehaviour.iWin->Size().iWidth / 2;
1.399 + pos.iY -= iBehaviour.iWin->Size().iHeight / 2;
1.400 + iBehaviour.iPos = pos - iBehaviour.iWin->Pos();
1.401 + iBehaviour.iCount = KSteps;
1.402 + iBehaviour.iPos.iX /= iBehaviour.iCount;
1.403 + iBehaviour.iPos.iY /= iBehaviour.iCount;
1.404 + iMode = EMove;
1.405 + }
1.406 + __UHEAP_MARKEND;
1.407 + }
1.408 +
1.409 +/**
1.410 + Sets the size for a future window-resize command, the actual resize will be
1.411 + done in the next step
1.412 + */
1.413 +void CComparison::ResizeWindow()
1.414 + {
1.415 + __UHEAP_MARK;
1.416 + if (iBehaviour.iWin)
1.417 + {
1.418 + TPoint newsize = TPoint(TRnd::rnd(KPosLimit), TRnd::rnd(KPosLimit));
1.419 + TPoint oldsize;
1.420 + oldsize.iX = iBehaviour.iWin->Size().iWidth;
1.421 + oldsize.iY = iBehaviour.iWin->Size().iHeight;
1.422 + iBehaviour.iPos = newsize - oldsize;
1.423 + iBehaviour.iCount = KSteps;
1.424 + iBehaviour.iPos.iX /= iBehaviour.iCount;
1.425 + iBehaviour.iPos.iY /= iBehaviour.iCount;
1.426 + iMode = EResize;
1.427 + }
1.428 + __UHEAP_MARKEND;
1.429 + }
1.430 +
1.431 +void CComparison::BringWindowToFrontL()
1.432 + {
1.433 + __UHEAP_MARK;
1.434 + CCompWin* win = iBehaviour.iWin;
1.435 + if (win)
1.436 + {
1.437 + win->BringToFrontL();
1.438 + TInt pos = FindTopWindow(win);
1.439 + if (pos >= 0)
1.440 + {
1.441 + iWindows.Remove(pos);
1.442 + iWindows.Append(win);
1.443 + }
1.444 + iStuffDone = ETrue;
1.445 + }
1.446 + __UHEAP_MARKEND;
1.447 + }
1.448 +
1.449 +void CComparison::SendWindowToBackL()
1.450 + {
1.451 + __UHEAP_MARK;
1.452 + TInt ord = iBackground->OrdinalPosition();
1.453 + if (ord > 0)
1.454 + {
1.455 + CCompWin* win = iBehaviour.iWin;
1.456 + if (win)
1.457 + {
1.458 + TInt pos = FindTopWindow(win);
1.459 + if (pos >= 0)
1.460 + {
1.461 + iWindows.Remove(pos);
1.462 + iWindows.Insert(win, 0);
1.463 + win->Window()->SetOrdinalPosition(ord - 1);
1.464 + }
1.465 + else
1.466 + {
1.467 + win->SendToBackL();
1.468 + }
1.469 + iStuffDone = ETrue;
1.470 + }
1.471 + }
1.472 + __UHEAP_MARKEND;
1.473 + }
1.474 +
1.475 +TInt CComparison::FindTopWindow(CCompWin* win)
1.476 + {
1.477 + return iWindows.Find(win);
1.478 + }
1.479 +
1.480 +/**
1.481 + Returns a random window (which may be a NULL window)
1.482 +*/
1.483 +CCompWin * CComparison::RandomWindow()
1.484 + {
1.485 + if (iWindows.Count() == 0)
1.486 + {
1.487 + return 0;
1.488 + }
1.489 +
1.490 + TInt num = TRnd::rnd(iWindows.Count() + 1);
1.491 +
1.492 + if (num == iWindows.Count())
1.493 + {
1.494 + return 0;
1.495 + }
1.496 + else
1.497 + {
1.498 + return iWindows[num]->RandomWindow();
1.499 + }
1.500 + }
1.501 +
1.502 +void CComparison::CreateWindowL()
1.503 + {
1.504 + CCompWin* parent = iBehaviour.iWin;
1.505 + CCompWin* win = CCompWin::NewLC(Session(), iWinGroup, parent, WindowGc());
1.506 + iBehaviour.iWin = win;
1.507 + if (!parent)
1.508 + {
1.509 + iWindows.AppendL(win);
1.510 + }
1.511 + CleanupStack::Pop(win);
1.512 + if (iNumWindowsLeft > 0) //decrement window count
1.513 + {
1.514 + --iNumWindowsLeft;
1.515 + }
1.516 + iStuffDone = ETrue;
1.517 + }
1.518 +
1.519 +void CComparison::DestroyWindow()
1.520 + {
1.521 + CCompWin* win = iBehaviour.iWin;
1.522 + if (win)
1.523 + {
1.524 + TInt num = iWindows.Find(win);
1.525 + if (num != KErrNotFound)
1.526 + {
1.527 + iWindows.Remove(num);
1.528 + }
1.529 + delete win;
1.530 + iBehaviour.iWin = 0; // rby added
1.531 + iStuffDone = ETrue;
1.532 + }
1.533 + }
1.534 +
1.535 +void CComparison::TickWindowL()
1.536 + {
1.537 + CCompWin* win = iBehaviour.iWin;
1.538 + if (win)
1.539 + {
1.540 + if (win->TickL())
1.541 + {
1.542 + iStuffDone = ETrue;
1.543 + }
1.544 + }
1.545 + }
1.546 +
1.547 +void CComparison::ToggleVisible()
1.548 + {
1.549 + __UHEAP_MARK;
1.550 + CCompWin* win = iBehaviour.iWin;
1.551 + if (win)
1.552 + {
1.553 + win->ToggleVisible();
1.554 + iStuffDone = ETrue;
1.555 + }
1.556 + __UHEAP_MARKEND;
1.557 + }
1.558 +
1.559 +void CComparison::HandleRedraw(TWsRedrawEvent &aEvent)
1.560 + {
1.561 + __UHEAP_MARK;
1.562 + if (aEvent.Handle() != reinterpret_cast<TUint32>(iBackground))
1.563 + {
1.564 + reinterpret_cast<CCompWin*>(aEvent.Handle())->HandleRedraw(aEvent);
1.565 + }
1.566 + Session().Flush();
1.567 + __UHEAP_MARKEND;
1.568 + }
1.569 +
1.570 +void CComparison::HandleEvent(TWsEvent &/*aEvent*/)
1.571 + {
1.572 + }
1.573 +
1.574 +/**
1.575 + Compares two bitmaps. Comparison is done on a pixel-by-pixel basis.
1.576 + If the bitmaps are of different sizes, the smaller axis of each is used for
1.577 + comparison (top-left subregions).
1.578 + First different pixel is stored in internally.
1.579 + @return ETrue if bitmaps match, EFalse otherwise.
1.580 +*/
1.581 +TBool CComparison::BitmapsMatch(const CFbsBitmap * aBitmap1, const CFbsBitmap * aBitmap2)
1.582 + {
1.583 + TDisplayMode mode1 = aBitmap1->DisplayMode();
1.584 + TDisplayMode mode2 = aBitmap2->DisplayMode();
1.585 +
1.586 + TSize bmpSize = aBitmap1->SizeInPixels();
1.587 + TSize bmpSize2 = aBitmap2->SizeInPixels();
1.588 + if (bmpSize2.iWidth < bmpSize.iWidth)
1.589 + {
1.590 + bmpSize.iWidth = bmpSize2.iWidth;
1.591 + }
1.592 + if (bmpSize2.iHeight < bmpSize.iHeight)
1.593 + {
1.594 + bmpSize.iHeight = bmpSize2.iHeight;
1.595 + }
1.596 +
1.597 + TRgb c1;
1.598 + TRgb c2;
1.599 + for (TInt y=0; y < bmpSize.iHeight; y++)
1.600 + {
1.601 + for (TInt x=0; x < bmpSize.iWidth; x++)
1.602 + {
1.603 + TPoint point(x, y);
1.604 + aBitmap1->GetPixel(c1, point);
1.605 + aBitmap2->GetPixel(c2, point);
1.606 + if (c1 != c2)
1.607 + {
1.608 + iPixel1 = c1.Value();
1.609 + iPixel2 = c2.Value();
1.610 + iPixelPos = point;
1.611 + return EFalse;
1.612 + }
1.613 + }
1.614 + }
1.615 + return ETrue;
1.616 + }
1.617 +void CComparison::Verify(CFbsBitmap * aServerBmp)
1.618 + {
1.619 + //Copy the currentBmp to lastBmp
1.620 + TInt dataStride = iBitmap[iCurrentBmp]->DataStride();
1.621 + TInt sizeInByte = dataStride * iBitmap[iCurrentBmp]->SizeInPixels().iHeight;
1.622 + TUint32* bitmapAddressSource = iBitmap[iCurrentBmp]->DataAddress();
1.623 + TUint32* bitmapAddressTarget = iBitmap[iLastBmp]->DataAddress();
1.624 + memcpy(bitmapAddressTarget, bitmapAddressSource, sizeInByte);
1.625 + // This method is only used by the animation and sprite windows; ignores
1.626 + // comparisons for times that are too close to the sprite change. But as the
1.627 + // difference error drifts, there is no point relying on it.
1.628 + if (!WindowsReadyForVerification())
1.629 + {
1.630 + Tick();
1.631 + return;
1.632 + }
1.633 +
1.634 + if (iWasOk)
1.635 + {
1.636 + DrawBitmap();
1.637 +
1.638 + const TBool bmpMatch = BitmapsMatch(aServerBmp, iBitmap[iCurrentBmp]);
1.639 + REPORT_EVENT( bmpMatch );
1.640 +
1.641 +#ifdef __WINSCW__
1.642 + if ( !bmpMatch )
1.643 + {
1.644 + __DEBUGGER();
1.645 + }
1.646 +#endif
1.647 +
1.648 + if (!iData.saveOnlyDifferent || !bmpMatch)
1.649 + {
1.650 + TBuf<128> fileName;
1.651 + fileName.Append(iData.loggingPath);
1.652 + fileName.Append(_L("Stresslet_Comparison_"));
1.653 + if (iData.saveOnlyDifferent)
1.654 + {
1.655 + fileName.AppendNumFixedWidthUC((TUint)iErrorNum, EDecimal, 3);
1.656 + }
1.657 + else
1.658 + {
1.659 + fileName.AppendNumFixedWidthUC((TUint)iTestNum, EDecimal, 3);
1.660 + }
1.661 + TInt baseLength = fileName.Length();
1.662 +
1.663 + //previous is saved only when saving different bitmaps
1.664 + //otherwise it is always the same as the previous expected
1.665 + if (iData.saveOnlyDifferent)
1.666 + {
1.667 + fileName.Append(_L("_Previous.mbm"));
1.668 + __ASSERT_ALWAYS(KErrNone == iBitmap[iLastBmp]->Save(fileName), Panic(EPanic6));
1.669 + }
1.670 +
1.671 + fileName.SetLength(baseLength);
1.672 + fileName.Append(_L("_Expected.mbm"));
1.673 + __ASSERT_ALWAYS(KErrNone == iBitmap[iCurrentBmp]->Save(fileName), Panic(EPanic7));
1.674 +
1.675 + fileName.SetLength(baseLength);
1.676 + fileName.Append(_L("_Screen.mbm"));
1.677 + __ASSERT_ALWAYS(KErrNone == aServerBmp->Save(fileName), Panic(EPanic8));
1.678 +
1.679 + //store difference between expected and screen bitmaps (XOR image)
1.680 + if (iData.saveDifferenceBitmap)
1.681 + {
1.682 + iBmpGc->Activate(iDifferenceDevice);
1.683 + iBmpGc->Reset();
1.684 + iBmpGc->SetDrawMode(CGraphicsContext::EDrawModePEN);
1.685 + iBmpGc->BitBlt(TPoint(0,0), iBitmap[iCurrentBmp]);
1.686 + iBmpGc->SetDrawMode(CGraphicsContext::EDrawModeXOR);
1.687 + iBmpGc->BitBlt(TPoint(0,0), aServerBmp);
1.688 + iBmpGc->Reset();
1.689 + fileName.SetLength(baseLength);
1.690 + fileName.Append(_L("_Difference.mbm"));
1.691 + __ASSERT_ALWAYS(KErrNone == iDifferenceBitmap->Save(fileName), Panic(EPanic19));
1.692 + }
1.693 +
1.694 + fileName.SetLength(baseLength);
1.695 + fileName.Append(_L("_info.txt"));
1.696 + RFile file;
1.697 + TInt err = file.Create(iFs, fileName, EFileWrite);
1.698 + if (err != KErrNone)
1.699 + err = file.Replace(iFs, fileName, EFileWrite);
1.700 + if (err == KErrNone)
1.701 + {
1.702 + TBuf8<128> info;
1.703 + info.Append(_L8("Seed = "));
1.704 + info.AppendNum(iFirstSeed);
1.705 + info.Append(_L8("\n"));
1.706 + file.Write(info);
1.707 + info.SetLength(0);
1.708 + TTime now;
1.709 + now.UniversalTime();
1.710 + info.Append(_L8(" Runtime = "));
1.711 + info.AppendNum(now.MicroSecondsFrom(iStartTime).Int64() / 1000);
1.712 + info.Append(_L8(" ms\r\n"));
1.713 + file.Write(info);
1.714 + info.SetLength(0);
1.715 + info.Append(_L8("Action = ["));
1.716 + info.AppendNum((TInt64)iAct);
1.717 + info.Append(_L8("] Mode = ["));
1.718 + info.AppendNum((TInt64)iMode);
1.719 + info.Append(_L8("] Test = ["));
1.720 + info.AppendNum((TInt64)iTestNum);
1.721 + info.Append(_L8("]\r\n"));
1.722 + file.Write(info);
1.723 + info.SetLength(0);
1.724 + info.Append(_L8("Pixel at ["));
1.725 + info.AppendNum((TInt64)iPixelPos.iX);
1.726 + info.Append(_L8(","));
1.727 + info.AppendNum((TInt64)iPixelPos.iY);
1.728 + info.Append(_L8("] mismatch screen 0x"));
1.729 + info.AppendNum((TInt64)iPixel1, EHex);
1.730 + info.Append(_L8(" != bitmap 0x"));
1.731 + info.AppendNum((TInt64)iPixel2, EHex);
1.732 + info.Append(_L8("\r\n\r\n"));
1.733 + file.Write(info);
1.734 +
1.735 + TPoint zero(0,0);
1.736 + for (TInt num = 0; num < iWindows.Count(); ++num)
1.737 + {
1.738 + iWindows[num]->Dump(file, zero, 0, iBehaviour.iWin);
1.739 + info.SetLength(0);
1.740 + info.Append(_L8("\r\n"));
1.741 + file.Write(info);
1.742 + }
1.743 + file.Close();
1.744 + }
1.745 + else
1.746 + {
1.747 + //failed create logfile
1.748 + __ASSERT_ALWAYS(EFalse, Panic(EPanic9));
1.749 + }
1.750 +
1.751 + if (!bmpMatch)
1.752 + {
1.753 + ++iErrorNum;
1.754 + }
1.755 + }
1.756 + }
1.757 + if ((iTestNum > iData.maxRunCycles && iNumWindowsLeft == 0) || !iWasOk)
1.758 + {
1.759 + iMustConclude = ETrue;
1.760 + }
1.761 + iTimer->After(iData.period);
1.762 + }
1.763 +
1.764 +/**
1.765 +Write information(eg. seed, starttime, endtime and time elapse) to Stresslet_Log.txt file
1.766 +*/
1.767 +void CComparison::WriteLog()
1.768 + {
1.769 + TBuf<128> fileName;
1.770 + fileName.Append(iData.loggingPath);
1.771 + fileName.Append(_L("Stresslet_Log.txt"));
1.772 + RFile file;
1.773 + TInt err = file.Create(iFs, fileName, EFileWrite);
1.774 + if (err != KErrNone)
1.775 + {
1.776 + err = file.Replace(iFs, fileName, EFileWrite);
1.777 + }
1.778 + if (err == KErrNone)
1.779 + {
1.780 + TBuf8<128> info;
1.781 + info.Append(_L8("Seed = "));
1.782 + info.AppendNum(iFirstSeed);
1.783 + info.Append(_L8("\r\n"));
1.784 + file.Write(info);
1.785 + info.SetLength(0);
1.786 + TBuf<40> dateTimeString;
1.787 + _LIT(KFormat2,"%D%M%Y%/0%1%/1%2%/2%3%/3 %:0%H%:1%T%:2%S.%C%:3");
1.788 + iStartTime.FormatL(dateTimeString,KFormat2);
1.789 + info.Append(_L8("StartTime = "));
1.790 + info.Append(dateTimeString);
1.791 + info.Append(_L8("\r\n"));
1.792 + TTime now;
1.793 + now.UniversalTime();
1.794 + now.FormatL(dateTimeString,KFormat2);
1.795 + info.Append(_L8("Endtime = "));
1.796 + info.Append(dateTimeString);
1.797 + info.Append(_L8("\r\n"));
1.798 + info.Append(_L8("Elapse = "));
1.799 + info.AppendNum(now.MicroSecondsFrom(iStartTime).Int64() / 1000);
1.800 + info.Append(_L8(" ms\r\n"));
1.801 + file.Write(info);
1.802 + file.Close();
1.803 + }
1.804 + }
1.805 +/**
1.806 + Returns true if all visible windows are ready for verification
1.807 + */
1.808 +TBool CComparison::WindowsReadyForVerification() const
1.809 + {
1.810 + TBool res = ETrue;
1.811 + TInt idx = 0;
1.812 + while ( idx < iWindows.Count() && res )
1.813 + {
1.814 + if ( iWindows[ idx ]->IsVisible() )
1.815 + {
1.816 + res = iWindows[ idx ]->QueryReadyForVerification();
1.817 + }
1.818 + idx++;
1.819 + }
1.820 + return res;
1.821 + }
1.822 +
1.823 +/**
1.824 + Calls all windows to draw themselves on a bitmap
1.825 + */
1.826 +void CComparison::DrawBitmap()
1.827 + {
1.828 + iBmpGc->Activate(iDevice[iCurrentBmp]);
1.829 + iBmpGc->Reset();
1.830 +
1.831 + // clear background area
1.832 + iBmpGc->SetPenStyle(CGraphicsContext::ENullPen);
1.833 + iBmpGc->SetBrushColor(KRgbBlack);
1.834 + iBmpGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.835 +
1.836 + TPoint origin(0,0);
1.837 + TRect rect(origin, TSize(iData.windowWidth, iData.windowHeight));
1.838 +
1.839 + //create a region containing all screen, subtract all visible windows
1.840 + RRegion backClipping(rect);
1.841 + if (!iData.clearAllBackground)
1.842 + {
1.843 + for (TInt num = 0; num < iWindows.Count(); ++num)
1.844 + {
1.845 + if (iWindows[num]->IsVisible())
1.846 + iWindows[num]->SubSelfFromRegion(backClipping, rect, origin);
1.847 + }
1.848 + }
1.849 +
1.850 + //clip drawing to background only & clear
1.851 + iBmpGc->SetClippingRegion(backClipping);
1.852 + iBmpGc->DrawRect(rect);
1.853 + //go back to no clipping
1.854 + iBmpGc->CancelClipping();
1.855 + backClipping.Close();
1.856 +
1.857 + for (TInt num = 0; num < iWindows.Count(); ++num)
1.858 + {
1.859 + if (iWindows[num]->IsVisible())
1.860 + {
1.861 + iWindows[num]->ClearBitmapBackground(iBmpGc, rect, origin);
1.862 + iWindows[num]->DrawBitmap(iBmpGc, rect, origin);
1.863 + }
1.864 + }
1.865 + }
1.866 +
1.867 +void CComparison::SetVerifyTick(TUint32 aTick)
1.868 + {
1.869 + for (TInt num = 0; num < iWindows.Count(); ++num)
1.870 + {
1.871 + if (iWindows[num]->IsVisible())
1.872 + iWindows[num]->SetVerifyTick(aTick);
1.873 + }
1.874 + }
1.875 +
1.876 +CComparison::~CComparison()
1.877 + {
1.878 + iFs.Close();
1.879 +
1.880 + if (iBackground)
1.881 + {
1.882 + iBackground->Close();
1.883 + delete iBackground;
1.884 + }
1.885 +
1.886 + iWindows.ResetAndDestroy();
1.887 + if (iWinGroup)
1.888 + {
1.889 + iWinGroup->Close();
1.890 + delete iWinGroup;
1.891 + }
1.892 +
1.893 + delete iOneShotCompare; //delayed compare
1.894 +
1.895 + delete iDifferenceDevice;
1.896 + delete iDifferenceBitmap;
1.897 +
1.898 + for (TInt bmp = 0; bmp < 2; ++bmp)
1.899 + {
1.900 + delete iDevice[bmp];
1.901 + delete iBitmap[bmp];
1.902 + }
1.903 +
1.904 + delete iBmpGc;
1.905 + delete iTimer;
1.906 +
1.907 + delete iScreenBitmap;
1.908 + delete iScreen;
1.909 + }