First public contribution.
2 * Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
14 * Description: DRM PlayUtility
22 #include <DrmAudioSamplePlayer.h>
23 #include "DRMPlayClientServer.h"
24 #include "mmfclientdrmaudioplayer.h"
25 #include <mmf/common/mmfcontrollerpluginresolver.h>
26 #include <mmf/common/mmfbase.h>
27 #include <mmf/common/mmfdrmcustomcommands.h>
28 #include "drmaudioplayeradaptation.h"
30 // This is the UID defined by custom interface builder
31 const TUid KUidCustomInterfaceBuilderImpl = {0x10207A8E};
34 #define DEP_PRN0(str) RDebug::Print(str)
35 #define DEP_PRN1(str, v1) RDebug::Print(str, v1)
36 #define DEP_PRN2(str, v1, v2) RDebug::Print(str, v1, v2)
39 #define DEP_PRN1(str, v1)
40 #define DEP_PRN2(str, v1, v2)
44 // ============================= LOCAL FUNCTIONS ===============================
46 // -----------------------------------------------------------------------------
47 // CDrmPlayerUtility::NewL
48 // Constructs and initialises a new instance of the audio player utility.
49 // (other items were commented in a header).
50 // -----------------------------------------------------------------------------
52 EXPORT_C CDrmPlayerUtility* CDrmPlayerUtility::NewL(
53 MDrmAudioPlayerCallback& aCallback,
55 TMdaPriorityPreference aPref)
57 CDrmPlayerUtility* self = new(ELeave) CDrmPlayerUtility();
58 CleanupStack::PushL(self);
59 self->iProperties = CDrmAudioPlayerAdaptation::NewL( aCallback, aPriority, aPref );
60 CleanupStack::Pop(self);
64 // -----------------------------------------------------------------------------
65 // CDrmPlayerUtility::NewFilePlayerL
66 // Constructs and initialises a new instance of the audio player utility for
67 // playing sampled audio data from a file. The audio data must be in a supported
68 // format (e.g. WAV and AU).
69 // (other items were commented in a header).
70 // -----------------------------------------------------------------------------
72 EXPORT_C CDrmPlayerUtility* CDrmPlayerUtility::NewFilePlayerL(
73 const TDesC& aFileName,
74 MDrmAudioPlayerCallback& aCallback,
76 TMdaPriorityPreference aPref)
78 CDrmPlayerUtility* self = new(ELeave) CDrmPlayerUtility();
79 CleanupStack::PushL(self);
80 self->iProperties = CDrmAudioPlayerAdaptation::NewFilePlayerL(aFileName, aCallback, aPriority, aPref);
81 CleanupStack::Pop(self);
85 // -----------------------------------------------------------------------------
86 // CDrmPlayerUtility::NewDesPlayerL
87 // Constructs and initialises a new instance of the audio player utility for
88 // playing sampled audio data from a descriptor. The audio data must be in a
89 // supported format (e.g. WAV and AU).
90 // (other items were commented in a header).
91 // -----------------------------------------------------------------------------
93 EXPORT_C CDrmPlayerUtility* CDrmPlayerUtility::NewDesPlayerL(
95 MDrmAudioPlayerCallback& aCallback,
97 TMdaPriorityPreference aPref)
99 CDrmPlayerUtility* self = new(ELeave) CDrmPlayerUtility();
100 CleanupStack::PushL(self);
101 self->iProperties = CDrmAudioPlayerAdaptation::NewDesPlayerL( aData, aCallback, aPriority, aPref );
102 CleanupStack::Pop(self);
106 // -----------------------------------------------------------------------------
107 // CDrmPlayerUtility::NewDesPlayerReadOnlyL
108 // Constructs and initialises a new instance of the audio player utility for
109 // playing sampled audio data from a read only descriptor. The audio data must
110 // be in a supported format (e.g. WAV and AU).
111 // (other items were commented in a header).
112 // -----------------------------------------------------------------------------
114 EXPORT_C CDrmPlayerUtility* CDrmPlayerUtility::NewDesPlayerReadOnlyL(
116 MDrmAudioPlayerCallback& aCallback,
118 TMdaPriorityPreference aPref)
120 CDrmPlayerUtility* self = new(ELeave) CDrmPlayerUtility();
121 CleanupStack::PushL(self);
122 self->iProperties = CDrmAudioPlayerAdaptation::NewDesPlayerReadOnlyL(aData, aCallback, aPriority, aPref);
123 CleanupStack::Pop(self);
128 EXPORT_C CDrmPlayerUtility::~CDrmPlayerUtility()
133 // -----------------------------------------------------------------------------
134 // CDrmPlayerUtility::Play
135 // Begins playback of the initialised audio sample at the current volume and
136 // priority levels. When playing of the audio sample is complete, successfully
137 // or otherwise, the callback function MMdaAudioPlayerCallback::MapcPlayComplete()
139 // (other items were commented in a header).
140 // -----------------------------------------------------------------------------
142 EXPORT_C void CDrmPlayerUtility::Play()
147 // -----------------------------------------------------------------------------
148 // CDrmPlayerUtility::Stop
149 // Stops playback of the audio sample as soon as possible. If the audio sample
150 // is playing, playback is stopped as soon as possible. If playback is already
151 // complete, nothing further happens as a result of calling this function. The
152 // callback function MMdaAudioPlayerCallback::MapcPlayComplete() is not called.
153 // (other items were commented in a header).
154 // -----------------------------------------------------------------------------
156 EXPORT_C void CDrmPlayerUtility::Stop()
161 // -----------------------------------------------------------------------------
162 // CDrmPlayerUtility::Pause
163 // Pauses the playback of the audio clip.
164 // (other items were commented in a header).
165 // -----------------------------------------------------------------------------
167 EXPORT_C TInt CDrmPlayerUtility::Pause()
169 return iProperties->Pause();
173 // -----------------------------------------------------------------------------
174 // CDrmPlayerUtility::SetVolume
175 // Changes the current playback volume to a specified value. The volume can be
176 // changed before or during playback and is effective immediately.
177 // (other items were commented in a header).
178 // -----------------------------------------------------------------------------
180 EXPORT_C void CDrmPlayerUtility::SetVolume(
183 iProperties->SetVolume(aVolume);
187 // -----------------------------------------------------------------------------
188 // CDrmPlayerUtility::SetRepeats
189 // Sets the number of times the audio sample is to be repeated during the playback
190 // operation. A period of silence can follow each playing of the sample. The
191 // audio sample can be repeated indefinitely.
192 // (other items were commented in a header).
193 // -----------------------------------------------------------------------------
195 EXPORT_C void CDrmPlayerUtility::SetRepeats(
196 TInt aRepeatNumberOfTimes,
197 const TTimeIntervalMicroSeconds& aTrailingSilence)
199 iProperties->SetRepeats(aRepeatNumberOfTimes,aTrailingSilence);
202 // -----------------------------------------------------------------------------
203 // CDrmPlayerUtility::SetVolumeRamp
204 // Defines the period over which the volume level is to rise smoothly from nothing
205 // to the normal volume level.
206 // (other items were commented in a header).
207 // -----------------------------------------------------------------------------
209 EXPORT_C void CDrmPlayerUtility::SetVolumeRamp(
210 const TTimeIntervalMicroSeconds& aRampDuration)
212 iProperties->SetVolumeRamp(aRampDuration);
215 // -----------------------------------------------------------------------------
216 // CDrmPlayerUtility::Duration
217 // Returns the duration of the audio sample. The function raises a
218 // CMdaAudioPlayerUtility 1 panic if the audio player utility is not initialised.
219 // (other items were commented in a header).
220 // -----------------------------------------------------------------------------
222 EXPORT_C const TTimeIntervalMicroSeconds& CDrmPlayerUtility::Duration()
224 return iProperties->Duration();
227 // -----------------------------------------------------------------------------
228 // CDrmPlayerUtility::MaxVolume
229 // Returns an integer representing the maximum volume. This is the maximum value
230 // which can be passed to CMdaAudioPlayerUtility::SetVolume().
231 // (other items were commented in a header).
232 // -----------------------------------------------------------------------------
234 EXPORT_C TInt CDrmPlayerUtility::MaxVolume()
236 return iProperties->MaxVolume();
239 // -----------------------------------------------------------------------------
240 // CDrmPlayerUtility::OpenFileL
241 // Opens an audio clip from a file. The audio data must be in a supported
242 // format (for example, WAV or AU). This function leaves with KErrInUse if there
243 // is a previous open statement awaiting notification of completion.
244 // (other items were commented in a header).
245 // -----------------------------------------------------------------------------
247 EXPORT_C void CDrmPlayerUtility::OpenFileL(
248 const TDesC &aFileName)
250 iProperties->OpenFileL(aFileName);
253 // -----------------------------------------------------------------------------
254 // CDrmPlayerUtility::OpenFileL
255 // Opens an audio clip from a file. The audio data must be in a supported
256 // format (for example, WAV or AU). This function leaves with KErrInUse if there
257 // is a previous open statement awaiting notification of completion.
258 // (other items were commented in a header).
259 // -----------------------------------------------------------------------------
261 EXPORT_C void CDrmPlayerUtility::OpenFileL(
264 iProperties->OpenFileL(aFile);
267 // -----------------------------------------------------------------------------
268 // CDrmPlayerUtility::OpenFileL
269 // Opens an audio clip from a file. The audio data must be in a supported
270 // format (for example, WAV or AU). This function leaves with KErrInUse if there
271 // is a previous open statement awaiting notification of completion.
272 // (other items were commented in a header).
273 // -----------------------------------------------------------------------------
275 EXPORT_C void CDrmPlayerUtility::OpenFileL(
276 #ifdef SYMBIAN_CAF_V2
277 const TMMSource& aSource
279 const TMMSource& /*aSource*/
283 #ifdef SYMBIAN_CAF_V2
284 iProperties->OpenFileL(aSource);
286 User::Leave(KErrNotSupported);
290 // -----------------------------------------------------------------------------
291 // CDrmPlayerUtility::OpenDesL
292 // Opens an audio clip from a descriptor. The audio data must be in a supported
293 // format (for example, WAV or AU).
294 // (other items were commented in a header).
295 // -----------------------------------------------------------------------------
297 EXPORT_C void CDrmPlayerUtility::OpenDesL(
298 const TDesC8& aDescriptor)
300 iProperties->OpenDesL(aDescriptor);
303 // -----------------------------------------------------------------------------
304 // CDrmPlayerUtility::OpenUrlL
305 // Opens an audio clip from a URL. The audio data must be in a supported format
306 // (for example, WAV or AU).
307 // (other items were commented in a header).
308 // -----------------------------------------------------------------------------
310 EXPORT_C void CDrmPlayerUtility::OpenUrlL(
313 const TDesC8& aMimeType)
315 iProperties->OpenUrlL(aUrl,aIapId,aMimeType);
318 // -----------------------------------------------------------------------------
319 // CDrmPlayerUtility::Close
320 // Closes the current audio clip (allowing another clip to be opened).
321 // (other items were commented in a header).
322 // -----------------------------------------------------------------------------
324 EXPORT_C void CDrmPlayerUtility::Close()
326 iProperties->Close();
329 // -----------------------------------------------------------------------------
330 // CDrmPlayerUtility::GetPosition
331 // Returns the current playback position in microseconds from the start
333 // (other items were commented in a header).
334 // -----------------------------------------------------------------------------
336 EXPORT_C TInt CDrmPlayerUtility::GetPosition(
337 TTimeIntervalMicroSeconds& aPosition)
339 return iProperties->GetPosition(aPosition);
342 // -----------------------------------------------------------------------------
343 // CDrmPlayerUtility::SetPosition
344 // Sets the current playback position in microseconds from the start of the clip.
345 // (other items were commented in a header).
346 // -----------------------------------------------------------------------------
348 EXPORT_C void CDrmPlayerUtility::SetPosition(
349 const TTimeIntervalMicroSeconds& aPosition)
351 iProperties->SetPosition(aPosition);
354 // -----------------------------------------------------------------------------
355 // CDrmPlayerUtility::SetPriority
356 // Sets the priority for playback. This is used to arbitrate between multiple
357 // objects trying to access a single sound device.
358 // (other items were commented in a header).
359 // -----------------------------------------------------------------------------
361 EXPORT_C TInt CDrmPlayerUtility::SetPriority(
363 TMdaPriorityPreference aPref)
365 return iProperties->SetPriority(aPriority,aPref);
368 // -----------------------------------------------------------------------------
369 // CDrmPlayerUtility::GetVolume
370 // Returns the current playback volume.
371 // (other items were commented in a header).
372 // -----------------------------------------------------------------------------
374 EXPORT_C TInt CDrmPlayerUtility::GetVolume(
377 return iProperties->GetVolume(aVolume);
380 // -----------------------------------------------------------------------------
381 // CDrmPlayerUtility::GetNumberOfMetaDataEntries
382 // Returns the number of meta data entries in the current audio clip.
383 // (other items were commented in a header).
384 // -----------------------------------------------------------------------------
386 EXPORT_C TInt CDrmPlayerUtility::GetNumberOfMetaDataEntries(
389 return iProperties->GetNumberOfMetaDataEntries(aNumEntries);
392 // -----------------------------------------------------------------------------
393 // CDrmPlayerUtility::GetMetaDataEntryL
394 // Returns the requested meta data entry.
395 // (other items were commented in a header).
396 // -----------------------------------------------------------------------------
398 EXPORT_C CMMFMetaDataEntry* CDrmPlayerUtility::GetMetaDataEntryL(
401 return iProperties->GetMetaDataEntryL(aMetaDataIndex);
404 // -----------------------------------------------------------------------------
405 // CDrmPlayerUtility::SetPlayWindow
406 // Sets the current playback window.
407 // (other items were commented in a header).
408 // -----------------------------------------------------------------------------
410 EXPORT_C TInt CDrmPlayerUtility::SetPlayWindow(
411 const TTimeIntervalMicroSeconds& aStart,
412 const TTimeIntervalMicroSeconds& aEnd)
414 return iProperties->SetPlayWindow(aStart,aEnd);
417 // -----------------------------------------------------------------------------
418 // CDrmPlayerUtility::ClearPlayWindow
419 // Clears the current playback window.
420 // (other items were commented in a header).
421 // -----------------------------------------------------------------------------
423 EXPORT_C TInt CDrmPlayerUtility::ClearPlayWindow()
425 return iProperties->ClearPlayWindow();
428 // -----------------------------------------------------------------------------
429 // CDrmPlayerUtility::SetBalance
430 // Sets the current playback balance.
431 // (other items were commented in a header).
432 // -----------------------------------------------------------------------------
434 EXPORT_C TInt CDrmPlayerUtility::SetBalance(
437 return iProperties->SetBalance(aBalance);
440 // -----------------------------------------------------------------------------
441 // CDrmPlayerUtility::GetBalance
442 // Returns the current playback balance.
443 // (other items were commented in a header).
444 // -----------------------------------------------------------------------------
446 EXPORT_C TInt CDrmPlayerUtility::GetBalance(
449 return iProperties->GetBalance(aBalance);
452 // -----------------------------------------------------------------------------
453 // CDrmPlayerUtility::GetBitRate
454 // Returns the bit rate of the audio clip
455 // (other items were commented in a header).
456 // -----------------------------------------------------------------------------
458 EXPORT_C TInt CDrmPlayerUtility::GetBitRate(
461 return iProperties->GetBitRate(aBitRate);
464 // -----------------------------------------------------------------------------
465 // CDrmPlayerUtility::RegisterForAudioLoadingNotification
466 // Registers callback object to receive notifications of audio loading/rebuffering.
467 // (other items were commented in a header).
468 // -----------------------------------------------------------------------------
470 EXPORT_C void CDrmPlayerUtility::RegisterForAudioLoadingNotification(
471 MAudioLoadingObserver& aCallback)
473 iProperties->RegisterForAudioLoadingNotification(aCallback);
476 // -----------------------------------------------------------------------------
477 // CDrmPlayerUtility::GetAudioLoadingProgressL
478 // Returns the current progress of audio loading
479 // (other items were commented in a header).
480 // -----------------------------------------------------------------------------
482 EXPORT_C void CDrmPlayerUtility::GetAudioLoadingProgressL(
483 TInt& aPercentageProgress)
485 iProperties->GetAudioLoadingProgressL(aPercentageProgress);
488 // -----------------------------------------------------------------------------
489 // CDrmPlayerUtility::ControllerImplementationInformationL
490 // Returns the controller implementation information associated with the current controller.
491 // (other items were commented in a header).
492 // -----------------------------------------------------------------------------
494 EXPORT_C const CMMFControllerImplementationInformation& CDrmPlayerUtility::ControllerImplementationInformationL()
496 return iProperties->ControllerImplementationInformationL();
499 // -----------------------------------------------------------------------------
500 // CDrmPlayerUtility::CustomCommandSync
501 // Sends a synchronous custom command to the controller.
502 // (other items were commented in a header).
503 // -----------------------------------------------------------------------------
505 EXPORT_C TInt CDrmPlayerUtility::CustomCommandSync(
506 const TMMFMessageDestinationPckg& aDestination,
508 const TDesC8& aDataTo1,
509 const TDesC8& aDataTo2,
512 TInt status( KErrAccessDenied );
513 status = iProperties->CustomCommandSync(aDestination,aFunction,aDataTo1,aDataTo2,aDataFrom);
518 // -----------------------------------------------------------------------------
519 // CDrmPlayerUtility::CustomCommandSync
520 // Sends a synchronous custom command to the controller.
521 // (other items were commented in a header).
522 // -----------------------------------------------------------------------------
524 EXPORT_C TInt CDrmPlayerUtility::CustomCommandSync(
525 const TMMFMessageDestinationPckg& aDestination,
527 const TDesC8& aDataTo1,
528 const TDesC8& aDataTo2)
531 TInt status( KErrAccessDenied );
532 status = iProperties->CustomCommandSync(aDestination,aFunction,aDataTo1,aDataTo2);
537 // -----------------------------------------------------------------------------
538 // CDrmPlayerUtility::CustomCommandAsync
539 // Sends an asynchronous custom command to the controller
540 // (other items were commented in a header).
541 // -----------------------------------------------------------------------------
543 EXPORT_C void CDrmPlayerUtility::CustomCommandAsync(
544 const TMMFMessageDestinationPckg& aDestination,
546 const TDesC8& aDataTo1,
547 const TDesC8& aDataTo2,
549 TRequestStatus& aStatus)
552 iProperties->CustomCommandAsync(aDestination,aFunction,aDataTo1,aDataTo2,aDataFrom,aStatus);
556 // -----------------------------------------------------------------------------
557 // CDrmPlayerUtility::CustomCommandAsync
558 // Sends an asynchronous custom command to the controller
559 // (other items were commented in a header).
560 // -----------------------------------------------------------------------------
562 EXPORT_C void CDrmPlayerUtility::CustomCommandAsync(
563 const TMMFMessageDestinationPckg& aDestination,
565 const TDesC8& aDataTo1,
566 const TDesC8& aDataTo2,
567 TRequestStatus& aStatus)
570 iProperties->CustomCommandAsync(aDestination,aFunction,aDataTo1,aDataTo2,aStatus);
573 //=========================================================================================================================
578 // -----------------------------------------------------------------------------
579 // CMMFDrmAudioPlayerUtility::NewL
581 // (other items were commented in a header).
582 // -----------------------------------------------------------------------------
584 CMMFDrmAudioPlayerUtility* CMMFDrmAudioPlayerUtility::NewL(
585 MDrmAudioPlayerCallback& aCallback,
587 TMdaPriorityPreference aPref)
589 CMMFDrmAudioPlayerUtility* self = new(ELeave) CMMFDrmAudioPlayerUtility(aCallback,EPriorityStandard);
590 CleanupStack::PushL(self);
591 self->ConstructL(aPriority, aPref);
592 CleanupStack::Pop(self);
596 // -----------------------------------------------------------------------------
597 // CMMFDrmAudioPlayerUtility::NewFilePlayerL
599 // (other items were commented in a header).
600 // -----------------------------------------------------------------------------
602 CMMFDrmAudioPlayerUtility* CMMFDrmAudioPlayerUtility::NewFilePlayerL(
603 const TDesC& aFileName,
604 MDrmAudioPlayerCallback& aCallback,
606 TMdaPriorityPreference aPref)
608 CMMFDrmAudioPlayerUtility* self = new(ELeave) CMMFDrmAudioPlayerUtility(aCallback,EPriorityStandard);
609 CleanupStack::PushL(self);
610 self->ConstructL(aFileName,aPriority,aPref);
611 CleanupStack::Pop(self);
615 // -----------------------------------------------------------------------------
616 // CMMFDrmAudioPlayerUtility::NewDesPlayerL
618 // (other items were commented in a header).
619 // -----------------------------------------------------------------------------
621 CMMFDrmAudioPlayerUtility* CMMFDrmAudioPlayerUtility::NewDesPlayerL(
623 MDrmAudioPlayerCallback& aCallback,
625 TMdaPriorityPreference aPref)
627 CMMFDrmAudioPlayerUtility* self = new(ELeave) CMMFDrmAudioPlayerUtility(aCallback,EPriorityStandard);
628 CleanupStack::PushL(self);
629 self->ConstructL(aData,aPriority,aPref);
630 CleanupStack::Pop(self);
634 // -----------------------------------------------------------------------------
635 // CMMFDrmAudioPlayerUtility::NewDesPlayerReadOnlyL
637 // (other items were commented in a header).
638 // -----------------------------------------------------------------------------
640 CMMFDrmAudioPlayerUtility* CMMFDrmAudioPlayerUtility::NewDesPlayerReadOnlyL(
642 MDrmAudioPlayerCallback& aCallback,
644 TMdaPriorityPreference aPref)
646 CMMFDrmAudioPlayerUtility* self = new(ELeave) CMMFDrmAudioPlayerUtility(aCallback,EPriorityStandard);
647 CleanupStack::PushL(self);
648 self->ConstructReadOnlyL(aData,aPriority,aPref);
649 CleanupStack::Pop(self);
655 CMMFDrmAudioPlayerUtility::~CMMFDrmAudioPlayerUtility()
660 delete iMetaDataBuffer;
663 iDrmSession->Disconnect();
664 iDrmSession->Close();
670 // -----------------------------------------------------------------------------
671 // CMMFDrmAudioPlayerUtility::CMMFDrmAudioPlayerUtility
673 // (other items were commented in a header).
674 // -----------------------------------------------------------------------------
676 CMMFDrmAudioPlayerUtility::CMMFDrmAudioPlayerUtility(
677 MDrmAudioPlayerCallback& aCallback,
678 TInt aActivePriority)
679 : CActive(aActivePriority),
684 // -----------------------------------------------------------------------------
685 // CMMFDrmAudioPlayerUtility::ConstructL
687 // (other items were commented in a header).
688 // -----------------------------------------------------------------------------
690 void CMMFDrmAudioPlayerUtility::ConstructL(
692 TMdaPriorityPreference aPref)
695 TDataStruct theStruct;
697 theStruct.iPriority = aPriority;
698 theStruct.iPref = aPref;
700 TDataStructPckgBuf pckg(theStruct);
701 iState = EInitializing;
702 iDrmSession->Send(EDRMPlayServNewPlayerL,TIpcArgs(&iAsyncCallback,&pckg,&iErrorDurationStruct));
705 // -----------------------------------------------------------------------------
706 // CMMFDrmAudioPlayerUtility::ConstructL
708 // (other items were commented in a header).
709 // -----------------------------------------------------------------------------
711 void CMMFDrmAudioPlayerUtility::ConstructL(
712 const TDesC& aFileName,
714 TMdaPriorityPreference aPref)
718 iDrmSession->Send(EDRMPlayServSetPriorityPreference,TIpcArgs(aPriority,aPref));
719 TDataStructPckgBuf pckgBuf;
720 TDataStruct &theStruct = pckgBuf();
724 theStruct.iPriority = aPriority;
725 theStruct.iPref = aPref;
726 iFileName = aFileName;
728 iState = EInitializing;
731 iDrmSession->Send(EDRMPlayServNewFilePlayerL,TIpcArgs(&iAsyncCallback,&pckgBuf,&iErrorDurationStruct,&iFileName),iStatus);
736 User::Leave(KErrNotReady);
740 // -----------------------------------------------------------------------------
741 // CMMFDrmAudioPlayerUtility::ConstructL
743 // (other items were commented in a header).
744 // -----------------------------------------------------------------------------
746 void CMMFDrmAudioPlayerUtility::ConstructL(
749 TMdaPriorityPreference aPref)
752 TDataStruct theStruct;
754 theStruct.iData = aData;
755 iDrmSession->Send(EDRMPlayServSetPriorityPreference,TIpcArgs(aPriority,aPref));
757 TDataStructPckgBuf pckg(theStruct);
759 iState = EInitializing;
762 iDrmSession->Send(EDRMPlayServNewDesPlayerL,TIpcArgs(&iAsyncCallback,&pckg,&iErrorDurationStruct),iStatus);
767 User::Leave(KErrNotReady);
771 // -----------------------------------------------------------------------------
772 // CMMFDrmAudioPlayerUtility::ConstructReadOnlyL
774 // (other items were commented in a header).
775 // -----------------------------------------------------------------------------
777 void CMMFDrmAudioPlayerUtility::ConstructReadOnlyL(
780 TMdaPriorityPreference aPref)
783 TDataStruct theStruct;
785 theStruct.iData = aData;
786 iDrmSession->Send(EDRMPlayServSetPriorityPreference,TIpcArgs(aPriority,aPref));
788 TDataStructPckgBuf pckg(theStruct);
790 iState = EInitializing;
793 iDrmSession->Send(EDRMPlayServNewDesPlayerReadOnlyL,TIpcArgs(&iAsyncCallback,&pckg,&iErrorDurationStruct),iStatus);
798 User::Leave(KErrNotReady);
802 // -----------------------------------------------------------------------------
803 // CMMFDrmAudioPlayerUtility::ConnectL
805 // (other items were commented in a header).
806 // -----------------------------------------------------------------------------
808 void CMMFDrmAudioPlayerUtility::ConnectL()
810 CActiveScheduler::Add(this);
811 iDrmSession = new(ELeave) RDrmSession();
812 User::LeaveIfError( iDrmSession->Connect() );
815 // -----------------------------------------------------------------------------
816 // CMMFDrmAudioPlayerUtility::OpenFileL
818 // (other items were commented in a header).
819 // -----------------------------------------------------------------------------
821 void CMMFDrmAudioPlayerUtility::OpenFileL(
822 const TDesC& aFileName)
824 iState = EInitializing;
827 iDrmSession->Send(EDRMPlayServOpenFile,TIpcArgs(&iAsyncCallback,&aFileName,&iErrorDurationStruct),iStatus);
832 User::Leave(KErrNotReady);
836 // -----------------------------------------------------------------------------
837 // CMMFDrmAudioPlayerUtility::OpenFileL
839 // (other items were commented in a header).
840 // -----------------------------------------------------------------------------
842 void CMMFDrmAudioPlayerUtility::OpenFileL(
846 aFile.TransferToServer(ipcArgs, 1, 3);
847 ipcArgs.Set(0,&iAsyncCallback);
848 ipcArgs.Set(2,&iErrorDurationStruct);
849 iState = EInitializing;
852 iDrmSession->Send(EDRMPlayServOpenFileByHandle,ipcArgs,iStatus);
857 User::Leave(KErrNotReady);
861 // -----------------------------------------------------------------------------
862 // CMMFDrmAudioPlayerUtility::OpenFileL
864 // (other items were commented in a header).
865 // -----------------------------------------------------------------------------
867 #ifdef SYMBIAN_CAF_V2
868 void CMMFDrmAudioPlayerUtility::OpenFileL(const TMMSource& aSource)
870 if (aSource.SourceType()==KUidMMFileHandleSource)
872 #ifdef SYMBIAN_SECURITY_CAF_RFILE_HANDLE
873 RFile& fileHandle = static_cast<const TMMFileHandleSource&>(aSource).Handle();
874 OpenFileL(fileHandle);
876 User::Leave(KErrNotSupported);
879 if (aSource.SourceType()==KUidMMFileSource)
881 const TDesC& fileName = static_cast<const TMMFileSource&>(aSource).Name();
888 // -----------------------------------------------------------------------------
889 // CMMFDrmAudioPlayerUtility::OpenDesL
891 // (other items were commented in a header).
892 // -----------------------------------------------------------------------------
894 void CMMFDrmAudioPlayerUtility::OpenDesL(
895 const TDesC8& aDescriptor)
897 iStatus = EInitializing;
900 iDrmSession->Send(EDRMPlayServOpenDes,TIpcArgs(&iAsyncCallback,&aDescriptor,&iErrorDurationStruct),iStatus);
905 User::Leave(KErrNotReady);
909 // -----------------------------------------------------------------------------
910 // CMMFDrmAudioPlayerUtility::OpenUrlL
912 // (other items were commented in a header).
913 // -----------------------------------------------------------------------------
915 void CMMFDrmAudioPlayerUtility::OpenUrlL(
918 const TDesC8& aMimeType)
920 TUrlStruct theStruct;
922 theStruct.iUrl = aUrl;
923 theStruct.iIapId = aIapId;
924 theStruct.iMimeType = aMimeType;
926 TUrlStructPckgBuf pckg(theStruct);
927 iStatus = EInitializing;
930 iDrmSession->Send(EDRMPlayServOpenUrl,TIpcArgs(&iAsyncCallback,&pckg,&iErrorDurationStruct),iStatus);
935 User::Leave(KErrNotReady);
939 // -----------------------------------------------------------------------------
940 // CMMFDrmAudioPlayerUtility::Play
942 // (other items were commented in a header).
943 // -----------------------------------------------------------------------------
945 void CMMFDrmAudioPlayerUtility::Play()
947 if (iState != EPlaying)
953 iDrmSession->Send(EDRMPlayServPlay,TIpcArgs(&iAsyncCallback,0,&iErrorDurationStruct),iStatus);
958 // -----------------------------------------------------------------------------
959 // CMMFDrmAudioPlayerUtility::Stop
961 // (other items were commented in a header).
962 // -----------------------------------------------------------------------------
964 void CMMFDrmAudioPlayerUtility::Stop()
966 iDrmSession->Send(EDRMPlayServStop);
975 // -----------------------------------------------------------------------------
976 // CMMFDrmAudioPlayerUtility::Pause
978 // (other items were commented in a header).
979 // -----------------------------------------------------------------------------
981 TInt CMMFDrmAudioPlayerUtility::Pause()
983 iDrmSession->Send(EDRMPlayServPause);
988 // -----------------------------------------------------------------------------
989 // CMMFDrmAudioPlayerUtility::Close
991 // (other items were commented in a header).
992 // -----------------------------------------------------------------------------
994 void CMMFDrmAudioPlayerUtility::Close()
1000 iDrmSession->Send(EDRMPlayServClose);
1003 // -----------------------------------------------------------------------------
1004 // CMMFDrmAudioPlayerUtility::SetVolume
1006 // (other items were commented in a header).
1007 // -----------------------------------------------------------------------------
1009 void CMMFDrmAudioPlayerUtility::SetVolume(
1012 iDrmSession->Send(EDRMPlayServSetVolume,TIpcArgs(aVolume));
1015 // -----------------------------------------------------------------------------
1016 // CMMFDrmAudioPlayerUtility::SetRepeats
1018 // (other items were commented in a header).
1019 // -----------------------------------------------------------------------------
1021 void CMMFDrmAudioPlayerUtility::SetRepeats(
1022 TInt aRepeatNumberOfTimes,
1023 const TTimeIntervalMicroSeconds& aTrailingSilence)
1026 TPckgTTimeIntervalMicroSeconds trailingSilencePckg(aTrailingSilence);
1027 iDrmSession->Send(EDRMPlayServSetRepeats,TIpcArgs(aRepeatNumberOfTimes,&trailingSilencePckg));
1030 // -----------------------------------------------------------------------------
1031 // CMMFDrmAudioPlayerUtility::SetVolumeRamp
1033 // (other items were commented in a header).
1034 // -----------------------------------------------------------------------------
1036 void CMMFDrmAudioPlayerUtility::SetVolumeRamp(
1037 const TTimeIntervalMicroSeconds& aRampDuration)
1040 TPckgTTimeIntervalMicroSeconds volumeRampPckg(aRampDuration);
1041 iDrmSession->Send(EDRMPlayServSetVolumeRamp,TIpcArgs(&volumeRampPckg));
1044 // -----------------------------------------------------------------------------
1045 // CMMFDrmAudioPlayerUtility::SetPriority
1047 // (other items were commented in a header).
1048 // -----------------------------------------------------------------------------
1050 TInt CMMFDrmAudioPlayerUtility::SetPriority(
1052 TMdaPriorityPreference aPref)
1054 return iDrmSession->Send(EDRMPlayServSetPriority,TIpcArgs(aPriority,aPref));
1057 // -----------------------------------------------------------------------------
1058 // CMMFDrmAudioPlayerUtility::Duration
1060 // (other items were commented in a header).
1061 // -----------------------------------------------------------------------------
1063 const TTimeIntervalMicroSeconds& CMMFDrmAudioPlayerUtility::Duration()
1065 TPckgBufTTimeIntervalMicroSeconds pckg;
1066 iDrmSession->Send(EDRMPlayServDuration,TIpcArgs(&pckg));
1071 // -----------------------------------------------------------------------------
1072 // CMMFDrmAudioPlayerUtility::MaxVolume
1074 // (other items were commented in a header).
1075 // -----------------------------------------------------------------------------
1077 TInt CMMFDrmAudioPlayerUtility::MaxVolume()
1079 return iDrmSession->Send(EDRMPlayServMaxVolume);
1082 // -----------------------------------------------------------------------------
1083 // CMMFDrmAudioPlayerUtility::GetPosition
1085 // (other items were commented in a header).
1086 // -----------------------------------------------------------------------------
1088 TInt CMMFDrmAudioPlayerUtility::GetPosition(
1089 TTimeIntervalMicroSeconds& aPosition)
1091 TPckgTTimeIntervalMicroSeconds thePositionPckg(aPosition);
1092 TInt ret = iDrmSession->Send(EDRMPlayServGetPosition,TIpcArgs(&thePositionPckg));
1093 aPosition = thePositionPckg();
1097 // -----------------------------------------------------------------------------
1098 // CMMFDrmAudioPlayerUtility::SetPosition
1100 // (other items were commented in a header).
1101 // -----------------------------------------------------------------------------
1103 void CMMFDrmAudioPlayerUtility::SetPosition(
1104 const TTimeIntervalMicroSeconds& aPosition)
1106 TSetPositionStruct sendPckg;
1107 sendPckg.iPosition = aPosition;
1109 TSetPositionStructBuf pckg(sendPckg);
1110 iDrmSession->Send(EDRMPlayServSetPosition,TIpcArgs(&pckg));
1113 // -----------------------------------------------------------------------------
1114 // CMMFDrmAudioPlayerUtility::GetVolume
1116 // (other items were commented in a header).
1117 // -----------------------------------------------------------------------------
1119 TInt CMMFDrmAudioPlayerUtility::GetVolume(TInt& aVolume)
1121 TInt theReturnValue;
1122 TPckgBufTInt theVolume;
1123 theReturnValue = iDrmSession->Send(EDRMPlayServGetVolume,TIpcArgs(&theVolume));
1124 aVolume = theVolume();
1125 return theReturnValue;
1128 // -----------------------------------------------------------------------------
1129 // CMMFDrmAudioPlayerUtility::GetNumberOfMetaDataEntries
1131 // (other items were commented in a header).
1132 // -----------------------------------------------------------------------------
1134 TInt CMMFDrmAudioPlayerUtility::GetNumberOfMetaDataEntries(
1137 TPckgBufTInt theNumEntries;
1138 TInt retValue = iDrmSession->Send(EDRMPlayServGetNumberOfMetaDataEntries,TIpcArgs(&theNumEntries));
1139 aNumEntries = theNumEntries();
1143 // -----------------------------------------------------------------------------
1144 // CMMFDrmAudioPlayerUtility::GetMetaDataEntryL
1146 // (other items were commented in a header).
1147 // -----------------------------------------------------------------------------
1149 CMMFMetaDataEntry* CMMFDrmAudioPlayerUtility::GetMetaDataEntryL(
1150 TInt aMetaDataIndex)
1153 iDrmSession->Send(EDRMPlayServGetMetaDataEntry,TIpcArgs(aMetaDataIndex,&data));
1154 delete iMetaDataBuffer;
1155 iMetaDataBuffer = NULL;
1156 iMetaDataBuffer = CBufFlat::NewL(32);
1157 HBufC8* theData = data.Alloc();
1158 iMetaDataBuffer->InsertL(0,theData->Des());
1160 s.Open(*iMetaDataBuffer);
1161 CleanupClosePushL(s);
1162 CMMFMetaDataEntry* theMetaDataEntry = CMMFMetaDataEntry::NewL();
1163 theMetaDataEntry->InternalizeL(s);
1164 CleanupStack::PopAndDestroy();//s
1165 return theMetaDataEntry;
1168 // -----------------------------------------------------------------------------
1169 // CMMFDrmAudioPlayerUtility::SetPlayWindow
1171 // (other items were commented in a header).
1172 // -----------------------------------------------------------------------------
1174 TInt CMMFDrmAudioPlayerUtility::SetPlayWindow(
1175 const TTimeIntervalMicroSeconds& aPlayStart,
1176 const TTimeIntervalMicroSeconds& aPlayEnd)
1178 TPlayWindowStruct sendPckg;
1179 sendPckg.iPlayStart = aPlayStart;
1180 sendPckg.iPlayEnd = aPlayEnd;
1182 TPlayWindowStructBuf pckg(sendPckg);
1184 return iDrmSession->Send(EDRMPlayServSetPlayWindow,TIpcArgs(&pckg));
1187 // -----------------------------------------------------------------------------
1188 // CMMFDrmAudioPlayerUtility::ClearPlayWindow
1190 // (other items were commented in a header).
1191 // -----------------------------------------------------------------------------
1193 TInt CMMFDrmAudioPlayerUtility::ClearPlayWindow()
1195 return iDrmSession->Send(EDRMPlayServClearPlayWindow);
1198 // -----------------------------------------------------------------------------
1199 // CMMFDrmAudioPlayerUtility::SetBalance
1201 // (other items were commented in a header).
1202 // -----------------------------------------------------------------------------
1204 TInt CMMFDrmAudioPlayerUtility::SetBalance(
1207 return iDrmSession->Send(EDRMPlayServSetBalance,TIpcArgs(aBalance));
1210 // -----------------------------------------------------------------------------
1211 // CMMFDrmAudioPlayerUtility::GetBitRate
1213 // (other items were commented in a header).
1214 // -----------------------------------------------------------------------------
1216 TInt CMMFDrmAudioPlayerUtility::GetBitRate(
1220 TInt retValue = iDrmSession->Send(EDRMPlayServGetBitRate,TIpcArgs(&pckg));
1225 // -----------------------------------------------------------------------------
1226 // CMMFDrmAudioPlayerUtility::ControllerImplementationInformationL
1228 // (other items were commented in a header).
1229 // -----------------------------------------------------------------------------
1231 const CMMFControllerImplementationInformation& CMMFDrmAudioPlayerUtility::ControllerImplementationInformationL()
1234 iDrmSession->Send(EDRMPlayServControllerImplementationInformation,TIpcArgs(&theUid));
1235 iControllerImplementationInformation = CMMFControllerImplementationInformation::NewL(theUid);
1236 return *iControllerImplementationInformation;
1239 // -----------------------------------------------------------------------------
1240 // CMMFDrmAudioPlayerUtility::GetAudioLoadingProgressL
1242 // (other items were commented in a header).
1243 // -----------------------------------------------------------------------------
1245 void CMMFDrmAudioPlayerUtility::GetAudioLoadingProgressL(
1246 TInt& aPercentageProgress)
1249 iDrmSession->Send(EDRMPlayServGetAudioLoadingProgress,TIpcArgs(&pckg));
1250 aPercentageProgress = pckg();
1253 // -----------------------------------------------------------------------------
1254 // CMMFDrmAudioPlayerUtility::CustomCommandSync
1256 // (other items were commented in a header).
1257 // -----------------------------------------------------------------------------
1259 TInt CMMFDrmAudioPlayerUtility::CustomCommandSync(
1260 const TMMFMessageDestinationPckg& aDestination,
1262 const TDesC8& aDataTo1,
1263 const TDesC8& aDataTo2,
1266 TInt theReturnValue(KErrPermissionDenied);
1268 TPckgCustomCommand thePckg;
1269 thePckg().iDestination = aDestination;
1270 thePckg().iFunction = aFunction;
1272 RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandSync:IFId[%x]DestHndl[%x]Fn[%d]RetDesLen[%d]"),
1273 thePckg().iDestination().InterfaceId(),
1274 thePckg().iDestination().DestinationHandle(),
1275 thePckg().iFunction,
1276 aDataFrom.Length());
1278 // Only Pass 'Allowed CustomCommand
1279 if ( IsValidCustomCommandDestination(aDestination().InterfaceId(), aDataTo1) )
1281 theReturnValue = iDrmSession->Send( EDRMPlayServCustomCommandSyncWithReturn,
1282 TIpcArgs(&thePckg, &aDataTo1, &aDataTo2, &aDataFrom));
1284 return theReturnValue;
1287 // -----------------------------------------------------------------------------
1288 // CMMFDrmAudioPlayerUtility::CustomCommandSync
1290 // (other items were commented in a header).
1291 // -----------------------------------------------------------------------------
1293 TInt CMMFDrmAudioPlayerUtility::CustomCommandSync(
1294 const TMMFMessageDestinationPckg& aDestination,
1296 const TDesC8& aDataTo1,
1297 const TDesC8& aDataTo2)
1299 TInt theReturnValue(KErrPermissionDenied);
1301 TPckgCustomCommand thePckg;
1302 thePckg().iDestination = aDestination;
1303 thePckg().iFunction = aFunction;
1305 RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandSync:IFId[%x]DestHndl[%x]Fn[%d]"),
1306 thePckg().iDestination().InterfaceId(),
1307 thePckg().iDestination().DestinationHandle(),
1308 thePckg().iFunction);
1310 // Only Pass 'Allowed CustomCommand
1311 if ( IsValidCustomCommandDestination(aDestination().InterfaceId(), aDataTo1) )
1313 theReturnValue = iDrmSession->Send( EDRMPlayServCustomCommandSyncWithoutReturn,
1314 TIpcArgs(&thePckg, &aDataTo1, &aDataTo2));
1316 return theReturnValue;
1319 // -----------------------------------------------------------------------------
1320 // CMMFDrmAudioPlayerUtility::CustomCommandAsync
1322 // (other items were commented in a header).
1323 // -----------------------------------------------------------------------------
1325 void CMMFDrmAudioPlayerUtility::CustomCommandAsync(
1326 const TMMFMessageDestinationPckg& aDestination,
1328 const TDesC8& aDataTo1,
1329 const TDesC8& aDataTo2,
1331 TRequestStatus& aStatus )
1333 TPckgCustomCommand thePckg;
1334 thePckg().iDestination = aDestination;
1335 thePckg().iFunction = aFunction;
1336 TInt status(KErrPermissionDenied);
1338 RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandAsync:IFId[%x]DestHndl[%x]Fn[%d]Data1[Len:%d]Data2Len[Len:%d]RetDesLen[Len:%d:MaxLen:%d]"),
1339 thePckg().iDestination().InterfaceId(),
1340 thePckg().iDestination().DestinationHandle(),
1341 thePckg().iFunction,
1345 aDataFrom.MaxLength() );
1347 // Only Pass 'Allowed CustomCommand
1348 if ( IsValidCustomCommandDestination(aDestination().InterfaceId(), aDataTo1) )
1350 // Send in two steps, data in first step and async request in second step
1351 // othewise thePckg will become invalid when tried to read from server
1352 status = iDrmSession->Send( EDRMPlayServCustomCommandAsyncWithReturnStep1,
1353 TIpcArgs(&thePckg, &aDataTo1, &aDataTo2) );
1354 if ( status == KErrNone )
1356 // Pass descriptor place holder to get data back in the async call
1357 iDrmSession->Send( EDRMPlayServCustomCommandAsyncWithReturnStep2,
1358 TIpcArgs(&aDataFrom),
1364 RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandAsync:IFId[%x]DestHndl[%x]Fn[%d]Data1[Len:%d]Data2Len[Len:%d]RetDesLen[Len:%d:MaxLen:%d]DRM Proxy CustCmdAsyncWRet Step1[%d]"),
1365 thePckg().iDestination().InterfaceId(),
1366 thePckg().iDestination().DestinationHandle(),
1367 thePckg().iFunction,
1371 aDataFrom.MaxLength(),
1376 if ( status != KErrNone )
1378 TRequestStatus* s = &aStatus;
1379 User::RequestComplete( s , status );
1383 // -----------------------------------------------------------------------------
1384 // CMMFDrmAudioPlayerUtility::CustomCommandAsync
1386 // (other items were commented in a header).
1387 // -----------------------------------------------------------------------------
1389 void CMMFDrmAudioPlayerUtility::CustomCommandAsync(
1390 const TMMFMessageDestinationPckg& aDestination,
1392 const TDesC8& aDataTo1,
1393 const TDesC8& aDataTo2,
1394 TRequestStatus& aStatus)
1396 TPckgCustomCommand thePckg;
1397 thePckg().iDestination = aDestination;
1398 thePckg().iFunction = aFunction;
1400 TInt status(KErrPermissionDenied);
1402 RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandAsync:IFId[%x]DestHndl[%x]Fn[%d]Data1[Len:%d]Data2Len[Len:%d]"),
1403 thePckg().iDestination().InterfaceId(),
1404 thePckg().iDestination().DestinationHandle(),
1405 thePckg().iFunction,
1407 aDataTo2.Length() );
1409 // Only Pass 'Allowed CustomCommand
1410 if ( IsValidCustomCommandDestination(aDestination().InterfaceId(), aDataTo1) )
1412 // Send in two steps, data in first step and async request in second step
1413 // othewise thePckg will become invalid when tried to read from server
1414 status = iDrmSession->Send( EDRMPlayServCustomCommandAsyncWithoutReturnStep1,
1415 TIpcArgs(&thePckg, &aDataTo1, &aDataTo2) );
1416 if ( status == KErrNone )
1418 iDrmSession->Send( EDRMPlayServCustomCommandAsyncWithoutReturnStep2,
1425 RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandAsync:IFId[%x]DestHndl[%x]Fn[%d]Data1[Len:%d]Data2Len[Len:%d]DRM Proxy CustCmdAsyncWoRet Step1[%d]"),
1426 thePckg().iDestination().InterfaceId(),
1427 thePckg().iDestination().DestinationHandle(),
1428 thePckg().iFunction,
1435 if ( status != KErrNone )
1437 TRequestStatus* s = &aStatus;
1438 User::RequestComplete( s , status );
1442 // -----------------------------------------------------------------------------
1443 // CMMFDrmAudioPlayerUtility::GetBalance
1445 // (other items were commented in a header).
1446 // -----------------------------------------------------------------------------
1448 TInt CMMFDrmAudioPlayerUtility::GetBalance(
1451 TPckgBufTInt theBalance;
1453 TInt retValue = iDrmSession->Send(EDRMPlayServGetBalance,TIpcArgs(&theBalance));
1454 aBalance = theBalance();
1458 // -----------------------------------------------------------------------------
1459 // CMMFDrmAudioPlayerUtility::RegisterForAudioLoadingNotification
1461 // (other items were commented in a header).
1462 // -----------------------------------------------------------------------------
1464 void CMMFDrmAudioPlayerUtility::RegisterForAudioLoadingNotification(
1465 MAudioLoadingObserver& aLoadingObserver)
1467 iAsyncCallback() = ELoadingStarted;
1468 iLoadingObserver = &aLoadingObserver;
1469 iDrmSession->Send(EDRMPlayServRegisterForAudioLoadingNotification,TIpcArgs(&iAsyncCallback));
1473 // -----------------------------------------------------------------------------
1474 // CMMFDrmAudioPlayerUtility::DoCancel
1476 // (other items were commented in a header).
1477 // -----------------------------------------------------------------------------
1479 void CMMFDrmAudioPlayerUtility::DoCancel()
1483 // -----------------------------------------------------------------------------
1484 // CMMFDrmAudioPlayerUtility::RunL
1486 // (other items were commented in a header).
1487 // -----------------------------------------------------------------------------
1489 void CMMFDrmAudioPlayerUtility::RunL()
1491 DEP_PRN1(_L("CMMFDrmAudioPlayerUtility::RunL:iStatus[%d]"), iStatus.Int());
1493 if (iState == EPaused)
1497 if ( iStatus.Int() == KErrCancel )
1499 switch (iAsyncCallback())
1502 if (iState != EIdle)
1504 DEP_PRN0(_L("CMMFDrmAudioPlayerUtility::RunL - InitComplete"));
1506 iCallback.MdapcInitComplete(iErrorDurationStruct().iError, iErrorDurationStruct().iDuration);
1511 DEP_PRN0(_L("CMMFDrmAudioPlayerUtility::RunL - PlayComplete"));
1513 iCallback.MdapcPlayComplete(iErrorDurationStruct().iError);
1516 case ELoadingStarted:
1517 DEP_PRN0(_L("CMMFDrmAudioPlayerUtility::RunL - MaloLoadingStarted"));
1519 iDrmSession->Send(EDRMPlayServRegisterForAudioLoadingNotification,TIpcArgs(&iAsyncCallback),iStatus);
1521 iLoadingObserver->MaloLoadingStarted();
1524 case ELoadingComplete:
1525 DEP_PRN0(_L("CMMFDrmAudioPlayerUtility::RunL - MaloLoadingComplete"));
1527 iAsyncCallback() = ELoadingStarted;
1528 iLoadingObserver->MaloLoadingComplete();
1536 TBool CMMFDrmAudioPlayerUtility::IsValidCustomCommandDestination(TUid aDestinationUid, const TDesC8& aParam)
1538 TBool retValue(ETrue);
1539 if (aDestinationUid == KUidInterfaceMMFDRMControl)
1543 else if ( aDestinationUid == KUidCustomInterfaceBuilderImpl )
1545 TRAPD(err, retValue = CheckCustomInterfaceBuilderImplL(aParam));
1546 if((err != KErrNone) || (retValue == EFalse))
1552 TBool CMMFDrmAudioPlayerUtility::CheckCustomInterfaceBuilderImplL(const TDesC8& aParam)
1554 TBool retValue(ETrue);
1555 RDesReadStream stream(aParam);
1556 CleanupClosePushL(stream);
1558 paramUid.iUid = stream.ReadInt32L();
1559 CleanupStack::PopAndDestroy(&stream);
1560 if ( paramUid == KUidAudioOutput )