os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/underflowautostopcontrolci.h
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 Underflow auto stop control custom interface pair
18 #ifndef UNDERFLOWAUTOSTOPCONTROLCI_H
19 #define UNDERFLOWAUTOSTOPCONTROLCI_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 TMMFDevSoundCIUnderflowAutoStopControlCommands
39 EMMFDevSoundCIUnderflowAutoStopCtrlTurnOffUnderflowAutoStop
43 Implementation of the Underflow auto stop control custom interface Mux
48 class CMMFUnderflowAutoStopControlMux : public CBase,
49 public MMMFDevSoundCustomInterfaceMuxPlugin,
50 public MMMFUnderflowAutoStopControl
54 // from MMMFDevSoundCustomInterfaceMuxPlugin
56 Attempt to open the interface.
58 The UID of the interface to open.
59 @return one of the system wide error codes
61 virtual TInt OpenInterface(TUid aInterfaceId);
64 Equivalent to destructor. Called to destroy plugin.
66 virtual void Release();
70 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
72 The Uid returned by REComSession::CreateImplementationL() or similar
74 virtual void PassDestructorKey(TUid aDestructorKey);
77 Complete construction.
78 Pass additional values from the construction phase, used subsequently by the plugin.
80 The custom interface utility used by the plugin to communicate with the remote
81 server side DeMux plugin
82 @leave This method may leave with one of the system-wide error codes.
84 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
87 Return the custom interface
89 The UID of the required custom interface
90 @return the custom interface supported by this plugin
92 virtual TAny* CustomInterface(TUid aInterfaceId);
95 Instantiate a CI Mux class
96 @return the pointer to the new class, cast to the Mux plugin mixin
97 @leave This method may leave with one of the system-wide error codes.
99 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
101 // from MMMFUnderflowAutoStopControl
102 //@see MMMFUnderflowAutoStopControl
103 virtual TInt MmuascTurnOffUnderflowAutoStop();
106 CMMFUnderflowAutoStopControlMux();
107 ~CMMFUnderflowAutoStopControlMux();
112 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
117 Implementation of the Underflow auto stop control custom interface DeMux
122 class CMMFUnderflowAutoStopControlDeMux : public CBase,
123 public MMMFDevSoundCustomInterfaceDeMuxPlugin
127 Instantiate a CMMFUnderflowAutoStopControlDeMux class
128 @return a pointer to the new class cast to the DeMux plugin mixin
129 @leave This method may leave with one of the system-wide error codes.
131 static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
134 Attempt to open the interface.
136 The UID of the interface to open.
137 @return a handle to the remote plugin
139 virtual TInt OpenInterface(TUid aInterfaceId);
142 Equivalent to destructor. Called to destroy plugin.
144 virtual void Release();
148 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
149 @param aDestructorKey
150 The Uid returned by REComSession::CreateImplementationL() or similar
152 virtual void PassDestructorKey(TUid aDestructorKey);
155 Set the target of the custom interface call
157 The DevSound to call the custom interface on.
159 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
162 Complete construction.
164 The DeMux utility to use
165 @leave This method may leave with one of the system-wide error codes.
167 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
170 Refresh the current custom interface connections
171 @leave This method may leave with one of the system-wide error codes.
173 virtual void RefreshL();
175 // from MMMFDevSoundCustomInterfaceDeMuxPlugin
179 The UID of the requested interface
181 A package of data that can be supplied for initialisation
182 @return the result of the operation
183 @leave This method may leave with one of the system-wide error codes.
185 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
190 The handle of the slave plugin
191 @leave This method may leave with one of the system-wide error codes.
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
203 @leave This method may leave with one of the system-wide error codes.
205 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
208 Relay the synchronous custom command onto the slave and obtain a result
210 The IPC message to be sent to the slave
211 @return the result of the operation
212 @leave This method may leave with one of the system-wide error codes.
214 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
217 Relay an asynchronous command onto the slave
219 The IPC message to be sent to the slave
220 @leave This method may leave with one of the system-wide error codes.
222 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
225 Relay an asynchronous command onto the slave and obtain a result
227 The IPC message to be sent to the slave@param aMessage
228 @leave This method may leave with one of the system-wide error codes.
230 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
233 ~CMMFUnderflowAutoStopControlDeMux();
234 CMMFUnderflowAutoStopControlDeMux();
236 // from mirror MmuascTurnOffUnderflowAutoStop method.
237 TInt DoMmuascTurnOffUnderflowAutoStopL();
240 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
241 MMMFDevSoundCustomInterfaceTarget* iTarget;
243 MMMFUnderflowAutoStopControl* iInterfaceUnderflowAutoStopCtrl;