os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/cmmfdevsoundcifileblocklength.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2006-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
//
sl@0
    15
sl@0
    16
#include "cmmfdevsoundcifileblocklengthimpluid.hrh"
sl@0
    17
sl@0
    18
#include <ecom/implementationproxy.h>
sl@0
    19
#include <ecom/implementationproxy.h>
sl@0
    20
#include <ecom/ecom.h>
sl@0
    21
#include <s32mem.h>
sl@0
    22
sl@0
    23
#include "cmmfdevsoundcifileblocklength.h"
sl@0
    24
sl@0
    25
// __________________________________________________________________________
sl@0
    26
// Implementation
sl@0
    27
sl@0
    28
// MUX //
sl@0
    29
sl@0
    30
TInt CMMFDevSoundCIFileBlockLengthMux::OpenInterface(TUid /*aInterfaceId*/)
sl@0
    31
	{
sl@0
    32
	// attempt to open the interface link with the
sl@0
    33
	// remote slave device
sl@0
    34
	iRemoteHandle = -1;
sl@0
    35
	TUid slaveId = {KMmfUidCIFileBlockLengthDeMux};
sl@0
    36
		
sl@0
    37
	TInt handle = iUtility->OpenSlave(slaveId, KNullDesC8);
sl@0
    38
	if (handle >= 0)
sl@0
    39
		{
sl@0
    40
		iRemoteHandle = handle;
sl@0
    41
		}
sl@0
    42
		
sl@0
    43
	return iRemoteHandle;
sl@0
    44
	}
sl@0
    45
sl@0
    46
void CMMFDevSoundCIFileBlockLengthMux::Release()
sl@0
    47
	{
sl@0
    48
	// close the slave device if it exists
sl@0
    49
	if (iRemoteHandle != -1)
sl@0
    50
		{
sl@0
    51
		// we assume the slave is closed correctly
sl@0
    52
		iUtility->CloseSlave(iRemoteHandle);
sl@0
    53
		}
sl@0
    54
	
sl@0
    55
	TUid key = iKey;
sl@0
    56
	delete this;
sl@0
    57
	
sl@0
    58
	// tell ECom to destroy us
sl@0
    59
	REComSession::DestroyedImplementation(key);
sl@0
    60
	}
sl@0
    61
	
sl@0
    62
void CMMFDevSoundCIFileBlockLengthMux::PassDestructorKey(TUid aDestructorKey)
sl@0
    63
	{
sl@0
    64
	// store the destructor key
sl@0
    65
	iKey = aDestructorKey;
sl@0
    66
	}
sl@0
    67
sl@0
    68
void CMMFDevSoundCIFileBlockLengthMux::CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility)
sl@0
    69
	{
sl@0
    70
	// store a pointer to the utility
sl@0
    71
	iUtility = aCustomUtility;
sl@0
    72
	}
sl@0
    73
	
sl@0
    74
MMMFDevSoundCustomInterfaceMuxPlugin* CMMFDevSoundCIFileBlockLengthMux::NewL()
sl@0
    75
	{
sl@0
    76
	CMMFDevSoundCIFileBlockLengthMux* self = new (ELeave) CMMFDevSoundCIFileBlockLengthMux;
sl@0
    77
	return self;
sl@0
    78
	}
sl@0
    79
	
sl@0
    80
TAny* CMMFDevSoundCIFileBlockLengthMux::CustomInterface(TUid /*aInterfaceId*/)
sl@0
    81
	{
sl@0
    82
	MMMFDevSoundCustomInterfaceFileBlockLength* interface = this;
sl@0
    83
	return interface;
sl@0
    84
	}
sl@0
    85
	
sl@0
    86
CMMFDevSoundCIFileBlockLengthMux::CMMFDevSoundCIFileBlockLengthMux() :
sl@0
    87
	iRemoteHandle(-1)
sl@0
    88
	{	
sl@0
    89
	}
sl@0
    90
sl@0
    91
CMMFDevSoundCIFileBlockLengthMux::~CMMFDevSoundCIFileBlockLengthMux()
sl@0
    92
	{	
sl@0
    93
	}
sl@0
    94
sl@0
    95
// from MMMFDevSoundCustomInterfaceFileBlockLength
sl@0
    96
sl@0
    97
void CMMFDevSoundCIFileBlockLengthMux::SetFileBlockLength(TUint aBlockAlign)
sl@0
    98
	{
sl@0
    99
	if (iRemoteHandle == -1)
sl@0
   100
		{
sl@0
   101
		return;
sl@0
   102
		}
sl@0
   103
	
sl@0
   104
	// send the BlockAlign in the sync command
sl@0
   105
	TPckgBuf<TUint> blockAlignBuffer(aBlockAlign);
sl@0
   106
	
sl@0
   107
	iUtility->SendSlaveSyncCommand(iRemoteHandle, EMMFDevSoundCIBlockLengthSetFileBlockLength, blockAlignBuffer);
sl@0
   108
	}
sl@0
   109
sl@0
   110
// DEMUX //	
sl@0
   111
	
sl@0
   112
sl@0
   113
TInt CMMFDevSoundCIFileBlockLengthDeMux::OpenInterface(TUid /*aInterfaceId*/)
sl@0
   114
	{
sl@0
   115
	return KErrNone;
sl@0
   116
	}
sl@0
   117
	
sl@0
   118
void CMMFDevSoundCIFileBlockLengthDeMux::Release()
sl@0
   119
	{
sl@0
   120
	TUid key = iKey;
sl@0
   121
	
sl@0
   122
	delete this;
sl@0
   123
	
sl@0
   124
	// tell ECom to destroy us
sl@0
   125
	REComSession::DestroyedImplementation(key);
sl@0
   126
	}
sl@0
   127
	
sl@0
   128
void CMMFDevSoundCIFileBlockLengthDeMux::PassDestructorKey(TUid aDestructorKey)
sl@0
   129
	{
sl@0
   130
	// store the destructor key
sl@0
   131
	iKey = aDestructorKey;
sl@0
   132
	}
sl@0
   133
	
sl@0
   134
void CMMFDevSoundCIFileBlockLengthDeMux::SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget)
sl@0
   135
	{
sl@0
   136
	iTarget = aTarget;
sl@0
   137
	}
sl@0
   138
	
sl@0
   139
void CMMFDevSoundCIFileBlockLengthDeMux::CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aCustomUtility)
sl@0
   140
	{
sl@0
   141
	// store a pointer to the utility
sl@0
   142
	iUtility = aCustomUtility;
sl@0
   143
	}
sl@0
   144
sl@0
   145
void CMMFDevSoundCIFileBlockLengthDeMux::RefreshL()
sl@0
   146
	{
sl@0
   147
	// refetch the fileblocklength custom interface if we already have a target
sl@0
   148
	if (iTarget)
sl@0
   149
		{
sl@0
   150
		MMMFDevSoundCustomInterfaceFileBlockLength* ptr = NULL;
sl@0
   151
		ptr = static_cast<MMMFDevSoundCustomInterfaceFileBlockLength*>(iTarget->CustomInterface(KUidCustomInterfaceDevSoundFileBlockLength));
sl@0
   152
	
sl@0
   153
		if (!ptr)
sl@0
   154
			{
sl@0
   155
			iFileBlockLengthInterface = NULL;
sl@0
   156
			User::Leave(KErrNotSupported);
sl@0
   157
			}
sl@0
   158
		else
sl@0
   159
			{
sl@0
   160
			iFileBlockLengthInterface = ptr;
sl@0
   161
			}	
sl@0
   162
		}
sl@0
   163
	}
sl@0
   164
sl@0
   165
sl@0
   166
MMMFDevSoundCustomInterfaceDeMuxPlugin* CMMFDevSoundCIFileBlockLengthDeMux::NewL()
sl@0
   167
	{
sl@0
   168
	CMMFDevSoundCIFileBlockLengthDeMux* self = new (ELeave) CMMFDevSoundCIFileBlockLengthDeMux;
sl@0
   169
	return self;
sl@0
   170
	}
sl@0
   171
	
sl@0
   172
CMMFDevSoundCIFileBlockLengthDeMux::CMMFDevSoundCIFileBlockLengthDeMux()
sl@0
   173
	{
sl@0
   174
	}
sl@0
   175
sl@0
   176
CMMFDevSoundCIFileBlockLengthDeMux::~CMMFDevSoundCIFileBlockLengthDeMux()
sl@0
   177
	{
sl@0
   178
	}
sl@0
   179
sl@0
   180
sl@0
   181
TInt CMMFDevSoundCIFileBlockLengthDeMux::DoOpenSlaveL(TUid /*aInterface*/, const TDesC8& /*aPackageBuf*/)
sl@0
   182
	{
sl@0
   183
	// fetch the fileblocklength custom interface
sl@0
   184
	MMMFDevSoundCustomInterfaceFileBlockLength* ptr = NULL;
sl@0
   185
	ptr = static_cast <MMMFDevSoundCustomInterfaceFileBlockLength*> (iTarget->CustomInterface(KUidCustomInterfaceDevSoundFileBlockLength));
sl@0
   186
	
sl@0
   187
	if (!ptr)
sl@0
   188
		{
sl@0
   189
		iFileBlockLengthInterface = NULL;
sl@0
   190
		User::Leave(KErrNotSupported);
sl@0
   191
		}
sl@0
   192
	else
sl@0
   193
		{
sl@0
   194
		iFileBlockLengthInterface = ptr;
sl@0
   195
		}
sl@0
   196
	return KErrNone;
sl@0
   197
	}
sl@0
   198
	
sl@0
   199
void CMMFDevSoundCIFileBlockLengthDeMux::DoCloseSlaveL(TInt /*aHandle*/)
sl@0
   200
	{
sl@0
   201
	// nothing to do
sl@0
   202
	}
sl@0
   203
sl@0
   204
// original RMessage is supplied so that remote demux plugin can extract necessary details
sl@0
   205
// using DeMux utility
sl@0
   206
TInt CMMFDevSoundCIFileBlockLengthDeMux::DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage)
sl@0
   207
	{
sl@0
   208
	TMMFDevSoundCIMessageData data;
sl@0
   209
	
sl@0
   210
	// decode message
sl@0
   211
	iUtility->GetSyncMessageDataL(aMessage, data);
sl@0
   212
	TInt retVal = -1;
sl@0
   213
	
sl@0
   214
	switch (data.iCommand)
sl@0
   215
		{
sl@0
   216
		case EMMFDevSoundCIBlockLengthSetFileBlockLength:
sl@0
   217
			{
sl@0
   218
			// we know that offset 2 contains a TInt
sl@0
   219
			TPckgBuf<TUint> blockAlignBuffer;
sl@0
   220
			iUtility->ReadFromInputDesL(aMessage, &blockAlignBuffer);
sl@0
   221
			
sl@0
   222
			DoSetFileBlockLengthL(blockAlignBuffer());
sl@0
   223
			retVal = KErrNone;
sl@0
   224
			break;
sl@0
   225
			}
sl@0
   226
	
sl@0
   227
		default:
sl@0
   228
			{
sl@0
   229
			User::Leave(KErrNotSupported);
sl@0
   230
			}
sl@0
   231
		}
sl@0
   232
		
sl@0
   233
	return retVal;
sl@0
   234
	}
sl@0
   235
	
sl@0
   236
TInt CMMFDevSoundCIFileBlockLengthDeMux::DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
sl@0
   237
	{
sl@0
   238
	return KErrNotSupported;
sl@0
   239
	}
sl@0
   240
	
sl@0
   241
void CMMFDevSoundCIFileBlockLengthDeMux::DoSendSlaveAsyncCommandL(const RMmfIpcMessage& /*aMessage*/)
sl@0
   242
	{
sl@0
   243
	// not used in this interface
sl@0
   244
	}
sl@0
   245
	
sl@0
   246
void CMMFDevSoundCIFileBlockLengthDeMux::DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& /*aMessage*/)
sl@0
   247
	{
sl@0
   248
	// not used in this interface
sl@0
   249
	}
sl@0
   250
sl@0
   251
void CMMFDevSoundCIFileBlockLengthDeMux::DoSetFileBlockLengthL(TUint aBlockAlign)
sl@0
   252
	{
sl@0
   253
	if (!iFileBlockLengthInterface)
sl@0
   254
		{
sl@0
   255
		User::Leave(KErrNotReady);
sl@0
   256
		}
sl@0
   257
			
sl@0
   258
	// set the block length		
sl@0
   259
	iFileBlockLengthInterface->SetFileBlockLength(aBlockAlign);
sl@0
   260
	}
sl@0
   261
sl@0
   262
sl@0
   263
sl@0
   264
//
sl@0
   265
// ImplementationTable
sl@0
   266
//
sl@0
   267
sl@0
   268
const TImplementationProxy ImplementationTable[] = 
sl@0
   269
	{
sl@0
   270
	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCIFileBlockLengthMux,	CMMFDevSoundCIFileBlockLengthMux::NewL),
sl@0
   271
	IMPLEMENTATION_PROXY_ENTRY(KMmfUidCIFileBlockLengthDeMux, CMMFDevSoundCIFileBlockLengthDeMux::NewL),
sl@0
   272
	};
sl@0
   273
sl@0
   274
sl@0
   275
//
sl@0
   276
// ImplementationGroupProxy
sl@0
   277
//
sl@0
   278
//
sl@0
   279
sl@0
   280
EXPORT_C const TImplementationProxy* ImplementationGroupProxy(TInt& aTableCount)
sl@0
   281
	{
sl@0
   282
	aTableCount = sizeof(ImplementationTable) / sizeof(TImplementationProxy);
sl@0
   283
sl@0
   284
	return ImplementationTable;
sl@0
   285
	}
sl@0
   286
sl@0
   287
#ifndef EKA2
sl@0
   288
/** DLL Entry point */
sl@0
   289
GLDEF_C TInt E32Dll(TDllReason /*aReason*/)
sl@0
   290
	{
sl@0
   291
	return(KErrNone);
sl@0
   292
	}
sl@0
   293
#endif
sl@0
   294