accessoryservices/accessoryremotecontrol/tsrc/remcontestcontrol/remcontestcontrolplugin/src/remconsync.cpp
changeset 0 4e1aa6a622a0
child 21 ccb4f6b3db21
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/accessoryservices/accessoryremotecontrol/tsrc/remcontestcontrol/remcontestcontrolplugin/src/remconsync.cpp	Tue Feb 02 00:53:00 2010 +0200
@@ -0,0 +1,121 @@
+/*
+* Copyright (c) 2002-2004 Nokia Corporation and/or its subsidiary(-ies). 
+* All rights reserved.
+* This component and the accompanying materials are made available
+* under the terms of "Eclipse Public License v1.0"
+* which accompanies this distribution, and is available
+* at the URL "http://www.eclipse.org/legal/epl-v10.html".
+*
+* Initial Contributors:
+* Nokia Corporation - initial contribution.
+*
+* Contributors:
+*
+* Description:  ?Description
+*
+*/
+
+
+// INCLUDE FILES
+#include "remconcontrol.h"
+#include "remconactive.h"
+#include "siftrace.h"
+#include "remconsync.h"
+
+
+// -----------------------------------------------------------------------------
+// 
+// 
+// -----------------------------------------------------------------------------
+//
+CRemConSync::CRemConSync()
+    {    
+     iError = KErrNone;
+     iEvent     = ETFRemConEvent_None;
+     iParameter = KErrNone;	
+    }
+
+// -----------------------------------------------------------------------------
+// 
+// 
+// -----------------------------------------------------------------------------
+//
+void CRemConSync::ConstructL( CRemConInterfaceSelector* aTargetInterfaceSelector )
+    {
+    iSync = CRemConSynchronizationTarget::NewL( *aTargetInterfaceSelector, *this );
+    iActive = CRemConActive::NewL( *this );
+	}
+
+// -----------------------------------------------------------------------------
+// 
+// 
+// -----------------------------------------------------------------------------
+//
+CRemConSync* CRemConSync::NewL( CRemConInterfaceSelector* aTargetInterfaceSelector )
+    {
+    CRemConSync* self = new( ELeave ) CRemConSync();
+    CleanupStack::PushL( self );
+    self->ConstructL( aTargetInterfaceSelector );
+    CleanupStack::Pop();
+    return self;
+    }
+ 
+// -----------------------------------------------------------------------------
+// 
+// 
+// -----------------------------------------------------------------------------
+//
+CRemConSync::~CRemConSync()
+    {
+    delete iActive;
+    }
+
+// -----------------------------------------------------------------------------
+// 
+// 
+// 
+// -----------------------------------------------------------------------------
+void CRemConSync::CompleteResponse( const TInt aError )
+    {
+		if(aError != KErrNone)
+	    {
+    	COMPONENT_TRACE( ( _L( "REMCONTESTCONTROL -  CRemConSync::CompleteResponse( %d)" ), aError) );
+    	}
+    	else
+    	{
+    	MRemConControl* aControl = GetRemConControl();
+    	aControl->CompleteKeyEventResponse( iEvent, iParameter, aError );	
+    	}	
+     
+     iEvent     = ETFRemConEvent_None;
+     iParameter = KErrNone;	
+	}
+// -----------------------------------------------------------------------------
+// 
+// 
+// -----------------------------------------------------------------------------
+//	
+void CRemConSync::Synchronize()
+{
+    iEvent = ETFRemConEvent_Sync;
+    iParameter = KErrNone;
+    MRemConControl* aControl = GetRemConControl();
+	aControl->NotifyKeyEvent(iEvent, iParameter);
+}
+
+// -----------------------------------------------------------------------------
+// 
+// 
+// -----------------------------------------------------------------------------
+//	   
+void CRemConSync::SynchronizeResponse()
+    {
+		iSync->SynchronizeResponse(iActive->iStatus, iError);
+		iActive->iStatus = KRequestPending;
+		iActive->SetActive();
+	}
+   
+void CRemConSync::GetCommandSourceInfo(TRemConExtCmdSource& aSource)
+    {
+    iSync->GetCommandSourceInfo( aSource );
+    }