sl@0: // Copyright (c) 2008-2009 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: sl@0: // char_a3f_devsound_testclient.h sl@0: // sl@0: // sl@0: sl@0: #include "char_a3f_devsound_toneclient.h" sl@0: sl@0: CA3FDevSoundToneClient::CA3FDevSoundToneClient(MA3FDevsoundToneClientObserver &aObserver) sl@0: : iDevSound(NULL), sl@0: iObserver(aObserver), sl@0: iDTMFString(KNullDesC) sl@0: { sl@0: } sl@0: sl@0: CA3FDevSoundToneClient::~CA3FDevSoundToneClient() sl@0: { sl@0: delete iDevSound; sl@0: } sl@0: sl@0: CA3FDevSoundToneClient* CA3FDevSoundToneClient::NewL(MA3FDevsoundToneClientObserver &aObserver) sl@0: { sl@0: CA3FDevSoundToneClient* self = new (ELeave) CA3FDevSoundToneClient(aObserver); sl@0: CleanupStack::PushL(self); sl@0: self->ConstructL(); sl@0: CleanupStack::Pop(self); sl@0: return self; sl@0: } sl@0: sl@0: void CA3FDevSoundToneClient::ConstructL() sl@0: { sl@0: iDevSound = CMMFDevSound::NewL(); sl@0: iDevSound->SetVolume(iDevSound->MaxVolume()); sl@0: } sl@0: sl@0: void CA3FDevSoundToneClient::SetPriority(TInt priority) sl@0: { sl@0: TMMFPrioritySettings settings; sl@0: settings.iPriority = priority; sl@0: settings.iPref = EMdaPriorityPreferenceTime; sl@0: iDevSound->SetPrioritySettings(settings); sl@0: } sl@0: sl@0: TInt CA3FDevSoundToneClient::InitTonePlay(TInt aFrequency,TInt aDuration) sl@0: { sl@0: iFrequency = aFrequency; sl@0: iDuration = aDuration; sl@0: TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying)); sl@0: return err; sl@0: } sl@0: sl@0: TInt CA3FDevSoundToneClient::InitDualTonePlay(TInt aFrequency, TInt aFrequencyTwo, TInt aDuration) sl@0: { sl@0: iFrequency = aFrequency; sl@0: iFrequencyTwo = aFrequencyTwo; sl@0: iDuration = aDuration; sl@0: TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying)); sl@0: return err; sl@0: } sl@0: sl@0: TInt CA3FDevSoundToneClient::InitDTMFStringPlay(const TDesC &aDTMFString) sl@0: { sl@0: iDTMFString = aDTMFString; sl@0: TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying)); sl@0: return err; sl@0: } sl@0: sl@0: TInt CA3FDevSoundToneClient::InitToneSequencePlay() sl@0: { sl@0: TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying)); sl@0: return err; sl@0: } sl@0: sl@0: void CA3FDevSoundToneClient::InitializeComplete(TInt aError) sl@0: { sl@0: iObserver.ClientInitializeCompleteCallback(aError); sl@0: } sl@0: TInt CA3FDevSoundToneClient::PlayTone() sl@0: { sl@0: TRAPD(err, iDevSound->PlayToneL(iFrequency,iDuration)); sl@0: return err; sl@0: } sl@0: TInt CA3FDevSoundToneClient::PlayDualTone() sl@0: { sl@0: TRAPD(err, iDevSound->PlayDualToneL(iFrequency,iFrequencyTwo,iDuration)); sl@0: return err; sl@0: } sl@0: TInt CA3FDevSoundToneClient::PlayDTMFString() sl@0: { sl@0: TRAPD(err, iDevSound->PlayDTMFStringL(iDTMFString)); sl@0: return err; sl@0: } sl@0: TInt CA3FDevSoundToneClient::PlayToneSequence() sl@0: { sl@0: TUint8* tablePointer = const_cast( &(KFixedSequenceTestSequenceDataX[0] ) ); sl@0: TPtrC8 KFixedSequenceData(tablePointer, sizeof(KFixedSequenceTestSequenceDataX)); sl@0: TRAPD(err, iDevSound->PlayToneSequenceL(KFixedSequenceData)); sl@0: return err; sl@0: } sl@0: void CA3FDevSoundToneClient::ToneFinished(TInt aError) sl@0: { sl@0: iObserver.ClientToneFinishedCallback(aError); sl@0: } sl@0: sl@0: void CA3FDevSoundToneClient::BufferToBeFilled(CMMFBuffer*/*aBuffer*/) sl@0: { sl@0: __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall)); sl@0: } sl@0: sl@0: void CA3FDevSoundToneClient::BufferToBeEmptied(CMMFBuffer* /*aBuffer*/) sl@0: { sl@0: __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall)); sl@0: } sl@0: sl@0: void CA3FDevSoundToneClient::PlayError(TInt /*aError*/) sl@0: { sl@0: __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall)); sl@0: } sl@0: sl@0: void CA3FDevSoundToneClient::RecordError(TInt /*aError*/) sl@0: { sl@0: __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall)); sl@0: } sl@0: sl@0: void CA3FDevSoundToneClient::DeviceMessage(TUid /*aMessageType*/, const TDesC8& /*aMsg*/) sl@0: { sl@0: __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall)); sl@0: } sl@0: sl@0: void CA3FDevSoundToneClient::ConvertError(TInt /*aError*/) sl@0: { sl@0: __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall)); sl@0: } sl@0: