First public contribution.
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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef BUFFERFRAMESCONFIGCI_H
17 #define BUFFERFRAMESCONFIGCI_H
20 #include <mmf/common/mmfipc.h>
21 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
22 #include <mmf/common/mmfipcserver.h>
24 #include <mmf/server/mmfdevsoundcustominterface.h>
25 #include <mmf/server/mmfdevsoundcustomcommands.h>
26 #include <mmf/server/devsoundstandardcustominterfaces.h>
27 #include <mmf/plugin/mmfdevsoundcustominterface.hrh>
34 enum TMMFDevSoundCIBufferFramesConfigCommands
36 EMMFDevSoundCIInputBufferFramesConfig = 0,
37 EMMFDevSoundCIOutputBufferFramesConfig
48 * CMMFBufferFramesConfigMux
50 * implementation of the Play back status custom interface pair
52 class CMMFBufferFramesConfigMux : public CBase,
53 public MMMFDevSoundCustomInterfaceMuxPlugin,
54 public MMMFBufferFramesConfig
58 // from MMMFDevSoundCustomInterfaceMuxPlugin
60 Attempt to open the interface.
62 The UID of the interface to open.
63 @return one of the system wide error codes
65 virtual TInt OpenInterface(TUid aInterfaceId);
68 Equivalent to destructor. Called to destroy plugin.
70 virtual void Release();
73 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
75 The Uid returned by REComSession::CreateImplementationL() or similar
77 virtual void PassDestructorKey(TUid aDestructorKey);
80 Complete construction.
81 Pass additional values from the construction phase, used subsequently by the plugin.
83 The custom interface utility used by the plugin to communicate with the remote
84 server side DeMux plugin
86 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
89 Return the custom interface
91 The UID of the required custom interface
92 @return the custom interface supported by this plugin
94 virtual TAny* CustomInterface(TUid aInterfaceId);
97 Instantiate a CI Mux class
98 @return the pointer to the new class, cast to the Mux plugin mixin
100 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
102 // from MMMFBufferFramesConfig
104 @see MMMFBufferFramesConfig
106 virtual TInt MmbfcSetNumberOfFramesPerInputBuffer(TInt aFrameCount, TInt aSamplesPerFrame);
109 @see MMMFBufferFramesConfig
111 virtual TInt MmbfcSetNumberOfFramesPerOutputBuffer(TInt aFrameCount, TInt aSamplesPerFrame);
114 CMMFBufferFramesConfigMux();
115 ~CMMFBufferFramesConfigMux();
120 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
128 class CMMFBufferFramesConfigDeMux : public CBase,
129 public MMMFDevSoundCustomInterfaceDeMuxPlugin
133 Instantiate a CMMFBufferFramesConfigDeMux class
134 @return a pointer to the new class cast to the DeMux plugin mixin
136 static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
139 Attempt to open the interface.
141 The UID of the interface to open.
142 @return a handle to the remote plugin
144 virtual TInt OpenInterface(TUid aInterfaceId);
147 Equivalent to destructor. Called to destroy plugin.
149 virtual void Release();
152 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
153 @param aDestructorKey
154 The Uid returned by REComSession::CreateImplementationL() or similar
156 virtual void PassDestructorKey(TUid aDestructorKey);
159 Set the target of the custom interface call
161 The DevSound to call the custom interface on.
163 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
166 Complete construction.
168 The DeMux utility to use
170 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
173 Refresh the current custom interface connections
175 virtual void RefreshL();
177 // from MMMFDevSoundCustomInterfaceDeMuxPlugin
181 The UID of the requested interface
183 A package of data that can be supplied for initialisation
184 @return the result of the operation
186 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
191 The handle of the slave plugin
193 virtual void DoCloseSlaveL(TInt aHandle);
195 // original RMessage is supplied so that remote demux plugin can extract necessary details
196 // using DeMux utility
199 Relay the synchronous custom command onto the slave
201 The IPC message to be sent to the slave
202 @return the result of the operation
204 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
207 Relay the synchronous custom command onto the slave and obtain a result
209 The IPC message to be sent to the slave
210 @return the result of the operation
212 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
215 Relay an asynchronous command onto the slave
217 The IPC message to be sent to the slave
219 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
222 Relay an asynchronous command onto the slave and obtain a result
224 The IPC message to be sent to the slave@param aMessage
226 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
229 ~CMMFBufferFramesConfigDeMux();
230 CMMFBufferFramesConfigDeMux();
232 // mirrors MMMFBufferFramesConfig method.
233 TInt DoMmbfcSetNumberOfFramesPerInputBuffer(TInt aFrameCount, TInt aSamplesPerFrame);
234 TInt DoMmbfcSetNumberOfFramesPerOutputBuffer(TInt aFrameCount, TInt aSamplesPerFrame);
237 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
238 MMMFDevSoundCustomInterfaceTarget* iTarget;
240 MMMFBufferFramesConfig* iInterfaceBufferFramesConfig;