1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/devsound/a3fcharacterisationtest/src/char_a3f_devsound_toneclient.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,145 @@
1.4 +// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
1.5 +// All rights reserved.
1.6 +// This component and the accompanying materials are made available
1.7 +// under the terms of "Eclipse Public License v1.0"
1.8 +// which accompanies this distribution, and is available
1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.10 +//
1.11 +// Initial Contributors:
1.12 +// Nokia Corporation - initial contribution.
1.13 +//
1.14 +// Contributors:
1.15 +//
1.16 +// Description:
1.17 +// char_a3f_devsound_testclient.h
1.18 +//
1.19 +//
1.20 +
1.21 +#include "char_a3f_devsound_toneclient.h"
1.22 +
1.23 +CA3FDevSoundToneClient::CA3FDevSoundToneClient(MA3FDevsoundToneClientObserver &aObserver)
1.24 + : iDevSound(NULL),
1.25 + iObserver(aObserver),
1.26 + iDTMFString(KNullDesC)
1.27 + {
1.28 + }
1.29 +
1.30 +CA3FDevSoundToneClient::~CA3FDevSoundToneClient()
1.31 + {
1.32 + delete iDevSound;
1.33 + }
1.34 +
1.35 +CA3FDevSoundToneClient* CA3FDevSoundToneClient::NewL(MA3FDevsoundToneClientObserver &aObserver)
1.36 + {
1.37 + CA3FDevSoundToneClient* self = new (ELeave) CA3FDevSoundToneClient(aObserver);
1.38 + CleanupStack::PushL(self);
1.39 + self->ConstructL();
1.40 + CleanupStack::Pop(self);
1.41 + return self;
1.42 + }
1.43 +
1.44 +void CA3FDevSoundToneClient::ConstructL()
1.45 + {
1.46 + iDevSound = CMMFDevSound::NewL();
1.47 + iDevSound->SetVolume(iDevSound->MaxVolume());
1.48 + }
1.49 +
1.50 +void CA3FDevSoundToneClient::SetPriority(TInt priority)
1.51 + {
1.52 + TMMFPrioritySettings settings;
1.53 + settings.iPriority = priority;
1.54 + settings.iPref = EMdaPriorityPreferenceTime;
1.55 + iDevSound->SetPrioritySettings(settings);
1.56 + }
1.57 +
1.58 +TInt CA3FDevSoundToneClient::InitTonePlay(TInt aFrequency,TInt aDuration)
1.59 + {
1.60 + iFrequency = aFrequency;
1.61 + iDuration = aDuration;
1.62 + TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying));
1.63 + return err;
1.64 + }
1.65 +
1.66 +TInt CA3FDevSoundToneClient::InitDualTonePlay(TInt aFrequency, TInt aFrequencyTwo, TInt aDuration)
1.67 + {
1.68 + iFrequency = aFrequency;
1.69 + iFrequencyTwo = aFrequencyTwo;
1.70 + iDuration = aDuration;
1.71 + TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying));
1.72 + return err;
1.73 + }
1.74 +
1.75 +TInt CA3FDevSoundToneClient::InitDTMFStringPlay(const TDesC &aDTMFString)
1.76 + {
1.77 + iDTMFString = aDTMFString;
1.78 + TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying));
1.79 + return err;
1.80 + }
1.81 +
1.82 +TInt CA3FDevSoundToneClient::InitToneSequencePlay()
1.83 + {
1.84 + TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying));
1.85 + return err;
1.86 + }
1.87 +
1.88 +void CA3FDevSoundToneClient::InitializeComplete(TInt aError)
1.89 + {
1.90 + iObserver.ClientInitializeCompleteCallback(aError);
1.91 + }
1.92 +TInt CA3FDevSoundToneClient::PlayTone()
1.93 + {
1.94 + TRAPD(err, iDevSound->PlayToneL(iFrequency,iDuration));
1.95 + return err;
1.96 + }
1.97 +TInt CA3FDevSoundToneClient::PlayDualTone()
1.98 + {
1.99 + TRAPD(err, iDevSound->PlayDualToneL(iFrequency,iFrequencyTwo,iDuration));
1.100 + return err;
1.101 + }
1.102 +TInt CA3FDevSoundToneClient::PlayDTMFString()
1.103 + {
1.104 + TRAPD(err, iDevSound->PlayDTMFStringL(iDTMFString));
1.105 + return err;
1.106 + }
1.107 +TInt CA3FDevSoundToneClient::PlayToneSequence()
1.108 + {
1.109 + TUint8* tablePointer = const_cast<TUint8*>( &(KFixedSequenceTestSequenceDataX[0] ) );
1.110 + TPtrC8 KFixedSequenceData(tablePointer, sizeof(KFixedSequenceTestSequenceDataX));
1.111 + TRAPD(err, iDevSound->PlayToneSequenceL(KFixedSequenceData));
1.112 + return err;
1.113 + }
1.114 +void CA3FDevSoundToneClient::ToneFinished(TInt aError)
1.115 + {
1.116 + iObserver.ClientToneFinishedCallback(aError);
1.117 + }
1.118 +
1.119 +void CA3FDevSoundToneClient::BufferToBeFilled(CMMFBuffer*/*aBuffer*/)
1.120 + {
1.121 + __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
1.122 + }
1.123 +
1.124 +void CA3FDevSoundToneClient::BufferToBeEmptied(CMMFBuffer* /*aBuffer*/)
1.125 + {
1.126 + __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
1.127 + }
1.128 +
1.129 +void CA3FDevSoundToneClient::PlayError(TInt /*aError*/)
1.130 + {
1.131 + __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
1.132 + }
1.133 +
1.134 +void CA3FDevSoundToneClient::RecordError(TInt /*aError*/)
1.135 + {
1.136 + __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
1.137 + }
1.138 +
1.139 +void CA3FDevSoundToneClient::DeviceMessage(TUid /*aMessageType*/, const TDesC8& /*aMsg*/)
1.140 + {
1.141 + __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
1.142 + }
1.143 +
1.144 +void CA3FDevSoundToneClient::ConvertError(TInt /*aError*/)
1.145 + {
1.146 + __ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
1.147 + }
1.148 +