os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/audiobufferprefillci.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 "audiobufferprefillci.h"
    22 
    23 
    24 // MUX //
    25 
    26 TInt CMMFSampleBufferingMux::OpenInterface(TUid /*aInterfaceId*/)
    27 	{
    28 	// attempt to open the interface link with the
    29 	// remote slave device
    30 	iRemoteHandle = -1;
    31 	TUid slaveId = {KMmfUidCustomInterfaceSampleBufferingDeMux};
    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 CMMFSampleBufferingMux::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 CMMFSampleBufferingMux::PassDestructorKey(TUid aDestructorKey)
    61 	{
    62 	// store the destructor key
    63 	iKey = aDestructorKey;
    64 	}
    65 
    66 
    67 void CMMFSampleBufferingMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
    68 	{
    69 	// store a pointer to the utility
    70 	iUtility = aCustomUtility;
    71 	}
    72 
    73 
    74 MMMFDevSoundCustomInterfaceMuxPlugin* CMMFSampleBufferingMux::NewL()
    75 	{
    76 	CMMFSampleBufferingMux* self = new (ELeave) CMMFSampleBufferingMux;
    77 	return self;
    78 	}
    79 
    80 
    81 TAny* CMMFSampleBufferingMux::CustomInterface(TUid /*aInterfaceId*/)
    82 	{
    83 	MMMFSampleBuffering* interface = this;
    84 	return interface;
    85 	}
    86 
    87 
    88 CMMFSampleBufferingMux::CMMFSampleBufferingMux() :
    89 iRemoteHandle(-1) 
    90 	{
    91 	}
    92 
    93 
    94 CMMFSampleBufferingMux::~CMMFSampleBufferingMux()
    95 	{
    96 	}
    97 
    98 
    99 // from MMMFSampleBuffering
   100 TInt CMMFSampleBufferingMux::MmsbEnableSampleBufferingBeforePlayback()
   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 												EMMFDevSoundCIEnableSampleBufferingBeforePlayback,
   109 												KNullDesC8);
   110 		}
   111 
   112 	return result;
   113 	}
   114 
   115 
   116 // from MMMFSampleBuffering
   117 TInt CMMFSampleBufferingMux::MmsbDisableSampleBufferingBeforePlayback()
   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 												EMMFDevSoundCIDisableSampleBufferingBeforePlayback,
   126 												KNullDesC8);
   127 		}
   128 
   129 	return result;
   130 	}
   131 
   132 
   133 // from MMMFSampleBuffering
   134 void CMMFSampleBufferingMux::MmsbNotifyPlayStarted(TRequestStatus& aStatus)
   135 	{
   136 	if (iRemoteHandle > 0)
   137 		{
   138 		// package the handle and command, and send in the Async command
   139 		iCmdPkg().iHandle = iRemoteHandle;
   140 		iCmdPkg().iCommand = EMMFDevSoundCINotifyPlayStarted;
   141 
   142 		// any return code other than zero is an error
   143 		iUtility->SendSlaveAsyncCommand(iCmdPkg, aStatus, KNullDesC8);
   144 		}
   145 	}
   146 
   147 
   148 // from MMMFSampleBuffering
   149 void CMMFSampleBufferingMux::MmsbCancelNotifyPlayStarted()
   150 	{
   151 	if (iRemoteHandle > 0)
   152 		{
   153 		// any return code other than zero is an error
   154 		TInt result = iUtility->SendSlaveSyncCommand(iRemoteHandle,
   155 													 EMMFDevSoundCICancelNotifyPlayStarted,
   156 													 KNullDesC8);
   157 		}
   158 	}
   159 
   160 
   161 
   162 // DEMUX //	
   163 
   164 TInt CMMFSampleBufferingDeMux::OpenInterface(TUid /*aInterfaceId*/)
   165 	{
   166 	return KErrNone;
   167 	}
   168 
   169 
   170 void CMMFSampleBufferingDeMux::Release()
   171 	{
   172 	TUid key = iKey;
   173 
   174 	delete this;
   175 
   176 	// tell ECom to destroy us
   177 	REComSession::DestroyedImplementation(key);
   178 	}
   179 
   180 
   181 void CMMFSampleBufferingDeMux::PassDestructorKey(TUid aDestructorKey)
   182 	{
   183 	// store the destructor key
   184 	iKey = aDestructorKey;
   185 	}
   186 
   187 
   188 void CMMFSampleBufferingDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
   189 	{
   190 	iTarget = aTarget;
   191 	}
   192 
   193 
   194 void CMMFSampleBufferingDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
   195 	{
   196 	// store a pointer to the utility
   197 	iUtility = aCustomUtility;
   198 	}
   199 
   200 
   201 void CMMFSampleBufferingDeMux::RefreshL()
   202 	{
   203 	// refetch the Sample Buffering  custom interface if we already have a target
   204 	if (iTarget)
   205 		{
   206 		iInterfaceSampleBuffering = static_cast <MMMFSampleBuffering*> (iTarget->CustomInterface(KUidSampleBuffering ));
   207 
   208 		if (!iInterfaceSampleBuffering)
   209 			{
   210 			iInterfaceSampleBuffering = NULL;
   211 			User::Leave(KErrNotSupported);
   212 			}
   213 		}
   214 	}
   215 
   216 
   217 MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFSampleBufferingDeMux::NewL()
   218 	{
   219 	CMMFSampleBufferingDeMux* self = new (ELeave) CMMFSampleBufferingDeMux;
   220 	return self;
   221 	}
   222 
   223 
   224 CMMFSampleBufferingDeMux::CMMFSampleBufferingDeMux() : CActive(CActive::EPriorityStandard)
   225 	{
   226 	CActiveScheduler::Add(this);
   227 	}
   228 
   229 
   230 CMMFSampleBufferingDeMux::~CMMFSampleBufferingDeMux()
   231 	{
   232 	Cancel();
   233 	}
   234 
   235 
   236 TInt CMMFSampleBufferingDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
   237 	{
   238 	// fetch the Sample Buffering  Hw Device custom interface
   239 	iInterfaceSampleBuffering = static_cast<MMMFSampleBuffering*> (iTarget->CustomInterface(KUidSampleBuffering)); 
   240 
   241 	if (!iInterfaceSampleBuffering)
   242 		{
   243 		iInterfaceSampleBuffering = NULL;
   244 		User::Leave(KErrNotSupported);
   245 		}
   246 
   247 	return KErrNone;
   248 	}
   249 
   250 
   251 void CMMFSampleBufferingDeMux::DoCloseSlaveL(TInt /*aHandle*/)
   252 	{
   253 	// nothing to do
   254 	}
   255 
   256 
   257 // original RMessage is supplied so that remote demux plugin can extract necessary details
   258 // using DeMux utility
   259 TInt CMMFSampleBufferingDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
   260 	{
   261 	TMMFDevSoundCIMessageData data;
   262 	TInt result = KErrGeneral;
   263 
   264 	// decode message
   265 	iUtility->GetSyncMessageDataL(aMessage, data);
   266 
   267 	switch (data.iCommand)
   268 		{
   269 		case EMMFDevSoundCIEnableSampleBufferingBeforePlayback:
   270 			{
   271 			result = DoMmsbEnableSampleBufferingBeforePlaybackL();
   272 			break;
   273 			}
   274 		case EMMFDevSoundCIDisableSampleBufferingBeforePlayback:
   275 			{
   276 			result = DoMmsbDisableSampleBufferingBeforePlaybackL();
   277 			break;
   278 			}
   279 		case EMMFDevSoundCICancelNotifyPlayStarted:
   280 			{
   281 			DoMmsbCancelNotifyPlayStartedL();
   282 			break;
   283 			}
   284 		default:
   285 			{
   286 			User::Leave(KErrNotSupported);
   287 			}
   288 		}
   289 
   290 	return result;
   291 	}
   292 
   293 
   294 TInt CMMFSampleBufferingDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
   295 	{
   296 	return KErrNone;
   297 	}
   298 
   299 
   300 void CMMFSampleBufferingDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage)
   301 	{
   302 	TMMFDevSoundCIMessageData data;
   303 
   304 	// decode message
   305 	iUtility->GetAsyncMessageDataL(aMessage, data);
   306 
   307 	switch (data.iCommand)
   308 		{
   309 		case EMMFDevSoundCINotifyPlayStarted:
   310 			{
   311 			DoMmsbNotifyPlayStartedL(aMessage);
   312 			break;
   313 			}
   314 		default:
   315 			{
   316 			User::Leave(KErrNotSupported);
   317 			}
   318 		}
   319 	}
   320 
   321 
   322 void CMMFSampleBufferingDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
   323 	{
   324 	// not used in this interface
   325 	}
   326 
   327 
   328 // Sample Buffering  custom interface implementation
   329 TInt CMMFSampleBufferingDeMux::DoMmsbEnableSampleBufferingBeforePlaybackL()
   330 	{
   331 	TInt result = KErrNotFound;
   332 
   333 	if (iInterfaceSampleBuffering)
   334 		{
   335 		result = iInterfaceSampleBuffering->MmsbEnableSampleBufferingBeforePlayback();
   336 		}
   337 
   338 	return result;
   339 	}
   340 
   341 
   342 // Sample Buffering custom interface implementation
   343 TInt CMMFSampleBufferingDeMux::DoMmsbDisableSampleBufferingBeforePlaybackL()
   344 	{
   345 	TInt result = KErrNotFound;
   346 
   347 	if (iInterfaceSampleBuffering)
   348 		{
   349 		result = iInterfaceSampleBuffering->MmsbDisableSampleBufferingBeforePlayback();
   350 		}
   351 
   352 	return result;
   353 	}
   354 
   355 
   356 // Sample Buffering  custom interface implementation
   357 void CMMFSampleBufferingDeMux::DoMmsbNotifyPlayStartedL(const RMmfIpcMessage& aMessage)
   358 	{
   359 	if (iInterfaceSampleBuffering)
   360 		{
   361 		// make a copy of the received message before jumping to the plugin.
   362 		// It will be used on the reply to the client.
   363 		iStoredMessage = aMessage;
   364 
   365 		iInterfaceSampleBuffering->MmsbNotifyPlayStarted(iStatus);
   366 
   367 		// check not already active
   368 		ASSERT(!IsActive());
   369 
   370 		SetActive();
   371 		}
   372 	}
   373 
   374 
   375 // Sample Buffering custom interface implementation
   376 void CMMFSampleBufferingDeMux::DoMmsbCancelNotifyPlayStartedL()
   377 	{
   378 	if (iInterfaceSampleBuffering)
   379 		{
   380 		iInterfaceSampleBuffering->MmsbCancelNotifyPlayStarted();
   381 		}
   382 	}
   383 
   384 
   385 // active object handling functions
   386 void CMMFSampleBufferingDeMux::RunL()
   387 	{
   388 	TInt err = iStatus.Int();
   389 
   390 	// complete the client request
   391 	iStoredMessage.Complete(err);
   392 	}
   393 
   394 
   395 void CMMFSampleBufferingDeMux::DoCancel()
   396 	{
   397 	}
   398 
   399 //
   400 // ImplementationTable
   401 //
   402 const TImplementationProxy ImplementationTable[] =
   403 	{
   404 	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSampleBufferingMux,	CMMFSampleBufferingMux::NewL),
   405 	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCustomInterfaceSampleBufferingDeMux,	CMMFSampleBufferingDeMux::NewL),
   406 	};
   407 
   408 //
   409 // ImplementationGroupProxy
   410 //
   411 EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
   412 	{
   413 	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
   414 
   415 	return ImplementationTable;
   416 	}
   417