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.
16 #ifndef PLAYBACKSTATUSCI_H
17 #define PLAYBACKSTATUSCI_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 TMMFDevSoundCIPlayBackStatusCommands
36 EMMFDevSoundCIPlayBackStatus = 0,
37 EMMFDevSoundCIPlayBackStatusReqSyncLossNotification,
38 EMMFDevSoundCIPlayBackStatusCancelSyncLossNotification
49 * CMMFPlayBackStatusMux
51 * implementation of the Play back status custom interface pair
53 class CMMFPlayBackStatusMux : public CBase,
54 public MMMFDevSoundCustomInterfaceMuxPlugin,
55 public MMMFPlaybackStatus
59 // from MMMFDevSoundCustomInterfaceMuxPlugin
61 Attempt to open the interface.
63 The UID of the interface to open.
64 @return One of the system wide error codes
66 virtual TInt OpenInterface(TUid aInterfaceId);
69 Equivalent to destructor. Called to destroy plugin.
71 virtual void Release();
75 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
77 The Uid returned by REComSession::CreateImplementationL() or similar
79 virtual void PassDestructorKey(TUid aDestructorKey);
82 Complete construction.
83 Pass additional values from the construction phase, used subsequently by the plugin.
85 The custom interface utility used by the plugin to communicate with the remote
86 server side DeMux plugin
87 @leave This method may leave with one of the system-wide error codes.
89 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
92 Return the custom interface
94 The UID of the required custom interface
95 @return The custom interface supported by this plugin
97 virtual TAny* CustomInterface(TUid aInterfaceId);
100 Instantiate a CI Mux class
101 @leave This method may leave with one of the system-wide error codes.
102 @return The pointer to the new class, cast to the Mux plugin mixin
104 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
106 // from MMMFPlaybackStatus
108 @see MMMFPlaybackStatus
110 virtual TInt MmpsGetPlaybackStatusInformation(TMMFPlaybackStatus& aStatus);
113 @see MMMFPlaybackStatus
115 virtual TInt MmpsRequestLossOfSyncNotification();
118 @see MMMFPlaybackStatus
120 virtual TInt MmpsCancelLossOfSyncNotification();
123 CMMFPlayBackStatusMux();
124 ~CMMFPlayBackStatusMux();
129 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
133 * CMMFPlayBackStatusDeMux
135 * Implementation of the DeMux side of pair
137 class CMMFPlayBackStatusDeMux : public CBase,
138 public MMMFDevSoundCustomInterfaceDeMuxPlugin
142 Instantiate a CMMFPlayBackStatusDeMux class
143 @leave This method may leave with one of the system-wide error codes.
144 @return A pointer to the new class cast to the DeMux plugin mixin
146 static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
149 Attempt to open the interface.
151 The UID of the interface to open.
152 @return A handle to the remote plugin
154 virtual TInt OpenInterface(TUid aInterfaceId);
157 Equivalent to destructor. Called to destroy plugin.
159 virtual void Release();
162 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
163 @param aDestructorKey
164 The Uid returned by REComSession::CreateImplementationL() or similar
166 virtual void PassDestructorKey(TUid aDestructorKey);
169 Set the target of the custom interface call
171 The DevSound to call the custom interface on.
173 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
176 Complete construction.
178 The DeMux utility to use
179 @leave This method may leave with one of the system-wide error codes.
181 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
184 Refresh the current custom interface connections
185 @leave This method may leave with one of the system-wide error codes.
187 virtual void RefreshL();
189 // from MMMFDevSoundCustomInterfaceDeMuxPlugin
193 The UID of the requested interface
195 A package of data that can be supplied for initialisation
196 @leave This method may leave with one of the system-wide error codes.
197 @return The result of the operation
199 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
204 The handle of the slave plugin
205 @leave This method may leave with one of the system-wide error codes.
207 virtual void DoCloseSlaveL(TInt aHandle);
209 // original RMessage is supplied so that remote demux plugin can extract necessary details
210 // using DeMux utility
213 Relay the synchronous custom command onto the slave
215 The IPC message to be sent to the slave
216 @leave This method may leave with one of the system-wide error codes.
217 @return The result of the operation
219 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
222 Relay the synchronous custom command onto the slave and obtain a result
224 The IPC message to be sent to the slave
225 @leave This method may leave with one of the system-wide error codes.
226 @return The result of the operation
228 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
231 Relay an asynchronous command onto the slave
233 The IPC message to be sent to the slave
234 @leave This method may leave with one of the system-wide error codes.
236 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
239 Relay an asynchronous command onto the slave and obtain a result
241 The IPC message to be sent to the slave@param aMessage
242 @leave This method may leave with one of the system-wide error codes.
244 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
247 ~CMMFPlayBackStatusDeMux();
248 CMMFPlayBackStatusDeMux();
250 // from mirror MMMFPlaybackStatus method.
251 TInt DoMmpsGetPlaybackStatusInformation(MMMFPlaybackStatus::TMMFPlaybackStatus& aStatus);
252 TInt DoMmpsRequestLossOfSyncNotification();
253 TInt DoMmpsCancelLossOfSyncNotification();
256 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
257 MMMFDevSoundCustomInterfaceTarget* iTarget;
259 MMMFPlaybackStatus* iInterfacePlayBackStatus;