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".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // Implementation of DSP control custom interface pair
18 #ifndef DSPCONTROLCI_H
19 #define DSPCONTROLCI_H
22 #include <mmf/common/mmfipc.h>
23 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
24 #include <mmf/common/mmfipc.h>
26 #include <mmf/server/mmfdevsoundcustominterface.h>
27 #include <mmf/server/mmfdevsoundcustomcommands.h>
28 #include <mmf/server/devsoundstandardcustominterfaces.h>
29 #include <mmf/plugin/mmfdevsoundcustominterface.hrh>
32 Enum to represent the method called by this custom interface
37 enum TMMFDevSoundCIDspControlCommands
39 EMMFDevSoundCIDspCtrlGetAudioPlaybackInfo,
40 EMMFDevSoundCIDspCtrlAcceptRecordBuffersInvalidFollowingStop,
41 EMMFDevSoundCIDspCtrlAcceptPlaybackBuffersInvalidFollowingStop
45 class to hold the paramenters to MmdspcGetAudioPlaybackInfo for message passing
50 class TAudioPlaybackInfo
53 TInt64 iSamplesPlayed;
55 TUint iBytesDecoderConsumed;
56 TUint iBytesDecoderDecoded;
60 Implementation of the DSP control custom interface Mux
65 class CMMFDspControlMux : public CBase,
66 public MMMFDevSoundCustomInterfaceMuxPlugin,
71 // from MMMFDevSoundCustomInterfaceMuxPlugin
73 Attempt to open the interface.
75 The UID of the interface to open.
76 @return one of the system wide error codes
78 virtual TInt OpenInterface(TUid aInterfaceId);
81 Equivalent to destructor. Called to destroy plugin.
83 virtual void Release();
87 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
89 The Uid returned by REComSession::CreateImplementationL() or similar
91 virtual void PassDestructorKey(TUid aDestructorKey);
94 Complete construction.
95 Pass additional values from the construction phase, used subsequently by the plugin.
97 The custom interface utility used by the plugin to communicate with the remote
98 server side DeMux plugin
99 @leave This method may leave with one of the system-wide error codes.
101 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
104 Return the custom interface
106 The UID of the required custom interface
107 @return the custom interface supported by this plugin
109 virtual TAny* CustomInterface(TUid aInterfaceId);
112 Instantiate a CI Mux class
113 @return the pointer to the new class, cast to the Mux plugin mixin
114 @leave This method may leave with one of the system-wide error codes.
116 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
118 // from MMMFDSPControl
119 //@see MMMFDSPControl
120 virtual TInt MmdspcGetAudioPlaybackInfo(TInt64& aSamplesPlayed,
122 TUint& aBytesDecoderConsumed,
123 TUint& aBytesDecoderDecoded);
124 //@see MMMFDSPControl
125 virtual TInt MmdspcAcceptRecordBuffersInvalidFollowingStop();
126 //@see MMMFDSPControl
127 virtual TInt MmdspcAcceptPlaybackBuffersInvalidFollowingStop();
131 ~CMMFDspControlMux();
136 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
141 Implementation of the DSP control custom interface DeMux
146 class CMMFDspControlDeMux : public CBase,
147 public MMMFDevSoundCustomInterfaceDeMuxPlugin
151 Instantiate a CMMFDspControlDeMux class
152 @return a pointer to the new class cast to the DeMux plugin mixin
153 @leave This method may leave with one of the system-wide error codes.
155 static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
158 Attempt to open the interface.
160 The UID of the interface to open.
161 @return a handle to the remote plugin
163 virtual TInt OpenInterface(TUid aInterfaceId);
166 Equivalent to destructor. Called to destroy plugin.
168 virtual void Release();
172 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
173 @param aDestructorKey
174 The Uid returned by REComSession::CreateImplementationL() or similar
176 virtual void PassDestructorKey(TUid aDestructorKey);
179 Set the target of the custom interface call
181 The DevSound to call the custom interface on.
183 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
186 Complete construction.
188 The DeMux utility to use
189 @leave This method may leave with one of the system-wide error codes.
191 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
194 Refresh the current custom interface connections
195 @leave This method may leave with one of the system-wide error codes.
197 virtual void RefreshL();
199 // from MMMFDevSoundCustomInterfaceDeMuxPlugin
203 The UID of the requested interface
205 A package of data that can be supplied for initialisation
206 @return the result of the operation
207 @leave This method may leave with one of the system-wide error codes.
209 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
214 The handle of the slave plugin
215 @leave This method may leave with one of the system-wide error codes.
217 virtual void DoCloseSlaveL(TInt aHandle);
219 // original RMessage is supplied so that remote DeMux plugin can extract necessary details
220 // using DeMux utility
223 Relay the synchronous custom command onto the slave
225 The IPC message to be sent to the slave
226 @return the result of the operation
227 @leave This method may leave with one of the system-wide error codes.
229 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
232 Relay the synchronous custom command onto the slave and obtain a result
234 The IPC message to be sent to the slave
235 @return the result of the operation
236 @leave This method may leave with one of the system-wide error codes.
238 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
241 Relay an asynchronous command onto the slave
243 The IPC message to be sent to the slave
244 @leave This method may leave with one of the system-wide error codes.
246 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
249 Relay an asynchronous command onto the slave and obtain a result
251 The IPC message to be sent to the slave@param aMessage
252 @leave This method may leave with one of the system-wide error codes.
254 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
257 ~CMMFDspControlDeMux();
258 CMMFDspControlDeMux();
260 // from mirror MMMFDSPControl method.
261 TInt DoMmdspcGetAudioPlaybackInfoL(TInt64& aSamplesPlayed, TInt64& aSystemTime, TUint& aB, TUint& aT);
262 TInt DoMmdspcAcceptRecordBuffersInvalidFollowingStopL();
263 TInt DoMmdspcAcceptPlaybackBuffersInvalidFollowingStopL();
266 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
267 MMMFDevSoundCustomInterfaceTarget* iTarget;
269 MMMFDSPControl* iInterfaceDspControl;