First public contribution.
1 // Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
14 // char_a3f_devsound_testclient.h
18 #include "char_a3f_devsound_toneclient.h"
20 CA3FDevSoundToneClient::CA3FDevSoundToneClient(MA3FDevsoundToneClientObserver &aObserver)
23 iDTMFString(KNullDesC)
27 CA3FDevSoundToneClient::~CA3FDevSoundToneClient()
32 CA3FDevSoundToneClient* CA3FDevSoundToneClient::NewL(MA3FDevsoundToneClientObserver &aObserver)
34 CA3FDevSoundToneClient* self = new (ELeave) CA3FDevSoundToneClient(aObserver);
35 CleanupStack::PushL(self);
37 CleanupStack::Pop(self);
41 void CA3FDevSoundToneClient::ConstructL()
43 iDevSound = CMMFDevSound::NewL();
44 iDevSound->SetVolume(iDevSound->MaxVolume());
47 void CA3FDevSoundToneClient::SetPriority(TInt priority)
49 TMMFPrioritySettings settings;
50 settings.iPriority = priority;
51 settings.iPref = EMdaPriorityPreferenceTime;
52 iDevSound->SetPrioritySettings(settings);
55 TInt CA3FDevSoundToneClient::InitTonePlay(TInt aFrequency,TInt aDuration)
57 iFrequency = aFrequency;
58 iDuration = aDuration;
59 TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying));
63 TInt CA3FDevSoundToneClient::InitDualTonePlay(TInt aFrequency, TInt aFrequencyTwo, TInt aDuration)
65 iFrequency = aFrequency;
66 iFrequencyTwo = aFrequencyTwo;
67 iDuration = aDuration;
68 TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying));
72 TInt CA3FDevSoundToneClient::InitDTMFStringPlay(const TDesC &aDTMFString)
74 iDTMFString = aDTMFString;
75 TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying));
79 TInt CA3FDevSoundToneClient::InitToneSequencePlay()
81 TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying));
85 void CA3FDevSoundToneClient::InitializeComplete(TInt aError)
87 iObserver.ClientInitializeCompleteCallback(aError);
89 TInt CA3FDevSoundToneClient::PlayTone()
91 TRAPD(err, iDevSound->PlayToneL(iFrequency,iDuration));
94 TInt CA3FDevSoundToneClient::PlayDualTone()
96 TRAPD(err, iDevSound->PlayDualToneL(iFrequency,iFrequencyTwo,iDuration));
99 TInt CA3FDevSoundToneClient::PlayDTMFString()
101 TRAPD(err, iDevSound->PlayDTMFStringL(iDTMFString));
104 TInt CA3FDevSoundToneClient::PlayToneSequence()
106 TUint8* tablePointer = const_cast<TUint8*>( &(KFixedSequenceTestSequenceDataX[0] ) );
107 TPtrC8 KFixedSequenceData(tablePointer, sizeof(KFixedSequenceTestSequenceDataX));
108 TRAPD(err, iDevSound->PlayToneSequenceL(KFixedSequenceData));
111 void CA3FDevSoundToneClient::ToneFinished(TInt aError)
113 iObserver.ClientToneFinishedCallback(aError);
116 void CA3FDevSoundToneClient::BufferToBeFilled(CMMFBuffer*/*aBuffer*/)
118 __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
121 void CA3FDevSoundToneClient::BufferToBeEmptied(CMMFBuffer* /*aBuffer*/)
123 __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
126 void CA3FDevSoundToneClient::PlayError(TInt /*aError*/)
128 __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
131 void CA3FDevSoundToneClient::RecordError(TInt /*aError*/)
133 __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
136 void CA3FDevSoundToneClient::DeviceMessage(TUid /*aMessageType*/, const TDesC8& /*aMsg*/)
138 __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
141 void CA3FDevSoundToneClient::ConvertError(TInt /*aError*/)
143 __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));