os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/advancedaacencodesettingsci.h
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/devsoundpluginsupport/src/CustomInterfaces/advancedaacencodesettingsci.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,258 @@
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 +//
1.18 +
1.19 +#ifndef ADVANCEDAACENCODESETTINGSCI_H
1.20 +#define ADVANCEDAACENCODESETTINGSCI_H
1.21 +
1.22 +#include <e32base.h>
1.23 +#include <mmf/common/mmfipc.h>
1.24 +#ifdef SYMBIAN_ENABLE_SPLIT_HEADERS
1.25 +#include <mmf/common/mmfipcserver.h>
1.26 +#endif
1.27 +#include <mmf/server/mmfdevsoundcustominterface.h>
1.28 +#include <mmf/server/mmfdevsoundcustomcommands.h>
1.29 +#include <mmf/server/devsoundstandardcustominterfaces.h>
1.30 +#include <mmf/plugin/mmfdevsoundcustominterface.hrh>
1.31 +
1.32 +/**
1.33 + @internalComponent
1.34 + @prototype
1.35 + @file
1.36 + */
1.37 +enum TMMFDevSoundCIAdvancedAACEncodeSettignsCommands
1.38 + {
1.39 + EMMFDevSoundCIAdvancedAACEncodeSettings = 0,
1.40 + EMMFDevSoundCIAdvancedAACEncodeGetSettings
1.41 + };
1.42 +
1.43 +
1.44 +/**
1.45 + @internalComponent
1.46 + @prototype
1.47 + @file
1.48 + */
1.49 +
1.50 +/**
1.51 + * CMMFAdvancedAACEncodeSettingsMux
1.52 + *
1.53 + * implementation of the Play back status custom interface pair
1.54 + */
1.55 +class CMMFAdvancedAACEncodeSettingsMux : public CBase,
1.56 + public MMMFDevSoundCustomInterfaceMuxPlugin,
1.57 + public MMMFAdvancedAACEncodeSettings
1.58 + {
1.59 +public:
1.60 +
1.61 + // from MMMFDevSoundCustomInterfaceMuxPlugin
1.62 + /**
1.63 + Attempt to open the interface.
1.64 + @param aInterfaceId
1.65 + The UID of the interface to open.
1.66 + @return One of the system wide error codes
1.67 + */
1.68 + virtual TInt OpenInterface(TUid aInterfaceId);
1.69 +
1.70 + /**
1.71 + Equivalent to destructor. Called to destroy plugin.
1.72 + */
1.73 + virtual void Release();
1.74 + /**
1.75 + Pass destructor key.
1.76 + Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
1.77 + @param aDestructorKey
1.78 + The Uid returned by REComSession::CreateImplementationL() or similar
1.79 + */
1.80 + virtual void PassDestructorKey(TUid aDestructorKey);
1.81 +
1.82 + /**
1.83 + Complete construction.
1.84 + Pass additional values from the construction phase, used subsequently by the plugin.
1.85 + @param aCustomUtility
1.86 + The custom interface utility used by the plugin to communicate with the remote
1.87 + server side DeMux plugin
1.88 + @leave This method may leave with one of the system-wide error codes.
1.89 + */
1.90 + virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceMuxUtility* aCustomUtility);
1.91 +
1.92 + /**
1.93 + Return the custom interface
1.94 + @param aInterfaceId
1.95 + The UID of the required custom interface
1.96 + @return The custom interface supported by this plugin
1.97 + */
1.98 + virtual TAny* CustomInterface(TUid aInterfaceId);
1.99 +
1.100 + /**
1.101 + Instantiate a CI Mux class
1.102 + @leave This method may leave with one of the system-wide error codes.
1.103 + @return The pointer to the new class, cast to the Mux plugin mixin
1.104 + */
1.105 + static MMMFDevSoundCustomInterfaceMuxPlugin* NewL();
1.106 +
1.107 + // from MMMFAdvancedAACEncodeSettings
1.108 + /**
1.109 + @see MMMFAdvancedAACEncodeSettings
1.110 + */
1.111 + virtual TInt SetAACEncodeBitrateMode(TAACBitrateMode aBitrateMode);
1.112 + /**
1.113 + @see MMMFAdvancedAACEncodeSettings
1.114 + */
1.115 + virtual TInt GetAACEncodeBitrateMode(TAACBitrateMode& aBitrateMode);
1.116 +
1.117 +protected:
1.118 + CMMFAdvancedAACEncodeSettingsMux();
1.119 + ~CMMFAdvancedAACEncodeSettingsMux();
1.120 +
1.121 +protected:
1.122 + TUid iDestructorKey;
1.123 + TInt iRemoteHandle;
1.124 + MMMFDevSoundCustomInterfaceMuxUtility* iUtility;
1.125 + };
1.126 +
1.127 +/**
1.128 + @internalComponent
1.129 + @prototype
1.130 + @file
1.131 + */
1.132 +
1.133 +/**
1.134 + * CMMFAdvancedAACEncodeSettingsDeMux DeMux side of pair
1.135 + */
1.136 +
1.137 +class CMMFAdvancedAACEncodeSettingsDeMux : public CBase,
1.138 + public MMMFDevSoundCustomInterfaceDeMuxPlugin
1.139 + {
1.140 +public:
1.141 + /**
1.142 + Instantiate a CMMFAdvancedAACEncodeSettingsDeMux class
1.143 + @leave This method may leave with one of the system-wide error codes.
1.144 + @return A pointer to the new class cast to the DeMux plugin mixin
1.145 + */
1.146 + static MMMFDevSoundCustomInterfaceDeMuxPlugin* NewL();
1.147 +
1.148 + /**
1.149 + Attempt to open the interface.
1.150 + @param aInterfaceId
1.151 + The UID of the interface to open.
1.152 + @return A handle to the remote plugin
1.153 + */
1.154 + virtual TInt OpenInterface(TUid aInterfaceId);
1.155 +
1.156 + /**
1.157 + Equivalent to destructor. Called to destroy plugin.
1.158 + */
1.159 + virtual void Release();
1.160 + /**
1.161 + Pass destructor key.
1.162 + Called on construction so plugin takes responsibility to call REComSession::DestroyedImplementation()
1.163 + @param aDestructorKey
1.164 + The Uid returned by REComSession::CreateImplementationL() or similar
1.165 + */
1.166 + virtual void PassDestructorKey(TUid aDestructorKey);
1.167 +
1.168 + /**
1.169 + Set the target of the custom interface call
1.170 + @param aTarget
1.171 + The DevSound to call the custom interface on.
1.172 + */
1.173 + virtual void SetInterfaceTarget(MMMFDevSoundCustomInterfaceTarget* aTarget);
1.174 +
1.175 + /**
1.176 + Complete construction.
1.177 + @param aUtility
1.178 + The DeMux utility to use
1.179 + @leave This method may leave with one of the system-wide error codes.
1.180 + */
1.181 + virtual void CompleteConstructL(MMMFDevSoundCustomInterfaceDeMuxUtility* aUtility);
1.182 +
1.183 + /**
1.184 + Refresh the current custom interface connections
1.185 + @leave This method may leave with one of the system-wide error codes.
1.186 + */
1.187 + virtual void RefreshL();
1.188 +
1.189 + // from MMMFDevSoundCustomInterfaceDeMuxPlugin
1.190 + /**
1.191 + Open the slave
1.192 + @param aInterface
1.193 + The UID of the requested interface
1.194 + @param aPackageBuf
1.195 + A package of data that can be supplied for initialisation
1.196 + @leave This method may leave with one of the system-wide error codes.
1.197 + @return The result of the operation
1.198 + */
1.199 + virtual TInt DoOpenSlaveL(TUid aInterface, const TDesC8& aPackageBuf);
1.200 +
1.201 + /**
1.202 + Close the slave
1.203 + @param aHandle
1.204 + The handle of the slave plugin
1.205 + @leave This method may leave with one of the system-wide error codes.
1.206 + */
1.207 + virtual void DoCloseSlaveL(TInt aHandle);
1.208 +
1.209 + // original RMessage is supplied so that remote demux plugin can extract necessary details
1.210 + // using DeMux utility
1.211 +
1.212 + /**
1.213 + Relay the synchronous custom command onto the slave
1.214 + @param aMessage
1.215 + The IPC message to be sent to the slave
1.216 + @leave This method may leave with one of the system-wide error codes.
1.217 + @return The result of the operation
1.218 + */
1.219 + virtual TInt DoSendSlaveSyncCommandL(const RMmfIpcMessage& aMessage);
1.220 +
1.221 + /**
1.222 + Relay the synchronous custom command onto the slave and obtain a result
1.223 + @param aMessage
1.224 + The IPC message to be sent to the slave
1.225 + @leave This method may leave with one of the system-wide error codes.
1.226 + @return The result of the operation
1.227 + */
1.228 + virtual TInt DoSendSlaveSyncCommandResultL(const RMmfIpcMessage& aMessage);
1.229 +
1.230 + /**
1.231 + Relay an asynchronous command onto the slave
1.232 + @param aMessage
1.233 + The IPC message to be sent to the slave
1.234 + @leave This method may leave with one of the system-wide error codes.
1.235 + */
1.236 + virtual void DoSendSlaveAsyncCommandL(const RMmfIpcMessage& aMessage);
1.237 +
1.238 + /**
1.239 + Relay an asynchronous command onto the slave and obtain a result
1.240 + @param aMessage
1.241 + The IPC message to be sent to the slave@param aMessage
1.242 + @leave This method may leave with one of the system-wide error codes.
1.243 + */
1.244 + virtual void DoSendSlaveAsyncCommandResultL(const RMmfIpcMessage& aMessage);
1.245 +
1.246 +protected:
1.247 + ~CMMFAdvancedAACEncodeSettingsDeMux();
1.248 + CMMFAdvancedAACEncodeSettingsDeMux();
1.249 +
1.250 + // mirrors MMMFAdvancedAACEncodeSettings method.
1.251 + TInt DoSetAACEncodeBitrateMode(MMMFAdvancedAACEncodeSettings::TAACBitrateMode aBitrateMode);
1.252 + TInt DoGetAACEncodeBitrateMode(MMMFAdvancedAACEncodeSettings::TAACBitrateMode& aBitrateMode);
1.253 +
1.254 +protected:
1.255 + MMMFDevSoundCustomInterfaceDeMuxUtility* iUtility;
1.256 + MMMFDevSoundCustomInterfaceTarget* iTarget;
1.257 + TUid iDestructorKey;
1.258 + MMMFAdvancedAACEncodeSettings* iInterfaceAdvAACEncodeSettings;
1.259 + };
1.260 +
1.261 +#endif