os/graphics/windowing/windowserver/test/t_stress/src/compwin.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2008-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 "compwin.h"
sl@0
    23
#include "utils.h"
sl@0
    24
#include "crpwin.h"
sl@0
    25
#include "edgedwin.h"
sl@0
    26
#include "coordinatewin.h"
sl@0
    27
#include "backedupwin.h"
sl@0
    28
#include "enormouswin.h"
sl@0
    29
#include "spritewin.h"
sl@0
    30
#include "animatedwin.h"
sl@0
    31
sl@0
    32
#include "test_step_logger.h"
sl@0
    33
#include "test_step_comparison.h"
sl@0
    34
#include "stresslet.h"
sl@0
    35
#include "comparison.h"
sl@0
    36
sl@0
    37
//static configuration data, definitions and default assignments
sl@0
    38
TInt CCompWin::sBackgroundAlpha = 0;
sl@0
    39
sl@0
    40
//configuration parameter names
sl@0
    41
_LIT(KT_WservStressParamBackgroundAlpha, "background_alpha");
sl@0
    42
sl@0
    43
sl@0
    44
/**
sl@0
    45
BASE COMPARISON WINDOW
sl@0
    46
*/
sl@0
    47
CCompWin* CCompWin::NewLC(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc)
sl@0
    48
	{
sl@0
    49
	typedef CCompWin* (*TPtrNewLC)(RWsSession&, RWindowGroup*, CCompWin*, CWindowGc&);
sl@0
    50
	TPtrNewLC winFactory[8];
sl@0
    51
	TInt numEnabledWindows = 0;
sl@0
    52
sl@0
    53
	//setup an array of factory functions, one for each enabled window type
sl@0
    54
	if (CAnimatedWin::IsEnabled())   
sl@0
    55
		{
sl@0
    56
		winFactory[numEnabledWindows++] = TPtrNewLC(CAnimatedWin::NewLC);
sl@0
    57
		}
sl@0
    58
	if (CCoordinateWin::IsEnabled()) 
sl@0
    59
		{
sl@0
    60
		winFactory[numEnabledWindows++] = TPtrNewLC(CCoordinateWin::NewLC);
sl@0
    61
		}
sl@0
    62
	if (CBackedupWin::IsEnabled())   
sl@0
    63
		{
sl@0
    64
		winFactory[numEnabledWindows++] = TPtrNewLC(CBackedupWin::NewLC);
sl@0
    65
		}
sl@0
    66
	if (CEnormousWin::IsEnabled())   
sl@0
    67
		{
sl@0
    68
		winFactory[numEnabledWindows++] = TPtrNewLC(CEnormousWin::NewLC);
sl@0
    69
		}
sl@0
    70
	if (CCrpWin::IsEnabled())        
sl@0
    71
		{
sl@0
    72
		winFactory[numEnabledWindows++] = TPtrNewLC(CCrpWin::NewLC);
sl@0
    73
		}
sl@0
    74
	if (CEdgedWin::IsEnabled())      
sl@0
    75
		{
sl@0
    76
		winFactory[numEnabledWindows++] = TPtrNewLC(CEdgedWin::NewLC);
sl@0
    77
		}
sl@0
    78
	if (CSpritedWin::IsEnabled())    
sl@0
    79
		{
sl@0
    80
		winFactory[numEnabledWindows++] = TPtrNewLC(CSpritedWin::NewLC);
sl@0
    81
		}
sl@0
    82
sl@0
    83
	if (numEnabledWindows == 0)
sl@0
    84
		{
sl@0
    85
		aWs.LogMessage(_L("Error: No window-type is enabled(see ini file)"));
sl@0
    86
		User::Leave(KErrNotFound);
sl@0
    87
		}
sl@0
    88
	
sl@0
    89
	TInt winType = TRnd::rnd(numEnabledWindows);
sl@0
    90
	CCompWin* self = winFactory[ winType ](aWs, aGroup, aParent, aGc);
sl@0
    91
	return self;
sl@0
    92
	}
sl@0
    93
sl@0
    94
void CCompWin::LoadConfiguration(const MTestStepConfigurationContext* aContext)
sl@0
    95
	{
sl@0
    96
	aContext->GetInt(KT_WservStressParamBackgroundAlpha, sBackgroundAlpha);
sl@0
    97
	}
sl@0
    98
sl@0
    99
/**
sl@0
   100
 Get a random TDrawMode value.
sl@0
   101
 */
sl@0
   102
CGraphicsContext::TDrawMode CCompWin::GetRandomDrawMode()
sl@0
   103
	{
sl@0
   104
	static CGraphicsContext::TDrawMode modes[] =
sl@0
   105
		{
sl@0
   106
		CGraphicsContext::EDrawModeAND, CGraphicsContext::EDrawModeNOTAND, 
sl@0
   107
		CGraphicsContext::EDrawModePEN, CGraphicsContext::EDrawModeANDNOT,
sl@0
   108
		CGraphicsContext::EDrawModeXOR, CGraphicsContext::EDrawModeOR, 
sl@0
   109
		CGraphicsContext::EDrawModeNOTANDNOT, CGraphicsContext::EDrawModeNOTXOR,
sl@0
   110
		CGraphicsContext::EDrawModeNOTSCREEN, CGraphicsContext::EDrawModeNOTOR, 
sl@0
   111
		CGraphicsContext::EDrawModeNOTPEN, CGraphicsContext::EDrawModeORNOT,
sl@0
   112
		CGraphicsContext::EDrawModeNOTORNOT, CGraphicsContext::EDrawModeWriteAlpha
sl@0
   113
		};
sl@0
   114
	return modes[TRnd::rnd(sizeof(modes)/sizeof(CGraphicsContext::TDrawMode))];
sl@0
   115
	}
sl@0
   116
sl@0
   117
CGraphicsContext::TPenStyle CCompWin::GetRandomPenStyle()
sl@0
   118
	{
sl@0
   119
	static CGraphicsContext::TPenStyle styles[] = 
sl@0
   120
		{
sl@0
   121
		CGraphicsContext::ENullPen,
sl@0
   122
		CGraphicsContext::ESolidPen,
sl@0
   123
		CGraphicsContext::EDottedPen,
sl@0
   124
		CGraphicsContext::EDashedPen,
sl@0
   125
		CGraphicsContext::EDotDashPen,
sl@0
   126
		CGraphicsContext::EDotDotDashPen
sl@0
   127
		};
sl@0
   128
	return styles[TRnd::rnd(sizeof(styles)/sizeof(CGraphicsContext::TPenStyle))];
sl@0
   129
	}
sl@0
   130
sl@0
   131
CGraphicsContext::TBrushStyle CCompWin::GetRandomBrushStyle()
sl@0
   132
	{
sl@0
   133
	//CGraphicsContext::EPatternedBrush is not joined in the test in current version.
sl@0
   134
	static CGraphicsContext::TBrushStyle styles[] = 
sl@0
   135
		{
sl@0
   136
		CGraphicsContext::ENullBrush,
sl@0
   137
		CGraphicsContext::ESolidBrush,
sl@0
   138
		CGraphicsContext::EVerticalHatchBrush,
sl@0
   139
		CGraphicsContext::EForwardDiagonalHatchBrush,
sl@0
   140
		CGraphicsContext::EHorizontalHatchBrush,
sl@0
   141
		CGraphicsContext::ERearwardDiagonalHatchBrush,
sl@0
   142
		CGraphicsContext::ESquareCrossHatchBrush,
sl@0
   143
		CGraphicsContext::EDiamondCrossHatchBrush
sl@0
   144
		};
sl@0
   145
	return styles[TRnd::rnd(sizeof(styles)/sizeof(CGraphicsContext::TBrushStyle))];
sl@0
   146
	}
sl@0
   147
sl@0
   148
CCompWin::CCompWin(RWsSession& aWs, RWindowGroup* aGroup, CCompWin* aParent, CWindowGc& aGc) :
sl@0
   149
	iWs(aWs),
sl@0
   150
	iGroup(aGroup),
sl@0
   151
	iParent(aParent),
sl@0
   152
	iWsGc(aGc)
sl@0
   153
	{
sl@0
   154
	}
sl@0
   155
sl@0
   156
CCompWin::~CCompWin()
sl@0
   157
	{
sl@0
   158
	iChildren.ResetAndDestroy();
sl@0
   159
	
sl@0
   160
	if (iParent)
sl@0
   161
		{
sl@0
   162
		iParent->RemoveChild(this);
sl@0
   163
		}
sl@0
   164
sl@0
   165
	if (iWindow)
sl@0
   166
		{
sl@0
   167
		iWindow->Close();
sl@0
   168
		delete iWindow;
sl@0
   169
		}
sl@0
   170
	}
sl@0
   171
sl@0
   172
void CCompWin::PreConstructL(TBool aTransparency, TBool aBackedup)
sl@0
   173
	{
sl@0
   174
	if (aBackedup)
sl@0
   175
		{
sl@0
   176
		iWindow = iBackedupWindow = new(ELeave) RBackedUpWindow(iWs);
sl@0
   177
		if (iParent)
sl@0
   178
			{
sl@0
   179
			User::LeaveIfError(iBackedupWindow->Construct(*iParent->Window(), EColor64K, (TUint32)(this)));
sl@0
   180
			iParent->AddChildL(this);
sl@0
   181
			}
sl@0
   182
		else
sl@0
   183
			{
sl@0
   184
			User::LeaveIfError(iBackedupWindow->Construct(*iGroup, EColor64K, (TUint32)(this)));
sl@0
   185
			}
sl@0
   186
		}
sl@0
   187
	else
sl@0
   188
		{
sl@0
   189
		iWindow = iRedrawWindow = new(ELeave) RWindow(iWs);
sl@0
   190
		if (iParent)
sl@0
   191
			{
sl@0
   192
			User::LeaveIfError(iRedrawWindow->Construct(*iParent->Window(), (TUint32)(this)));
sl@0
   193
			iParent->AddChildL(this);
sl@0
   194
			}
sl@0
   195
		else
sl@0
   196
			{
sl@0
   197
			User::LeaveIfError(iRedrawWindow->Construct(*iGroup, (TUint32)(this)));
sl@0
   198
			}
sl@0
   199
		}
sl@0
   200
	if (iRedrawWindow)
sl@0
   201
		{
sl@0
   202
		if (aTransparency)
sl@0
   203
			{
sl@0
   204
			iRedrawWindow->SetTransparencyAlphaChannel();
sl@0
   205
			}
sl@0
   206
		/* Note: if background color is set to include a transparent background
sl@0
   207
		 * and AUTOCLEAR is set to 1 in wsini.ini, window's background will not be
sl@0
   208
		 * totaly cleared.
sl@0
   209
		 */
sl@0
   210
		iRedrawWindow->SetBackgroundColor(BackgroundColor());
sl@0
   211
		}
sl@0
   212
sl@0
   213
	iPos.iX = TRnd::rnd(KPosLimit);
sl@0
   214
	iPos.iY = TRnd::rnd(KPosLimit);
sl@0
   215
	iSize.iWidth = TRnd::rnd(KPosLimit);
sl@0
   216
	iSize.iHeight = TRnd::rnd(KPosLimit);
sl@0
   217
	iPos.iX -= iSize.iWidth / 2;
sl@0
   218
	iPos.iY -= iSize.iHeight / 2;
sl@0
   219
	SetPos(iPos);
sl@0
   220
	SetSize(iSize);
sl@0
   221
	iWindow->SetOrdinalPosition(0);
sl@0
   222
	}
sl@0
   223
	
sl@0
   224
void CCompWin::PostConstructL()
sl@0
   225
	{
sl@0
   226
	iVisible = ETrue;
sl@0
   227
	iWindow->Activate();
sl@0
   228
	}
sl@0
   229
	
sl@0
   230
void CCompWin::SetPos(const TPoint & aPos)
sl@0
   231
	{
sl@0
   232
	iPos = aPos;
sl@0
   233
	iWindow->SetPosition(iPos);
sl@0
   234
	}
sl@0
   235
sl@0
   236
void CCompWin::SetSize(const TSize & aSize)
sl@0
   237
	{
sl@0
   238
	iSize = aSize;
sl@0
   239
	TInt err = iWindow->SetSizeErr(iSize);
sl@0
   240
	if (err != KErrNone)
sl@0
   241
		{
sl@0
   242
		__DEBUGGER();
sl@0
   243
		}
sl@0
   244
	if (iRedrawWindow)
sl@0
   245
		{
sl@0
   246
		iRedrawWindow->Invalidate();
sl@0
   247
		}
sl@0
   248
	else if (iBackedupWindow)
sl@0
   249
		{
sl@0
   250
		Redraw(aSize);
sl@0
   251
		}
sl@0
   252
	}
sl@0
   253
sl@0
   254
sl@0
   255
void CCompWin::BringToFrontL()
sl@0
   256
	{
sl@0
   257
	if (iParent)
sl@0
   258
		{
sl@0
   259
		iParent->RemoveChild(this);
sl@0
   260
		iParent->AddChildL(this);
sl@0
   261
		}
sl@0
   262
	iWindow->SetOrdinalPosition(0);
sl@0
   263
	}
sl@0
   264
sl@0
   265
void CCompWin::SendToBackL()
sl@0
   266
	{
sl@0
   267
	if (iParent)
sl@0
   268
		{
sl@0
   269
		iParent->RemoveChild(this);
sl@0
   270
		iParent->iChildren.Insert(this, 0);
sl@0
   271
		iWindow->SetOrdinalPosition(-1);
sl@0
   272
		}
sl@0
   273
	}
sl@0
   274
sl@0
   275
void CCompWin::RemoveChild(CCompWin* aChild)
sl@0
   276
	{
sl@0
   277
	TInt num = iChildren.Find(aChild);
sl@0
   278
	if (num != KErrNotFound)
sl@0
   279
		{
sl@0
   280
		iChildren.Remove(num);
sl@0
   281
		}
sl@0
   282
	}
sl@0
   283
sl@0
   284
void CCompWin::AddChildL(CCompWin* aChild)
sl@0
   285
	{
sl@0
   286
	CleanupStack::PushL(aChild);
sl@0
   287
	User::LeaveIfError(iChildren.Append(aChild));
sl@0
   288
	CleanupStack::Pop(aChild);
sl@0
   289
	}
sl@0
   290
sl@0
   291
CCompWin * CCompWin::RandomWindow()
sl@0
   292
	{
sl@0
   293
	TInt num = TRnd::rnd(iChildren.Count() + 1);
sl@0
   294
	
sl@0
   295
	if (num == iChildren.Count())
sl@0
   296
		{
sl@0
   297
		return this;
sl@0
   298
		}
sl@0
   299
	else
sl@0
   300
		{
sl@0
   301
		return iChildren[num]->RandomWindow();
sl@0
   302
		}
sl@0
   303
	}
sl@0
   304
sl@0
   305
void CCompWin::ToggleVisible()
sl@0
   306
	{
sl@0
   307
	iVisible = !iVisible;
sl@0
   308
	iWindow->SetVisible(iVisible);
sl@0
   309
	}
sl@0
   310
sl@0
   311
void CCompWin::Dump(RFile& aFile, TPoint& aOrigin, TInt aDepth, CCompWin * aMark)
sl@0
   312
	{
sl@0
   313
	TPoint abs = aOrigin + iPos;
sl@0
   314
	static TBuf8<256> buf;
sl@0
   315
	buf.SetLength(0);
sl@0
   316
	for (TInt d = 0; d < aDepth; ++d)
sl@0
   317
		{
sl@0
   318
		buf.Append(_L8("  "));
sl@0
   319
		}
sl@0
   320
	buf.Append(_L8("rel ["));
sl@0
   321
	buf.AppendNum((TInt64)iPos.iX);
sl@0
   322
	buf.Append(_L8(","));
sl@0
   323
	buf.AppendNum((TInt64)iPos.iY);
sl@0
   324
	buf.Append(_L8("] abs ["));
sl@0
   325
	buf.AppendNum((TInt64)abs.iX);
sl@0
   326
	buf.Append(_L8(","));
sl@0
   327
	buf.AppendNum((TInt64)abs.iY);
sl@0
   328
	buf.Append(_L8("] size ["));
sl@0
   329
	buf.AppendNum((TInt64)iSize.iWidth);
sl@0
   330
	buf.Append(_L8(","));
sl@0
   331
	buf.AppendNum((TInt64)iSize.iHeight);
sl@0
   332
	buf.Append(_L8("] "));
sl@0
   333
	if (iVisible)
sl@0
   334
		{
sl@0
   335
		buf.Append(_L8("visible "));
sl@0
   336
		}
sl@0
   337
	else
sl@0
   338
		{
sl@0
   339
		buf.Append(_L8("invisible "));
sl@0
   340
		}
sl@0
   341
	buf.Append(TypeName());
sl@0
   342
	if (this == aMark)
sl@0
   343
		{
sl@0
   344
		buf.Append(_L8(" <active>"));
sl@0
   345
		}
sl@0
   346
	buf.Append(_L8("\r\n"));
sl@0
   347
	aFile.Write(buf);
sl@0
   348
	
sl@0
   349
	DumpDetails(aFile, aDepth);
sl@0
   350
	
sl@0
   351
	for (TInt num = 0; num < iChildren.Count(); ++num)
sl@0
   352
		{
sl@0
   353
		iChildren[num]->Dump(aFile, abs, aDepth + 1, aMark);
sl@0
   354
		}
sl@0
   355
	}
sl@0
   356
sl@0
   357
void CCompWin::DumpDetails(RFile&, TInt)
sl@0
   358
	{
sl@0
   359
	}
sl@0
   360
sl@0
   361
void CCompWin::HandleRedraw(TWsRedrawEvent& aEvent)
sl@0
   362
	{
sl@0
   363
	Redraw(aEvent.Rect());
sl@0
   364
	}
sl@0
   365
sl@0
   366
void CCompWin::DrawBitmap(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
sl@0
   367
	{
sl@0
   368
	if (aClip.Width() > 0 && aClip.Height() > 0)
sl@0
   369
		{
sl@0
   370
		TPoint origin = iPos + aOrigin;
sl@0
   371
		TRect clip(origin, iSize);
sl@0
   372
		clip.Intersection(aClip);
sl@0
   373
sl@0
   374
		for (TInt num = 0; num < iChildren.Count(); ++num)
sl@0
   375
			{
sl@0
   376
			if (iChildren[num]->iVisible)
sl@0
   377
				{
sl@0
   378
				iChildren[num]->DrawBitmap(aGc, clip, origin);
sl@0
   379
				}
sl@0
   380
			}
sl@0
   381
		}
sl@0
   382
	}
sl@0
   383
sl@0
   384
/**
sl@0
   385
 Fills window's background with it's background color, 
sl@0
   386
 then iterates visible children
sl@0
   387
 */
sl@0
   388
void CCompWin::ClearBitmapBackground(CFbsBitGc* aGc, TRect& aClip, TPoint& aOrigin)
sl@0
   389
	{
sl@0
   390
	if (aClip.Width() > 0 && aClip.Height() > 0)
sl@0
   391
		{
sl@0
   392
		TPoint origin = iPos + aOrigin;
sl@0
   393
		TRect clip(origin, iSize);
sl@0
   394
		clip.Intersection(aClip);
sl@0
   395
sl@0
   396
		aGc->Reset();
sl@0
   397
		aGc->SetOrigin(TPoint(0,0));
sl@0
   398
		aGc->SetPenColor(BackgroundColor());
sl@0
   399
		aGc->SetBrushColor(BackgroundColor());
sl@0
   400
		aGc->SetPenStyle(CGraphicsContext::ESolidPen);
sl@0
   401
		aGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
sl@0
   402
		aGc->DrawRect(clip);
sl@0
   403
sl@0
   404
		for (TInt num = 0; num < iChildren.Count(); ++num)
sl@0
   405
			{
sl@0
   406
			if (iChildren[num]->iVisible)
sl@0
   407
				{
sl@0
   408
				iChildren[num]->ClearBitmapBackground(aGc, clip, origin);
sl@0
   409
				}
sl@0
   410
			}
sl@0
   411
		}
sl@0
   412
	}
sl@0
   413
sl@0
   414
TBool CCompWin::QueryReadyForVerification()
sl@0
   415
	{
sl@0
   416
	TBool res = ETrue;
sl@0
   417
	
sl@0
   418
	TInt idx = 0;
sl@0
   419
sl@0
   420
	while ( idx < iChildren.Count() && res )
sl@0
   421
		{
sl@0
   422
		res = iChildren[ idx ]->QueryReadyForVerification();
sl@0
   423
		idx++;
sl@0
   424
		}
sl@0
   425
	
sl@0
   426
	return res;	
sl@0
   427
	}
sl@0
   428
sl@0
   429
/**	
sl@0
   430
 Subtracts window region from the supplied region 
sl@0
   431
 then calls all children to subtract themsleves
sl@0
   432
 @param aRegion region from which current window are should be subtructed
sl@0
   433
 @param aClip clipping area provided by the parent window
sl@0
   434
 @param aOrigin absolute origin of parent
sl@0
   435
 */
sl@0
   436
void CCompWin::SubSelfFromRegion(TRegion& aRegion, const TRect& aClip, const TPoint& aOrigin)
sl@0
   437
	{
sl@0
   438
	if (!iVisible)
sl@0
   439
		{
sl@0
   440
		return;
sl@0
   441
		}
sl@0
   442
	TPoint origin = iPos + aOrigin;
sl@0
   443
	TRect clip(origin, iSize);
sl@0
   444
	clip.Intersection(aClip);
sl@0
   445
	aRegion.SubRect(clip);
sl@0
   446
	for (TInt num = 0; num < iChildren.Count(); ++num)
sl@0
   447
		{
sl@0
   448
		if (iChildren[num]->iVisible)
sl@0
   449
			{
sl@0
   450
			iChildren[num]->SubSelfFromRegion(aRegion, clip, origin);
sl@0
   451
			}
sl@0
   452
		}
sl@0
   453
	}
sl@0
   454
sl@0
   455
void CCompWin::SetVerifyTick(TUint32 aTick)
sl@0
   456
	{
sl@0
   457
	iVerifyTick = aTick;
sl@0
   458
	for (TInt num = 0; num < iChildren.Count(); ++num)
sl@0
   459
		{
sl@0
   460
		if (iChildren[num]->iVisible)
sl@0
   461
			{
sl@0
   462
			iChildren[num]->SetVerifyTick(aTick);
sl@0
   463
			}
sl@0
   464
		}
sl@0
   465
	}
sl@0
   466