sl@0: /* sl@0: * Copyright (c) 2005-2006 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: DRM PlayUtility sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: sl@0: // INCLUDE FILES sl@0: #include sl@0: #include "DRMPlayClientServer.h" sl@0: #include "mmfclientdrmaudioplayer.h" sl@0: #include sl@0: #include sl@0: #include sl@0: #include "drmaudioplayeradaptation.h" sl@0: sl@0: // This is the UID defined by custom interface builder sl@0: const TUid KUidCustomInterfaceBuilderImpl = {0x10207A8E}; sl@0: sl@0: #ifdef _DEBUG sl@0: #define DEP_PRN0(str) RDebug::Print(str) sl@0: #define DEP_PRN1(str, v1) RDebug::Print(str, v1) sl@0: #define DEP_PRN2(str, v1, v2) RDebug::Print(str, v1, v2) sl@0: #else sl@0: #define DEP_PRN0(str) sl@0: #define DEP_PRN1(str, v1) sl@0: #define DEP_PRN2(str, v1, v2) sl@0: #endif // _DEBUG sl@0: sl@0: sl@0: // ============================= LOCAL FUNCTIONS =============================== sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::NewL sl@0: // Constructs and initialises a new instance of the audio player utility. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C CDrmPlayerUtility* CDrmPlayerUtility::NewL( sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: CDrmPlayerUtility* self = new(ELeave) CDrmPlayerUtility(); sl@0: CleanupStack::PushL(self); sl@0: self->iProperties = CDrmAudioPlayerAdaptation::NewL( aCallback, aPriority, aPref ); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::NewFilePlayerL sl@0: // Constructs and initialises a new instance of the audio player utility for sl@0: // playing sampled audio data from a file. The audio data must be in a supported sl@0: // format (e.g. WAV and AU). sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C CDrmPlayerUtility* CDrmPlayerUtility::NewFilePlayerL( sl@0: const TDesC& aFileName, sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: CDrmPlayerUtility* self = new(ELeave) CDrmPlayerUtility(); sl@0: CleanupStack::PushL(self); sl@0: self->iProperties = CDrmAudioPlayerAdaptation::NewFilePlayerL(aFileName, aCallback, aPriority, aPref); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::NewDesPlayerL sl@0: // Constructs and initialises a new instance of the audio player utility for sl@0: // playing sampled audio data from a descriptor. The audio data must be in a sl@0: // supported format (e.g. WAV and AU). sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C CDrmPlayerUtility* CDrmPlayerUtility::NewDesPlayerL( sl@0: const TDesC8& aData, sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: CDrmPlayerUtility* self = new(ELeave) CDrmPlayerUtility(); sl@0: CleanupStack::PushL(self); sl@0: self->iProperties = CDrmAudioPlayerAdaptation::NewDesPlayerL( aData, aCallback, aPriority, aPref ); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::NewDesPlayerReadOnlyL sl@0: // Constructs and initialises a new instance of the audio player utility for sl@0: // playing sampled audio data from a read only descriptor. The audio data must sl@0: // be in a supported format (e.g. WAV and AU). sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C CDrmPlayerUtility* CDrmPlayerUtility::NewDesPlayerReadOnlyL( sl@0: const TDesC8& aData, sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: CDrmPlayerUtility* self = new(ELeave) CDrmPlayerUtility(); sl@0: CleanupStack::PushL(self); sl@0: self->iProperties = CDrmAudioPlayerAdaptation::NewDesPlayerReadOnlyL(aData, aCallback, aPriority, aPref); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: // Destructor sl@0: EXPORT_C CDrmPlayerUtility::~CDrmPlayerUtility() sl@0: { sl@0: delete iProperties; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::Play sl@0: // Begins playback of the initialised audio sample at the current volume and sl@0: // priority levels. When playing of the audio sample is complete, successfully sl@0: // or otherwise, the callback function MMdaAudioPlayerCallback::MapcPlayComplete() sl@0: // is called. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::Play() sl@0: { sl@0: iProperties->Play(); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::Stop sl@0: // Stops playback of the audio sample as soon as possible. If the audio sample sl@0: // is playing, playback is stopped as soon as possible. If playback is already sl@0: // complete, nothing further happens as a result of calling this function. The sl@0: // callback function MMdaAudioPlayerCallback::MapcPlayComplete() is not called. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::Stop() sl@0: { sl@0: iProperties->Stop(); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::Pause sl@0: // Pauses the playback of the audio clip. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C TInt CDrmPlayerUtility::Pause() sl@0: { sl@0: return iProperties->Pause(); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::SetVolume sl@0: // Changes the current playback volume to a specified value. The volume can be sl@0: // changed before or during playback and is effective immediately. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::SetVolume( sl@0: TInt aVolume) sl@0: { sl@0: iProperties->SetVolume(aVolume); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::SetRepeats sl@0: // Sets the number of times the audio sample is to be repeated during the playback sl@0: // operation. A period of silence can follow each playing of the sample. The sl@0: // audio sample can be repeated indefinitely. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::SetRepeats( sl@0: TInt aRepeatNumberOfTimes, sl@0: const TTimeIntervalMicroSeconds& aTrailingSilence) sl@0: { sl@0: iProperties->SetRepeats(aRepeatNumberOfTimes,aTrailingSilence); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::SetVolumeRamp sl@0: // Defines the period over which the volume level is to rise smoothly from nothing sl@0: // to the normal volume level. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::SetVolumeRamp( sl@0: const TTimeIntervalMicroSeconds& aRampDuration) sl@0: { sl@0: iProperties->SetVolumeRamp(aRampDuration); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::Duration sl@0: // Returns the duration of the audio sample. The function raises a sl@0: // CMdaAudioPlayerUtility 1 panic if the audio player utility is not initialised. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C const TTimeIntervalMicroSeconds& CDrmPlayerUtility::Duration() sl@0: { sl@0: return iProperties->Duration(); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::MaxVolume sl@0: // Returns an integer representing the maximum volume. This is the maximum value sl@0: // which can be passed to CMdaAudioPlayerUtility::SetVolume(). sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C TInt CDrmPlayerUtility::MaxVolume() sl@0: { sl@0: return iProperties->MaxVolume(); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::OpenFileL sl@0: // Opens an audio clip from a file. The audio data must be in a supported sl@0: // format (for example, WAV or AU). This function leaves with KErrInUse if there sl@0: // is a previous open statement awaiting notification of completion. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::OpenFileL( sl@0: const TDesC &aFileName) sl@0: { sl@0: iProperties->OpenFileL(aFileName); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::OpenFileL sl@0: // Opens an audio clip from a file. The audio data must be in a supported sl@0: // format (for example, WAV or AU). This function leaves with KErrInUse if there sl@0: // is a previous open statement awaiting notification of completion. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::OpenFileL( sl@0: const RFile& aFile) sl@0: { sl@0: iProperties->OpenFileL(aFile); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::OpenFileL sl@0: // Opens an audio clip from a file. The audio data must be in a supported sl@0: // format (for example, WAV or AU). This function leaves with KErrInUse if there sl@0: // is a previous open statement awaiting notification of completion. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::OpenFileL( sl@0: #ifdef SYMBIAN_CAF_V2 sl@0: const TMMSource& aSource sl@0: #else sl@0: const TMMSource& /*aSource*/ sl@0: #endif sl@0: ) sl@0: { sl@0: #ifdef SYMBIAN_CAF_V2 sl@0: iProperties->OpenFileL(aSource); sl@0: #else sl@0: User::Leave(KErrNotSupported); sl@0: #endif sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::OpenDesL sl@0: // Opens an audio clip from a descriptor. The audio data must be in a supported sl@0: // format (for example, WAV or AU). sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::OpenDesL( sl@0: const TDesC8& aDescriptor) sl@0: { sl@0: iProperties->OpenDesL(aDescriptor); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::OpenUrlL sl@0: // Opens an audio clip from a URL. The audio data must be in a supported format sl@0: // (for example, WAV or AU). sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::OpenUrlL( sl@0: const TDesC& aUrl, sl@0: TInt aIapId, sl@0: const TDesC8& aMimeType) sl@0: { sl@0: iProperties->OpenUrlL(aUrl,aIapId,aMimeType); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::Close sl@0: // Closes the current audio clip (allowing another clip to be opened). sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::Close() sl@0: { sl@0: iProperties->Close(); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::GetPosition sl@0: // Returns the current playback position in microseconds from the start sl@0: // of the clip. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C TInt CDrmPlayerUtility::GetPosition( sl@0: TTimeIntervalMicroSeconds& aPosition) sl@0: { sl@0: return iProperties->GetPosition(aPosition); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::SetPosition sl@0: // Sets the current playback position in microseconds from the start of the clip. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::SetPosition( sl@0: const TTimeIntervalMicroSeconds& aPosition) sl@0: { sl@0: iProperties->SetPosition(aPosition); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::SetPriority sl@0: // Sets the priority for playback. This is used to arbitrate between multiple sl@0: // objects trying to access a single sound device. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C TInt CDrmPlayerUtility::SetPriority( sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: return iProperties->SetPriority(aPriority,aPref); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::GetVolume sl@0: // Returns the current playback volume. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C TInt CDrmPlayerUtility::GetVolume( sl@0: TInt& aVolume) sl@0: { sl@0: return iProperties->GetVolume(aVolume); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::GetNumberOfMetaDataEntries sl@0: // Returns the number of meta data entries in the current audio clip. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C TInt CDrmPlayerUtility::GetNumberOfMetaDataEntries( sl@0: TInt& aNumEntries) sl@0: { sl@0: return iProperties->GetNumberOfMetaDataEntries(aNumEntries); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::GetMetaDataEntryL sl@0: // Returns the requested meta data entry. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C CMMFMetaDataEntry* CDrmPlayerUtility::GetMetaDataEntryL( sl@0: TInt aMetaDataIndex) sl@0: { sl@0: return iProperties->GetMetaDataEntryL(aMetaDataIndex); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::SetPlayWindow sl@0: // Sets the current playback window. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C TInt CDrmPlayerUtility::SetPlayWindow( sl@0: const TTimeIntervalMicroSeconds& aStart, sl@0: const TTimeIntervalMicroSeconds& aEnd) sl@0: { sl@0: return iProperties->SetPlayWindow(aStart,aEnd); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::ClearPlayWindow sl@0: // Clears the current playback window. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C TInt CDrmPlayerUtility::ClearPlayWindow() sl@0: { sl@0: return iProperties->ClearPlayWindow(); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::SetBalance sl@0: // Sets the current playback balance. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C TInt CDrmPlayerUtility::SetBalance( sl@0: TInt aBalance) sl@0: { sl@0: return iProperties->SetBalance(aBalance); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::GetBalance sl@0: // Returns the current playback balance. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C TInt CDrmPlayerUtility::GetBalance( sl@0: TInt& aBalance) sl@0: { sl@0: return iProperties->GetBalance(aBalance); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::GetBitRate sl@0: // Returns the bit rate of the audio clip sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C TInt CDrmPlayerUtility::GetBitRate( sl@0: TUint& aBitRate) sl@0: { sl@0: return iProperties->GetBitRate(aBitRate); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::RegisterForAudioLoadingNotification sl@0: // Registers callback object to receive notifications of audio loading/rebuffering. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::RegisterForAudioLoadingNotification( sl@0: MAudioLoadingObserver& aCallback) sl@0: { sl@0: iProperties->RegisterForAudioLoadingNotification(aCallback); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::GetAudioLoadingProgressL sl@0: // Returns the current progress of audio loading sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::GetAudioLoadingProgressL( sl@0: TInt& aPercentageProgress) sl@0: { sl@0: iProperties->GetAudioLoadingProgressL(aPercentageProgress); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::ControllerImplementationInformationL sl@0: // Returns the controller implementation information associated with the current controller. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C const CMMFControllerImplementationInformation& CDrmPlayerUtility::ControllerImplementationInformationL() sl@0: { sl@0: return iProperties->ControllerImplementationInformationL(); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::CustomCommandSync sl@0: // Sends a synchronous custom command to the controller. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C TInt CDrmPlayerUtility::CustomCommandSync( sl@0: const TMMFMessageDestinationPckg& aDestination, sl@0: TInt aFunction, sl@0: const TDesC8& aDataTo1, sl@0: const TDesC8& aDataTo2, sl@0: TDes8& aDataFrom) sl@0: { sl@0: TInt status( KErrAccessDenied ); sl@0: status = iProperties->CustomCommandSync(aDestination,aFunction,aDataTo1,aDataTo2,aDataFrom); sl@0: sl@0: return status; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::CustomCommandSync sl@0: // Sends a synchronous custom command to the controller. sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C TInt CDrmPlayerUtility::CustomCommandSync( sl@0: const TMMFMessageDestinationPckg& aDestination, sl@0: TInt aFunction, sl@0: const TDesC8& aDataTo1, sl@0: const TDesC8& aDataTo2) sl@0: { sl@0: sl@0: TInt status( KErrAccessDenied ); sl@0: status = iProperties->CustomCommandSync(aDestination,aFunction,aDataTo1,aDataTo2); sl@0: return status; sl@0: sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::CustomCommandAsync sl@0: // Sends an asynchronous custom command to the controller sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::CustomCommandAsync( sl@0: const TMMFMessageDestinationPckg& aDestination, sl@0: TInt aFunction, sl@0: const TDesC8& aDataTo1, sl@0: const TDesC8& aDataTo2, sl@0: TDes8& aDataFrom, sl@0: TRequestStatus& aStatus) sl@0: { sl@0: sl@0: iProperties->CustomCommandAsync(aDestination,aFunction,aDataTo1,aDataTo2,aDataFrom,aStatus); sl@0: sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CDrmPlayerUtility::CustomCommandAsync sl@0: // Sends an asynchronous custom command to the controller sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: EXPORT_C void CDrmPlayerUtility::CustomCommandAsync( sl@0: const TMMFMessageDestinationPckg& aDestination, sl@0: TInt aFunction, sl@0: const TDesC8& aDataTo1, sl@0: const TDesC8& aDataTo2, sl@0: TRequestStatus& aStatus) sl@0: { sl@0: sl@0: iProperties->CustomCommandAsync(aDestination,aFunction,aDataTo1,aDataTo2,aStatus); sl@0: sl@0: } sl@0: //========================================================================================================================= sl@0: sl@0: sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::NewL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CMMFDrmAudioPlayerUtility* CMMFDrmAudioPlayerUtility::NewL( sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: CMMFDrmAudioPlayerUtility* self = new(ELeave) CMMFDrmAudioPlayerUtility(aCallback,EPriorityStandard); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(aPriority, aPref); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::NewFilePlayerL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CMMFDrmAudioPlayerUtility* CMMFDrmAudioPlayerUtility::NewFilePlayerL( sl@0: const TDesC& aFileName, sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: CMMFDrmAudioPlayerUtility* self = new(ELeave) CMMFDrmAudioPlayerUtility(aCallback,EPriorityStandard); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(aFileName,aPriority,aPref); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::NewDesPlayerL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CMMFDrmAudioPlayerUtility* CMMFDrmAudioPlayerUtility::NewDesPlayerL( sl@0: const TDesC8& aData, sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: CMMFDrmAudioPlayerUtility* self = new(ELeave) CMMFDrmAudioPlayerUtility(aCallback,EPriorityStandard); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(aData,aPriority,aPref); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::NewDesPlayerReadOnlyL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CMMFDrmAudioPlayerUtility* CMMFDrmAudioPlayerUtility::NewDesPlayerReadOnlyL( sl@0: const TDesC8& aData, sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: CMMFDrmAudioPlayerUtility* self = new(ELeave) CMMFDrmAudioPlayerUtility(aCallback,EPriorityStandard); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructReadOnlyL(aData,aPriority,aPref); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: sl@0: // Destructor sl@0: CMMFDrmAudioPlayerUtility::~CMMFDrmAudioPlayerUtility() sl@0: { sl@0: Stop(); sl@0: Cancel(); sl@0: delete iDrm; sl@0: delete iMetaDataBuffer; sl@0: if(iDrmSession) sl@0: { sl@0: iDrmSession->Disconnect(); sl@0: iDrmSession->Close(); sl@0: delete iDrmSession; sl@0: iDrmSession = NULL; sl@0: } sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::CMMFDrmAudioPlayerUtility sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CMMFDrmAudioPlayerUtility::CMMFDrmAudioPlayerUtility( sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aActivePriority) sl@0: : CActive(aActivePriority), sl@0: iCallback(aCallback) sl@0: { sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::ConstructL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::ConstructL( sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: ConnectL(); sl@0: TDataStruct theStruct; sl@0: sl@0: theStruct.iPriority = aPriority; sl@0: theStruct.iPref = aPref; sl@0: sl@0: TDataStructPckgBuf pckg(theStruct); sl@0: iState = EInitializing; sl@0: iDrmSession->Send(EDRMPlayServNewPlayerL,TIpcArgs(&iAsyncCallback,&pckg,&iErrorDurationStruct)); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::ConstructL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::ConstructL( sl@0: const TDesC& aFileName, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: ConnectL(); sl@0: sl@0: iDrmSession->Send(EDRMPlayServSetPriorityPreference,TIpcArgs(aPriority,aPref)); sl@0: TDataStructPckgBuf pckgBuf; sl@0: TDataStruct &theStruct = pckgBuf(); sl@0: sl@0: sl@0: sl@0: theStruct.iPriority = aPriority; sl@0: theStruct.iPref = aPref; sl@0: iFileName = aFileName; sl@0: sl@0: iState = EInitializing; sl@0: if (!IsActive()) sl@0: { sl@0: iDrmSession->Send(EDRMPlayServNewFilePlayerL,TIpcArgs(&iAsyncCallback,&pckgBuf,&iErrorDurationStruct,&iFileName),iStatus); sl@0: SetActive(); sl@0: } sl@0: else sl@0: { sl@0: User::Leave(KErrNotReady); sl@0: } sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::ConstructL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::ConstructL( sl@0: const TDesC8& aData, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: ConnectL(); sl@0: TDataStruct theStruct; sl@0: sl@0: theStruct.iData = aData; sl@0: iDrmSession->Send(EDRMPlayServSetPriorityPreference,TIpcArgs(aPriority,aPref)); sl@0: sl@0: TDataStructPckgBuf pckg(theStruct); sl@0: sl@0: iState = EInitializing; sl@0: if (!IsActive()) sl@0: { sl@0: iDrmSession->Send(EDRMPlayServNewDesPlayerL,TIpcArgs(&iAsyncCallback,&pckg,&iErrorDurationStruct),iStatus); sl@0: SetActive(); sl@0: } sl@0: else sl@0: { sl@0: User::Leave(KErrNotReady); sl@0: } sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::ConstructReadOnlyL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::ConstructReadOnlyL( sl@0: const TDesC8& aData, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: ConnectL(); sl@0: TDataStruct theStruct; sl@0: sl@0: theStruct.iData = aData; sl@0: iDrmSession->Send(EDRMPlayServSetPriorityPreference,TIpcArgs(aPriority,aPref)); sl@0: sl@0: TDataStructPckgBuf pckg(theStruct); sl@0: sl@0: iState = EInitializing; sl@0: if (!IsActive()) sl@0: { sl@0: iDrmSession->Send(EDRMPlayServNewDesPlayerReadOnlyL,TIpcArgs(&iAsyncCallback,&pckg,&iErrorDurationStruct),iStatus); sl@0: SetActive(); sl@0: } sl@0: else sl@0: { sl@0: User::Leave(KErrNotReady); sl@0: } sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::ConnectL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::ConnectL() sl@0: { sl@0: CActiveScheduler::Add(this); sl@0: iDrmSession = new(ELeave) RDrmSession(); sl@0: User::LeaveIfError( iDrmSession->Connect() ); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::OpenFileL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::OpenFileL( sl@0: const TDesC& aFileName) sl@0: { sl@0: iState = EInitializing; sl@0: if (!IsActive()) sl@0: { sl@0: iDrmSession->Send(EDRMPlayServOpenFile,TIpcArgs(&iAsyncCallback,&aFileName,&iErrorDurationStruct),iStatus); sl@0: SetActive(); sl@0: } sl@0: else sl@0: { sl@0: User::Leave(KErrNotReady); sl@0: } sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::OpenFileL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::OpenFileL( sl@0: const RFile& aFile) sl@0: { sl@0: TIpcArgs ipcArgs; sl@0: aFile.TransferToServer(ipcArgs, 1, 3); sl@0: ipcArgs.Set(0,&iAsyncCallback); sl@0: ipcArgs.Set(2,&iErrorDurationStruct); sl@0: iState = EInitializing; sl@0: if (!IsActive()) sl@0: { sl@0: iDrmSession->Send(EDRMPlayServOpenFileByHandle,ipcArgs,iStatus); sl@0: SetActive(); sl@0: } sl@0: else sl@0: { sl@0: User::Leave(KErrNotReady); sl@0: } sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::OpenFileL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: #ifdef SYMBIAN_CAF_V2 sl@0: void CMMFDrmAudioPlayerUtility::OpenFileL(const TMMSource& aSource) sl@0: { sl@0: if (aSource.SourceType()==KUidMMFileHandleSource) sl@0: { sl@0: #ifdef SYMBIAN_SECURITY_CAF_RFILE_HANDLE sl@0: RFile& fileHandle = static_cast(aSource).Handle(); sl@0: OpenFileL(fileHandle); sl@0: #else sl@0: User::Leave(KErrNotSupported); sl@0: #endif sl@0: } sl@0: if (aSource.SourceType()==KUidMMFileSource) sl@0: { sl@0: const TDesC& fileName = static_cast(aSource).Name(); sl@0: OpenFileL(fileName); sl@0: } sl@0: } sl@0: #endif sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::OpenDesL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::OpenDesL( sl@0: const TDesC8& aDescriptor) sl@0: { sl@0: iStatus = EInitializing; sl@0: if (!IsActive()) sl@0: { sl@0: iDrmSession->Send(EDRMPlayServOpenDes,TIpcArgs(&iAsyncCallback,&aDescriptor,&iErrorDurationStruct),iStatus); sl@0: SetActive(); sl@0: } sl@0: else sl@0: { sl@0: User::Leave(KErrNotReady); sl@0: } sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::OpenUrlL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::OpenUrlL( sl@0: const TDesC& aUrl, sl@0: const TInt aIapId, sl@0: const TDesC8& aMimeType) sl@0: { sl@0: TUrlStruct theStruct; sl@0: sl@0: theStruct.iUrl = aUrl; sl@0: theStruct.iIapId = aIapId; sl@0: theStruct.iMimeType = aMimeType; sl@0: sl@0: TUrlStructPckgBuf pckg(theStruct); sl@0: iStatus = EInitializing; sl@0: if (!IsActive()) sl@0: { sl@0: iDrmSession->Send(EDRMPlayServOpenUrl,TIpcArgs(&iAsyncCallback,&pckg,&iErrorDurationStruct),iStatus); sl@0: SetActive(); sl@0: } sl@0: else sl@0: { sl@0: User::Leave(KErrNotReady); sl@0: } sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::Play sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::Play() sl@0: { sl@0: if (iState != EPlaying) sl@0: { sl@0: iState = EPlaying; sl@0: if (!IsActive()) sl@0: { sl@0: SetActive(); sl@0: iDrmSession->Send(EDRMPlayServPlay,TIpcArgs(&iAsyncCallback,0,&iErrorDurationStruct),iStatus); sl@0: } sl@0: } sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::Stop sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::Stop() sl@0: { sl@0: iDrmSession->Send(EDRMPlayServStop); sl@0: if (IsActive()) sl@0: { sl@0: Cancel(); sl@0: } sl@0: sl@0: iState = EIdle; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::Pause sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CMMFDrmAudioPlayerUtility::Pause() sl@0: { sl@0: iDrmSession->Send(EDRMPlayServPause); sl@0: iState = EPaused; sl@0: return KErrNone; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::Close sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::Close() sl@0: { sl@0: if (IsActive()) sl@0: { sl@0: Cancel(); sl@0: } sl@0: iDrmSession->Send(EDRMPlayServClose); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::SetVolume sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::SetVolume( sl@0: TInt aVolume) sl@0: { sl@0: iDrmSession->Send(EDRMPlayServSetVolume,TIpcArgs(aVolume)); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::SetRepeats sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::SetRepeats( sl@0: TInt aRepeatNumberOfTimes, sl@0: const TTimeIntervalMicroSeconds& aTrailingSilence) sl@0: { sl@0: sl@0: TPckgTTimeIntervalMicroSeconds trailingSilencePckg(aTrailingSilence); sl@0: iDrmSession->Send(EDRMPlayServSetRepeats,TIpcArgs(aRepeatNumberOfTimes,&trailingSilencePckg)); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::SetVolumeRamp sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::SetVolumeRamp( sl@0: const TTimeIntervalMicroSeconds& aRampDuration) sl@0: { sl@0: sl@0: TPckgTTimeIntervalMicroSeconds volumeRampPckg(aRampDuration); sl@0: iDrmSession->Send(EDRMPlayServSetVolumeRamp,TIpcArgs(&volumeRampPckg)); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::SetPriority sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CMMFDrmAudioPlayerUtility::SetPriority( sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: return iDrmSession->Send(EDRMPlayServSetPriority,TIpcArgs(aPriority,aPref)); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::Duration sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: const TTimeIntervalMicroSeconds& CMMFDrmAudioPlayerUtility::Duration() sl@0: { sl@0: TPckgBufTTimeIntervalMicroSeconds pckg; sl@0: iDrmSession->Send(EDRMPlayServDuration,TIpcArgs(&pckg)); sl@0: return pckg(); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::MaxVolume sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CMMFDrmAudioPlayerUtility::MaxVolume() sl@0: { sl@0: return iDrmSession->Send(EDRMPlayServMaxVolume); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::GetPosition sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CMMFDrmAudioPlayerUtility::GetPosition( sl@0: TTimeIntervalMicroSeconds& aPosition) sl@0: { sl@0: TPckgTTimeIntervalMicroSeconds thePositionPckg(aPosition); sl@0: TInt ret = iDrmSession->Send(EDRMPlayServGetPosition,TIpcArgs(&thePositionPckg)); sl@0: aPosition = thePositionPckg(); sl@0: return ret; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::SetPosition sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::SetPosition( sl@0: const TTimeIntervalMicroSeconds& aPosition) sl@0: { sl@0: TSetPositionStruct sendPckg; sl@0: sendPckg.iPosition = aPosition; sl@0: sl@0: TSetPositionStructBuf pckg(sendPckg); sl@0: iDrmSession->Send(EDRMPlayServSetPosition,TIpcArgs(&pckg)); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::GetVolume sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CMMFDrmAudioPlayerUtility::GetVolume(TInt& aVolume) sl@0: { sl@0: TInt theReturnValue; sl@0: TPckgBufTInt theVolume; sl@0: theReturnValue = iDrmSession->Send(EDRMPlayServGetVolume,TIpcArgs(&theVolume)); sl@0: aVolume = theVolume(); sl@0: return theReturnValue; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::GetNumberOfMetaDataEntries sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CMMFDrmAudioPlayerUtility::GetNumberOfMetaDataEntries( sl@0: TInt& aNumEntries) sl@0: { sl@0: TPckgBufTInt theNumEntries; sl@0: TInt retValue = iDrmSession->Send(EDRMPlayServGetNumberOfMetaDataEntries,TIpcArgs(&theNumEntries)); sl@0: aNumEntries = theNumEntries(); sl@0: return retValue; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::GetMetaDataEntryL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CMMFMetaDataEntry* CMMFDrmAudioPlayerUtility::GetMetaDataEntryL( sl@0: TInt aMetaDataIndex) sl@0: { sl@0: TBuf8<100> data; sl@0: iDrmSession->Send(EDRMPlayServGetMetaDataEntry,TIpcArgs(aMetaDataIndex,&data)); sl@0: delete iMetaDataBuffer; sl@0: iMetaDataBuffer = NULL; sl@0: iMetaDataBuffer = CBufFlat::NewL(32); sl@0: HBufC8* theData = data.Alloc(); sl@0: iMetaDataBuffer->InsertL(0,theData->Des()); sl@0: RBufReadStream s; sl@0: s.Open(*iMetaDataBuffer); sl@0: CleanupClosePushL(s); sl@0: CMMFMetaDataEntry* theMetaDataEntry = CMMFMetaDataEntry::NewL(); sl@0: theMetaDataEntry->InternalizeL(s); sl@0: CleanupStack::PopAndDestroy();//s sl@0: return theMetaDataEntry; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::SetPlayWindow sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CMMFDrmAudioPlayerUtility::SetPlayWindow( sl@0: const TTimeIntervalMicroSeconds& aPlayStart, sl@0: const TTimeIntervalMicroSeconds& aPlayEnd) sl@0: { sl@0: TPlayWindowStruct sendPckg; sl@0: sendPckg.iPlayStart = aPlayStart; sl@0: sendPckg.iPlayEnd = aPlayEnd; sl@0: sl@0: TPlayWindowStructBuf pckg(sendPckg); sl@0: sl@0: return iDrmSession->Send(EDRMPlayServSetPlayWindow,TIpcArgs(&pckg)); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::ClearPlayWindow sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CMMFDrmAudioPlayerUtility::ClearPlayWindow() sl@0: { sl@0: return iDrmSession->Send(EDRMPlayServClearPlayWindow); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::SetBalance sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CMMFDrmAudioPlayerUtility::SetBalance( sl@0: TInt aBalance) sl@0: { sl@0: return iDrmSession->Send(EDRMPlayServSetBalance,TIpcArgs(aBalance)); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::GetBitRate sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CMMFDrmAudioPlayerUtility::GetBitRate( sl@0: TUint& aBitRate) sl@0: { sl@0: TPckgBufTUint pckg; sl@0: TInt retValue = iDrmSession->Send(EDRMPlayServGetBitRate,TIpcArgs(&pckg)); sl@0: aBitRate = pckg(); sl@0: return retValue; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::ControllerImplementationInformationL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: const CMMFControllerImplementationInformation& CMMFDrmAudioPlayerUtility::ControllerImplementationInformationL() sl@0: { sl@0: TUid theUid; sl@0: iDrmSession->Send(EDRMPlayServControllerImplementationInformation,TIpcArgs(&theUid)); sl@0: iControllerImplementationInformation = CMMFControllerImplementationInformation::NewL(theUid); sl@0: return *iControllerImplementationInformation; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::GetAudioLoadingProgressL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::GetAudioLoadingProgressL( sl@0: TInt& aPercentageProgress) sl@0: { sl@0: TPckgBufTInt pckg; sl@0: iDrmSession->Send(EDRMPlayServGetAudioLoadingProgress,TIpcArgs(&pckg)); sl@0: aPercentageProgress = pckg(); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::CustomCommandSync sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CMMFDrmAudioPlayerUtility::CustomCommandSync( sl@0: const TMMFMessageDestinationPckg& aDestination, sl@0: TInt aFunction, sl@0: const TDesC8& aDataTo1, sl@0: const TDesC8& aDataTo2, sl@0: TDes8& aDataFrom) sl@0: { sl@0: TInt theReturnValue(KErrPermissionDenied); sl@0: sl@0: TPckgCustomCommand thePckg; sl@0: thePckg().iDestination = aDestination; sl@0: thePckg().iFunction = aFunction; sl@0: /* sl@0: RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandSync:IFId[%x]DestHndl[%x]Fn[%d]RetDesLen[%d]"), sl@0: thePckg().iDestination().InterfaceId(), sl@0: thePckg().iDestination().DestinationHandle(), sl@0: thePckg().iFunction, sl@0: aDataFrom.Length()); sl@0: */ sl@0: // Only Pass 'Allowed CustomCommand sl@0: if ( IsValidCustomCommandDestination(aDestination().InterfaceId(), aDataTo1) ) sl@0: { sl@0: theReturnValue = iDrmSession->Send( EDRMPlayServCustomCommandSyncWithReturn, sl@0: TIpcArgs(&thePckg, &aDataTo1, &aDataTo2, &aDataFrom)); sl@0: } sl@0: return theReturnValue; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::CustomCommandSync sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CMMFDrmAudioPlayerUtility::CustomCommandSync( sl@0: const TMMFMessageDestinationPckg& aDestination, sl@0: TInt aFunction, sl@0: const TDesC8& aDataTo1, sl@0: const TDesC8& aDataTo2) sl@0: { sl@0: TInt theReturnValue(KErrPermissionDenied); sl@0: sl@0: TPckgCustomCommand thePckg; sl@0: thePckg().iDestination = aDestination; sl@0: thePckg().iFunction = aFunction; sl@0: /* sl@0: RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandSync:IFId[%x]DestHndl[%x]Fn[%d]"), sl@0: thePckg().iDestination().InterfaceId(), sl@0: thePckg().iDestination().DestinationHandle(), sl@0: thePckg().iFunction); sl@0: */ sl@0: // Only Pass 'Allowed CustomCommand sl@0: if ( IsValidCustomCommandDestination(aDestination().InterfaceId(), aDataTo1) ) sl@0: { sl@0: theReturnValue = iDrmSession->Send( EDRMPlayServCustomCommandSyncWithoutReturn, sl@0: TIpcArgs(&thePckg, &aDataTo1, &aDataTo2)); sl@0: } sl@0: return theReturnValue; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::CustomCommandAsync sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::CustomCommandAsync( sl@0: const TMMFMessageDestinationPckg& aDestination, sl@0: TInt aFunction, sl@0: const TDesC8& aDataTo1, sl@0: const TDesC8& aDataTo2, sl@0: TDes8& aDataFrom, sl@0: TRequestStatus& aStatus ) sl@0: { sl@0: TPckgCustomCommand thePckg; sl@0: thePckg().iDestination = aDestination; sl@0: thePckg().iFunction = aFunction; sl@0: TInt status(KErrPermissionDenied); sl@0: /* sl@0: RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandAsync:IFId[%x]DestHndl[%x]Fn[%d]Data1[Len:%d]Data2Len[Len:%d]RetDesLen[Len:%d:MaxLen:%d]"), sl@0: thePckg().iDestination().InterfaceId(), sl@0: thePckg().iDestination().DestinationHandle(), sl@0: thePckg().iFunction, sl@0: aDataTo1.Length(), sl@0: aDataTo2.Length(), sl@0: aDataFrom.Length(), sl@0: aDataFrom.MaxLength() ); sl@0: */ sl@0: // Only Pass 'Allowed CustomCommand sl@0: if ( IsValidCustomCommandDestination(aDestination().InterfaceId(), aDataTo1) ) sl@0: { sl@0: // Send in two steps, data in first step and async request in second step sl@0: // othewise thePckg will become invalid when tried to read from server sl@0: status = iDrmSession->Send( EDRMPlayServCustomCommandAsyncWithReturnStep1, sl@0: TIpcArgs(&thePckg, &aDataTo1, &aDataTo2) ); sl@0: if ( status == KErrNone ) sl@0: { sl@0: // Pass descriptor place holder to get data back in the async call sl@0: iDrmSession->Send( EDRMPlayServCustomCommandAsyncWithReturnStep2, sl@0: TIpcArgs(&aDataFrom), sl@0: aStatus ); sl@0: } sl@0: #ifdef _DEBUG sl@0: else sl@0: { sl@0: 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]"), sl@0: thePckg().iDestination().InterfaceId(), sl@0: thePckg().iDestination().DestinationHandle(), sl@0: thePckg().iFunction, sl@0: aDataTo1.Length(), sl@0: aDataTo2.Length(), sl@0: aDataFrom.Length(), sl@0: aDataFrom.MaxLength(), sl@0: status ); sl@0: } sl@0: #endif // _DEBUG sl@0: } sl@0: if ( status != KErrNone ) sl@0: { sl@0: TRequestStatus* s = &aStatus; sl@0: User::RequestComplete( s , status ); sl@0: } sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::CustomCommandAsync sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::CustomCommandAsync( sl@0: const TMMFMessageDestinationPckg& aDestination, sl@0: TInt aFunction, sl@0: const TDesC8& aDataTo1, sl@0: const TDesC8& aDataTo2, sl@0: TRequestStatus& aStatus) sl@0: { sl@0: TPckgCustomCommand thePckg; sl@0: thePckg().iDestination = aDestination; sl@0: thePckg().iFunction = aFunction; sl@0: sl@0: TInt status(KErrPermissionDenied); sl@0: /* sl@0: RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandAsync:IFId[%x]DestHndl[%x]Fn[%d]Data1[Len:%d]Data2Len[Len:%d]"), sl@0: thePckg().iDestination().InterfaceId(), sl@0: thePckg().iDestination().DestinationHandle(), sl@0: thePckg().iFunction, sl@0: aDataTo1.Length(), sl@0: aDataTo2.Length() ); sl@0: */ sl@0: // Only Pass 'Allowed CustomCommand sl@0: if ( IsValidCustomCommandDestination(aDestination().InterfaceId(), aDataTo1) ) sl@0: { sl@0: // Send in two steps, data in first step and async request in second step sl@0: // othewise thePckg will become invalid when tried to read from server sl@0: status = iDrmSession->Send( EDRMPlayServCustomCommandAsyncWithoutReturnStep1, sl@0: TIpcArgs(&thePckg, &aDataTo1, &aDataTo2) ); sl@0: if ( status == KErrNone ) sl@0: { sl@0: iDrmSession->Send( EDRMPlayServCustomCommandAsyncWithoutReturnStep2, sl@0: TIpcArgs(), sl@0: aStatus ); sl@0: } sl@0: #ifdef _DEBUG sl@0: else sl@0: { sl@0: RDebug::Print(_L("CMMFDrmAudioPlayerUtility::CustomCommandAsync:IFId[%x]DestHndl[%x]Fn[%d]Data1[Len:%d]Data2Len[Len:%d]DRM Proxy CustCmdAsyncWoRet Step1[%d]"), sl@0: thePckg().iDestination().InterfaceId(), sl@0: thePckg().iDestination().DestinationHandle(), sl@0: thePckg().iFunction, sl@0: aDataTo1.Length(), sl@0: aDataTo2.Length(), sl@0: status ); sl@0: } sl@0: #endif // _DEBUG sl@0: } sl@0: if ( status != KErrNone ) sl@0: { sl@0: TRequestStatus* s = &aStatus; sl@0: User::RequestComplete( s , status ); sl@0: } sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::GetBalance sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CMMFDrmAudioPlayerUtility::GetBalance( sl@0: TInt& aBalance) sl@0: { sl@0: TPckgBufTInt theBalance; sl@0: sl@0: TInt retValue = iDrmSession->Send(EDRMPlayServGetBalance,TIpcArgs(&theBalance)); sl@0: aBalance = theBalance(); sl@0: return retValue; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::RegisterForAudioLoadingNotification sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::RegisterForAudioLoadingNotification( sl@0: MAudioLoadingObserver& aLoadingObserver) sl@0: { sl@0: iAsyncCallback() = ELoadingStarted; sl@0: iLoadingObserver = &aLoadingObserver; sl@0: iDrmSession->Send(EDRMPlayServRegisterForAudioLoadingNotification,TIpcArgs(&iAsyncCallback)); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::DoCancel sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::DoCancel() sl@0: { sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // CMMFDrmAudioPlayerUtility::RunL sl@0: // sl@0: // (other items were commented in a header). sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CMMFDrmAudioPlayerUtility::RunL() sl@0: { sl@0: DEP_PRN1(_L("CMMFDrmAudioPlayerUtility::RunL:iStatus[%d]"), iStatus.Int()); sl@0: sl@0: if (iState == EPaused) sl@0: { sl@0: return; sl@0: } sl@0: if ( iStatus.Int() == KErrCancel ) sl@0: return; sl@0: switch (iAsyncCallback()) sl@0: { sl@0: case EInitComplete: sl@0: if (iState != EIdle) sl@0: { sl@0: DEP_PRN0(_L("CMMFDrmAudioPlayerUtility::RunL - InitComplete")); sl@0: iState = EIdle; sl@0: iCallback.MdapcInitComplete(iErrorDurationStruct().iError, iErrorDurationStruct().iDuration); sl@0: } sl@0: break; sl@0: sl@0: case EPlayComplete: sl@0: DEP_PRN0(_L("CMMFDrmAudioPlayerUtility::RunL - PlayComplete")); sl@0: iState = EIdle; sl@0: iCallback.MdapcPlayComplete(iErrorDurationStruct().iError); sl@0: break; sl@0: sl@0: case ELoadingStarted: sl@0: DEP_PRN0(_L("CMMFDrmAudioPlayerUtility::RunL - MaloLoadingStarted")); sl@0: sl@0: iDrmSession->Send(EDRMPlayServRegisterForAudioLoadingNotification,TIpcArgs(&iAsyncCallback),iStatus); sl@0: SetActive(); sl@0: iLoadingObserver->MaloLoadingStarted(); sl@0: break; sl@0: sl@0: case ELoadingComplete: sl@0: DEP_PRN0(_L("CMMFDrmAudioPlayerUtility::RunL - MaloLoadingComplete")); sl@0: sl@0: iAsyncCallback() = ELoadingStarted; sl@0: iLoadingObserver->MaloLoadingComplete(); sl@0: break; sl@0: sl@0: default: sl@0: break; sl@0: } sl@0: } sl@0: sl@0: TBool CMMFDrmAudioPlayerUtility::IsValidCustomCommandDestination(TUid aDestinationUid, const TDesC8& aParam) sl@0: { sl@0: TBool retValue(ETrue); sl@0: if (aDestinationUid == KUidInterfaceMMFDRMControl) sl@0: { sl@0: retValue = EFalse; sl@0: } sl@0: else if ( aDestinationUid == KUidCustomInterfaceBuilderImpl ) sl@0: { sl@0: TRAPD(err, retValue = CheckCustomInterfaceBuilderImplL(aParam)); sl@0: if((err != KErrNone) || (retValue == EFalse)) sl@0: retValue = EFalse; sl@0: } sl@0: return retValue; sl@0: } sl@0: sl@0: TBool CMMFDrmAudioPlayerUtility::CheckCustomInterfaceBuilderImplL(const TDesC8& aParam) sl@0: { sl@0: TBool retValue(ETrue); sl@0: RDesReadStream stream(aParam); sl@0: CleanupClosePushL(stream); sl@0: TUid paramUid; sl@0: paramUid.iUid = stream.ReadInt32L(); sl@0: CleanupStack::PopAndDestroy(&stream); sl@0: if ( paramUid == KUidAudioOutput ) sl@0: { sl@0: retValue = EFalse; sl@0: } sl@0: return retValue; sl@0: } sl@0: sl@0: // End of file