1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/graphics/windowing/windowserver/test/t_stress/src/compwin.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,466 @@
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 +#include "compwin.h"
1.26 +#include "utils.h"
1.27 +#include "crpwin.h"
1.28 +#include "edgedwin.h"
1.29 +#include "coordinatewin.h"
1.30 +#include "backedupwin.h"
1.31 +#include "enormouswin.h"
1.32 +#include "spritewin.h"
1.33 +#include "animatedwin.h"
1.34 +
1.35 +#include "test_step_logger.h"
1.36 +#include "test_step_comparison.h"
1.37 +#include "stresslet.h"
1.38 +#include "comparison.h"
1.39 +
1.40 +//static configuration data, definitions and default assignments
1.41 +TInt CCompWin::sBackgroundAlpha = 0;
1.42 +
1.43 +//configuration parameter names
1.44 +_LIT(KT_WservStressParamBackgroundAlpha, "background_alpha");
1.45 +
1.46 +
1.47 +/**
1.48 +BASE COMPARISON WINDOW
1.49 +*/
1.50 +CCompWin* CCompWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc)
1.51 + {
1.52 + typedef CCompWin* (*TPtrNewLC)(RWsSession&, RWindowGroup*, CCompWin*, CWindowGc&);
1.53 + TPtrNewLC winFactory[8];
1.54 + TInt numEnabledWindows = 0;
1.55 +
1.56 + //setup an array of factory functions, one for each enabled window type
1.57 + if (CAnimatedWin::IsEnabled())
1.58 + {
1.59 + winFactory[numEnabledWindows++] = TPtrNewLC(CAnimatedWin::NewLC);
1.60 + }
1.61 + if (CCoordinateWin::IsEnabled())
1.62 + {
1.63 + winFactory[numEnabledWindows++] = TPtrNewLC(CCoordinateWin::NewLC);
1.64 + }
1.65 + if (CBackedupWin::IsEnabled())
1.66 + {
1.67 + winFactory[numEnabledWindows++] = TPtrNewLC(CBackedupWin::NewLC);
1.68 + }
1.69 + if (CEnormousWin::IsEnabled())
1.70 + {
1.71 + winFactory[numEnabledWindows++] = TPtrNewLC(CEnormousWin::NewLC);
1.72 + }
1.73 + if (CCrpWin::IsEnabled())
1.74 + {
1.75 + winFactory[numEnabledWindows++] = TPtrNewLC(CCrpWin::NewLC);
1.76 + }
1.77 + if (CEdgedWin::IsEnabled())
1.78 + {
1.79 + winFactory[numEnabledWindows++] = TPtrNewLC(CEdgedWin::NewLC);
1.80 + }
1.81 + if (CSpritedWin::IsEnabled())
1.82 + {
1.83 + winFactory[numEnabledWindows++] = TPtrNewLC(CSpritedWin::NewLC);
1.84 + }
1.85 +
1.86 + if (numEnabledWindows == 0)
1.87 + {
1.88 + aWs.LogMessage(_L("Error: No window-type is enabled(see ini file)"));
1.89 + User::Leave(KErrNotFound);
1.90 + }
1.91 +
1.92 + TInt winType = TRnd::rnd(numEnabledWindows);
1.93 + CCompWin* self = winFactory[ winType ](aWs, aGroup, aParent, aGc);
1.94 + return self;
1.95 + }
1.96 +
1.97 +void CCompWin::LoadConfiguration(const MTestStepConfigurationContext* aContext)
1.98 + {
1.99 + aContext->GetInt(KT_WservStressParamBackgroundAlpha, sBackgroundAlpha);
1.100 + }
1.101 +
1.102 +/**
1.103 + Get a random TDrawMode value.
1.104 + */
1.105 +CGraphicsContext::TDrawMode CCompWin::GetRandomDrawMode()
1.106 + {
1.107 + static CGraphicsContext::TDrawMode modes[] =
1.108 + {
1.109 + CGraphicsContext::EDrawModeAND, CGraphicsContext::EDrawModeNOTAND,
1.110 + CGraphicsContext::EDrawModePEN, CGraphicsContext::EDrawModeANDNOT,
1.111 + CGraphicsContext::EDrawModeXOR, CGraphicsContext::EDrawModeOR,
1.112 + CGraphicsContext::EDrawModeNOTANDNOT, CGraphicsContext::EDrawModeNOTXOR,
1.113 + CGraphicsContext::EDrawModeNOTSCREEN, CGraphicsContext::EDrawModeNOTOR,
1.114 + CGraphicsContext::EDrawModeNOTPEN, CGraphicsContext::EDrawModeORNOT,
1.115 + CGraphicsContext::EDrawModeNOTORNOT, CGraphicsContext::EDrawModeWriteAlpha
1.116 + };
1.117 + return modes[TRnd::rnd(sizeof(modes)/sizeof(CGraphicsContext::TDrawMode))];
1.118 + }
1.119 +
1.120 +CGraphicsContext::TPenStyle CCompWin::GetRandomPenStyle()
1.121 + {
1.122 + static CGraphicsContext::TPenStyle styles[] =
1.123 + {
1.124 + CGraphicsContext::ENullPen,
1.125 + CGraphicsContext::ESolidPen,
1.126 + CGraphicsContext::EDottedPen,
1.127 + CGraphicsContext::EDashedPen,
1.128 + CGraphicsContext::EDotDashPen,
1.129 + CGraphicsContext::EDotDotDashPen
1.130 + };
1.131 + return styles[TRnd::rnd(sizeof(styles)/sizeof(CGraphicsContext::TPenStyle))];
1.132 + }
1.133 +
1.134 +CGraphicsContext::TBrushStyle CCompWin::GetRandomBrushStyle()
1.135 + {
1.136 + //CGraphicsContext::EPatternedBrush is not joined in the test in current version.
1.137 + static CGraphicsContext::TBrushStyle styles[] =
1.138 + {
1.139 + CGraphicsContext::ENullBrush,
1.140 + CGraphicsContext::ESolidBrush,
1.141 + CGraphicsContext::EVerticalHatchBrush,
1.142 + CGraphicsContext::EForwardDiagonalHatchBrush,
1.143 + CGraphicsContext::EHorizontalHatchBrush,
1.144 + CGraphicsContext::ERearwardDiagonalHatchBrush,
1.145 + CGraphicsContext::ESquareCrossHatchBrush,
1.146 + CGraphicsContext::EDiamondCrossHatchBrush
1.147 + };
1.148 + return styles[TRnd::rnd(sizeof(styles)/sizeof(CGraphicsContext::TBrushStyle))];
1.149 + }
1.150 +
1.151 +CCompWin::CCompWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) :
1.152 + iWs(aWs),
1.153 + iGroup(aGroup),
1.154 + iParent(aParent),
1.155 + iWsGc(aGc)
1.156 + {
1.157 + }
1.158 +
1.159 +CCompWin::~CCompWin()
1.160 + {
1.161 + iChildren.ResetAndDestroy();
1.162 +
1.163 + if (iParent)
1.164 + {
1.165 + iParent->RemoveChild(this);
1.166 + }
1.167 +
1.168 + if (iWindow)
1.169 + {
1.170 + iWindow->Close();
1.171 + delete iWindow;
1.172 + }
1.173 + }
1.174 +
1.175 +void CCompWin::PreConstructL(TBool aTransparency, TBool aBackedup)
1.176 + {
1.177 + if (aBackedup)
1.178 + {
1.179 + iWindow = iBackedupWindow = new(ELeave) RBackedUpWindow(iWs);
1.180 + if (iParent)
1.181 + {
1.182 + User::LeaveIfError(iBackedupWindow->Construct(*iParent->Window(), EColor64K, (TUint32)(this)));
1.183 + iParent->AddChildL(this);
1.184 + }
1.185 + else
1.186 + {
1.187 + User::LeaveIfError(iBackedupWindow->Construct(*iGroup, EColor64K, (TUint32)(this)));
1.188 + }
1.189 + }
1.190 + else
1.191 + {
1.192 + iWindow = iRedrawWindow = new(ELeave) RWindow(iWs);
1.193 + if (iParent)
1.194 + {
1.195 + User::LeaveIfError(iRedrawWindow->Construct(*iParent->Window(), (TUint32)(this)));
1.196 + iParent->AddChildL(this);
1.197 + }
1.198 + else
1.199 + {
1.200 + User::LeaveIfError(iRedrawWindow->Construct(*iGroup, (TUint32)(this)));
1.201 + }
1.202 + }
1.203 + if (iRedrawWindow)
1.204 + {
1.205 + if (aTransparency)
1.206 + {
1.207 + iRedrawWindow->SetTransparencyAlphaChannel();
1.208 + }
1.209 + /* Note: if background color is set to include a transparent background
1.210 + * and AUTOCLEAR is set to 1 in wsini.ini, window's background will not be
1.211 + * totaly cleared.
1.212 + */
1.213 + iRedrawWindow->SetBackgroundColor(BackgroundColor());
1.214 + }
1.215 +
1.216 + iPos.iX = TRnd::rnd(KPosLimit);
1.217 + iPos.iY = TRnd::rnd(KPosLimit);
1.218 + iSize.iWidth = TRnd::rnd(KPosLimit);
1.219 + iSize.iHeight = TRnd::rnd(KPosLimit);
1.220 + iPos.iX -= iSize.iWidth / 2;
1.221 + iPos.iY -= iSize.iHeight / 2;
1.222 + SetPos(iPos);
1.223 + SetSize(iSize);
1.224 + iWindow->SetOrdinalPosition(0);
1.225 + }
1.226 +
1.227 +void CCompWin::PostConstructL()
1.228 + {
1.229 + iVisible = ETrue;
1.230 + iWindow->Activate();
1.231 + }
1.232 +
1.233 +void CCompWin::SetPos(const TPoint & aPos)
1.234 + {
1.235 + iPos = aPos;
1.236 + iWindow->SetPosition(iPos);
1.237 + }
1.238 +
1.239 +void CCompWin::SetSize(const TSize & aSize)
1.240 + {
1.241 + iSize = aSize;
1.242 + TInt err = iWindow->SetSizeErr(iSize);
1.243 + if (err != KErrNone)
1.244 + {
1.245 + __DEBUGGER();
1.246 + }
1.247 + if (iRedrawWindow)
1.248 + {
1.249 + iRedrawWindow->Invalidate();
1.250 + }
1.251 + else if (iBackedupWindow)
1.252 + {
1.253 + Redraw(aSize);
1.254 + }
1.255 + }
1.256 +
1.257 +
1.258 +void CCompWin::BringToFrontL()
1.259 + {
1.260 + if (iParent)
1.261 + {
1.262 + iParent->RemoveChild(this);
1.263 + iParent->AddChildL(this);
1.264 + }
1.265 + iWindow->SetOrdinalPosition(0);
1.266 + }
1.267 +
1.268 +void CCompWin::SendToBackL()
1.269 + {
1.270 + if (iParent)
1.271 + {
1.272 + iParent->RemoveChild(this);
1.273 + iParent->iChildren.Insert(this, 0);
1.274 + iWindow->SetOrdinalPosition(-1);
1.275 + }
1.276 + }
1.277 +
1.278 +void CCompWin::RemoveChild(CCompWin* aChild)
1.279 + {
1.280 + TInt num = iChildren.Find(aChild);
1.281 + if (num != KErrNotFound)
1.282 + {
1.283 + iChildren.Remove(num);
1.284 + }
1.285 + }
1.286 +
1.287 +void CCompWin::AddChildL(CCompWin* aChild)
1.288 + {
1.289 + CleanupStack::PushL(aChild);
1.290 + User::LeaveIfError(iChildren.Append(aChild));
1.291 + CleanupStack::Pop(aChild);
1.292 + }
1.293 +
1.294 +CCompWin * CCompWin::RandomWindow()
1.295 + {
1.296 + TInt num = TRnd::rnd(iChildren.Count() + 1);
1.297 +
1.298 + if (num == iChildren.Count())
1.299 + {
1.300 + return this;
1.301 + }
1.302 + else
1.303 + {
1.304 + return iChildren[num]->RandomWindow();
1.305 + }
1.306 + }
1.307 +
1.308 +void CCompWin::ToggleVisible()
1.309 + {
1.310 + iVisible = !iVisible;
1.311 + iWindow->SetVisible(iVisible);
1.312 + }
1.313 +
1.314 +void CCompWin::Dump(RFile& aFile, TPoint& aOrigin, TInt aDepth, CCompWin * aMark)
1.315 + {
1.316 + TPoint abs = aOrigin + iPos;
1.317 + static TBuf8<256> buf;
1.318 + buf.SetLength(0);
1.319 + for (TInt d = 0; d < aDepth; ++d)
1.320 + {
1.321 + buf.Append(_L8(" "));
1.322 + }
1.323 + buf.Append(_L8("rel ["));
1.324 + buf.AppendNum((TInt64)iPos.iX);
1.325 + buf.Append(_L8(","));
1.326 + buf.AppendNum((TInt64)iPos.iY);
1.327 + buf.Append(_L8("] abs ["));
1.328 + buf.AppendNum((TInt64)abs.iX);
1.329 + buf.Append(_L8(","));
1.330 + buf.AppendNum((TInt64)abs.iY);
1.331 + buf.Append(_L8("] size ["));
1.332 + buf.AppendNum((TInt64)iSize.iWidth);
1.333 + buf.Append(_L8(","));
1.334 + buf.AppendNum((TInt64)iSize.iHeight);
1.335 + buf.Append(_L8("] "));
1.336 + if (iVisible)
1.337 + {
1.338 + buf.Append(_L8("visible "));
1.339 + }
1.340 + else
1.341 + {
1.342 + buf.Append(_L8("invisible "));
1.343 + }
1.344 + buf.Append(TypeName());
1.345 + if (this == aMark)
1.346 + {
1.347 + buf.Append(_L8(" <active>"));
1.348 + }
1.349 + buf.Append(_L8("\r\n"));
1.350 + aFile.Write(buf);
1.351 +
1.352 + DumpDetails(aFile, aDepth);
1.353 +
1.354 + for (TInt num = 0; num < iChildren.Count(); ++num)
1.355 + {
1.356 + iChildren[num]->Dump(aFile, abs, aDepth + 1, aMark);
1.357 + }
1.358 + }
1.359 +
1.360 +void CCompWin::DumpDetails(RFile&, TInt)
1.361 + {
1.362 + }
1.363 +
1.364 +void CCompWin::HandleRedraw(TWsRedrawEvent& aEvent)
1.365 + {
1.366 + Redraw(aEvent.Rect());
1.367 + }
1.368 +
1.369 +void CCompWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
1.370 + {
1.371 + if (aClip.Width() > 0 && aClip.Height() > 0)
1.372 + {
1.373 + TPoint origin = iPos + aOrigin;
1.374 + TRect clip(origin, iSize);
1.375 + clip.Intersection(aClip);
1.376 +
1.377 + for (TInt num = 0; num < iChildren.Count(); ++num)
1.378 + {
1.379 + if (iChildren[num]->iVisible)
1.380 + {
1.381 + iChildren[num]->DrawBitmap(aGc, clip, origin);
1.382 + }
1.383 + }
1.384 + }
1.385 + }
1.386 +
1.387 +/**
1.388 + Fills window's background with it's background color,
1.389 + then iterates visible children
1.390 + */
1.391 +void CCompWin::ClearBitmapBackground(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
1.392 + {
1.393 + if (aClip.Width() > 0 && aClip.Height() > 0)
1.394 + {
1.395 + TPoint origin = iPos + aOrigin;
1.396 + TRect clip(origin, iSize);
1.397 + clip.Intersection(aClip);
1.398 +
1.399 + aGc->Reset();
1.400 + aGc->SetOrigin(TPoint(0,0));
1.401 + aGc->SetPenColor(BackgroundColor());
1.402 + aGc->SetBrushColor(BackgroundColor());
1.403 + aGc->SetPenStyle(CGraphicsContext::ESolidPen);
1.404 + aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
1.405 + aGc->DrawRect(clip);
1.406 +
1.407 + for (TInt num = 0; num < iChildren.Count(); ++num)
1.408 + {
1.409 + if (iChildren[num]->iVisible)
1.410 + {
1.411 + iChildren[num]->ClearBitmapBackground(aGc, clip, origin);
1.412 + }
1.413 + }
1.414 + }
1.415 + }
1.416 +
1.417 +TBool CCompWin::QueryReadyForVerification()
1.418 + {
1.419 + TBool res = ETrue;
1.420 +
1.421 + TInt idx = 0;
1.422 +
1.423 + while ( idx < iChildren.Count() && res )
1.424 + {
1.425 + res = iChildren[ idx ]->QueryReadyForVerification();
1.426 + idx++;
1.427 + }
1.428 +
1.429 + return res;
1.430 + }
1.431 +
1.432 +/**
1.433 + Subtracts window region from the supplied region
1.434 + then calls all children to subtract themsleves
1.435 + @param aRegion region from which current window are should be subtructed
1.436 + @param aClip clipping area provided by the parent window
1.437 + @param aOrigin absolute origin of parent
1.438 + */
1.439 +void CCompWin::SubSelfFromRegion(TRegion& aRegion, const TRect& aClip, const TPoint& aOrigin)
1.440 + {
1.441 + if (!iVisible)
1.442 + {
1.443 + return;
1.444 + }
1.445 + TPoint origin = iPos + aOrigin;
1.446 + TRect clip(origin, iSize);
1.447 + clip.Intersection(aClip);
1.448 + aRegion.SubRect(clip);
1.449 + for (TInt num = 0; num < iChildren.Count(); ++num)
1.450 + {
1.451 + if (iChildren[num]->iVisible)
1.452 + {
1.453 + iChildren[num]->SubSelfFromRegion(aRegion, clip, origin);
1.454 + }
1.455 + }
1.456 + }
1.457 +
1.458 +void CCompWin::SetVerifyTick(TUint32 aTick)
1.459 + {
1.460 + iVerifyTick = aTick;
1.461 + for (TInt num = 0; num < iChildren.Count(); ++num)
1.462 + {
1.463 + if (iChildren[num]->iVisible)
1.464 + {
1.465 + iChildren[num]->SetVerifyTick(aTick);
1.466 + }
1.467 + }
1.468 + }
1.469 +