os/graphics/windowing/windowserver/test/t_integ/src/t_pseudoappscreen.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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 "t_pseudoappscreen.h"
sl@0
    23
#include "t_pseudoapputils.h"
sl@0
    24
#include "t_pseudoapptestresults.h"
sl@0
    25
#include "t_pseudoappeng.h"
sl@0
    26
sl@0
    27
CTestScreen* CTestScreen::NewL(TInt aScreenNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,
sl@0
    28
							   const TDesC& aConfigFileName, CTPseudoAppShared& aPseudoAppShared)
sl@0
    29
    {
sl@0
    30
	RDebug::Print(_L("Creating CTestScreen class\n"));
sl@0
    31
    CTestScreen* self = new (ELeave) CTestScreen(aPseudoAppShared);
sl@0
    32
    CleanupStack::PushL(self);
sl@0
    33
    self->ConstructL(aScreenNo, aMode, aFrameDuration, aScreenSize, aGceTestResults, aConfigFileName);
sl@0
    34
    CleanupStack::Pop(); // self;
sl@0
    35
    return self;
sl@0
    36
    }
sl@0
    37
sl@0
    38
void CTestScreen::ConstructL(TInt aScreenNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,
sl@0
    39
							const TDesC& aConfigFileName)
sl@0
    40
	{
sl@0
    41
	RDebug::Print(_L("Constructing CTestScreen for screen %d\n"), aScreenNo);
sl@0
    42
sl@0
    43
	iPopupOccurances = 0;
sl@0
    44
	iFrameDuration = aFrameDuration;
sl@0
    45
	iScreenSize = aScreenSize;
sl@0
    46
sl@0
    47
	//Create CIniData class for reading in values form ini files
sl@0
    48
	iUtils = CIniData::NewL(aConfigFileName);
sl@0
    49
sl@0
    50
	ImportScreenConfigL(aScreenNo, aMode, aFrameDuration, aScreenSize, aGceTestResults, aConfigFileName);
sl@0
    51
	}
sl@0
    52
sl@0
    53
CTestScreen::~CTestScreen()
sl@0
    54
	{
sl@0
    55
	if (iWindAndSurf)
sl@0
    56
		{
sl@0
    57
		iWindAndSurf->ResetAndDestroy();
sl@0
    58
		delete iWindAndSurf;
sl@0
    59
		}
sl@0
    60
sl@0
    61
	delete iUtils;
sl@0
    62
	}
sl@0
    63
sl@0
    64
CTestScreen::CTestScreen(CTPseudoAppShared& aPseudoAppShared)
sl@0
    65
: iPseudoAppShared(aPseudoAppShared)
sl@0
    66
	{
sl@0
    67
	}
sl@0
    68
sl@0
    69
EXPORT_C void CTestScreen::UpdateL(SurfaceDetails& aSurfDetails)
sl@0
    70
	{
sl@0
    71
	//Update all windowed surfaces changes
sl@0
    72
	for(TInt index1=0; index1<iWindAndSurf->Count(); index1++)
sl@0
    73
		{
sl@0
    74
		(*iWindAndSurf)[index1]->UpdateL(aSurfDetails);
sl@0
    75
		}
sl@0
    76
sl@0
    77
	//Launch popup window if configured by ini file
sl@0
    78
	for(TInt index2=1; index2<(iPopupOccurances+1); index2++)
sl@0
    79
		{
sl@0
    80
		if(iFrameCounter == iFrameDuration/(2*iPopupOccurances*index2))
sl@0
    81
			{
sl@0
    82
			CreatePopupWindow();
sl@0
    83
			}
sl@0
    84
		else if(iFrameCounter == (iFrameDuration/(2*iPopupOccurances*index2) + iFrameDuration/(4*iPopupOccurances)))
sl@0
    85
			{
sl@0
    86
			DestroyPopupWindow();
sl@0
    87
			}
sl@0
    88
		}
sl@0
    89
sl@0
    90
	iFrameCounter++;
sl@0
    91
	}
sl@0
    92
sl@0
    93
EXPORT_C TBool CTestScreen::Rotation()
sl@0
    94
	{
sl@0
    95
	return iRotation;
sl@0
    96
	}
sl@0
    97
sl@0
    98
EXPORT_C void CTestScreen::RotateL(TInt aScreenNo, TInt aFrameNumber)
sl@0
    99
	{
sl@0
   100
	//Only rotation of one screen supported
sl@0
   101
	RWsSession session;
sl@0
   102
	TInt err = session.Connect();
sl@0
   103
	if (err!=KErrNone)
sl@0
   104
		RDebug::Print(_L("Error connecting the session error = %d\n"),err);	
sl@0
   105
sl@0
   106
	//Determine the screen dimensions
sl@0
   107
	CWsScreenDevice* screenDevice = NULL;
sl@0
   108
	TRAP(err,screenDevice = new(ELeave) CWsScreenDevice(session));
sl@0
   109
	if (err!=KErrNone)
sl@0
   110
		RDebug::Print(_L("Error creating screen device = %d\n"),err);	
sl@0
   111
		
sl@0
   112
	err = screenDevice->Construct(aScreenNo);
sl@0
   113
	if (err!=KErrNone)
sl@0
   114
		RDebug::Print(_L("Error constructing the screen device error = %d\n"),err);	
sl@0
   115
sl@0
   116
	TSize aScreenSize = screenDevice->SizeInPixels();
sl@0
   117
sl@0
   118
	//if screen dimensions have not changed (eg flipped) take no action
sl@0
   119
	//Rotation only supported for full screen window and surface
sl@0
   120
	if(iScreenSize != aScreenSize)
sl@0
   121
		{
sl@0
   122
		for(TInt i=0; i<iWindAndSurf->Count(); i++)
sl@0
   123
			{
sl@0
   124
			if( (*iWindAndSurf)[i]->RotationSupported() )
sl@0
   125
				{
sl@0
   126
				(*iWindAndSurf)[i]->RotateL(aScreenNo, i+1, aScreenSize, aFrameNumber);
sl@0
   127
				}
sl@0
   128
			else
sl@0
   129
				{
sl@0
   130
				RDebug::Print(_L("Rotation is not supported for this animation type"));
sl@0
   131
				User::Panic(KTPseudoAppPanicTxt, KErrNotSupported);
sl@0
   132
				}
sl@0
   133
			}
sl@0
   134
sl@0
   135
		iScreenSize = aScreenSize;
sl@0
   136
		}
sl@0
   137
	}
sl@0
   138
sl@0
   139
void CTestScreen::ImportScreenConfigL(TInt aScreenNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize, TGceTestResults* aGceTestResults,
sl@0
   140
							const TDesC& aConfigFileName)
sl@0
   141
	{
sl@0
   142
	TInt screenWindowNumber;
sl@0
   143
	TPtrC windowType;
sl@0
   144
sl@0
   145
	TBuf<KMaxUiBitmapNameLength>	tempStore;
sl@0
   146
	tempStore.Format(KScreenWindow, aScreenNo);
sl@0
   147
sl@0
   148
	READ_INI1A(tempStore, number, screenWindowNumber, iUtils);
sl@0
   149
	READ_INI1A(tempStore, popup_occurances, iPopupOccurances, iUtils);
sl@0
   150
sl@0
   151
	tempStore.Format(KScreen, aScreenNo);
sl@0
   152
	READ_INI2A(tempStore, rotation, True, False, iRotation, ETrue, EFalse, iUtils);
sl@0
   153
sl@0
   154
	iWindAndSurf = new (ELeave) CArrayPtrFlat<CTestSurfacedWindow>(1);
sl@0
   155
sl@0
   156
	for(TInt i=1; i<screenWindowNumber+1; i++)
sl@0
   157
		{
sl@0
   158
		RDebug::Print(_L("Creating surfaced window %d on screen %d\n"), i, aScreenNo);
sl@0
   159
sl@0
   160
		iWindAndSurf->ExtendL() = CTestSurfacedWindow::NewL(aScreenNo, i, aMode, aFrameDuration, aScreenSize, aGceTestResults, aConfigFileName, iPseudoAppShared);
sl@0
   161
sl@0
   162
		RDebug::Print(_L("Surfaced window %d on screen %d created\n"), i, aScreenNo);
sl@0
   163
		}
sl@0
   164
	}
sl@0
   165
sl@0
   166
void CTestScreen::CreatePopupWindow()
sl@0
   167
	{
sl@0
   168
	RDebug::Print(_L("Starting App: %S"), &KScreenWindowPopupApp);
sl@0
   169
sl@0
   170
	TInt createErr = iPopupProcess.Create(KScreenWindowPopupApp, KNullDesC);
sl@0
   171
sl@0
   172
	if (createErr == KErrNone)
sl@0
   173
		{
sl@0
   174
		iPopupProcess.SetPriority(EPriorityForeground);
sl@0
   175
		iPopupProcess.Resume();
sl@0
   176
		}
sl@0
   177
	}
sl@0
   178
sl@0
   179
void CTestScreen::LaunchRotationApp()
sl@0
   180
	{
sl@0
   181
	RDebug::Print(_L("Starting App: %S"), &KScreenRotationApp);
sl@0
   182
sl@0
   183
	TInt createErr = iRotationProcess.Create(KScreenRotationApp, KNullDesC);
sl@0
   184
sl@0
   185
	if (createErr == KErrNone)
sl@0
   186
		{
sl@0
   187
		iRotationProcess.SetPriority(EPriorityForeground);
sl@0
   188
		iRotationProcess.Resume();
sl@0
   189
		}
sl@0
   190
	}
sl@0
   191
sl@0
   192
void CTestScreen::DestroyRotationApp()
sl@0
   193
	{
sl@0
   194
	if(iRotation)
sl@0
   195
		{
sl@0
   196
		iRotationProcess.Kill(KErrGeneral);
sl@0
   197
		}
sl@0
   198
	}
sl@0
   199
sl@0
   200
void CTestScreen::DestroyPopupWindow()
sl@0
   201
	{
sl@0
   202
	iPopupProcess.Kill(KErrGeneral);
sl@0
   203
	}
sl@0
   204