windowing/windowserver/nga/SERVER/openwfc/CLIENT.CPP
branchRCL_3
changeset 19 ac96196b945c
parent 0 5d03bc08d59c
child 27 525ea837ea6b
child 33 25f95128741d
equal deleted inserted replaced
18:5e30ef2e26cb 19:ac96196b945c
     1 // Copyright (c) 1994-2009 Nokia Corporation and/or its subsidiary(-ies).
     1 // Copyright (c) 1994-2010 Nokia Corporation and/or its subsidiary(-ies).
     2 // All rights reserved.
     2 // All rights reserved.
     3 // This component and the accompanying materials are made available
     3 // This component and the accompanying materials are made available
     4 // under the terms of "Eclipse Public License v1.0"
     4 // under the terms of "Eclipse Public License v1.0"
     5 // which accompanies this distribution, and is available
     5 // which accompanies this distribution, and is available
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
     6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
  1215 			iInternalFlags&=~ERemoveKeyCode;
  1215 			iInternalFlags&=~ERemoveKeyCode;
  1216 			if (*pData.Bool)
  1216 			if (*pData.Bool)
  1217 				iInternalFlags|=ERemoveKeyCode;
  1217 				iInternalFlags|=ERemoveKeyCode;
  1218 			break;
  1218 			break;
  1219 		case EWsClOpSimulateXyInput:
  1219 		case EWsClOpSimulateXyInput:
  1220 			TWsPointer::SetXyInputType(*pData.XyInput);
  1220 			TWsPointer::SetXyInputType(static_cast<TXYInputType>(*pData.XyInput));
  1221 			break;
  1221 			break;
  1222 #endif
  1222 #endif
  1223 		case EWsClOpNoFlickerFree:
  1223 		case EWsClOpNoFlickerFree:
  1224 			PPanic(EWservPanicOpcode); //not supported anymore
  1224 			PPanic(EWservPanicOpcode); //not supported anymore
  1225 			break;
  1225 			break;
  1842 	SetClientPriority();
  1842 	SetClientPriority();
  1843 	}
  1843 	}
  1844 
  1844 
  1845 void CWsClient::CompleteMessage(const RMessage2& aMessage,TInt aReason)
  1845 void CWsClient::CompleteMessage(const RMessage2& aMessage,TInt aReason)
  1846 	{
  1846 	{
  1847 	WS_ASSERT_DEBUG(!aMessage.IsNull(),EWsPanicPanicFlagError);
  1847 	WS_ASSERT_DEBUG(!aMessage.IsNull(),EWsPanicCompleteNullMessage);
  1848 	if (iInternalFlags&EPanicClientAsSoonAsPossible)
  1848 	// This defensive check should not be necessary as aMessage should never
  1849 		{
  1849 	// be null, but in rare situations it is and WServ would die without this check.
  1850 		aMessage.Panic(KWSERVSessionPanicCategory,iPanicReason);
  1850 	if (!aMessage.IsNull())
  1851 		iInternalFlags&=~EPanicClientAsSoonAsPossible;
  1851 		{
  1852 		}
  1852 		if (iInternalFlags&EPanicClientAsSoonAsPossible)
  1853 	else
  1853 			{
  1854 		{
  1854 			aMessage.Panic(KWSERVSessionPanicCategory,iPanicReason);
  1855 		if(!iResponseHandle)
  1855 			iInternalFlags&=~EPanicClientAsSoonAsPossible;
  1856 			aMessage.Complete(aReason);
  1856 			}
  1857 		else
  1857 		else
  1858 			{
  1858 			{
  1859 			aMessage.Complete(*iResponseHandle);
  1859 			if(!iResponseHandle)
  1860 			iResponseHandle=NULL;
  1860 				aMessage.Complete(aReason);
  1861 			}
  1861 			else
  1862 		}
  1862 				{
  1863 	}
  1863 				aMessage.Complete(*iResponseHandle);
       
  1864 				iResponseHandle=NULL;
       
  1865 				}
       
  1866 			}
       
  1867 		}
       
  1868     }
  1864 
  1869 
  1865 void CWsClient::ServiceError(const RMessage2& /*aMessage*/,TInt aError)
  1870 void CWsClient::ServiceError(const RMessage2& /*aMessage*/,TInt aError)
  1866 	{
  1871 	{
  1867 	CompleteMessage(iClientMessage,aError);	// (finish)
  1872 	CompleteMessage(iClientMessage,aError);	// (finish)
  1868 	}
  1873 	}