os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/underflowautostopcontrolci.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/underflowautostopcontrolci.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,246 @@
1.4 +// Copyright (c) 2007-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// Implementation of Underflow auto stop control custom interface pair
1.18 +//
1.19 +//
1.20 +
1.21 +#ifndef UNDERFLOWAUTOSTOPCONTROLCI_H
1.22 +#define UNDERFLOWAUTOSTOPCONTROLCI_H
1.23 +
1.24 +#include <e32base.h>
1.25 +#include <mmf/common/mmfipc.h>
1.26 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
1.27 +#include <mmf/common/mmfipcserver.h>
1.28 +#endif
1.29 +#include <mmf/server/mmfdevsoundcustominterface.h>
1.30 +#include <mmf/server/mmfdevsoundcustomcommands.h>
1.31 +#include <mmf/server/devsoundstandardcustominterfaces.h>
1.32 +#include <mmf/plugin/mmfdevsoundcustominterface.hrh>
1.33 +
1.34 +/**
1.35 +Enum to represent the method called by this custom interface
1.36 +@internalComponent
1.37 +@prototype
1.38 +@file
1.39 +*/
1.40 +enum TMMFDevSoundCIUnderflowAutoStopControlCommands
1.41 + {
1.42 + EMMFDevSoundCIUnderflowAutoStopCtrlTurnOffUnderflowAutoStop
1.43 + };
1.44 +
1.45 +/**
1.46 +Implementation of the Underflow auto stop control custom interface Mux
1.47 +@internalComponent
1.48 +@prototype
1.49 +@file
1.50 +*/
1.51 +class CMMFUnderflowAutoStopControlMux : public CBase,
1.52 + public MMMFDevSoundCustomInterfaceMuxPlugin,
1.53 + public MMMFUnderflowAutoStopControl
1.54 + {
1.55 +public:
1.56 +
1.57 + // from MMMFDevSoundCustomInterfaceMuxPlugin
1.58 + /**
1.59 + Attempt to open the interface.
1.60 + @param aInterfaceId
1.61 + The UID of the interface to open.
1.62 + @return one of the system wide error codes
1.63 + */
1.64 + virtual TInt OpenInterface(TUid aInterfaceId);
1.65 +
1.66 + /**
1.67 + Equivalent to destructor. Called to destroy plugin.
1.68 + */
1.69 + virtual void Release();
1.70 +
1.71 + /**
1.72 + Pass destructor key.
1.73 + Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
1.74 + @param aDestructorKey
1.75 + The Uid returned by REComSession::CreateImplementationL() or similar
1.76 + */
1.77 + virtual void PassDestructorKey(TUid aDestructorKey);
1.78 +
1.79 + /**
1.80 + Complete construction.
1.81 + Pass additional values from the construction phase, used subsequently by the plugin.
1.82 + @param aCustomUtility
1.83 + The custom interface utility used by the plugin to communicate with the remote
1.84 + server side DeMux plugin
1.85 + @leave This method may leave with one of the system-wide error codes.
1.86 + */
1.87 + virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
1.88 +
1.89 + /**
1.90 + Return the custom interface
1.91 + @param aInterfaceId
1.92 + The UID of the required custom interface
1.93 + @return the custom interface supported by this plugin
1.94 + */
1.95 + virtual TAny* CustomInterface(TUid aInterfaceId);
1.96 +
1.97 + /**
1.98 + Instantiate a CI Mux class
1.99 + @return the pointer to the new class, cast to the Mux plugin mixin
1.100 + @leave This method may leave with one of the system-wide error codes.
1.101 + */
1.102 + static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
1.103 +
1.104 + // from MMMFUnderflowAutoStopControl
1.105 + //@see MMMFUnderflowAutoStopControl
1.106 + virtual TInt MmuascTurnOffUnderflowAutoStop();
1.107 +
1.108 +protected:
1.109 + CMMFUnderflowAutoStopControlMux();
1.110 + ~CMMFUnderflowAutoStopControlMux();
1.111 +
1.112 +protected:
1.113 + TUid iKey;
1.114 + TInt iRemoteHandle;
1.115 + MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
1.116 + };
1.117 +
1.118 +
1.119 +/**
1.120 +Implementation of the Underflow auto stop control custom interface DeMux
1.121 +@internalComponent
1.122 +@prototype
1.123 +@file
1.124 +*/
1.125 +class CMMFUnderflowAutoStopControlDeMux : public CBase,
1.126 + public MMMFDevSoundCustomInterfaceDeMuxPlugin
1.127 + {
1.128 +public:
1.129 + /**
1.130 + Instantiate a CMMFUnderflowAutoStopControlDeMux class
1.131 + @return a pointer to the new class cast to the DeMux plugin mixin
1.132 + @leave This method may leave with one of the system-wide error codes.
1.133 + */
1.134 + static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
1.135 +
1.136 + /**
1.137 + Attempt to open the interface.
1.138 + @param aInterfaceId
1.139 + The UID of the interface to open.
1.140 + @return a handle to the remote plugin
1.141 + */
1.142 + virtual TInt OpenInterface(TUid aInterfaceId);
1.143 +
1.144 + /**
1.145 + Equivalent to destructor. Called to destroy plugin.
1.146 + */
1.147 + virtual void Release();
1.148 +
1.149 + /**
1.150 + Pass destructor key.
1.151 + Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
1.152 + @param aDestructorKey
1.153 + The Uid returned by REComSession::CreateImplementationL() or similar
1.154 + */
1.155 + virtual void PassDestructorKey(TUid aDestructorKey);
1.156 +
1.157 + /**
1.158 + Set the target of the custom interface call
1.159 + @param aTarget
1.160 + The DevSound to call the custom interface on.
1.161 + */
1.162 + virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
1.163 +
1.164 + /**
1.165 + Complete construction.
1.166 + @param aUtility
1.167 + The DeMux utility to use
1.168 + @leave This method may leave with one of the system-wide error codes.
1.169 + */
1.170 + virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
1.171 +
1.172 + /**
1.173 + Refresh the current custom interface connections
1.174 + @leave This method may leave with one of the system-wide error codes.
1.175 + */
1.176 + virtual void RefreshL();
1.177 +
1.178 + // from MMMFDevSoundCustomInterfaceDeMuxPlugin
1.179 + /**
1.180 + Open the slave
1.181 + @param aInterface
1.182 + The UID of the requested interface
1.183 + @param aPackageBuf
1.184 + A package of data that can be supplied for initialisation
1.185 + @return the result of the operation
1.186 + @leave This method may leave with one of the system-wide error codes.
1.187 + */
1.188 + virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
1.189 +
1.190 + /**
1.191 + Close the slave
1.192 + @param aHandle
1.193 + The handle of the slave plugin
1.194 + @leave This method may leave with one of the system-wide error codes.
1.195 + */
1.196 + virtual void DoCloseSlaveL(TInt aHandle);
1.197 +
1.198 + // original RMessage is supplied so that remote DeMux plugin can extract necessary details
1.199 + // using DeMux utility
1.200 +
1.201 + /**
1.202 + Relay the synchronous custom command onto the slave
1.203 + @param aMessage
1.204 + The IPC message to be sent to the slave
1.205 + @return the result of the operation
1.206 + @leave This method may leave with one of the system-wide error codes.
1.207 + */
1.208 + virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
1.209 +
1.210 + /**
1.211 + Relay the synchronous custom command onto the slave and obtain a result
1.212 + @param aMessage
1.213 + The IPC message to be sent to the slave
1.214 + @return the result of the operation
1.215 + @leave This method may leave with one of the system-wide error codes.
1.216 + */
1.217 + virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
1.218 +
1.219 + /**
1.220 + Relay an asynchronous command onto the slave
1.221 + @param aMessage
1.222 + The IPC message to be sent to the slave
1.223 + @leave This method may leave with one of the system-wide error codes.
1.224 + */
1.225 + virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
1.226 +
1.227 + /**
1.228 + Relay an asynchronous command onto the slave and obtain a result
1.229 + @param aMessage
1.230 + The IPC message to be sent to the slave@param aMessage
1.231 + @leave This method may leave with one of the system-wide error codes.
1.232 + */
1.233 + virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
1.234 +
1.235 +protected:
1.236 + ~CMMFUnderflowAutoStopControlDeMux();
1.237 + CMMFUnderflowAutoStopControlDeMux();
1.238 +
1.239 + // from mirror MmuascTurnOffUnderflowAutoStop method.
1.240 + TInt DoMmuascTurnOffUnderflowAutoStopL();
1.241 +
1.242 +protected:
1.243 + MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
1.244 + MMMFDevSoundCustomInterfaceTarget* iTarget;
1.245 + TUid iKey;
1.246 + MMMFUnderflowAutoStopControl* iInterfaceUnderflowAutoStopCtrl;
1.247 + };
1.248 +
1.249 +#endif