os/graphics/windowing/windowserver/test/t_integ/src/t_pseudoappshared.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) 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
sl@0
    18
/**
sl@0
    19
 @file
sl@0
    20
 @test
sl@0
    21
 @internalComponent
sl@0
    22
*/
sl@0
    23
sl@0
    24
#include <e32debug.h> //RDebug
sl@0
    25
sl@0
    26
#include "t_pseudoappshared.h"
sl@0
    27
#include "t_pseudoappscreen.h"
sl@0
    28
#include "t_pseudoappwindow.h"
sl@0
    29
sl@0
    30
CTPseudoAppShared::TSurfaceCollection::TSurfaceCollection()
sl@0
    31
:iScreenNo(-1),iWindowNo(-1),iSurfaceId(TSurfaceId::CreateNullId())
sl@0
    32
	{
sl@0
    33
	}
sl@0
    34
sl@0
    35
CTPseudoAppShared::TSurfaceCollection::TSurfaceCollection(TInt aScreenNo, TInt aWindowNo, const TSurfaceId& aSurfaceId)
sl@0
    36
:iScreenNo(aScreenNo),iWindowNo(aWindowNo),iSurfaceId(aSurfaceId)
sl@0
    37
	{
sl@0
    38
	}
sl@0
    39
sl@0
    40
CTPseudoAppShared::TSurfaceCollection::TSurfaceCollection(TInt aScreenNo, TInt aWindowNo)
sl@0
    41
:iScreenNo(aScreenNo),iWindowNo(aWindowNo),iSurfaceId(TSurfaceId::CreateNullId())
sl@0
    42
	{
sl@0
    43
	}
sl@0
    44
sl@0
    45
TBool CTPseudoAppShared::TSurfaceCollection::IndicesEqual(const TSurfaceCollection& aFirst, const TSurfaceCollection& aSecond)
sl@0
    46
	{
sl@0
    47
	return (aFirst.iScreenNo==aSecond.iScreenNo && aFirst.iWindowNo==aSecond.iWindowNo);
sl@0
    48
	}
sl@0
    49
sl@0
    50
TBool CTPseudoAppShared::TSurfaceCollection::AnotherWindowWithSameSurfaceId(const TSurfaceCollection& aFirst, const TSurfaceCollection& aSecond)
sl@0
    51
	{
sl@0
    52
	return (aFirst.iSurfaceId==aSecond.iSurfaceId && (aFirst.iScreenNo!=aSecond.iScreenNo || aFirst.iWindowNo!=aSecond.iWindowNo));
sl@0
    53
	}
sl@0
    54
sl@0
    55
EXPORT_C CTPseudoAppShared::CTPseudoAppShared()
sl@0
    56
	{
sl@0
    57
	}
sl@0
    58
sl@0
    59
EXPORT_C void CTPseudoAppShared::AddTestScreenL(TInt aScreenNo, TDisplayMode aMode, TInt aFrameDuration, const TSize& aScreenSize,
sl@0
    60
												TGceTestResults* aGceTestResults, const TDesC& aConfigFileName)
sl@0
    61
	{
sl@0
    62
	CTestScreen* newScreen = CTestScreen::NewL(aScreenNo, aMode, aFrameDuration, aScreenSize, aGceTestResults, aConfigFileName, *this);
sl@0
    63
	CleanupStack::PushL(newScreen);
sl@0
    64
	iTestScreens.AppendL(newScreen);
sl@0
    65
	CleanupStack::Pop(newScreen);
sl@0
    66
	}
sl@0
    67
sl@0
    68
CTPseudoAppShared::~CTPseudoAppShared()
sl@0
    69
	{
sl@0
    70
	iTestScreens.ResetAndDestroy();
sl@0
    71
	iTestScreens.Close();
sl@0
    72
	iSurfaceCollection.Close();
sl@0
    73
	}
sl@0
    74
sl@0
    75
TSurfaceId CTPseudoAppShared::GetSurfaceId(TInt aScreenNo, TInt aWindowNo)
sl@0
    76
	{
sl@0
    77
	TSurfaceCollection matchCollection(aScreenNo, aWindowNo);
sl@0
    78
	
sl@0
    79
	TInt pos = iSurfaceCollection.Find(matchCollection, TIdentityRelation<TSurfaceCollection>(TSurfaceCollection::IndicesEqual));
sl@0
    80
	if(pos == KErrNotFound)
sl@0
    81
		{
sl@0
    82
		return TSurfaceId::CreateNullId();
sl@0
    83
		}
sl@0
    84
	else
sl@0
    85
		{
sl@0
    86
		return iSurfaceCollection[pos].iSurfaceId;
sl@0
    87
		}
sl@0
    88
	}
sl@0
    89
sl@0
    90
void CTPseudoAppShared::SetSurfaceIdL(TInt aScreenNo, TInt aWindowNo, const TSurfaceId& aSurfaceId)
sl@0
    91
	{
sl@0
    92
	TSurfaceCollection newCollection(aScreenNo, aWindowNo, aSurfaceId);
sl@0
    93
	
sl@0
    94
	TInt pos = iSurfaceCollection.Find(newCollection, TIdentityRelation<TSurfaceCollection>(TSurfaceCollection::IndicesEqual));
sl@0
    95
	if(pos >= 0)
sl@0
    96
		{
sl@0
    97
		// Replace SurfaceId for window as already in array
sl@0
    98
		iSurfaceCollection[pos].iSurfaceId = aSurfaceId;
sl@0
    99
		}
sl@0
   100
	else if(pos == KErrNotFound)
sl@0
   101
		{
sl@0
   102
		// Add new entry to array
sl@0
   103
		iSurfaceCollection.AppendL(newCollection);
sl@0
   104
		}
sl@0
   105
	else
sl@0
   106
		{
sl@0
   107
		User::Leave(pos);
sl@0
   108
		}
sl@0
   109
	}
sl@0
   110
sl@0
   111
void CTPseudoAppShared::RemoveSurfaceIdEntry(TInt aScreenNo, TInt aWindowNo)
sl@0
   112
	{
sl@0
   113
	TSurfaceCollection matchCollection(aScreenNo, aWindowNo);
sl@0
   114
	
sl@0
   115
	TInt pos = 0;
sl@0
   116
	while(pos >= 0)
sl@0
   117
		{
sl@0
   118
		pos = iSurfaceCollection.Find(matchCollection, TIdentityRelation<TSurfaceCollection>(TSurfaceCollection::IndicesEqual));
sl@0
   119
		if(pos == KErrNotFound)
sl@0
   120
			{
sl@0
   121
			return;
sl@0
   122
			}
sl@0
   123
		else
sl@0
   124
			{
sl@0
   125
			iSurfaceCollection.Remove(pos);
sl@0
   126
			}
sl@0
   127
		}
sl@0
   128
	}
sl@0
   129
sl@0
   130
TBool CTPseudoAppShared::RotationSupported(TInt aScreenNo, TInt aWindowNo, const TSurfaceId& aSurfaceId) const
sl@0
   131
	{
sl@0
   132
	TSurfaceCollection matchCollection(aScreenNo, aWindowNo, aSurfaceId);
sl@0
   133
	
sl@0
   134
	TInt pos = iSurfaceCollection.Find(matchCollection, TIdentityRelation<TSurfaceCollection>(TSurfaceCollection::AnotherWindowWithSameSurfaceId));
sl@0
   135
	
sl@0
   136
	return (pos == KErrNotFound);
sl@0
   137
	}