os/graphics/windowing/windowserver/test/t_integ/src/t_winutils.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     7 //
     8 // Initial Contributors:
     9 // Nokia Corporation - initial contribution.
    10 //
    11 // Contributors:
    12 //
    13 // Description:
    14 //
    15 
    16 /**
    17  @file
    18  @test
    19  @internalComponent
    20 */
    21 
    22 #include <hal.h>
    23 #include "t_winutils.h"
    24 #include "t_pseudoapputils.h"
    25 
    26 EXPORT_C CTestBitmap* CTestBitmap::NewLC(const TSize& aSizeInPixels, TDisplayMode aDispMode)
    27 	{
    28 	return NewLC(0, aSizeInPixels, aDispMode);
    29 	}
    30 
    31 EXPORT_C CTestBitmap* CTestBitmap::NewL(const TSize& aSizeInPixels, TDisplayMode aDispMode)
    32 	{
    33 	CTestBitmap* self = NewLC(0, aSizeInPixels, aDispMode);
    34 	CleanupStack::Pop(self);
    35 	return self;
    36 	}
    37 
    38 EXPORT_C CTestBitmap* CTestBitmap::NewL(TInt aHandle)
    39 	{
    40 	CTestBitmap* self = NewLC(aHandle, TSize(), ENone);
    41 	CleanupStack::Pop(self);
    42 	return self;
    43 	}
    44 
    45 CTestBitmap* CTestBitmap::NewLC(TInt aHandle, const TSize& aSizeInPixels, TDisplayMode aDispMode)
    46 	{
    47 	CTestBitmap* self = new(ELeave) CTestBitmap();
    48 	CleanupStack::PushL(self);
    49 	self->ConstructL(aHandle, aSizeInPixels, aDispMode);
    50 	return self;
    51 	}
    52 
    53 void CTestBitmap::ConstructL(TInt aHandle, const TSize& aSizeInPixels, TDisplayMode aDispMode)
    54 	{
    55 	iBitmap = new(ELeave) CFbsBitmap();
    56 	CleanupStack::PushL(iBitmap);
    57 
    58 	if (aHandle==0)
    59 		{
    60 		User::LeaveIfError(iBitmap->Create(aSizeInPixels, aDispMode));
    61 		}
    62 	else
    63 		{
    64 		User::LeaveIfError(iBitmap->Duplicate(aHandle));
    65 		}
    66 	iDevice = CFbsBitmapDevice::NewL(iBitmap);
    67 	CleanupStack::PushL(iDevice);
    68 
    69 	User::LeaveIfError(iDevice->CreateContext(iGc));
    70 
    71 	CleanupStack::Pop(2);
    72 	}
    73 
    74 CTestBitmap::~CTestBitmap()
    75 	{
    76 	delete iGc;
    77 	delete iDevice;
    78 	delete iBitmap;
    79 	}
    80 
    81 EXPORT_C void TImportPseudoAppConfig::ImportPseudoAppConfigL(TInt aScreenNo, TInt& aFrameDuration, TInt& aFrameDelay,
    82                                                              TDisplayMode& aMode, TSize& aScreenSize, CIniData* aUtils)
    83 	{
    84 	TInt screenMode;
    85 	TInt numberOfScreens;
    86 	TPtrC screenAspectRatio;
    87 	TInt screenNumber;
    88 
    89 	READ_INI1(frame_duration, aFrameDuration, aUtils);
    90 	READ_INI1(screen_aspect_ratio, screenAspectRatio, aUtils);
    91 	READ_INI1(number_of_screens, numberOfScreens, aUtils);
    92 	READ_INI1(frame_delay, aFrameDelay, aUtils);
    93 	READ_INI2(screen_mode, EColor16MA, EColor64K, screenMode, EColor16MA, EColor64K, aUtils);
    94 
    95 	aMode = static_cast<TDisplayMode>(screenMode);
    96 
    97 	//Determine the number of screens from the hardware and compare with the value from the ini file
    98 	HAL::Get(HALData::EDisplayNumberOfScreens, screenNumber);
    99 	if(numberOfScreens != screenNumber)
   100 		{
   101 		RDebug::Print(_L("Error: A %d screen test has been indicated, but %d screen(s) exist\n"), numberOfScreens, screenNumber);
   102 		}
   103 
   104 	//Determine the screen dimensions
   105 	RWsSession session;
   106 	User::LeaveIfError(session.Connect());
   107 
   108 	CWsScreenDevice* screenDevice = new(ELeave) CWsScreenDevice(session);
   109 	CleanupStack::PushL(screenDevice);
   110 
   111 	User::LeaveIfError(screenDevice->Construct(aScreenNo));
   112 
   113 	aScreenSize = screenDevice->SizeInPixels();
   114 
   115 	//Check that the aspect ratio matches that of the screen
   116 	TSize aSpectRatio;
   117 
   118 	if(TImportScreenConfig::ExtractAspectRatio(screenAspectRatio, aSpectRatio) == KErrNone)
   119 		{
   120 		if(aScreenSize.iWidth*aSpectRatio.iHeight != aScreenSize.iHeight*aSpectRatio.iWidth)
   121 			{
   122 			RDebug::Print(_L("Aspect ratio from string does not match screen dimensions\n"));
   123 			RDebug::Print(_L("Read in %d:%d, Actual dimensions %d:%d\n"), aSpectRatio.iWidth, aSpectRatio.iHeight, aScreenSize.iWidth, aScreenSize.iHeight);
   124 			}
   125 		}
   126 	else
   127 		{
   128 		RDebug::Print(_L("Cannot determine aspect ratio from string, quitting: %s\n"), screenAspectRatio.Ptr());
   129 		User::Exit(0);
   130 		}
   131 
   132 	CleanupStack::PopAndDestroy(screenDevice);
   133 	session.Close();
   134 	}