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: #include sl@0: #include sl@0: #include // MAudioLoadingObserver 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: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CDrmAudioPlayerAdaptation* CDrmAudioPlayerAdaptation::NewL( MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref ) sl@0: { sl@0: CDrmAudioPlayerAdaptation* self = new(ELeave) CDrmAudioPlayerAdaptation( aCallback ); 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: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CDrmAudioPlayerAdaptation::CDrmAudioPlayerAdaptation(MDrmAudioPlayerCallback& aCallback) sl@0: :iCallback(&aCallback) sl@0: {} sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::ConstructL( TInt aPriority, TMdaPriorityPreference aPref ) sl@0: { sl@0: sl@0: if( iMdaPlayUtil ) sl@0: { sl@0: delete iMdaPlayUtil; sl@0: iMdaPlayUtil = NULL; sl@0: } sl@0: sl@0: iMdaPlayUtil = CMdaAudioPlayerUtility::NewL( *this, sl@0: aPriority, sl@0: aPref); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CDrmAudioPlayerAdaptation::~CDrmAudioPlayerAdaptation() sl@0: { sl@0: sl@0: // Delete DMA play utility sl@0: if( iMdaPlayUtil ) sl@0: iMdaPlayUtil->Close(); sl@0: delete iMdaPlayUtil; sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CDrmAudioPlayerAdaptation* CDrmAudioPlayerAdaptation::NewFilePlayerL( const TDesC& aFileName, sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: sl@0: CDrmAudioPlayerAdaptation* self = new(ELeave) CDrmAudioPlayerAdaptation( aCallback ); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructNewFilePlayerL( aFileName, aPriority, aPref ); sl@0: CleanupStack::Pop(self); sl@0: sl@0: return self; sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::ConstructNewFilePlayerL( const TDesC& aFileName, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref ) sl@0: { sl@0: sl@0: if( iMdaPlayUtil ) sl@0: { sl@0: delete iMdaPlayUtil; sl@0: iMdaPlayUtil = NULL; sl@0: } sl@0: iMdaPlayUtil = CMdaAudioPlayerUtility::NewFilePlayerL( aFileName, sl@0: *this, sl@0: aPriority, sl@0: aPref); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CDrmAudioPlayerAdaptation* CDrmAudioPlayerAdaptation::NewDesPlayerL( const TDesC8& aData, sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: sl@0: CDrmAudioPlayerAdaptation* self = new(ELeave) CDrmAudioPlayerAdaptation( aCallback ); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructNewDesPlayerL( aData, aPriority, aPref ); sl@0: CleanupStack::Pop(self); sl@0: sl@0: return self; sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::ConstructNewDesPlayerL( const TDesC8& aData, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref ) sl@0: { sl@0: sl@0: if( iMdaPlayUtil ) sl@0: { sl@0: delete iMdaPlayUtil; sl@0: iMdaPlayUtil = NULL; sl@0: } sl@0: iMdaPlayUtil = CMdaAudioPlayerUtility::NewDesPlayerL( aData, sl@0: *this, sl@0: aPriority, sl@0: aPref); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CDrmAudioPlayerAdaptation* CDrmAudioPlayerAdaptation::NewDesPlayerReadOnlyL( const TDesC8& aData, sl@0: MDrmAudioPlayerCallback& aCallback, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref) sl@0: { sl@0: sl@0: CDrmAudioPlayerAdaptation* self = new(ELeave) CDrmAudioPlayerAdaptation( aCallback ); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructNewDesPlayerReadOnlyL( aData, aPriority, aPref ); sl@0: CleanupStack::Pop(self); sl@0: sl@0: return self; sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::ConstructNewDesPlayerReadOnlyL( const TDesC8& aData, sl@0: TInt aPriority, sl@0: TMdaPriorityPreference aPref ) sl@0: { sl@0: sl@0: delete this->iMdaPlayUtil; sl@0: this->iMdaPlayUtil = NULL; sl@0: this->iMdaPlayUtil = CMdaAudioPlayerUtility::NewDesPlayerReadOnlyL( aData, sl@0: *this, sl@0: aPriority, sl@0: aPref); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::OpenFileL(const TDesC &aFileName) sl@0: { sl@0: iMdaPlayUtil->OpenFileL( aFileName ); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::OpenFileL(const RFile& aFile) sl@0: { sl@0: iMdaPlayUtil->OpenFileL( aFile ); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::OpenFileL(const TMMSource& aSource) sl@0: { sl@0: iMdaPlayUtil->OpenFileL( aSource ); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::OpenDesL(const TDesC8& aDes) sl@0: { sl@0: iMdaPlayUtil->OpenDesL(aDes); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::OpenUrlL( const TDesC& aUrl, TInt aIapId, const TDesC8& aMimeType ) sl@0: { sl@0: iMdaPlayUtil->OpenUrlL( aUrl, aIapId, aMimeType); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::Play() sl@0: { sl@0: iMdaPlayUtil->Play(); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::Stop() sl@0: { sl@0: iMdaPlayUtil->Stop(); sl@0: } sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::SetVolume( const TInt aVolume ) sl@0: { sl@0: iMdaPlayUtil->SetVolume( aVolume ); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::SetRepeats( TInt aRepeatNumberOfTimes, sl@0: const TTimeIntervalMicroSeconds& aTrailingSilence ) sl@0: { sl@0: iMdaPlayUtil->SetRepeats( aRepeatNumberOfTimes, aTrailingSilence ); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::SetVolumeRamp( const TTimeIntervalMicroSeconds& aRampDuration ) sl@0: { sl@0: iMdaPlayUtil->SetVolumeRamp( aRampDuration ); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: const TTimeIntervalMicroSeconds& CDrmAudioPlayerAdaptation::Duration() sl@0: { sl@0: return iMdaPlayUtil->Duration(); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CDrmAudioPlayerAdaptation::MaxVolume() sl@0: { sl@0: return iMdaPlayUtil->MaxVolume(); sl@0: } sl@0: sl@0: sl@0: // API Additions since version 7.0 sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CDrmAudioPlayerAdaptation::Pause() sl@0: { sl@0: return iMdaPlayUtil->Pause(); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::Close() sl@0: { sl@0: iMdaPlayUtil->Close(); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CDrmAudioPlayerAdaptation::GetPosition(TTimeIntervalMicroSeconds& aPosition) sl@0: { sl@0: return iMdaPlayUtil->GetPosition(aPosition); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::SetPosition( const TTimeIntervalMicroSeconds& aPosition ) sl@0: { sl@0: iMdaPlayUtil->SetPosition(aPosition); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CDrmAudioPlayerAdaptation::SetPriority( TInt aPriority, TMdaPriorityPreference aPref ) sl@0: { sl@0: return iMdaPlayUtil->SetPriority( aPriority, aPref ); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CDrmAudioPlayerAdaptation::GetVolume(TInt& aVolume) sl@0: { sl@0: return iMdaPlayUtil->GetVolume(aVolume); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CDrmAudioPlayerAdaptation::GetNumberOfMetaDataEntries( TInt& aNumEntries ) sl@0: { sl@0: return iMdaPlayUtil->GetNumberOfMetaDataEntries( aNumEntries); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: CMMFMetaDataEntry* CDrmAudioPlayerAdaptation::GetMetaDataEntryL( const TInt aMetaDataIndex ) sl@0: { sl@0: return iMdaPlayUtil->GetMetaDataEntryL(aMetaDataIndex); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CDrmAudioPlayerAdaptation::SetPlayWindow(const TTimeIntervalMicroSeconds& aStart, sl@0: const TTimeIntervalMicroSeconds& aEnd) sl@0: { sl@0: return iMdaPlayUtil->SetPlayWindow(aStart,aEnd); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CDrmAudioPlayerAdaptation::ClearPlayWindow() sl@0: { sl@0: return iMdaPlayUtil->ClearPlayWindow(); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CDrmAudioPlayerAdaptation::SetBalance( const TInt aBalance ) sl@0: { sl@0: return iMdaPlayUtil->SetBalance(aBalance); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CDrmAudioPlayerAdaptation::GetBalance(TInt& aBalance) sl@0: { sl@0: return iMdaPlayUtil->GetBalance(aBalance); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CDrmAudioPlayerAdaptation::GetBitRate(TUint& aBitRate) sl@0: { sl@0: return iMdaPlayUtil->GetBitRate(aBitRate); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::RegisterForAudioLoadingNotification(MAudioLoadingObserver& aCallback) sl@0: { sl@0: iMdaPlayUtil->RegisterForAudioLoadingNotification(aCallback); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::GetAudioLoadingProgressL( TInt& aPercentageProgress ) sl@0: { sl@0: iMdaPlayUtil->GetAudioLoadingProgressL(aPercentageProgress); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: const CMMFControllerImplementationInformation& CDrmAudioPlayerAdaptation::ControllerImplementationInformationL() sl@0: { sl@0: return iMdaPlayUtil->ControllerImplementationInformationL(); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CDrmAudioPlayerAdaptation::CustomCommandSync(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: return iMdaPlayUtil->CustomCommandSync( aDestination, sl@0: aFunction, sl@0: aDataTo1, sl@0: aDataTo2, sl@0: aDataFrom ); sl@0: sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TInt CDrmAudioPlayerAdaptation::CustomCommandSync( const TMMFMessageDestinationPckg& aDestination, sl@0: TInt aFunction, sl@0: const TDesC8& aDataTo1, sl@0: const TDesC8& aDataTo2 ) sl@0: { sl@0: return iMdaPlayUtil->CustomCommandSync( aDestination, sl@0: aFunction, sl@0: aDataTo1, sl@0: aDataTo2 ); sl@0: sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::CustomCommandAsync(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: iMdaPlayUtil->CustomCommandAsync( aDestination, sl@0: aFunction, sl@0: aDataTo1, sl@0: aDataTo2, sl@0: aDataFrom, sl@0: aStatus); sl@0: sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::CustomCommandAsync(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: iMdaPlayUtil->CustomCommandAsync( aDestination, sl@0: aFunction, sl@0: aDataTo1, sl@0: aDataTo2, sl@0: aStatus); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: TBool CDrmAudioPlayerAdaptation::IsValidCustomCommandDestination(TUid aDestinationUid, TDesC8& aParam) sl@0: { sl@0: TBool retValue(ETrue); sl@0: 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) sl@0: { sl@0: retValue = EFalse; sl@0: } sl@0: } sl@0: return retValue; sl@0: } sl@0: TBool CDrmAudioPlayerAdaptation::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: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::MapcInitComplete( TInt aError, const TTimeIntervalMicroSeconds& aDuration ) sl@0: { sl@0: iCallback->MdapcInitComplete( aError, aDuration ); sl@0: } sl@0: sl@0: sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: // sl@0: // ----------------------------------------------------------------------------- sl@0: // sl@0: void CDrmAudioPlayerAdaptation::MapcPlayComplete( TInt aError ) sl@0: { sl@0: iCallback->MdapcPlayComplete( aError ); sl@0: } sl@0: sl@0: // End of File sl@0: