os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/audiovibracontrolci.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 #include <ecom/implementationproxy.h>
    17 #include <ecom/implementationproxy.h>
    18 #include <ecom/ecom.h>
    19 #include <s32mem.h>
    20 
    21 #include "audiovibracontrolci.h"
    22 
    23 
    24 // MUX //
    25 
    26 TInt CMMFAudioVibraControlMux::OpenInterface(TUid /*aInterfaceId*/)
    27 	{
    28 	// attempt to open the interface link with the
    29 	// remote slave device
    30 	iRemoteHandle = -1;
    31 	TUid slaveId = {KMmfUidCustomInterfaceAudioVibraControlDeMux};
    32 
    33 	TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
    34 	if (handle >= 0)
    35 		{
    36 		iRemoteHandle = handle;
    37 		}
    38 
    39 	return iRemoteHandle;
    40 	}
    41 
    42 
    43 void CMMFAudioVibraControlMux::Release()
    44 	{
    45 	// close the slave device if it exists
    46 	if (iRemoteHandle > 0)
    47 		{
    48 		// we assume the slave is closed correctly
    49 		iUtility->CloseSlave(iRemoteHandle);
    50 		}
    51 
    52 	TUid key = iKey;
    53 	delete this;
    54 
    55 	// tell ECom to destroy us
    56 	REComSession::DestroyedImplementation(key);
    57 	}
    58 
    59 
    60 void CMMFAudioVibraControlMux::PassDestructorKey(TUid aDestructorKey)
    61 	{
    62 	// store the destructor key
    63 	iKey = aDestructorKey;
    64 	}
    65 
    66 
    67 void CMMFAudioVibraControlMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
    68 	{
    69 	// store a pointer to the utility
    70 	iUtility = aCustomUtility;
    71 	}
    72 
    73 
    74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFAudioVibraControlMux::NewL()
    75 	{
    76 	CMMFAudioVibraControlMux* self = new (ELeave) CMMFAudioVibraControlMux;
    77 	return self;
    78 	}
    79 
    80 
    81 TAny* CMMFAudioVibraControlMux::CustomInterface(TUid /*aInterfaceId*/)
    82 	{
    83 	MAudioVibraControl* interface = this;
    84 	return interface;
    85 	}
    86 
    87 
    88 CMMFAudioVibraControlMux::CMMFAudioVibraControlMux() :
    89 	iRemoteHandle(-1)
    90 	{
    91 	}
    92 
    93 
    94 CMMFAudioVibraControlMux::~CMMFAudioVibraControlMux()
    95 	{
    96 	}
    97 
    98 
    99 // from MAudioVibraControl
   100 TInt CMMFAudioVibraControlMux::StartVibra()
   101 	{
   102 	TInt result = KErrBadHandle;
   103 
   104 	if (iRemoteHandle > 0)
   105 		{
   106 		// any return code other than zero is an error
   107 		result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
   108 												EMMFDevSoundCIAudioVibraControlStartVibra,
   109 												KNullDesC8);
   110 		}
   111 
   112 	return result;
   113 	}
   114 
   115 
   116 // from MAudioVibraControl
   117 TInt CMMFAudioVibraControlMux::StopVibra()
   118 	{
   119 	TInt result = KErrBadHandle;
   120 
   121 	if (iRemoteHandle > 0)
   122 		{
   123 		// any return code other than zero is an error
   124 		result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
   125 												EMMFDevSoundCIAudioVibraControlStopVibra,
   126 												KNullDesC8);
   127 		}
   128 
   129 	return result;
   130 	}
   131 
   132 
   133 
   134 // DEMUX //
   135 
   136 TInt CMMFAudioVibraControlDeMux::OpenInterface(TUid /*aInterfaceId*/)
   137 	{
   138 	return KErrNone;
   139 	}
   140 
   141 
   142 void CMMFAudioVibraControlDeMux::Release()
   143 	{
   144 	TUid key = iKey;
   145 
   146 	delete this;
   147 
   148 	// tell ECom to destroy us
   149 	REComSession::DestroyedImplementation(key);
   150 	}
   151 
   152 
   153 void CMMFAudioVibraControlDeMux::PassDestructorKey(TUid aDestructorKey)
   154 	{
   155 	// store the destructor key
   156 	iKey = aDestructorKey;
   157 	}
   158 
   159 
   160 void CMMFAudioVibraControlDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
   161 	{
   162 	iTarget = aTarget;
   163 	}
   164 
   165 
   166 void CMMFAudioVibraControlDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
   167 	{
   168 	// store a pointer to the utility
   169 	iUtility = aCustomUtility;
   170 	}
   171 
   172 
   173 void CMMFAudioVibraControlDeMux::RefreshL()
   174 	{
   175 	// refetch the Audio vibra control custom interface if we already have a target
   176 	if (iTarget)
   177 		{
   178 		iInterfaceAudioVibraControl = static_cast <MAudioVibraControl*> (iTarget->CustomInterface(KUidAudioVibraControl));
   179 
   180 		if (!iInterfaceAudioVibraControl)
   181 			{
   182 			iInterfaceAudioVibraControl = NULL;
   183 			User::Leave(KErrNotSupported);
   184 			}
   185 		}
   186 	}
   187 
   188 
   189 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFAudioVibraControlDeMux::NewL()
   190 	{
   191 	CMMFAudioVibraControlDeMux* self = new (ELeave) CMMFAudioVibraControlDeMux;
   192 	return self;
   193 	}
   194 
   195 
   196 CMMFAudioVibraControlDeMux::CMMFAudioVibraControlDeMux()
   197 	{
   198 	}
   199 
   200 
   201 CMMFAudioVibraControlDeMux::~CMMFAudioVibraControlDeMux()
   202 	{
   203 	}
   204 
   205 
   206 TInt CMMFAudioVibraControlDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
   207 	{
   208 	// fetch the Audio vibra control Hw Device custom interface
   209 	iInterfaceAudioVibraControl = static_cast<MAudioVibraControl*> (iTarget->CustomInterface(KUidAudioVibraControl)); 
   210 
   211 	if (!iInterfaceAudioVibraControl)
   212 		{
   213 		iInterfaceAudioVibraControl = NULL;
   214 		User::Leave(KErrNotSupported);
   215 		}
   216 
   217 	return KErrNone;
   218 	}
   219 
   220 
   221 void CMMFAudioVibraControlDeMux::DoCloseSlaveL(TInt /*aHandle*/)
   222 	{
   223 	// nothing to do
   224 	}
   225 
   226 
   227 // original RMessage is supplied so that remote demux plugin can extract necessary details
   228 // using DeMux utility
   229 TInt CMMFAudioVibraControlDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
   230 	{
   231 	TMMFDevSoundCIMessageData data;
   232 	TInt result = KErrGeneral;
   233 
   234 	// decode message
   235 	iUtility->GetSyncMessageDataL(aMessage, data);
   236 
   237 	switch (data.iCommand)
   238 		{
   239 		case EMMFDevSoundCIAudioVibraControlStartVibra:
   240 			{
   241 			result = DoStartVibraL();
   242 			break;
   243 			}
   244 		case EMMFDevSoundCIAudioVibraControlStopVibra:
   245 			{
   246 			result = DoStopVibraL();
   247 			break;
   248 			}
   249 		default:
   250 			{
   251 			User::Leave(KErrNotSupported);
   252 			}
   253 		}
   254 
   255 	return result;
   256 	}
   257 
   258 
   259 TInt CMMFAudioVibraControlDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
   260 	{
   261 	return KErrNone;
   262 	}
   263 
   264 
   265 void CMMFAudioVibraControlDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
   266 	{
   267 	// not used in this interface
   268 	}
   269 
   270 
   271 void CMMFAudioVibraControlDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
   272 	{
   273 	// not used in this interface
   274 	}
   275 
   276 
   277 TInt CMMFAudioVibraControlDeMux::DoStartVibraL()
   278 	{
   279 	TInt result = KErrNotFound;
   280 
   281 	if (iInterfaceAudioVibraControl)
   282 		{
   283 		result = iInterfaceAudioVibraControl->StartVibra();
   284 		}
   285 
   286 	return result;
   287 	}
   288 
   289 
   290 TInt CMMFAudioVibraControlDeMux::DoStopVibraL()
   291 	{
   292 	TInt result = KErrNotFound;
   293 
   294 	if (iInterfaceAudioVibraControl)
   295 		{
   296 		result = iInterfaceAudioVibraControl->StopVibra();
   297 		}
   298 
   299 	return result;
   300 	}
   301 
   302 //
   303 // ImplementationTable
   304 //
   305 const TImplementationProxy ImplementationTable[] = 
   306 	{
   307 	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceAudioVibraControlMux,		CMMFAudioVibraControlMux::NewL),
   308 	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceAudioVibraControlDeMux,	CMMFAudioVibraControlDeMux::NewL),
   309 	};
   310 
   311 //
   312 // ImplementationGroupProxy
   313 //
   314 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   315 	{
   316 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   317 
   318 	return ImplementationTable;
   319 	}