os/mm/devsound/a3fcharacterisationtest/src/char_a3f_devsound_toneclient.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
sl@0
     1
// Copyright (c) 2008-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     2
// All rights reserved.
sl@0
     3
// This component and the accompanying materials are made available
sl@0
     4
// under the terms of "Eclipse Public License v1.0"
sl@0
     5
// which accompanies this distribution, and is available
sl@0
     6
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     7
//
sl@0
     8
// Initial Contributors:
sl@0
     9
// Nokia Corporation - initial contribution.
sl@0
    10
//
sl@0
    11
// Contributors:
sl@0
    12
//
sl@0
    13
// Description:
sl@0
    14
// char_a3f_devsound_testclient.h
sl@0
    15
// 
sl@0
    16
//
sl@0
    17
sl@0
    18
#include "char_a3f_devsound_toneclient.h"
sl@0
    19
sl@0
    20
CA3FDevSoundToneClient::CA3FDevSoundToneClient(MA3FDevsoundToneClientObserver &aObserver)
sl@0
    21
	: 	iDevSound(NULL), 
sl@0
    22
		iObserver(aObserver), 
sl@0
    23
		iDTMFString(KNullDesC)
sl@0
    24
	{
sl@0
    25
	}
sl@0
    26
sl@0
    27
CA3FDevSoundToneClient::~CA3FDevSoundToneClient()
sl@0
    28
	{
sl@0
    29
	delete iDevSound;
sl@0
    30
	}
sl@0
    31
sl@0
    32
CA3FDevSoundToneClient* CA3FDevSoundToneClient::NewL(MA3FDevsoundToneClientObserver &aObserver)
sl@0
    33
	{
sl@0
    34
	CA3FDevSoundToneClient* self = new (ELeave) CA3FDevSoundToneClient(aObserver);
sl@0
    35
	CleanupStack::PushL(self);
sl@0
    36
	self->ConstructL();
sl@0
    37
	CleanupStack::Pop(self);
sl@0
    38
	return self;
sl@0
    39
	}
sl@0
    40
sl@0
    41
void CA3FDevSoundToneClient::ConstructL()
sl@0
    42
	{   
sl@0
    43
	iDevSound = CMMFDevSound::NewL();
sl@0
    44
	iDevSound->SetVolume(iDevSound->MaxVolume());
sl@0
    45
	}
sl@0
    46
sl@0
    47
void CA3FDevSoundToneClient::SetPriority(TInt priority)
sl@0
    48
	{   
sl@0
    49
	TMMFPrioritySettings settings;
sl@0
    50
	settings.iPriority = priority;
sl@0
    51
	settings.iPref = EMdaPriorityPreferenceTime;
sl@0
    52
	iDevSound->SetPrioritySettings(settings);
sl@0
    53
	}
sl@0
    54
sl@0
    55
TInt CA3FDevSoundToneClient::InitTonePlay(TInt aFrequency,TInt aDuration)
sl@0
    56
	{
sl@0
    57
	iFrequency = aFrequency;
sl@0
    58
	iDuration = aDuration;
sl@0
    59
	TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying));
sl@0
    60
	return err;
sl@0
    61
	}
sl@0
    62
sl@0
    63
TInt CA3FDevSoundToneClient::InitDualTonePlay(TInt aFrequency, TInt aFrequencyTwo,  TInt aDuration)
sl@0
    64
	{
sl@0
    65
	iFrequency = aFrequency;
sl@0
    66
	iFrequencyTwo = aFrequencyTwo;
sl@0
    67
	iDuration = aDuration;
sl@0
    68
	TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying));
sl@0
    69
	return err;
sl@0
    70
	}
sl@0
    71
sl@0
    72
TInt CA3FDevSoundToneClient::InitDTMFStringPlay(const TDesC &aDTMFString)
sl@0
    73
	{
sl@0
    74
	iDTMFString = aDTMFString;
sl@0
    75
	TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying));
sl@0
    76
	return err;
sl@0
    77
	}
sl@0
    78
sl@0
    79
TInt CA3FDevSoundToneClient::InitToneSequencePlay()
sl@0
    80
	{
sl@0
    81
	TRAPD(err, iDevSound->InitializeL(*this,EMMFStateTonePlaying));
sl@0
    82
	return err;
sl@0
    83
	}
sl@0
    84
sl@0
    85
void CA3FDevSoundToneClient::InitializeComplete(TInt aError)
sl@0
    86
	{
sl@0
    87
	iObserver.ClientInitializeCompleteCallback(aError);
sl@0
    88
	}
sl@0
    89
TInt CA3FDevSoundToneClient::PlayTone()
sl@0
    90
	{
sl@0
    91
	TRAPD(err, iDevSound->PlayToneL(iFrequency,iDuration));
sl@0
    92
	return err;
sl@0
    93
	}
sl@0
    94
TInt CA3FDevSoundToneClient::PlayDualTone()
sl@0
    95
	{
sl@0
    96
	TRAPD(err, iDevSound->PlayDualToneL(iFrequency,iFrequencyTwo,iDuration));
sl@0
    97
	return err;
sl@0
    98
	}
sl@0
    99
TInt CA3FDevSoundToneClient::PlayDTMFString()
sl@0
   100
	{
sl@0
   101
	TRAPD(err, iDevSound->PlayDTMFStringL(iDTMFString));
sl@0
   102
	return err;
sl@0
   103
	}
sl@0
   104
TInt CA3FDevSoundToneClient::PlayToneSequence()
sl@0
   105
	{
sl@0
   106
	TUint8* tablePointer = const_cast<TUint8*>( &(KFixedSequenceTestSequenceDataX[0] ) ); 
sl@0
   107
	TPtrC8 KFixedSequenceData(tablePointer, sizeof(KFixedSequenceTestSequenceDataX));
sl@0
   108
	TRAPD(err, iDevSound->PlayToneSequenceL(KFixedSequenceData));
sl@0
   109
	return err;
sl@0
   110
	}
sl@0
   111
void CA3FDevSoundToneClient::ToneFinished(TInt aError)
sl@0
   112
	{
sl@0
   113
	iObserver.ClientToneFinishedCallback(aError);
sl@0
   114
	}
sl@0
   115
sl@0
   116
void CA3FDevSoundToneClient::BufferToBeFilled(CMMFBuffer*/*aBuffer*/)
sl@0
   117
	{
sl@0
   118
	__ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
sl@0
   119
	}
sl@0
   120
sl@0
   121
void CA3FDevSoundToneClient::BufferToBeEmptied(CMMFBuffer* /*aBuffer*/)
sl@0
   122
	{
sl@0
   123
	__ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
sl@0
   124
	}
sl@0
   125
sl@0
   126
void CA3FDevSoundToneClient::PlayError(TInt /*aError*/)
sl@0
   127
	{
sl@0
   128
	__ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
sl@0
   129
	}
sl@0
   130
sl@0
   131
void CA3FDevSoundToneClient::RecordError(TInt /*aError*/)
sl@0
   132
	{
sl@0
   133
	__ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
sl@0
   134
	}
sl@0
   135
sl@0
   136
void CA3FDevSoundToneClient::DeviceMessage(TUid /*aMessageType*/, const TDesC8& /*aMsg*/)
sl@0
   137
	{
sl@0
   138
	__ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
sl@0
   139
	}
sl@0
   140
sl@0
   141
void CA3FDevSoundToneClient::ConvertError(TInt /*aError*/)
sl@0
   142
	{
sl@0
   143
	__ASSERT_ALWAYS(0, Panic(_L("CA3FDevSoundToneClient"), EInvalidCallbackCall));
sl@0
   144
	}
sl@0
   145