Update contrib.
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 Play Session
19 #include "DRMPlaySession.h"
23 #include <mmf/common/mmfcontrollerframework.h>
24 #ifdef RD_TSP_CLIENT_MAPPER
25 #include <tspclientmapper.h>
26 #endif // #ifdef RD_TSP_CLIENT_MAPPER
29 #define DEP_PRN0(str) RDebug::Print(str)
30 #define DEP_PRN1(str, v1) RDebug::Print(str, v1)
31 #define DEP_PRN2(str, v1, v2) RDebug::Print(str, v1, v2)
34 #define DEP_PRN1(str, v1)
35 #define DEP_PRN2(str, v1, v2)
38 // This is the UID defined by custom interface builder
39 const TUid KUidCustomInterfaceBuilderImpl = {0x10207A8E};
42 void CDRMPlayServerSession::PanicClient(const RMessage2 &aMessage, TInt aPanic) const
44 _LIT(KTxtServer,"DRM Play server");
45 aMessage.Panic(KTxtServer,aPanic);
48 CDRMPlayServerSession::CDRMPlayServerSession(CDRMPlayServer* aServer)
54 CDRMPlayServerSession* CDRMPlayServerSession::NewL(CDRMPlayServer* aServer, const RMessage2& aMessage )
56 DEP_PRN0(_L("CDRMPlayServerSession::NewL"));
58 CDRMPlayServerSession* self = new(ELeave) CDRMPlayServerSession(aServer);
59 CleanupStack::PushL(self);
60 self->ConstructL( aMessage );
61 CleanupStack::Pop(self);
65 #ifdef RD_TSP_CLIENT_MAPPER
66 void CDRMPlayServerSession::ConstructL( const RMessage2& aMessage )
68 void CDRMPlayServerSession::ConstructL( const RMessage2& /*aMessage*/ )
69 #endif //RD_TSP_CLIENT_MAPPER
71 #ifdef RD_TSP_CLIENT_MAPPER
72 iTSPClientMapper = CTspClientMapper::NewL();
73 // Get client process ID
75 RProcess clientProcess;
76 // Open client thread and process handles
77 User::LeaveIfError( aMessage.Client(clientThread) );
78 User::LeaveIfError( clientThread.Process(clientProcess) );
80 iClientProcessId = clientProcess.Id();
81 // Close client thread and client process handles
83 clientProcess.Close();
85 iTSPClientMapper->SetTspTargetClient(
86 CTspClientMapper::ERegisteredClients,
88 #endif // #ifdef RD_TSP_CLIENT_MAPPER
90 // Increment number of sessions in server
93 DEP_PRN1(_L("CDRMPlayServerSession::iClients = %d"), iServer->iClients);
96 CDRMPlayServerSession::~CDRMPlayServerSession()
100 delete iMetaDataBuffer;
101 iMetaDataBuffer = NULL;
103 // Delete any pending message objects
104 // This will never happen, only happens when
105 // Client closes the session in the middle of playback
106 // but we cannot complete the message as RSession Handle is invalid
109 iMessage2->Complete(KErrCancel);
118 // Delete play utility
124 //delete iAsyncCallback;
125 //iAsyncCallback = NULL;
127 #ifdef RD_TSP_CLIENT_MAPPER
128 if (iTSPClientMapper)
131 TInt status = iTSPClientMapper->RemoveTspTargetClient(
132 CTspClientMapper::ERegisteredClients,
134 DEP_PRN2(_L("CDRMPlayServerSession::~CDRMPlayServerSession:Unreg PID[%x]Status[%d]"), iClientProcessId.Id(), status );
135 delete iTSPClientMapper;
137 #endif // #ifdef RD_TSP_CLIENT_MAPPER
139 // Cancel any pending async messages.
141 CDRMCustomCommandAsyncAO* tempAO(NULL);
142 for (;index < iActiveAsyncCustomCommands.Count(); index++)
144 tempAO = iActiveAsyncCustomCommands[0];
145 if ( iCDRMCustomCommandAsyncAO2Phase == tempAO )
147 iCDRMCustomCommandAsyncAO2Phase = NULL;
150 iActiveAsyncCustomCommands.Remove(0);
152 iActiveAsyncCustomCommands.Reset();
153 iActiveAsyncCustomCommands.Close();
155 delete iCDRMCustomCommandAsyncAO2Phase;
159 if(!iServer->iClients)
161 CActiveScheduler::Stop();
165 void CDRMPlayServerSession::ServiceL(const RMessage2& aMessage)
168 TRAPD(err,ret = DispatchMessageL(aMessage));
173 if(iAsyncComplete == EFalse)
175 DEP_PRN1(_L("CDRMPlayServerSession::ServiceL - ret = %d"),ret);
176 aMessage.Complete(ret);
182 // service a client request; test the opcode and then do appropriate servicing
183 TInt CDRMPlayServerSession::DispatchMessageL(const RMessage2 &aMessage)
186 iAsyncComplete= EFalse;
187 DEP_PRN1(_L("CDRMPlayServerSession::DispatchMessageL:FnId[%d]"),aMessage.Function());
188 switch (aMessage.Function())
190 case EDRMPlayServCreate:
192 case EDRMPlayServNewFilePlayerL:
194 NewFilePlayerL(aMessage);
195 iAsyncComplete = ETrue;
197 case EDRMPlayServNewDesPlayerL:
199 NewDesPlayerL(aMessage);
200 iAsyncComplete = ETrue;
202 case EDRMPlayServNewDesPlayerReadOnlyL:
204 NewDesPlayerReadOnlyL(aMessage);
205 iAsyncComplete = ETrue;
207 case EDRMPlayServNewPlayerL:
208 NewPlayerL(aMessage);
210 case EDRMPlayServOpenFile:
213 iAsyncComplete = ETrue;
215 case EDRMPlayServOpenFileByHandle:
217 OpenFileByHandleL(aMessage);
218 iAsyncComplete = ETrue;
220 case EDRMPlayServOpenFileBySource:
222 OpenFileBySourceL(aMessage);
223 iAsyncComplete = ETrue;
225 case EDRMPlayServOpenDes:
228 iAsyncComplete = ETrue;
230 case EDRMPlayServOpenUrl:
233 iAsyncComplete = ETrue;
235 case EDRMPlayServPlay:
239 iMessage2->Complete(KErrCancel);
243 iMessage2 = new (ELeave) RMessage2(aMessage);
245 iAsyncComplete = ETrue;
247 case EDRMPlayServStop:
248 if(iState == EStopped)
252 iMessage2->Complete(KErrCancel);
258 case EDRMPlayServSetVolume:
261 case EDRMPlayServSetRepeats:
262 SetRepeats(aMessage);
264 case EDRMPlayServSetVolumeRamp:
265 SetVolumeRamp(aMessage);
267 case EDRMPlayServDuration:
270 case EDRMPlayServMaxVolume:
273 case EDRMPlayServPause:
277 iMessage2->Complete(KErrCancel);
281 iAsyncComplete = EFalse;
283 case EDRMPlayServClose:
286 case EDRMPlayServGetPosition:
287 ret = GetPosition(aMessage);
289 case EDRMPlayServSetPosition:
290 SetPosition(aMessage);
292 case EDRMPlayServSetPriority:
293 ret = SetPriority(aMessage);
295 case EDRMPlayServGetVolume:
296 ret = GetVolume(aMessage);
298 case EDRMPlayServGetNumberOfMetaDataEntries:
299 ret = GetNumberOfMetaDataEntries(aMessage);
301 case EDRMPlayServGetMetaDataEntry:
302 GetMetaDataEntryL(aMessage);
304 case EDRMPlayServClearPlayWindow:
305 ret = ClearPlayWindow();
307 case EDRMPlayServSetBalance:
308 ret = SetBalance(aMessage);
310 case EDRMPlayServGetBalance:
311 ret = GetBalance(aMessage);
313 case EDRMPlayServGetBitRate:
314 ret = GetBitRate(aMessage);
316 case EDRMPlayServRegisterForAudioLoadingNotification:
318 RegisterForAudioLoadingNotification(aMessage);
319 iAsyncComplete = ETrue;
321 case EDRMPlayServGetAudioLoadingProgress:
322 GetAudioLoadingProgressL(aMessage);
324 case EDRMPlayServSetPlayWindow:
325 SetPlayWindow(aMessage);
327 case EDRMPlayServControllerImplementationInformation:
328 ControllerImplementationInformationL(aMessage);
330 case EDRMPlayServCustomCommandSyncWithReturn:
331 case EDRMPlayServCustomCommandSyncWithoutReturn:
332 CustomCommandSyncL(aMessage);
334 case EDRMPlayServCustomCommandAsyncWithReturnStep1:
335 case EDRMPlayServCustomCommandAsyncWithoutReturnStep1:
336 CustomCommandAsyncStep1L(aMessage);
337 // Setting this flag does not complete message in ServiceL,
338 iAsyncComplete = ETrue;
340 case EDRMPlayServCustomCommandAsyncWithReturnStep2:
341 case EDRMPlayServCustomCommandAsyncWithoutReturnStep2:
342 CustomCommandAsyncStep2L(aMessage);
343 // Setting this flag does not complete message in ServiceL,
344 iAsyncComplete = ETrue;
346 case EDRMPlayServSetPriorityPreference:
347 SetPriorityPreference(aMessage);
351 PanicClient(aMessage, EBadRequest);
357 void CDRMPlayServerSession::NewFilePlayerL(const RMessage2 aMessage)
359 TDataStructPckgBuf params;
361 aMessage.Read(0,iCallbackState);
362 aMessage.Read(1,params);
363 aMessage.Read(2,iErrDurPckg);
364 HBufC16* inputBuf = HBufC16::NewL(aMessage.GetDesLengthL(3));
365 TPtr16 ptr = inputBuf->Des();
366 aMessage.Read(3,ptr);
367 const TDataStruct &theStruct = params();
370 iPlayUtil = CMdaAudioPlayerUtility::NewFilePlayerL( inputBuf->Des(),
377 void CDRMPlayServerSession::NewDesPlayerL(const RMessage2 aMessage)
379 TDataStructPckgBuf thePckg;
380 aMessage.Read(0,iCallbackState);
381 aMessage.Read(1,thePckg);
382 aMessage.Read(2,iErrDurPckg);
386 iPlayUtil = CMdaAudioPlayerUtility::NewDesPlayerL(thePckg().iData,
393 void CDRMPlayServerSession::NewDesPlayerReadOnlyL(const RMessage2 aMessage)
395 TDataStructPckgBuf thePckg;
396 aMessage.Read(0,iCallbackState);
397 aMessage.Read(1,thePckg);
398 aMessage.Read(2,iErrDurPckg);
402 iPlayUtil = CMdaAudioPlayerUtility::NewDesPlayerReadOnlyL(thePckg().iData,
408 void CDRMPlayServerSession::NewPlayerL(const RMessage2 aMessage)
411 TDataStructPckgBuf thePckg;
412 aMessage.Read(0,iCallbackState);
413 aMessage.Read(1,thePckg);
414 aMessage.Read(2,iErrDurPckg);
418 iPlayUtil = CMdaAudioPlayerUtility::NewL(*this,
423 void CDRMPlayServerSession::OpenFileL(const RMessage2 &aMessage)
425 //call mmfclientaudioplayer open file
426 iFileHandleUsed = EFalse;
428 aMessage.Read(0,iCallbackState);
429 // Get the file length
430 TInt len = aMessage.GetDesLengthL(1);
431 HBufC* fileName = HBufC::NewLC(len);
432 TPtr fileNamePtr = fileName->Des();
433 aMessage.Read(1,fileNamePtr);
434 aMessage.Read(2,iErrDurPckg);
437 iPlayUtil->OpenFileL(fileNamePtr);
439 CleanupStack::PopAndDestroy(fileName);
442 void CDRMPlayServerSession::OpenFileByHandleL(const RMessage2 &aMessage)
444 iFileHandleUsed = ETrue;
445 TInt err = iFileHandle.AdoptFromClient(aMessage,1,3);
447 aMessage.Read(0,iCallbackState);
448 aMessage.Read(2,iErrDurPckg);
454 iPlayUtil->OpenFileL(iFileHandle);
463 void CDRMPlayServerSession::OpenFileBySourceL(const RMessage2 &/*aMessage*/)
468 void CDRMPlayServerSession::OpenDesL(const RMessage2 &aMessage)
470 //call mmfclientaudioplayer OpenDesL
473 aMessage.Read(0,iCallbackState);
474 aMessage.Read(1,aDes);
475 aMessage.Read(2,iErrDurPckg);
479 iPlayUtil->OpenDesL(aDes);
483 void CDRMPlayServerSession::OpenUrlL(const RMessage2 &aMessage)
485 //call mmfclientaudioplayer OpenUrlL
486 TUrlStructPckgBuf thePckg;
488 aMessage.Read(0,iCallbackState);
489 aMessage.Read(1,thePckg);
490 aMessage.Read(2,iErrDurPckg);
494 iPlayUtil->OpenUrlL(thePckg().iUrl,
496 thePckg().iMimeType);
500 void CDRMPlayServerSession::Play()
502 //call mmfclientaudioplayer Play
507 #ifdef RD_TSP_CLIENT_MAPPER
508 TInt status = iTSPClientMapper->SetTspTargetClientToOtherType(
509 CTspClientMapper::EPlayingClients,
511 DEP_PRN2(_L("CDRMPlayServerSession::Play:Change PID[%x]Status[%d]"), iClientProcessId.Id(), status );
512 #endif // #ifdef RD_TSP_CLIENT_MAPPER
516 void CDRMPlayServerSession::Stop()
518 //call mmfclientaudioplayer Stop
522 #ifdef RD_TSP_CLIENT_MAPPER
523 TInt status = iTSPClientMapper->SetTspTargetClientToOtherType(
524 CTspClientMapper::EStoppedClients,
526 DEP_PRN2(_L("CDRMPlayServerSession::Stop:Change PID[%x]Status[%d]"), iClientProcessId.Id(), status );
527 #endif // #ifdef RD_TSP_CLIENT_MAPPER
532 void CDRMPlayServerSession::SetVolume(const RMessage2 & aMessage)
534 //call mmfclientaudioplayer SetVolume
535 TInt theVolume = aMessage.Int0();
539 iPlayUtil->SetVolume(theVolume);
543 void CDRMPlayServerSession::SetRepeats(const RMessage2 &aMessage)
545 //call mmfclientaudioplayer SetRepeats
546 TInt theRepeatNumberOfTimes = aMessage.Int0();
547 TTimeIntervalMicroSeconds theTrailingSilence;
549 TPckgTTimeIntervalMicroSeconds theTrailingSilencePckg(theTrailingSilence);
550 aMessage.Read(1,theTrailingSilencePckg);
552 iPlayUtil->SetRepeats(theRepeatNumberOfTimes,theTrailingSilence);
555 void CDRMPlayServerSession::SetVolumeRamp(const RMessage2 &aMessage)
557 //call mmfclientaudioplayer SetVolumeRamp
558 TTimeIntervalMicroSeconds theRampDuration;
559 TPckgTTimeIntervalMicroSeconds theRampDurationPckg(theRampDuration);
560 aMessage.Read(0,theRampDurationPckg);
562 iPlayUtil->SetVolumeRamp(theRampDuration);
565 void CDRMPlayServerSession::Duration(const RMessage2& aMessage)
567 TTimeIntervalMicroSeconds theDuration;
568 theDuration = iPlayUtil->Duration();
570 TPckgBufTTimeIntervalMicroSeconds theDurationPckg(theDuration);
571 aMessage.Write(0,theDurationPckg);
574 TInt CDRMPlayServerSession::MaxVolume()
577 theMaxVolume = iPlayUtil->MaxVolume();
582 // API Additions since version 7.0
583 TInt CDRMPlayServerSession::Pause()
588 ret = iPlayUtil->Pause();
591 // This message should not be completed here. It should be completed in ServiceL()
592 /* if(iState == EPlaying)
594 iMessage.Complete(KErrNone);
600 void CDRMPlayServerSession::Close()
609 TInt CDRMPlayServerSession::GetPosition(const RMessage2 &aMessage)
612 TTimeIntervalMicroSeconds thePosition;
614 ret = iPlayUtil->GetPosition(thePosition);
617 TPckgTTimeIntervalMicroSeconds thePositionPckg(thePosition);
618 aMessage.Write(0,thePositionPckg);
623 void CDRMPlayServerSession::SetPosition(const RMessage2 &aMessage)
625 TTimeIntervalMicroSeconds thePosition;
626 TPckgTTimeIntervalMicroSeconds thePositionPckg(thePosition);
627 aMessage.Read(0,thePositionPckg);
628 iPlayUtil->SetPosition(thePosition);
631 TInt CDRMPlayServerSession::SetPriority(const RMessage2 &aMessage)
633 TInt thePriority = aMessage.Int0();
634 TMdaPriorityPreference thePref = (TMdaPriorityPreference)aMessage.Int1();
636 TInt ret = iPlayUtil->SetPriority(thePriority,thePref);
641 TInt CDRMPlayServerSession::GetVolume(const RMessage2 &aMessage)
644 TInt ret = iPlayUtil->GetVolume(theVolume);
645 TPckgBufTInt pckg(theVolume);
646 aMessage.Write(0,pckg);
650 TInt CDRMPlayServerSession::GetNumberOfMetaDataEntries(const RMessage2 &aMessage)
653 TInt theNumOfMetaDataEntries;
655 ret = iPlayUtil->GetNumberOfMetaDataEntries(theNumOfMetaDataEntries);
657 TPckgBufTInt pckg(theNumOfMetaDataEntries);
658 aMessage.Write(0,pckg);
664 void CDRMPlayServerSession::GetMetaDataEntryL(const RMessage2 &aMessage)
666 //Get the index of the required entry
667 TInt theIndex = aMessage.Int0();
668 CMMFMetaDataEntry* entry = iPlayUtil->GetMetaDataEntryL(theIndex);
669 CleanupStack::PushL(entry);
670 // Delete any existing buffer
673 delete iMetaDataBuffer;
674 iMetaDataBuffer = NULL;
677 // Create a buffer to hold the externalised entry
678 iMetaDataBuffer = CBufFlat::NewL(32);
680 s.Open(*iMetaDataBuffer);
681 CleanupClosePushL(s);
682 entry->ExternalizeL(s);
683 CleanupStack::PopAndDestroy(2);//s, entry
685 //Write the externalised data back to the client
686 aMessage.Write(1,iMetaDataBuffer->Ptr(0));
690 TInt CDRMPlayServerSession::SetPlayWindow(const RMessage2 &aMessage)
692 TPlayWindowStructBuf buf;
693 aMessage.Read(0,buf);
695 TTimeIntervalMicroSeconds playStart = buf().iPlayStart;
696 TTimeIntervalMicroSeconds playEnd = buf().iPlayEnd;
698 TInt ret = iPlayUtil->SetPlayWindow(playStart,playEnd);
703 TInt CDRMPlayServerSession::ClearPlayWindow()
705 return iPlayUtil->ClearPlayWindow();
708 TInt CDRMPlayServerSession::SetBalance(const RMessage2 &aMessage)
710 TInt theBalance = aMessage.Int0();
711 return iPlayUtil->SetBalance(theBalance);
714 TInt CDRMPlayServerSession::GetBalance(const RMessage2 &aMessage)
719 ret = iPlayUtil->GetBalance(theBalance);
721 TPckgBufTInt pckg(theBalance);
722 aMessage.Write(0,pckg);
727 TInt CDRMPlayServerSession::GetBitRate(const RMessage2 &aMessage)
732 ret = iPlayUtil->GetBitRate(theBitRate);
734 TPckgBufTUint pckg(theBitRate);
735 aMessage.Write(0,pckg);
740 void CDRMPlayServerSession::RegisterForAudioLoadingNotification(const RMessage2 &aMessage)
742 aMessage.Read(0,iCallbackState);
744 if(iCallbackState()==ELoadingStarted)
746 iPlayUtil->RegisterForAudioLoadingNotification(*this);
750 void CDRMPlayServerSession::GetAudioLoadingProgressL(const RMessage2 &aMessage)
752 TInt thePercentProgress;
754 iPlayUtil->GetAudioLoadingProgressL(thePercentProgress);
756 TPckgBufTInt pckg(thePercentProgress);
758 aMessage.Write(0,pckg);
761 void CDRMPlayServerSession::ControllerImplementationInformationL(const RMessage2 &aMessage)
763 const CMMFControllerImplementationInformation& x= iPlayUtil->ControllerImplementationInformationL();
765 //for now just write Uid by to client
766 typedef TPckg<TUid> TPckgTUid;
768 TPckgTUid thePckg(x.Uid());
769 aMessage.Write(0,thePckg);
773 void CDRMPlayServerSession::CustomCommandSyncL(const RMessage2 &aMessage)
775 DEP_PRN0(_L("CDRMPlayServerSession::CustomCommandSyncL:Enter"));
777 TPckgCustomCommand thePckgCustomCommand;
778 User::LeaveIfError(aMessage.Read(0,thePckgCustomCommand));
780 HBufC8* dataTo1Buf(NULL);
781 HBufC8* dataTo2Buf(NULL);
782 HBufC8* dataFromBuf(NULL);
783 TPtr8 ptr1(NULL, NULL);
784 TPtr8 ptr2(NULL, NULL);
785 TPtr8 ptr3(NULL, NULL);
788 dataTo1Buf = HBufC8::NewL(aMessage.GetDesLengthL(1));
789 CleanupStack::PushL(dataTo1Buf);
790 ptr1.Set(dataTo1Buf->Des());
791 User::LeaveIfError(aMessage.Read(1,ptr1));
793 // Check and filter the messages
794 // Dont Allow Select Custom Commands
795 if( !IsValidCustomCommandDestination(thePckgCustomCommand().iDestination().InterfaceId(), ptr1) )
796 User::Leave(KErrAccessDenied);
799 dataTo2Buf = HBufC8::NewL(aMessage.GetDesLengthL(2));
800 CleanupStack::PushL(dataTo2Buf);
801 ptr2.Set(dataTo2Buf->Des());
802 User::LeaveIfError(aMessage.Read(2,ptr2));
804 if ( aMessage.Function() == EDRMPlayServCustomCommandSyncWithReturn )
807 dataFromBuf = HBufC8::NewL(aMessage.GetDesLengthL(3));
808 CleanupStack::PushL(dataFromBuf);
809 ptr3.Set(dataFromBuf->Des());
810 User::LeaveIfError(aMessage.Read(3,ptr3));
812 RDebug::Print(_L("CDRMPlayServerSession::CustomCommandSync:IFId[%x]DestHndl[%x]Fn[%d]RetDesLen[%d]"),
813 thePckgCustomCommand().iDestination().InterfaceId(),
814 thePckgCustomCommand().iDestination().DestinationHandle(),
815 thePckgCustomCommand().iFunction,
818 // Call CustomCommandSync on play util
819 User::LeaveIfError(iPlayUtil->CustomCommandSync(
820 thePckgCustomCommand().iDestination,
821 thePckgCustomCommand().iFunction,
825 User::LeaveIfError(aMessage.Write(3,ptr3));
827 // Free heap allocated for data3
828 CleanupStack::PopAndDestroy(dataFromBuf);
833 RDebug::Print(_L("CDRMPlayServerSession::CustomCommandSync:IFId[%x]DestHndl[%x]Fn[%d]"),
834 thePckgCustomCommand().iDestination().InterfaceId(),
835 thePckgCustomCommand().iDestination().DestinationHandle(),
836 thePckgCustomCommand().iFunction );
838 // Call CustomCommandSync on play util
839 User::LeaveIfError(iPlayUtil->CustomCommandSync(
840 thePckgCustomCommand().iDestination,
841 thePckgCustomCommand().iFunction,
846 // Free heap allocated for data2
847 CleanupStack::PopAndDestroy(dataTo2Buf);
848 // Free heap allocated for data1
849 CleanupStack::PopAndDestroy(dataTo1Buf);
851 DEP_PRN0(_L("CDRMPlayServerSession::CustomCommandSyncL:Exit"));
854 void CDRMPlayServerSession::CustomCommandAsyncStep1L( const RMessage2& aMessage )
856 DEP_PRN0(_L("CDRMPlayServerSession::CustomCommandAsyncStep1L:Enter"));
858 // If there is a pending phase1, then there is something wrong.
859 if ( iCDRMCustomCommandAsyncAO2Phase )
861 User::Leave(KErrAlreadyExists);
864 if ( aMessage.Function() == EDRMPlayServCustomCommandAsyncWithReturnStep1 )
866 iCDRMCustomCommandAsyncAO2Phase = CDRMCustomCommandAsyncAO::NewL(
868 CDRMCustomCommandAsyncAO::ECustomCommandWithResult,
871 else /*if ( aMessage.Function() == EDRMPlayServCustomCommandAsyncWithoutReturnStep1 )*/
873 iCDRMCustomCommandAsyncAO2Phase = CDRMCustomCommandAsyncAO::NewL(
875 CDRMCustomCommandAsyncAO::ECustomCommandWithoutResult,
878 // Get reference to data1 descriptor
879 TPtr8 data1Ptr(iCDRMCustomCommandAsyncAO2Phase->GetData1FromClient()->Des());
881 // Check and filter the messages
882 // Dont Allow Select Custom Commands
883 if( !IsValidCustomCommandDestination((iCDRMCustomCommandAsyncAO2Phase->GetMMFMessageDestinationPckg())().InterfaceId(), data1Ptr) )
885 User::Leave( KErrAccessDenied );
888 aMessage.Complete( KErrNone );
889 DEP_PRN0(_L("CDRMPlayServerSession::CustomCommandAsyncStep1L:Exit"));
892 void CDRMPlayServerSession::CustomCommandAsyncStep2L( const RMessage2& aMessage )
894 DEP_PRN0(_L("CDRMPlayServerSession::CustomCommandAsyncStep2L:Enter"));
896 // Read info from client session
897 TPtr8 data1Ptr(NULL,NULL);
898 TPtr8 data2Ptr(NULL,NULL);
899 TPtr8 dataToClientPtr(NULL,NULL);
901 // If there is no pending phase1, then there is something wrong.
902 if ( !iCDRMCustomCommandAsyncAO2Phase )
904 User::Leave(KErrNotReady);
907 // Add custCmdAsyncAO object to array of async custom command objects
908 iActiveAsyncCustomCommands.AppendL( iCDRMCustomCommandAsyncAO2Phase );
910 // aMessage ownership is transferred to custCmdAsyncAO.
911 // After succesful transfer, aMessage should not be completed
912 // anywhere outside of this object.
913 iCDRMCustomCommandAsyncAO2Phase->TransferOwnershipL(aMessage);
915 CDRMCustomCommandAsyncAO* drmCCAsyncAO = iCDRMCustomCommandAsyncAO2Phase;
916 iCDRMCustomCommandAsyncAO2Phase = NULL;
918 // Get reference to descriptors
919 data1Ptr.Set(drmCCAsyncAO->GetData1FromClient()->Des());
920 data2Ptr.Set(drmCCAsyncAO->GetData2FromClient()->Des());
922 // Make call on controller
923 drmCCAsyncAO->SetActive();
924 if ( aMessage.Function() == EDRMPlayServCustomCommandAsyncWithReturnStep2 )
926 // If date needs to be returned, get reference to the descriptor
927 dataToClientPtr.Set(drmCCAsyncAO->GetDataToClient()->Des());
929 RDebug::Print(_L("CDRMPlayServerSession::CustomCommandAsyncStep2L:IFId[%x]DestHndl[%x]Fn[%d]Data1[Len:%d:MaxLen:%d]Data2Len[Len:%d:MaxLen:%d]RetDesLen[Len:%d:MaxLen:%d]"),
930 (drmCCAsyncAO->GetMMFMessageDestinationPckg())().InterfaceId(),
931 (drmCCAsyncAO->GetMMFMessageDestinationPckg())().DestinationHandle(),
932 drmCCAsyncAO->GetMMFMessageFunction(),
934 data1Ptr.MaxLength(),
936 data2Ptr.MaxLength(),
937 dataToClientPtr.Length(),
938 dataToClientPtr.MaxLength() );
940 // Call CustomCommandAsync on play util
941 iPlayUtil->CustomCommandAsync(
942 drmCCAsyncAO->GetMMFMessageDestinationPckg(),
943 drmCCAsyncAO->GetMMFMessageFunction(),
947 drmCCAsyncAO->iStatus );
949 else /*if ( aMessage.Function() == EDRMPlayServCustomCommandAsyncWithoutReturnStep2 )*/
952 RDebug::Print(_L("CDRMPlayServerSession::CustomCommandAsyncStep2L:IFId[%x]DestHndl[%x]Fn[%d]Data1[Len:%d:MaxLen:%d]Data2Len[Len:%d:MaxLen:%d]"),
953 (drmCCAsyncAO->GetMMFMessageDestinationPckg())().InterfaceId(),
954 (drmCCAsyncAO->GetMMFMessageDestinationPckg())().DestinationHandle(),
955 drmCCAsyncAO->GetMMFMessageFunction(),
957 data1Ptr.MaxLength(),
959 data2Ptr.MaxLength() );
961 // Call CustomCommandAsync on play util
962 iPlayUtil->CustomCommandAsync(
963 drmCCAsyncAO->GetMMFMessageDestinationPckg(),
964 drmCCAsyncAO->GetMMFMessageFunction(),
967 drmCCAsyncAO->iStatus );
970 DEP_PRN0(_L("CDRMPlayServerSession::CustomCommandAsyncStep2L:Exit"));
973 void CDRMPlayServerSession::MapcInitComplete(TInt aError, const TTimeIntervalMicroSeconds& aDuration)
976 DEP_PRN2(_L("CDRMPlayServerSession::MapcInitComplete :-> Status[%d] Duration[%d]"), aError, I64INT(aDuration.Int64()));
977 //iMessage.Write aError & aDuration to client
978 iCallbackState() = EInitComplete;
980 iMessage.Write(0,iCallbackState);
982 iErrDurPckg().iError = aError;
983 iErrDurPckg().iDuration = aDuration;
985 iMessage.Write(2,iErrDurPckg);
986 iMessage.Complete(aError);
987 iAsyncComplete= EFalse;
990 void CDRMPlayServerSession::MapcPlayComplete(TInt aError)
992 DEP_PRN1(_L("CDRMPlayServerSession::MapcPlayComplete :-> Error[%d]"), aError);
994 #ifdef RD_TSP_CLIENT_MAPPER
995 TInt status = iTSPClientMapper->SetTspTargetClientToOtherType(
996 CTspClientMapper::EStoppedClients,
998 DEP_PRN2(_L("CDRMPlayServerSession::MapcPlayComplete:Change PID[%x]Status[%d]"), iClientProcessId.Id(), status );
999 #endif // #ifdef RD_TSP_CLIENT_MAPPER
1004 iCallbackState()= EPlayComplete;
1006 iMessage.Write(0,iCallbackState);
1007 iErrDurPckg().iError = aError;
1008 iErrDurPckg().iDuration = 0;
1009 iMessage.Write(2,iErrDurPckg);
1010 iMessage.Complete(aError);
1014 //iMessage2. Write aError & aDuration to client
1015 iCallbackState() = EPlayComplete;
1017 iMessage2->Write(0,iCallbackState);
1019 iErrDurPckg().iError = aError;
1020 iErrDurPckg().iDuration = 0;
1021 iMessage2->Write(2,iErrDurPckg);
1022 iMessage2->Complete(aError);
1027 iAsyncComplete= EFalse;
1031 void CDRMPlayServerSession::MaloLoadingStarted()
1033 //send event to client
1034 iCallbackState() = ELoadingStarted;
1035 iMessage.Write(0,iCallbackState);
1036 iMessage.Complete(KErrNone);
1037 iAsyncComplete= EFalse;
1039 void CDRMPlayServerSession::MaloLoadingComplete()
1041 //send event to client
1042 iCallbackState() = ELoadingComplete;
1043 iMessage.Write(0,iCallbackState);
1044 iMessage.Complete(KErrNone);
1045 iAsyncComplete= EFalse;
1048 void CDRMPlayServerSession::AsyncCustomCommandCompleted( CDRMCustomCommandAsyncAO* aObject)
1050 TInt index = iActiveAsyncCustomCommands.Find( aObject );
1051 // This should never happen. Else there is something wrong....
1052 if ( index != KErrNotFound )
1054 iActiveAsyncCustomCommands.Remove(index);
1059 void CDRMPlayServerSession::SetPriorityPreference(const RMessage2 &aMessage)
1061 iPriority = aMessage.Int0();
1062 iPref = (TMdaPriorityPreference)aMessage.Int1();
1065 TBool CDRMPlayServerSession::IsValidCustomCommandDestination(TUid aDestinationUid, TDesC8& aParam)
1067 TBool retValue(ETrue);
1068 if (aDestinationUid == KUidInterfaceMMFDRMControl)
1072 else if ( aDestinationUid == KUidCustomInterfaceBuilderImpl )
1074 RDesReadStream stream(aParam);
1075 CleanupClosePushL(stream);
1077 TRAPD(status, paramUid.iUid = stream.ReadInt32L());
1078 CleanupStack::PopAndDestroy(&stream);
1079 if ( (status == KErrNone ) && (paramUid == KUidAudioOutput) )