os/mm/devsoundextensions/mmextfw/customcommandutility/src/CustomCommandUtility.cpp
1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsoundextensions/mmextfw/customcommandutility/src/CustomCommandUtility.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,499 @@
1.4 +/*
1.5 +* Copyright (c) 2004 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description: Custom command utility implementation
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +#include <mdaaudiosampleplayer.h>
1.24 +#include <mdaaudiosampleeditor.h>
1.25 +#include <midiclientutility.h>
1.26 +#include <DrmAudioSamplePlayer.h>
1.27 +#include <CustomCommandUtility.h>
1.28 +#include <videoplayer.h>
1.29 +#include <videorecorder.h>
1.30 +
1.31 +class CConvertCustomCommandUtility : public CCustomCommandUtility
1.32 + {
1.33 +public:
1.34 + CConvertCustomCommandUtility(CMdaAudioConvertUtility& aUtility) :
1.35 + iUtility(aUtility)
1.36 + {
1.37 + }
1.38 +
1.39 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.40 + TInt aFunction,
1.41 + const TDesC8& aDataTo1,
1.42 + const TDesC8& aDataTo2,
1.43 + TDes8& aDataFrom)
1.44 + {
1.45 + return iUtility.CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom);
1.46 + }
1.47 +
1.48 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.49 + TInt aFunction,
1.50 + const TDesC8& aDataTo1,
1.51 + const TDesC8& aDataTo2)
1.52 + {
1.53 + return iUtility.CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2);
1.54 + }
1.55 +
1.56 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.57 + TInt aFunction,
1.58 + const TDesC8& aDataTo1,
1.59 + const TDesC8& aDataTo2,
1.60 + TDes8& aDataFrom,
1.61 + TRequestStatus& aStatus)
1.62 + {
1.63 + iUtility.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom, aStatus);
1.64 + }
1.65 +
1.66 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.67 + TInt aFunction,
1.68 + const TDesC8& aDataTo1,
1.69 + const TDesC8& aDataTo2,
1.70 + TRequestStatus& aStatus)
1.71 + {
1.72 + iUtility.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aStatus);
1.73 + }
1.74 +
1.75 +private:
1.76 + CMdaAudioConvertUtility& iUtility;
1.77 +
1.78 + };
1.79 +
1.80 +class CPlayerCustomCommandUtility : public CCustomCommandUtility
1.81 + {
1.82 +public:
1.83 + CPlayerCustomCommandUtility(CMdaAudioPlayerUtility& aUtility) :
1.84 + iUtility(aUtility)
1.85 + {
1.86 + }
1.87 +
1.88 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.89 + TInt aFunction,
1.90 + const TDesC8& aDataTo1,
1.91 + const TDesC8& aDataTo2,
1.92 + TDes8& aDataFrom)
1.93 + {
1.94 + return iUtility.CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom);
1.95 + }
1.96 +
1.97 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.98 + TInt aFunction,
1.99 + const TDesC8& aDataTo1,
1.100 + const TDesC8& aDataTo2)
1.101 + {
1.102 + return iUtility.CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2);
1.103 + }
1.104 +
1.105 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.106 + TInt aFunction,
1.107 + const TDesC8& aDataTo1,
1.108 + const TDesC8& aDataTo2,
1.109 + TDes8& aDataFrom,
1.110 + TRequestStatus& aStatus)
1.111 + {
1.112 + iUtility.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom, aStatus);
1.113 + }
1.114 +
1.115 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.116 + TInt aFunction,
1.117 + const TDesC8& aDataTo1,
1.118 + const TDesC8& aDataTo2,
1.119 + TRequestStatus& aStatus)
1.120 + {
1.121 + iUtility.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aStatus);
1.122 + }
1.123 +
1.124 +private:
1.125 + CMdaAudioPlayerUtility& iUtility;
1.126 +
1.127 + };
1.128 +
1.129 +class CRecorderCustomCommandUtility : public CCustomCommandUtility
1.130 + {
1.131 +public:
1.132 + CRecorderCustomCommandUtility(CMdaAudioRecorderUtility& aUtility) :
1.133 + iUtility(aUtility)
1.134 + {
1.135 + }
1.136 +
1.137 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.138 + TInt aFunction,
1.139 + const TDesC8& aDataTo1,
1.140 + const TDesC8& aDataTo2,
1.141 + TDes8& aDataFrom)
1.142 + {
1.143 + return iUtility.RecordControllerCustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom);
1.144 + }
1.145 +
1.146 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.147 + TInt aFunction,
1.148 + const TDesC8& aDataTo1,
1.149 + const TDesC8& aDataTo2)
1.150 + {
1.151 + return iUtility.RecordControllerCustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2);
1.152 + }
1.153 +
1.154 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.155 + TInt aFunction,
1.156 + const TDesC8& aDataTo1,
1.157 + const TDesC8& aDataTo2,
1.158 + TDes8& aDataFrom,
1.159 + TRequestStatus& aStatus)
1.160 + {
1.161 + iUtility.RecordControllerCustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom, aStatus);
1.162 + }
1.163 +
1.164 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.165 + TInt aFunction,
1.166 + const TDesC8& aDataTo1,
1.167 + const TDesC8& aDataTo2,
1.168 + TRequestStatus& aStatus)
1.169 + {
1.170 + iUtility.RecordControllerCustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aStatus);
1.171 + }
1.172 +
1.173 +private:
1.174 + CMdaAudioRecorderUtility& iUtility;
1.175 +
1.176 + };
1.177 +
1.178 +class CRecorderPlayCustomCommandUtility : public CCustomCommandUtility
1.179 + {
1.180 +public:
1.181 + CRecorderPlayCustomCommandUtility(CMdaAudioRecorderUtility& aUtility) :
1.182 + iUtility(aUtility)
1.183 + {
1.184 + }
1.185 +
1.186 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.187 + TInt aFunction,
1.188 + const TDesC8& aDataTo1,
1.189 + const TDesC8& aDataTo2,
1.190 + TDes8& aDataFrom)
1.191 + {
1.192 + return iUtility.PlayControllerCustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom);
1.193 + }
1.194 +
1.195 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.196 + TInt aFunction,
1.197 + const TDesC8& aDataTo1,
1.198 + const TDesC8& aDataTo2)
1.199 + {
1.200 + return iUtility.PlayControllerCustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2);
1.201 + }
1.202 +
1.203 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.204 + TInt aFunction,
1.205 + const TDesC8& aDataTo1,
1.206 + const TDesC8& aDataTo2,
1.207 + TDes8& aDataFrom,
1.208 + TRequestStatus& aStatus)
1.209 + {
1.210 + iUtility.PlayControllerCustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom, aStatus);
1.211 + }
1.212 +
1.213 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.214 + TInt aFunction,
1.215 + const TDesC8& aDataTo1,
1.216 + const TDesC8& aDataTo2,
1.217 + TRequestStatus& aStatus)
1.218 + {
1.219 + iUtility.PlayControllerCustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aStatus);
1.220 + }
1.221 +
1.222 +private:
1.223 + CMdaAudioRecorderUtility& iUtility;
1.224 +
1.225 + };
1.226 +
1.227 +class CMidiCustomCommandUtility : public CCustomCommandUtility
1.228 + {
1.229 +public:
1.230 + CMidiCustomCommandUtility(CMidiClientUtility& aUtility) :
1.231 + iUtility(aUtility)
1.232 + {
1.233 + }
1.234 +
1.235 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.236 + TInt aFunction,
1.237 + const TDesC8& aDataTo1,
1.238 + const TDesC8& aDataTo2,
1.239 + TDes8& aDataFrom)
1.240 + {
1.241 + iUtility.CustomCommandSyncL(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom);
1.242 + return KErrNone;
1.243 + }
1.244 +
1.245 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.246 + TInt aFunction,
1.247 + const TDesC8& aDataTo1,
1.248 + const TDesC8& aDataTo2)
1.249 + {
1.250 + iUtility.CustomCommandSyncL(aDestination, aFunction, aDataTo1, aDataTo2);
1.251 + return KErrNone;
1.252 + }
1.253 +
1.254 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.255 + TInt aFunction,
1.256 + const TDesC8& aDataTo1,
1.257 + const TDesC8& aDataTo2,
1.258 + TDes8& aDataFrom,
1.259 + TRequestStatus& aStatus)
1.260 + {
1.261 + iUtility.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom, aStatus);
1.262 + }
1.263 +
1.264 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.265 + TInt aFunction,
1.266 + const TDesC8& aDataTo1,
1.267 + const TDesC8& aDataTo2,
1.268 + TRequestStatus& aStatus)
1.269 + {
1.270 + iUtility.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aStatus);
1.271 + }
1.272 +
1.273 +private:
1.274 + CMidiClientUtility& iUtility;
1.275 + };
1.276 +
1.277 +class CDrmCustomCommandUtility : public CCustomCommandUtility
1.278 + {
1.279 +public:
1.280 + CDrmCustomCommandUtility(CDrmPlayerUtility& aUtility) :
1.281 + iUtility(aUtility)
1.282 + {
1.283 + }
1.284 +
1.285 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.286 + TInt aFunction,
1.287 + const TDesC8& aDataTo1,
1.288 + const TDesC8& aDataTo2,
1.289 + TDes8& aDataFrom)
1.290 + {
1.291 + iUtility.CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom);
1.292 + return KErrNone;
1.293 + }
1.294 +
1.295 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.296 + TInt aFunction,
1.297 + const TDesC8& aDataTo1,
1.298 + const TDesC8& aDataTo2)
1.299 + {
1.300 + iUtility.CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2);
1.301 + return KErrNone;
1.302 + }
1.303 +
1.304 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.305 + TInt aFunction,
1.306 + const TDesC8& aDataTo1,
1.307 + const TDesC8& aDataTo2,
1.308 + TDes8& aDataFrom,
1.309 + TRequestStatus& aStatus)
1.310 + {
1.311 + iUtility.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom, aStatus);
1.312 + }
1.313 +
1.314 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.315 + TInt aFunction,
1.316 + const TDesC8& aDataTo1,
1.317 + const TDesC8& aDataTo2,
1.318 + TRequestStatus& aStatus)
1.319 + {
1.320 + iUtility.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aStatus);
1.321 + }
1.322 +
1.323 +private:
1.324 + CDrmPlayerUtility& iUtility;
1.325 + };
1.326 +
1.327 +class CVideoRecorderCustomCommandUtility : public CCustomCommandUtility
1.328 + {
1.329 +public:
1.330 + CVideoRecorderCustomCommandUtility(CVideoRecorderUtility& aUtility) :
1.331 + iUtility(aUtility)
1.332 + {
1.333 + }
1.334 +
1.335 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.336 + TInt aFunction,
1.337 + const TDesC8& aDataTo1,
1.338 + const TDesC8& aDataTo2,
1.339 + TDes8& aDataFrom)
1.340 + {
1.341 + iUtility.CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom);
1.342 + return KErrNone;
1.343 + }
1.344 +
1.345 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.346 + TInt aFunction,
1.347 + const TDesC8& aDataTo1,
1.348 + const TDesC8& aDataTo2)
1.349 + {
1.350 + iUtility.CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2);
1.351 + return KErrNone;
1.352 + }
1.353 +
1.354 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.355 + TInt aFunction,
1.356 + const TDesC8& aDataTo1,
1.357 + const TDesC8& aDataTo2,
1.358 + TDes8& aDataFrom,
1.359 + TRequestStatus& aStatus)
1.360 + {
1.361 + iUtility.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom, aStatus);
1.362 + }
1.363 +
1.364 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.365 + TInt aFunction,
1.366 + const TDesC8& aDataTo1,
1.367 + const TDesC8& aDataTo2,
1.368 + TRequestStatus& aStatus)
1.369 + {
1.370 + iUtility.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aStatus);
1.371 + }
1.372 +
1.373 +private:
1.374 + CVideoRecorderUtility& iUtility;
1.375 + };
1.376 +
1.377 +class CVideoPlayerCustomCommandUtility : public CCustomCommandUtility
1.378 + {
1.379 +public:
1.380 + CVideoPlayerCustomCommandUtility(CVideoPlayerUtility& aUtility) :
1.381 + iUtility(aUtility)
1.382 + {
1.383 + }
1.384 +
1.385 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.386 + TInt aFunction,
1.387 + const TDesC8& aDataTo1,
1.388 + const TDesC8& aDataTo2,
1.389 + TDes8& aDataFrom)
1.390 + {
1.391 + iUtility.CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom);
1.392 + return KErrNone;
1.393 + }
1.394 +
1.395 + virtual TInt CustomCommandSync(const TMMFMessageDestinationPckg& aDestination,
1.396 + TInt aFunction,
1.397 + const TDesC8& aDataTo1,
1.398 + const TDesC8& aDataTo2)
1.399 + {
1.400 + iUtility.CustomCommandSync(aDestination, aFunction, aDataTo1, aDataTo2);
1.401 + return KErrNone;
1.402 + }
1.403 +
1.404 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.405 + TInt aFunction,
1.406 + const TDesC8& aDataTo1,
1.407 + const TDesC8& aDataTo2,
1.408 + TDes8& aDataFrom,
1.409 + TRequestStatus& aStatus)
1.410 + {
1.411 + iUtility.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aDataFrom, aStatus);
1.412 + }
1.413 +
1.414 + virtual void CustomCommandAsync(const TMMFMessageDestinationPckg& aDestination,
1.415 + TInt aFunction,
1.416 + const TDesC8& aDataTo1,
1.417 + const TDesC8& aDataTo2,
1.418 + TRequestStatus& aStatus)
1.419 + {
1.420 + iUtility.CustomCommandAsync(aDestination, aFunction, aDataTo1, aDataTo2, aStatus);
1.421 + }
1.422 +
1.423 +private:
1.424 + CVideoPlayerUtility& iUtility;
1.425 + };
1.426 +
1.427 +
1.428 +EXPORT_C CCustomCommandUtility* CCustomCommandUtility::NewL(CMdaAudioConvertUtility& aUtility)
1.429 + {
1.430 + CCustomCommandUtility* customCommand;
1.431 +
1.432 + customCommand = new(ELeave) CConvertCustomCommandUtility(aUtility);
1.433 +
1.434 + return customCommand;
1.435 + }
1.436 +
1.437 +EXPORT_C CCustomCommandUtility* CCustomCommandUtility::NewL(CMdaAudioPlayerUtility& aUtility)
1.438 + {
1.439 + CCustomCommandUtility* customCommand;
1.440 +
1.441 + customCommand = new(ELeave) CPlayerCustomCommandUtility(aUtility);
1.442 +
1.443 + return customCommand;
1.444 + }
1.445 +
1.446 +EXPORT_C CCustomCommandUtility* CCustomCommandUtility::NewL(CMdaAudioRecorderUtility& aUtility,
1.447 + TBool aRecordStream)
1.448 + {
1.449 + CCustomCommandUtility* customCommand;
1.450 +
1.451 + if( !aRecordStream ) //Playing
1.452 + {
1.453 + customCommand = new(ELeave) CRecorderPlayCustomCommandUtility(aUtility);
1.454 + }
1.455 + else //Recording
1.456 + {
1.457 + customCommand = new(ELeave) CRecorderCustomCommandUtility(aUtility);
1.458 + }
1.459 +
1.460 + return customCommand;
1.461 + }
1.462 +
1.463 +EXPORT_C CCustomCommandUtility* CCustomCommandUtility::NewL(CMidiClientUtility& aUtility)
1.464 + {
1.465 + CCustomCommandUtility* customCommand;
1.466 +
1.467 + customCommand = new(ELeave) CMidiCustomCommandUtility(aUtility);
1.468 +
1.469 + return customCommand;
1.470 + }
1.471 +
1.472 +EXPORT_C CCustomCommandUtility* CCustomCommandUtility::NewL(CDrmPlayerUtility& aUtility)
1.473 + {
1.474 + CCustomCommandUtility* customCommand;
1.475 +
1.476 + customCommand = new(ELeave) CDrmCustomCommandUtility(aUtility);
1.477 +
1.478 + return customCommand;
1.479 + }
1.480 +
1.481 +EXPORT_C CCustomCommandUtility* CCustomCommandUtility::NewL(CVideoPlayerUtility& aUtility)
1.482 + {
1.483 + CCustomCommandUtility* customCommand;
1.484 +
1.485 + customCommand = new(ELeave) CVideoPlayerCustomCommandUtility(aUtility);
1.486 +
1.487 + return customCommand;
1.488 + }
1.489 +
1.490 +EXPORT_C CCustomCommandUtility* CCustomCommandUtility::NewL(CVideoRecorderUtility& aUtility)
1.491 + {
1.492 + CCustomCommandUtility* customCommand;
1.493 +
1.494 + customCommand = new(ELeave) CVideoRecorderCustomCommandUtility(aUtility);
1.495 +
1.496 + return customCommand;
1.497 + }
1.498 +// ========================== OTHER EXPORTED FUNCTIONS =========================
1.499 +
1.500 +
1.501 +
1.502 +// End of File