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 aac decoder config custom interface pair
18 #ifndef AACDECODERCONFIGCI_H
19 #define AACDECODERCONFIGCI_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 TMMFDevSoundCIAacDecoderConfigCommands
39 EMMFDevSoundCIAacDecoderConfigSetAudioConfig = 0,
40 EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfig = 1,
41 EMMFDevSoundCIAacDecoderConfigGetSupportedAudioConfigArray
46 Implementation of the Aac decoder config custom interface Mux
51 class CMMFAacDecoderConfigMux : public CBase,
52 public MMMFDevSoundCustomInterfaceMuxPlugin,
53 public MAacDecoderConfig
57 // from MMMFDevSoundCustomInterfaceMuxPlugin
59 Attempt to open the interface.
61 The UID of the interface to open.
62 @return one of the system wide error codes
64 virtual TInt OpenInterface(TUid aInterfaceId);
67 Equivalent to destructor. Called to destroy plugin.
69 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
85 @leave This method may leave with one of the system-wide error codes.
87 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
90 Return the custom interface
92 The UID of the required custom interface
93 @return the custom interface supported by this plugin
95 virtual TAny* CustomInterface(TUid aInterfaceId);
98 Instantiate a CI Mux class
99 @return the pointer to the new class, cast to the Mux plugin mixin
100 @leave This method may leave with one of the system-wide error codes.
102 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
104 // from MAacDecoderConfig
105 //@see MAacDecoderConfig
106 virtual TInt SetAudioConfig(TAudioConfig& aAudioConfig);
107 //@see MAacDecoderConfig
108 virtual TInt GetSupportedAudioConfigs(RArray<TAudioConfig>& aSupportedAudioConfigs);
111 CMMFAacDecoderConfigMux();
112 ~CMMFAacDecoderConfigMux();
117 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
122 Implementation of the Aac decoder config custom interface DeMux
127 class CMMFAacDecoderConfigDeMux : public CBase,
128 public MMMFDevSoundCustomInterfaceDeMuxPlugin
132 Instantiate a CMMFAacDecoderConfigDeMux class
133 @return a pointer to the new class cast to the DeMux plugin mixin
134 @leave This method may leave with one of the system-wide error codes.
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();
153 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
154 @param aDestructorKey
155 The Uid returned by REComSession::CreateImplementationL() or similar
157 virtual void PassDestructorKey(TUid aDestructorKey);
160 Set the target of the custom interface call
162 The DevSound to call the custom interface on.
164 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
167 Complete construction.
169 The DeMux utility to use
170 @leave This method may leave with one of the system-wide error codes.
172 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
175 Refresh the current custom interface connections
176 @leave This method may leave with one of the system-wide error codes.
178 virtual void RefreshL();
180 // from MMMFDevSoundCustomInterfaceDeMuxPlugin
184 The UID of the requested interface
186 A package of data that can be supplied for initialisation
187 @return the result of the operation
188 @leave This method may leave with one of the system-wide error codes.
190 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
195 The handle of the slave plugin
196 @leave This method may leave with one of the system-wide error codes.
198 virtual void DoCloseSlaveL(TInt aHandle);
200 // original RMessage is supplied so that remote DeMux plugin can extract necessary details
201 // using DeMux utility
204 Relay the synchronous custom command onto the slave
206 The IPC message to be sent to the slave
207 @return the result of the operation
208 @leave This method may leave with one of the system-wide error codes.
210 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
213 Relay the synchronous custom command onto the slave and obtain a result
215 The IPC message to be sent to the slave
216 @return the result of the operation
217 @leave This method may leave with one of the system-wide error codes.
219 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
222 Relay an asynchronous command onto the slave
224 The IPC message to be sent to the slave
225 @leave This method may leave with one of the system-wide error codes.
227 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
230 Relay an asynchronous command onto the slave and obtain a result
232 The IPC message to be sent to the slave@param aMessage
233 @leave This method may leave with one of the system-wide error codes.
235 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
238 ~CMMFAacDecoderConfigDeMux();
239 CMMFAacDecoderConfigDeMux();
241 // from mirror MAacDecoderConfig method.
242 TInt DoSetAudioConfigL(MAacDecoderConfig::TAudioConfig& aAudioConfig);
243 TInt DoGetSupportedAudioConfigsL(RArray<MAacDecoderConfig::TAudioConfig>& aSupportedAudioConfigs);
246 void DoCopyAudioConfigsBufferToClientL(const RMmfIpcMessage& aMessage);
249 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
250 MMMFDevSoundCustomInterfaceTarget* iTarget;
252 MAacDecoderConfig* iInterfaceAacDecoderConfig;
253 RArray<MAacDecoderConfig::TAudioConfig> iSupportedAudioConfigs;