os/mm/devsound/a3fcharacterisationtest/src/char_a3f_devsound_testbase.h
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
//
sl@0
    15
sl@0
    16
#ifndef CHAR_A3F_DEVSOUND_TESTBASE_H
sl@0
    17
#define CHAR_A3F_DEVSOUND_TESTBASE_H
sl@0
    18
sl@0
    19
// system includes
sl@0
    20
#include <testframework.h>
sl@0
    21
#include <mmf/server/sounddevice.h>
sl@0
    22
sl@0
    23
// user includes
sl@0
    24
#include "char_a3f_devsound_compliancesuiteconstants.h"
sl@0
    25
sl@0
    26
// forward declaration
sl@0
    27
class CA3FDevSoundToneClient;
sl@0
    28
class CA3FDevSoundPlayClient;
sl@0
    29
class CA3FDevSoundRecordClient;
sl@0
    30
sl@0
    31
class CAsyncWriteBufferToFile;
sl@0
    32
sl@0
    33
/*
sl@0
    34
 Base class for all DevSound test steps in this suite.
sl@0
    35
 */
sl@0
    36
class RA3FDevSoundTestBase: public RAsyncTestStep, public MDevSoundObserver 
sl@0
    37
	{
sl@0
    38
public:		
sl@0
    39
	// from RAsyncTestStep
sl@0
    40
	void KickoffTestL();
sl@0
    41
	void CloseTest();
sl@0
    42
	void CallStopTest(TInt aError);
sl@0
    43
sl@0
    44
protected:
sl@0
    45
	RA3FDevSoundTestBase(const TDesC& aTestName);
sl@0
    46
	virtual void DoKickoffTestL() = 0;
sl@0
    47
	virtual void DoTimerCallback();
sl@0
    48
	static TInt TimerCallback(TAny*);
sl@0
    49
	void StartTimer(TTimeIntervalMicroSeconds32 aWaitTime);
sl@0
    50
	// from MDevSoundObserver
sl@0
    51
	void InitializeComplete(TInt aError);
sl@0
    52
	void ToneFinished(TInt aError);
sl@0
    53
	void BufferToBeFilled(CMMFBuffer* aBuffer);
sl@0
    54
	void PlayError(TInt aError);
sl@0
    55
	void BufferToBeEmptied(CMMFBuffer* aBuffer);
sl@0
    56
	void RecordError(TInt aError);
sl@0
    57
	void ConvertError(TInt aError);
sl@0
    58
	void DeviceMessage(TUid aMessageType, const TDesC8& aMsg);
sl@0
    59
	void SendEventToClient(const TMMFEvent& aEvent);
sl@0
    60
	// Executes events of DevSound using a Finite State Machine
sl@0
    61
	virtual void Fsm(TMmfDevSoundEvent aDevSoundEvent, TInt aError) = 0;
sl@0
    62
sl@0
    63
	void SampleRateFromTIntToTMMFSampleRate(TInt aSampleRate, TMMFSampleRate &aESampleRate);
sl@0
    64
	void SampleRateFromTUintToString(TUint aSampleRate, TDes& aStringSampleRate);
sl@0
    65
	void ChannelsFromTUintToString(TUint aChannels, TDes& aStringChannels);
sl@0
    66
	void EncodingFromStringToTFourCC(const TDesC& aFourCCString);
sl@0
    67
	void PrintSupportedCapabilities(TUint aSampleRate,TUint aChannel);
sl@0
    68
	
sl@0
    69
protected:
sl@0
    70
	TBuf<KSizeBuf> iFourCCString;
sl@0
    71
	TFourCC iFourCCCode;
sl@0
    72
	TMmfDevSoundState iDevSoundState;
sl@0
    73
	CA3FDevSoundToneClient* iDevsoundToneClient;
sl@0
    74
	CA3FDevSoundPlayClient* iDevsoundPlayClient;
sl@0
    75
	CA3FDevSoundRecordClient* iDevsoundRecordClient;
sl@0
    76
	CMMFDevSound* iMMFDevSound;
sl@0
    77
	CPeriodic* iTimer;
sl@0
    78
	CMMFBuffer* iBuffer;
sl@0
    79
	// Handle for the audio file for playing and recording
sl@0
    80
	RFile iFile;
sl@0
    81
	// Handle to a file server session
sl@0
    82
	RFs iFs;
sl@0
    83
	CAsyncWriteBufferToFile* iAsyncWriteBTFAO;
sl@0
    84
	};
sl@0
    85
sl@0
    86
class TSampleRateToTMMFSampleRate
sl@0
    87
	{
sl@0
    88
public:
sl@0
    89
	TInt iTIntSampleRate;
sl@0
    90
	TMMFSampleRate iTMMFSampleRate;
sl@0
    91
	};
sl@0
    92
sl@0
    93
class TSampleRateToString
sl@0
    94
	{
sl@0
    95
public:
sl@0
    96
	TUint iTUIntSampleRate;
sl@0
    97
	TPtrC iTPtrSampleRate;
sl@0
    98
	};
sl@0
    99
sl@0
   100
class TChannelsToString
sl@0
   101
	{
sl@0
   102
public:
sl@0
   103
	TUint iTUIntChannels;
sl@0
   104
	TPtrC iTPtrChannels;
sl@0
   105
	};
sl@0
   106
/*
sl@0
   107
 *
sl@0
   108
 * CAsyncWriteBufferToFile
sl@0
   109
 *
sl@0
   110
 */
sl@0
   111
sl@0
   112
class CAsyncWriteBufferToFile : public CActive
sl@0
   113
	{
sl@0
   114
public:
sl@0
   115
	static CAsyncWriteBufferToFile* NewL(RFile& aFile, CMMFDevSound* aDevSound, RA3FDevSoundTestBase& aTestStep);
sl@0
   116
	~CAsyncWriteBufferToFile();
sl@0
   117
	void Start(CMMFDataBuffer* aBuffer);
sl@0
   118
sl@0
   119
private:
sl@0
   120
	CAsyncWriteBufferToFile(RFile& aFile, CMMFDevSound* aDevSound, RA3FDevSoundTestBase& aTestStep);
sl@0
   121
	void ConstructL();
sl@0
   122
	virtual void DoCancel();
sl@0
   123
	virtual void RunL();
sl@0
   124
	virtual TInt RunError(TInt aError);
sl@0
   125
sl@0
   126
private:
sl@0
   127
	RFile& iFile;
sl@0
   128
	CMMFDevSound* iDevSound;
sl@0
   129
	RA3FDevSoundTestBase& iTestStep;
sl@0
   130
	};
sl@0
   131
sl@0
   132
#endif	// CHAR_A3F_DEVSOUND_TESTBASE_H
sl@0
   133