os/graphics/windowing/windowserver/nga/SERVER/wsdisplaychangeao.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
     1 // Copyright (c) 2008-2010 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 */
    19 
    20 #include "wsdisplaychangeao.h"
    21 #include "ScrDev.H"
    22 #include "server.h"
    23 
    24 CWsDisplayChangeNotifier::CWsDisplayChangeNotifier(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner)
    25 :CActive(EEventPriority), iNextLevelInterface(aNextLevelInterface), iOwner(aOwner)
    26 	{
    27 	CActiveScheduler::Add(this);
    28 	}
    29 
    30 CWsDisplayChangeNotifier* CWsDisplayChangeNotifier::NewL(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner)
    31 	{
    32 	CWsDisplayChangeNotifier* self = new(ELeave) CWsDisplayChangeNotifier(aNextLevelInterface, aOwner);
    33 	CleanupStack::PushL(self);
    34 	self->ConstructL();
    35 	CleanupStack::Pop();
    36 	return self;
    37 	}
    38 
    39 void CWsDisplayChangeNotifier::ConstructL()
    40 	{
    41 	iRetry = CEventQueueRetry::NewL();
    42 	}
    43 
    44 void CWsDisplayChangeNotifier::IssueNotificationRequest()
    45 	{
    46 	//before submitting request, save the last resolution list
    47 	iLastErr = iNextLevelInterface->GetResolutions(iLastResList);
    48 	if(iLastErr != KErrNone)
    49 		{
    50 		//probabally KErrDisconnect
    51 		iLastResList.Reset();
    52 		}
    53 	iNextLevelInterface->NotifyOnDisplayChange(iStatus);
    54 	SetActive();
    55 	}
    56 
    57 void CWsDisplayChangeNotifier::CancelNotificationRequest()
    58 	{
    59 	Cancel();
    60 	}
    61 
    62 void CWsDisplayChangeNotifier::RunL()
    63 	{
    64 	if(iStatus == KErrNone)
    65 		{
    66 		//IssueNotificationRequest() will overwrite iLastResList and iLastErr, save a copy first
    67 		TInt lastErr = iLastErr;
    68 		RArray<MWsDisplayControl::TResolution> lastResList;
    69 		CleanupClosePushL(lastResList);
    70 		lastResList.ReserveL(iLastResList.Count());
    71 		for(TInt i = 0; i < iLastResList.Count(); i++)
    72 			{
    73 			lastResList.Append(iLastResList[i]);
    74 			}
    75 		//submit request again, this should be called as early as possible in RunL(). Otherwise display change occurs
    76 		//before submitting the request will be missed.
    77 		IssueNotificationRequest();
    78 		
    79 		RArray<MWsDisplayControl::TResolution> currentResList;
    80 		CleanupClosePushL(currentResList);
    81 		TInt err = iNextLevelInterface->GetResolutions(currentResList);
    82 		if(err != KErrNone)
    83 			{
    84 			//probabally KErrDisconnect
    85 			currentResList.Reset();
    86 			}
    87 		//return code not equal also counts as an event
    88 		if(!IsResListEqual(currentResList, lastResList) || lastErr != err)
    89 			{
    90 			//first thing is to cancel the retry AO if it's running for the last event
    91 			iRetry->CancelRetry();
    92 			
    93 			iOwner->IncreaseDisplaySpinner();
    94 			//put display change event on queue
    95 			RPointerArray<CWsClient> clientArray;
    96 			CleanupClosePushL(clientArray);
    97 			User::LeaveIfError(iOwner->GetNotificationClients(clientArray));
    98 			TBool eventOnAllQueues = ETrue;
    99 			for(TInt i = 0; i < clientArray.Count(); i++)
   100 				{
   101 				if(!TWindowServerEvent::SendDisplayChangedEvents(clientArray[i], iOwner->ScreenNumber(),
   102 						iOwner->ConfigSpinner(), iOwner->DisplaySpinner()))
   103 					{
   104 					eventOnAllQueues = EFalse;
   105 					clientArray[i]->SetRetryFlag(EEventDisplayChanged);
   106 					}
   107 				}
   108 			CleanupStack::PopAndDestroy(&clientArray);
   109 			
   110 			//some event queues are full, kick off retry AO
   111 			if(!eventOnAllQueues)
   112 				{
   113 				iRetry->Init(iOwner);
   114 				iRetry->Retry(KRetryInitialDelay);
   115 				}
   116 						
   117 			//codes below are dealing with detach/attach
   118 			MWsDisplayPolicy* policy = iOwner->DisplayPolicy();
   119 			if((err == KErrDisconnected && lastErr != KErrDisconnected)
   120 					||(currentResList.Count() == 0 && lastResList.Count() != 0))
   121 				{
   122 				//The display is disconnected
   123 				if(policy)
   124 					{
   125 					TInt appMode = policy->SuitableAppMode(MWsDisplayPolicy::EDetach);
   126 					//Last app mode can be resumed when display is connected again from disconnection
   127 					iOwner->DisplayPolicy()->SetLastAppMode(iOwner->ScreenSizeMode());
   128 					//This gonna set the screen mode to smallest app mode
   129 					if(appMode >= 0)
   130 						{
   131 						iOwner->doSetScreenMode(appMode);
   132 						}
   133 					}
   134 				else
   135 					{
   136 					//if policy is not available, do a SetConfiguration set to the same config before disconnect
   137 					//this will update parameters for MDisplayMapping stored in CDisplayPolicy
   138 					TDisplayConfiguration config;
   139 					iNextLevelInterface->GetConfiguration(config);
   140 					iNextLevelInterface->SetConfiguration(config);
   141 					}
   142 				//stop DSA drawing as the above set screen mode is under disconnection and it won't
   143 				//go the normal routine to stop DSA drawing
   144 				iOwner->AbortAllDirectDrawing(RDirectScreenAccess::ETerminateScreenMode);
   145 				}
   146 			
   147 			if(currentResList.Count() > 0 && lastResList.Count() == 0)
   148 				{
   149 				//The display is connected
   150 				if(policy)
   151 					{
   152 					TInt appMode = policy->SuitableAppMode(MWsDisplayPolicy::EAttach);
   153 					//This gonna resume the screen mode to the one before disconnection
   154 					if(appMode >= 0)
   155 						{
   156 						iOwner->doSetScreenMode(appMode);
   157 						}
   158 					}
   159 				else
   160 					{
   161 					//if policy is not available, force a SetConfiguration to trigger a config change notification
   162 					//as the twips size in config is changed on attaching display though resolution may remain 0x0 
   163 					TDisplayConfiguration config;
   164 					config.SetResolution(currentResList[0].iPixelSize);
   165 					iOwner->SetConfiguration(config);
   166 					}
   167 				iOwner->RecalculateModeTwips();
   168 				}
   169 			}
   170 		CleanupStack::PopAndDestroy(2, &lastResList);
   171 		}
   172 	else if(iStatus != KErrCancel && iStatus != KErrNotSupported)
   173 		{
   174 		IssueNotificationRequest();	//This should be ok, not deadlock
   175 		}
   176 		
   177 	}
   178 
   179 TBool CWsDisplayChangeNotifier::IsResListEqual(RArray<MWsDisplayControl::TResolution>& aResListA, RArray<MWsDisplayControl::TResolution>& aResListB)
   180 	{
   181 	if (aResListA.Count() != aResListB.Count())
   182 		return EFalse;
   183 	
   184 	for(TInt i = 0; i < aResListA.Count(); i++)
   185 		{
   186 		if(aResListA[i].iPixelSize != aResListB[i].iPixelSize)
   187 			{
   188 			return EFalse;
   189 			}
   190 		if(aResListA[i].iTwipsSize != aResListB[i].iTwipsSize)
   191 			{
   192 			return EFalse;
   193 			}
   194 		if(!(aResListA[i].iFlags == aResListB[i].iFlags))
   195 			{
   196 			return EFalse;
   197 			}
   198 		}
   199 	
   200 	return ETrue;
   201 	}
   202 
   203 void CWsDisplayChangeNotifier::DoCancel()
   204 	{}
   205 
   206 CWsDisplayChangeNotifier::~CWsDisplayChangeNotifier()
   207 	{
   208 	Cancel();
   209 	iLastResList.Close();
   210 	delete iRetry;
   211 	}
   212 
   213 CWsConfigChangeNotifier::CWsConfigChangeNotifier(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner)
   214 :CActive(EEventPriority), iNextLevelInterface(aNextLevelInterface), iOwner(aOwner)
   215 	{
   216 	CActiveScheduler::Add(this);
   217 	}
   218 
   219 CWsConfigChangeNotifier* CWsConfigChangeNotifier::NewL(MWsDisplayControl* aNextLevelInterface, CScreen *aOwner)
   220 	{
   221 	CWsConfigChangeNotifier* self = new(ELeave) CWsConfigChangeNotifier(aNextLevelInterface, aOwner);
   222 	CleanupStack::PushL(self);
   223 	self->ConstructL();
   224 	CleanupStack::Pop();
   225 	return self;
   226 	}
   227 
   228 void CWsConfigChangeNotifier::ConstructL()
   229 	{
   230 	iRetry = CEventQueueRetry::NewL();
   231 	}
   232 
   233 void CWsConfigChangeNotifier::IssueNotificationRequest()
   234 	{
   235 	//Before submitting the request, save last configuration
   236 	iNextLevelInterface->GetConfiguration(iLastConfig);
   237 	iNextLevelInterface->NotifyOnConfigChange(iStatus);
   238 	SetActive();
   239 	}
   240 
   241 void CWsConfigChangeNotifier::CancelNotificationRequest()
   242 	{
   243 	Cancel();
   244 	}
   245 
   246 void CWsConfigChangeNotifier::UpdateLastSetConfiguration(TDisplayConfiguration& aNewConfig)
   247     {
   248     TSize resolution(0,0);
   249     if (aNewConfig.GetResolution(resolution))
   250         {
   251         iLastSetConfig.SetResolution(resolution);
   252         }
   253     
   254     TSize resolutionTwips(0,0);
   255     if (aNewConfig.GetResolutionTwips(resolutionTwips))
   256         {
   257         iLastSetConfig.SetResolutionTwips(resolutionTwips);   
   258         }
   259     
   260     TDisplayConfiguration1::TRotation rotation;
   261     if (aNewConfig.GetRotation(rotation))
   262         {
   263         iLastSetConfig.SetRotation(rotation);
   264         }
   265     }
   266 
   267 void CWsConfigChangeNotifier::RunL()
   268 	{
   269 	if(iStatus == KErrNone)
   270 		{
   271 		//IssueNotificationRequest() will overwrite iLastConfig, save a copy first
   272 		TDisplayConfiguration lastConfig(iLastConfig);
   273 		IssueNotificationRequest();
   274 		
   275 		TDisplayConfiguration currentConfig;
   276 		iNextLevelInterface->GetConfiguration(currentConfig);
   277 		if(!(currentConfig == lastConfig))
   278 			{
   279 			//first thing is to cancel the retry AO if it's running for the last event
   280 			iRetry->CancelRetry();
   281 			
   282 			iOwner->IncreaseConfigSpinner();
   283 			
   284 			//if the config change comes from a render stage then ensure screen device size 
   285 			//is also updated
   286 			TSize currentRes;
   287 			currentConfig.GetResolution(currentRes);
   288 			TBool disconnected = (currentRes.iHeight == 0 || currentRes.iWidth == 0) ? ETrue : EFalse;
   289             
   290 			//if the config change is due to CScreen::SetConfiguration() being called then we
   291 			//don't want to update it again. Only update if the configs are different and the
   292 			//display is connected...
   293 			TDisplayConfiguration lastSetConfig(iLastSetConfig);
   294 			if (!((currentConfig == lastSetConfig) || (disconnected)))
   295 			    {
   296                 TDisplayConfiguration1::TRotation rotation;
   297                 if (lastSetConfig.GetRotation(rotation))
   298                     {
   299                     //use the latest rotation value to ensure we don't get any
   300                     //inconsistencies with the layer extents
   301                     currentConfig.SetRotation(rotation);
   302                     }
   303                 iOwner->UpdateConfiguration(currentConfig);
   304 			    }		
   305 			
   306 			//put config change event on queue
   307 			RPointerArray<CWsClient> clientArray;
   308 			CleanupClosePushL(clientArray);
   309 			User::LeaveIfError(iOwner->GetNotificationClients(clientArray));
   310 			TBool eventOnAllQueues = ETrue;
   311 			for(TInt i = 0; i < clientArray.Count(); i++)
   312 				{
   313 				if(!TWindowServerEvent::SendDisplayChangedEvents(clientArray[i], iOwner->ScreenNumber(),
   314 						iOwner->ConfigSpinner(), iOwner->DisplaySpinner()))
   315 					{
   316 					eventOnAllQueues = EFalse;
   317 					clientArray[i]->SetRetryFlag(EEventDisplayChanged);					
   318 					}
   319 				}
   320 			
   321 			CleanupStack::PopAndDestroy(&clientArray);
   322 			//some event queues are full, kick off retry AO
   323 			if(!eventOnAllQueues)
   324 				{
   325 				iRetry->Init(iOwner);
   326 				iRetry->Retry(KRetryInitialDelay);
   327 				}
   328 			}
   329 		iNextLevelInterface->GetConfiguration(iLastSetConfig);
   330 		}
   331 	else if(iStatus != KErrCancel && iStatus != KErrNotSupported)
   332 		{
   333 		IssueNotificationRequest();
   334 		}
   335 	
   336 	}
   337 
   338 
   339 void CWsConfigChangeNotifier::DoCancel()
   340 	{}
   341 
   342 CWsConfigChangeNotifier::~CWsConfigChangeNotifier()
   343 	{
   344 	Cancel();
   345 	delete iRetry;
   346 	}
   347 
   348