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.
14 // Implementation of audio buffer prefill custom interface pair
18 #ifndef AUDIOBUFFERPREFILLCI_H
19 #define AUDIOBUFFERPREFILLCI_H
22 #include <mmf/common/mmfipc.h>
23 #ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
24 #include <mmf/common/mmfipcserver.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 TMMFDevSoundCISampleBufferingCommands
39 EMMFDevSoundCIEnableSampleBufferingBeforePlayback,
40 EMMFDevSoundCIDisableSampleBufferingBeforePlayback,
41 EMMFDevSoundCINotifyPlayStarted,
42 EMMFDevSoundCICancelNotifyPlayStarted
47 Implementation of the Audio buffer prefill custom interface Mux
52 class CMMFSampleBufferingMux : public CBase,
53 public MMMFDevSoundCustomInterfaceMuxPlugin,
54 public MMMFSampleBuffering
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();
74 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
76 The Uid returned by REComSession::CreateImplementationL() or similar
78 virtual void PassDestructorKey(TUid aDestructorKey);
81 Complete construction.
82 Pass additional values from the construction phase, used subsequently by the plugin.
84 The custom interface utility used by the plugin to communicate with the remote
85 server side DeMux plugin
86 @leave This method may leave with one of the system-wide error codes.
88 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
91 Return the custom interface
93 The UID of the required custom interface
94 @return the custom interface supported by this plugin
96 virtual TAny* CustomInterface(TUid aInterfaceId);
99 Instantiate a CI Mux class
100 @return the pointer to the new class, cast to the Mux plugin mixin
101 @leave This method may leave with one of the system-wide error codes.
103 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
105 // from MMMFSampleBuffering
106 //@see MMMFSampleBuffering
107 virtual TInt MmsbEnableSampleBufferingBeforePlayback();
108 //@see MMMFSampleBuffering
109 virtual TInt MmsbDisableSampleBufferingBeforePlayback();
110 //@see MMMFSampleBuffering
111 virtual void MmsbNotifyPlayStarted(TRequestStatus& aStatus);
112 //@see MMMFSampleBuffering
113 virtual void MmsbCancelNotifyPlayStarted();
116 CMMFSampleBufferingMux();
117 ~CMMFSampleBufferingMux();
122 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
125 TMMFDevSoundCustomInterfaceCommandPackage iCmdPkg;
130 Implementation of the Audio buffer prefill custom interface DeMux
135 class CMMFSampleBufferingDeMux : public CActive,
136 public MMMFDevSoundCustomInterfaceDeMuxPlugin
140 Instantiate a CMMFSampleBufferingDeMux class
141 @return a pointer to the new class cast to the DeMux plugin mixin
142 @leave This method may leave with one of the system-wide error codes.
144 static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
147 Attempt to open the interface.
149 The UID of the interface to open.
150 @return a handle to the remote plugin
152 virtual TInt OpenInterface(TUid aInterfaceId);
155 Equivalent to destructor. Called to destroy plugin.
157 virtual void Release();
161 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
162 @param aDestructorKey
163 The Uid returned by REComSession::CreateImplementationL() or similar
165 virtual void PassDestructorKey(TUid aDestructorKey);
168 Set the target of the custom interface call
170 The DevSound to call the custom interface on.
172 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
175 Complete construction.
177 The DeMux utility to use
178 @leave This method may leave with one of the system-wide error codes.
180 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
183 Refresh the current custom interface connections
184 @leave This method may leave with one of the system-wide error codes.
186 virtual void RefreshL();
188 // from MMMFDevSoundCustomInterfaceDeMuxPlugin
192 The UID of the requested interface
194 A package of data that can be supplied for initialisation
195 @return the result of the operation
196 @leave This method may leave with one of the system-wide error codes.
198 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
203 The handle of the slave plugin
204 @leave This method may leave with one of the system-wide error codes.
206 virtual void DoCloseSlaveL(TInt aHandle);
209 Relay the synchronous custom command onto the slave
211 The IPC message to be sent to the slave
212 @return the result of the operation
213 @leave This method may leave with one of the system-wide error codes.
215 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
218 Relay the synchronous custom command onto the slave and obtain a result
220 The IPC message to be sent to the slave
221 @return the result of the operation
222 @leave This method may leave with one of the system-wide error codes.
224 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
227 Relay an asynchronous command onto the slave
229 The IPC message to be sent to the slave
230 @leave This method may leave with one of the system-wide error codes.
232 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
235 Relay an asynchronous command onto the slave and obtain a result
237 The IPC message to be sent to the slave@param aMessage
238 @leave This method may leave with one of the system-wide error codes.
240 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
244 virtual void DoCancel();
247 ~CMMFSampleBufferingDeMux();
248 CMMFSampleBufferingDeMux();
250 // from mirror MMMFSampleBuffering method.
251 TInt DoMmsbEnableSampleBufferingBeforePlaybackL();
252 TInt DoMmsbDisableSampleBufferingBeforePlaybackL();
253 void DoMmsbNotifyPlayStartedL(const RMmfIpcMessage& aMessage);
254 void DoMmsbCancelNotifyPlayStartedL();
257 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
258 MMMFDevSoundCustomInterfaceTarget* iTarget;
260 MMMFSampleBuffering* iInterfaceSampleBuffering;
261 RMmfIpcMessage iStoredMessage;