os/graphics/windowing/windowserver/test/t_integ/src/t_app1eng.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 <iniparser.h>
    23 #include "t_app1eng.h"
    24 #include "t_inidata.h"
    25 #include "t_wservconsts.h"
    26 
    27 
    28 _LIT(KTApp1ScrMode,  "KTApp1ScrMode%d");
    29 _LIT(KTApp1Rotation, "KTApp1Rotation%d");
    30 _LIT(KTApp1PanicTxt,   "t_app1.exe");
    31 
    32 //
    33 // class CTApp1Eng
    34 //
    35 CTApp1Eng::CTApp1Eng(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow)
    36 : CTimer(CActive::EPriorityLow),
    37 	iClient(aClient),
    38 	iWindow(aWindow),
    39 	iScreenDevice(aScreenDevice),
    40     iDrawing(EFalse),
    41     iRotationFlag(EFalse)
    42 	{
    43 	}
    44 
    45 CTApp1Eng* CTApp1Eng::NewL(RWsSession& aClient, CWsScreenDevice& aScreenDevice, RWindow& aWindow)
    46     {
    47     CTApp1Eng* self = new (ELeave) CTApp1Eng(aClient, aScreenDevice, aWindow);
    48     CleanupStack::PushL(self);
    49     self->ConstructL();
    50     CleanupStack::Pop(); // self;
    51     return self;
    52     }
    53 
    54 CTApp1Eng::~CTApp1Eng()
    55 	{
    56     if(IsActive())
    57     	{
    58 	    Cancel();
    59     	}
    60 
    61     iRotationList.Close();
    62     iScrModeList.Close();
    63     iSemaphore.Close();
    64 	}
    65 
    66 void CTApp1Eng::ConstructL()
    67 	{
    68 	CTimer::ConstructL();
    69 	User::LeaveIfError(iScreenDevice.CreateContext(iGc));
    70 
    71 	HBufC* rotFlag = NULL;
    72 	READ_STR(KTApp1RotationFlag, KWServTApp1ConfigFile, rotFlag);
    73 
    74 	// check to see if instead of the default behaviour of drawing to
    75 	// window with alternate frames of red/blue, that the app is to
    76 	// periodically cause the screen to rotate, which is all defined
    77 	// in the configuration file created by the test step
    78 	if (rotFlag!=NULL && rotFlag->Des().Compare(_L("ETrue")) == KErrNone)
    79 		{
    80 		delete rotFlag;
    81 		iRotationFlag=ETrue;
    82 
    83 		// setup rotation and screen mode lists
    84 		TBool moreData=ETrue;
    85 		TInt index=0;
    86 		TBuf<255> tempStore;
    87 		CIniData * iniData = CIniData::NewL(KWServTApp1ConfigFile);
    88 		CleanupStack::PushL(iniData);
    89 
    90 		// read in rotations to be performed
    91 		while (moreData)
    92 			{
    93 			TInt scrMode;
    94 			tempStore.Format(KTApp1ScrMode, ++index);
    95 			moreData = iniData->FindVar(KDefaultSectionName, tempStore, scrMode);
    96 			if (moreData)
    97 				{
    98 				TInt rotation;
    99 				tempStore.Format(KTApp1Rotation, index);
   100 				moreData = iniData->FindVar(KDefaultSectionName, tempStore, rotation);
   101 				if (moreData)
   102 					{
   103 					RDebug::Print(_L("CTApp1Eng::ConstructL - Screen Mode: %d, Rotation: %d"),scrMode,rotation);
   104 					iRotationList.AppendL(rotation);
   105 					iScrModeList.AppendL(scrMode);
   106 					}
   107 				else
   108 					{
   109 					User::Panic(KTApp1PanicTxt(), KErrNotFound);
   110 					}
   111 				}
   112 			else
   113 				{
   114 				moreData=EFalse;
   115 				}
   116 			}
   117 
   118 		CleanupStack::PopAndDestroy(iniData);
   119 
   120 		// setup the number of frames to be counted between each
   121 		// screen rotation
   122 		TInt iters = 0;
   123 		READ_INT(KTApp1Iterations, KWServTApp1ConfigFile, iters);
   124 		iRotationTimer = iters/(iRotationList.Count()+1);
   125 		RDebug::Print(_L("CTApp1Eng::ConstructL - Rotation Timer: %d"), iRotationTimer);
   126 
   127 		if (iRotationList.Count()==0)
   128 			{
   129 			User::Panic(KTApp1PanicTxt(), KErrNotFound);
   130 			}
   131 		}
   132 	User::LeaveIfError(iSemaphore.OpenGlobal(KWservDsaSemaphoreName));
   133 
   134 	CActiveScheduler::Add(this);
   135 	}
   136 
   137 void CTApp1Eng::StartDrawing()
   138 	{
   139 	if (iDrawing)
   140 		{
   141 		User::Panic(KTApp1PanicTxt(), TApp1EngAlreadyStarted);
   142 		}
   143 
   144 	iDrawing=ETrue;
   145 
   146 	After(TTimeIntervalMicroSeconds32(0));
   147 	}
   148 
   149 void CTApp1Eng::StopDrawing()
   150 	{
   151 	if (!iDrawing)
   152 		{
   153 		User::Panic(KTApp1PanicTxt(), TApp1EngAlreadyStopped);
   154 		}
   155 
   156 	// Cancel timer and display
   157 	Cancel();
   158 	iDrawing = EFalse;
   159 	}
   160 
   161 
   162 // Timer's RunL()
   163 void CTApp1Eng::RunL()
   164 	{
   165 	iFrameCount++;
   166 
   167 	if (iFrameCount==1)
   168 		{
   169 		RDebug::Print(_L("CTApp1Eng::RunL - Rotation Flag: %d"), iRotationFlag);
   170 		}
   171 
   172 	// just draw to window, with alternate frames of red and blue
   173 	if (iRotationFlag==EFalse)
   174 		{
   175 		iGc->Activate(iWindow);
   176 		TRect myRect(iWindow.Size());
   177 		TRgb color(0,0,255);
   178 
   179 		if (iFrameCount%2)
   180 			{
   181 			color.SetRed(255);
   182 			color.SetBlue(0);
   183 			}
   184 
   185 	    iGc->SetBrushColor(color);
   186 	    iWindow.SetBackgroundColor(color);
   187 	    iGc->SetPenColor(color);
   188 	    iGc->SetBrushStyle(CGraphicsContext::ESolidBrush);
   189 		iGc->DrawRect(myRect);
   190 		iGc->Deactivate();
   191 
   192 		iDrawing=EFalse;
   193 		iWindow.Invalidate();
   194 		}
   195 	// else rotate screen
   196 	else
   197 		{
   198 		if (iFrameCount==iRotationTimer)
   199 			{
   200 			iSemaphore.Signal();
   201 			iFrameCount=0;
   202 
   203 			if (iRotationCount<iRotationList.Count())
   204 				{
   205 				TInt rotation = iRotationList[iRotationCount];
   206 				TInt scrMode = iScrModeList[iRotationCount];
   207 
   208 				switch (rotation)
   209 					{
   210 					case 0:
   211 						{
   212 						iScreenDevice.SetCurrentRotations(scrMode,CFbsBitGc::EGraphicsOrientationNormal);
   213 						break;
   214 						}
   215 					case 90:
   216 						{
   217 						iScreenDevice.SetCurrentRotations(scrMode,CFbsBitGc::EGraphicsOrientationRotated90);
   218 						iScreenDevice.SetScreenMode(scrMode);
   219 						break;
   220 						}
   221 					case 180:
   222 						{
   223 						iScreenDevice.SetCurrentRotations(scrMode,CFbsBitGc::EGraphicsOrientationRotated180);
   224 						break;
   225 						}
   226 					case 270:
   227 						{
   228 						iScreenDevice.SetCurrentRotations(scrMode,CFbsBitGc::EGraphicsOrientationRotated270);
   229 						break;
   230 						}
   231 					default:
   232 						{
   233 						RDebug::Print(_L("CTApp1Eng::RunL - Invalid Rotation: %d"),rotation);
   234 						User::Leave(KErrAbort);
   235 						break;
   236 						}
   237 					}
   238 				RDebug::Print(_L("CTApp1Eng::RunL - Screen Mode: %d, Rotation: %d"),scrMode, rotation);
   239 				iScreenDevice.SetScreenMode(scrMode);
   240 				}
   241 
   242 			iRotationCount++;
   243 			}
   244 
   245 		After(TTimeIntervalMicroSeconds32(0));
   246 		}
   247 	}
   248 
   249 // Timer's DoCancel()
   250 void CTApp1Eng::DoCancel()
   251 	{
   252 	// Cancel timer
   253 	CTimer::DoCancel();
   254 	}
   255 
   256