os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/cmmfdevsoundcifileblocklength.h
Update contrib.
1 // Copyright (c) 2006-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 CMMFDEVSOUNDCIFILEBLOCKLENGTH_H
17 #define CMMFDEVSOUNDCIFILEBLOCKLENGTH_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>
29 enum TMMFDevSoundCIBlockLengthCommands
31 EMMFDevSoundCIBlockLengthSetFileBlockLength = 0
35 * CMMFDevSoundCIFileBlockLengthMux
37 * implementation of the FileBlockLength custom interface pair
39 class CMMFDevSoundCIFileBlockLengthMux : public CBase,
40 public MMMFDevSoundCustomInterfaceMuxPlugin,
41 public MMMFDevSoundCustomInterfaceFileBlockLength
45 Attempt to open the interface.
47 The UID of the interface to open.
48 @return one of the system wide error codes
50 virtual TInt OpenInterface(TUid aInterfaceId);
53 Equivalent to destructor. Called to destroy plugin.
55 virtual void Release();
58 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
60 The Uid returned by REComSession::CreateImplementationL() or similar
62 virtual void PassDestructorKey(TUid aDestructorKey);
65 Complete construction.
66 Pass additional values from the construction phase, used subsequently by the plugin.
68 The custom interface utility used by the plugin to communicate with the remote
69 server side DeMux plugin
71 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
74 Return the custom interface
76 The UID of the required custom interface
77 @return the custom interface supported by this plugin
79 virtual TAny* CustomInterface(TUid aInterfaceId);
82 Instantiate a CMMFDevSoundCIFileBlockLengthMux class
83 @return the pointer to the new class, cast to the Mux plugin mixin
85 static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
88 // from MMMFDevSoundCustomInterfaceFileBlockLength
89 virtual void SetFileBlockLength(TUint aBlockAlign);
91 CMMFDevSoundCIFileBlockLengthMux();
92 ~CMMFDevSoundCIFileBlockLengthMux();
97 MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
105 class CMMFDevSoundCIFileBlockLengthDeMux : public CBase,
106 public MMMFDevSoundCustomInterfaceDeMuxPlugin
110 Instantiate a CMMFDevSoundCIFileBlockLengthDeMux class
111 @return a pointer to the new class cast to the DeMux plugin mixin
113 static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
116 Attempt to open the interface.
118 The UID of the interface to open.
119 @return a handle to the remote plugin
121 virtual TInt OpenInterface(TUid aInterfaceId);
124 Equivalent to destructor. Called to destroy plugin.
126 virtual void Release();
129 Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
130 @param aDestructorKey
131 The Uid returned by REComSession::CreateImplementationL() or similar
133 virtual void PassDestructorKey(TUid aDestructorKey);
136 Set the target of the custom interface call
138 The DevSound to call the custom interface on.
140 virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
143 Complete construction.
145 The DeMux utility to use
147 virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
150 Refresh the current custom interface connections
152 virtual void RefreshL();
154 // from MMMFDeMuxInterface
158 The UID of the requested interface
160 A package of data that can be supplied for initialisation
161 @return the result of the operation
163 virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
168 The handle of the slave plugin
170 virtual void DoCloseSlaveL(TInt aHandle);
172 // original RMessage is supplied so that remote demux plugin can extract necessary details
173 // using DeMux utility
176 Relay the synchronous custom command onto the slave
178 The IPC message to be sent to the slave
179 @return the result of the operation
181 virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
184 Relay the synchronous custom command onto the slave and obtain a result
186 The IPC message to be sent to the slave
187 @return the result of the operation
189 virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
192 Relay an asynchronous command onto the slave
194 The IPC message to be sent to the slave
196 virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
199 Relay an asynchronous command onto the slave and obtain a result
201 The IPC message to be sent to the slave@param aMessage
203 virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
206 ~CMMFDevSoundCIFileBlockLengthDeMux();
207 CMMFDevSoundCIFileBlockLengthDeMux();
209 // implementation of FileBlockLength custom interface
210 void DoSetFileBlockLengthL(TUint aBlockAlign);
213 MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
214 MMMFDevSoundCustomInterfaceTarget* iTarget;
215 MMMFDevSoundCustomInterfaceFileBlockLength* iFileBlockLengthInterface;