os/mm/mmapitest/devsoundexthaitest/inc/T_CMMFDevSoundData.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
/*
sl@0
     2
* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
sl@0
     3
* All rights reserved.
sl@0
     4
* This component and the accompanying materials are made available
sl@0
     5
* under the terms of "Eclipse Public License v1.0"
sl@0
     6
* which accompanies this distribution, and is available
sl@0
     7
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
sl@0
     8
*
sl@0
     9
* Initial Contributors:
sl@0
    10
* Nokia Corporation - initial contribution.
sl@0
    11
*
sl@0
    12
* Contributors:
sl@0
    13
*
sl@0
    14
* Description: 
sl@0
    15
*
sl@0
    16
*/
sl@0
    17
sl@0
    18
sl@0
    19
sl@0
    20
#ifndef T_CMMFDEVSOUND_DATA_H
sl@0
    21
#define T_CMMFDEVSOUND_DATA_H
sl@0
    22
sl@0
    23
//User includes
sl@0
    24
#include "datawrapperbase.h"
sl@0
    25
sl@0
    26
//Epoc Includes
sl@0
    27
#include <sounddevice.h> //CMMFDevSound
sl@0
    28
sl@0
    29
/**
sl@0
    30
 * This class tests the CMMFDevSound API's
sl@0
    31
 */
sl@0
    32
sl@0
    33
enum THwDeviceType
sl@0
    34
	{
sl@0
    35
	EDecoder,
sl@0
    36
	EEncoder
sl@0
    37
	};
sl@0
    38
sl@0
    39
class CT_CMMFDevSoundData : public CDataWrapperBase, public MDevSoundObserver
sl@0
    40
	{
sl@0
    41
public:
sl@0
    42
	~CT_CMMFDevSoundData();
sl@0
    43
	static  CT_CMMFDevSoundData* NewL();
sl@0
    44
	virtual TAny* GetObject();
sl@0
    45
	virtual TBool DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
sl@0
    46
sl@0
    47
protected:
sl@0
    48
	CT_CMMFDevSoundData();
sl@0
    49
	void ConstructL();
sl@0
    50
sl@0
    51
private:
sl@0
    52
	void UtilityFourCCToHwDeviceUidL(const TDesC& aFourCC, THwDeviceType aType, TUid& aHwDeviceUid);
sl@0
    53
	void DestroyData();
sl@0
    54
	void Stop();
sl@0
    55
	void PlayData();
sl@0
    56
	void RecordData();
sl@0
    57
	
sl@0
    58
	/** From MDevSoundObserver */
sl@0
    59
	virtual void InitializeComplete(TInt aError);
sl@0
    60
	virtual void ToneFinished(TInt aError);
sl@0
    61
	virtual void BufferToBeFilled(CMMFBuffer* aBuffer);
sl@0
    62
	virtual void PlayError(TInt aError);
sl@0
    63
	virtual void BufferToBeEmptied(CMMFBuffer* aBuffer);
sl@0
    64
	virtual void RecordError(TInt aError);
sl@0
    65
	virtual void ConvertError(TInt aError);
sl@0
    66
	virtual void DeviceMessage(TUid uid, const TDesC8& aMsg);
sl@0
    67
sl@0
    68
protected:
sl@0
    69
	void DoCmdNewL();
sl@0
    70
	void DoCmdNewLLoopL(const TTEFSectionName&aSection);
sl@0
    71
	void DoCmdDestructor();
sl@0
    72
	void DoCmdCapabilities();
sl@0
    73
	void DoCmdConfig();
sl@0
    74
	void DoCmdMaxGain(const TTEFSectionName& aSection);
sl@0
    75
	void DoCmdMaxVolume(const TTEFSectionName& aSection);
sl@0
    76
	void DoCmdGetPlayBalanceL(const TTEFSectionName& aSection);
sl@0
    77
	void DoCmdGetRecordBalanceL(const TTEFSectionName& aSection);
sl@0
    78
	void DoCmdGetSupportedInputDataTypesL();
sl@0
    79
	void DoCmdGetSupportedOutputDataTypesL();
sl@0
    80
	void DoCmdSamplesPlayed();
sl@0
    81
	void DoCmdSamplesRecorded();
sl@0
    82
	void DoCmdVolume(const TTEFSectionName& aSection);
sl@0
    83
	void DoCmdGain(const TTEFSectionName& aSection);
sl@0
    84
	void DoCmdFixedSequenceCount();
sl@0
    85
	void DoCmdFixedSequenceName(const TTEFSectionName& aSection);
sl@0
    86
	void DoCmdSetConfigL(const TTEFSectionName& aSection);
sl@0
    87
	void DoCmdSetDTMFLengths(const TTEFSectionName& aSection);
sl@0
    88
	void DoCmdSetGain(const TTEFSectionName& aSection);
sl@0
    89
	void DoCmdSetPlayBalanceL(const TTEFSectionName& aSection);
sl@0
    90
	void DoCmdSetPrioritySettings(const TTEFSectionName& aSection);
sl@0
    91
	void DoCmdSetRecordBalanceL(const TTEFSectionName& aSection);
sl@0
    92
	void DoCmdSetToneRepeats(const TTEFSectionName& aSection);
sl@0
    93
	void DoCmdSetVolume(const TTEFSectionName& aSection);
sl@0
    94
	void DoCmdSetVolumeRamp(const TTEFSectionName& aSection);
sl@0
    95
	void DoCmdInitializeL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
sl@0
    96
	void DoCmdPlayDTMFStringL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
sl@0
    97
	void DoCmdPlayData();
sl@0
    98
	void DoCmdPlayDualToneL(const TTEFSectionName& aSection);
sl@0
    99
	void DoCmdPlayInitL(const TInt aAsyncErrorIndex);
sl@0
   100
	void DoCmdPlayToneL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
sl@0
   101
	void DoCmdPlayToneSequenceL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
sl@0
   102
	void DoCmdRecordData();
sl@0
   103
	void DoCmdRecordInitL(const TInt aAsyncErrorIndex);
sl@0
   104
	void DoCmdStop(const TTEFSectionName& aSection);
sl@0
   105
	void DoCmdSetVolumeLoop(const TTEFSectionName& aSection);
sl@0
   106
sl@0
   107
	void DoCmdUtilityErrorConceal();
sl@0
   108
	void DoCmdUtilityReplaceFile(const TTEFSectionName& aSection);
sl@0
   109
	void DoCmdUtilityOpenFile(const TTEFSectionName& aSection);
sl@0
   110
	void DoCmdUtilityCloseFile();
sl@0
   111
	void DoCmdUtilityFileStartPosition();
sl@0
   112
sl@0
   113
private:
sl@0
   114
sl@0
   115
	/**
sl@0
   116
	 * Wrapped object
sl@0
   117
	 */
sl@0
   118
	CMMFDevSound* iDevSound;
sl@0
   119
	/**
sl@0
   120
	 * Array to store DevSound objects
sl@0
   121
	 */
sl@0
   122
	RPointerArray<CMMFDevSound> iObjectsDevSound;
sl@0
   123
	/**
sl@0
   124
	 * Prority settings
sl@0
   125
	 */
sl@0
   126
	TMMFPrioritySettings iPrioritySettings;
sl@0
   127
	/**
sl@0
   128
	 * Capabilities
sl@0
   129
	 */
sl@0
   130
	TMMFCapabilities iCapabilities;
sl@0
   131
	/**
sl@0
   132
	 * Store the volume value
sl@0
   133
	 */
sl@0
   134
	TInt iVolumeValue;
sl@0
   135
	/**
sl@0
   136
	 * Store the gain value
sl@0
   137
	 */
sl@0
   138
	TInt iGainValue;
sl@0
   139
	/**
sl@0
   140
	 * Left percentage
sl@0
   141
	 */
sl@0
   142
	TInt iLeftPercentage;
sl@0
   143
	/**
sl@0
   144
	 * Right percentage
sl@0
   145
	 */
sl@0
   146
	TInt iRightPercentage;
sl@0
   147
	/**
sl@0
   148
	 * File Server
sl@0
   149
	 */
sl@0
   150
	RFs iFs;
sl@0
   151
	/**
sl@0
   152
	 * File for tones
sl@0
   153
	 */
sl@0
   154
	RFile iToneFile;
sl@0
   155
	/**
sl@0
   156
	 * File for audio
sl@0
   157
	 */
sl@0
   158
	RFile iAudiofile;
sl@0
   159
	/**
sl@0
   160
	 * Buffer to be filled or to review if it's empty
sl@0
   161
	 */
sl@0
   162
	CMMFBuffer* iBuffer;
sl@0
   163
	/**
sl@0
   164
	 * Last sample of audio file
sl@0
   165
	 */
sl@0
   166
	TInt iLastSample;
sl@0
   167
	/**
sl@0
   168
	 * for control the pause (DoCmdPause)
sl@0
   169
	 */
sl@0
   170
	TBool iPaused;
sl@0
   171
	/**
sl@0
   172
	 * Conceal the error
sl@0
   173
	 */
sl@0
   174
	TBool iErrorConceal;
sl@0
   175
	/**
sl@0
   176
	 * End of file
sl@0
   177
	 */
sl@0
   178
	TBool iEndFile;
sl@0
   179
	/**
sl@0
   180
	 * Buffer to be filled with tone sequence
sl@0
   181
	 */
sl@0
   182
	TBuf8<1024> iToneSequence;
sl@0
   183
	/**
sl@0
   184
	 * Index for Async error for command InitializeComplete
sl@0
   185
	 */
sl@0
   186
	TInt iInitializeCompleteError;
sl@0
   187
	/**
sl@0
   188
	 * Index for Async error for command ToneFinished
sl@0
   189
	 */
sl@0
   190
	TInt iToneFinishedError;
sl@0
   191
	/**
sl@0
   192
	 * Index for Async error for command BufferToBeFilled
sl@0
   193
	 */
sl@0
   194
	TInt iBufferToBeFilledError;
sl@0
   195
	/**
sl@0
   196
	 * Index for Async error for command PlayError
sl@0
   197
	 */
sl@0
   198
	TInt iPlayErrorError;
sl@0
   199
	/**
sl@0
   200
	 * Index for Async error for command BufferToBeEmptied
sl@0
   201
	 */
sl@0
   202
	TInt iBufferToBeEmptiedError;
sl@0
   203
	/**
sl@0
   204
	 * Index for Async error for command RecordError
sl@0
   205
	 */
sl@0
   206
	TInt iRecordErrorError;
sl@0
   207
	/**
sl@0
   208
	 * Index for Async error for command ConvertError
sl@0
   209
	 */
sl@0
   210
	TInt iConvertErrorError;
sl@0
   211
	/**
sl@0
   212
	 * Index for Async error for command DeviceMessage
sl@0
   213
	 */
sl@0
   214
	TInt iDeviceMessageError;
sl@0
   215
	/**
sl@0
   216
	 * Index for Async error for command UtilityFourCCToHwDeviceUidL
sl@0
   217
	 */
sl@0
   218
	TInt iUtilityFourCCToHwDeviceUidLError;
sl@0
   219
  	/**
sl@0
   220
	 * Index for Async error 
sl@0
   221
	 */
sl@0
   222
	TInt iAsyncErrorIndex_initialize; 
sl@0
   223
    TInt iAsyncErrorIndex_play;
sl@0
   224
    TInt iAsyncErrorIndex_record;
sl@0
   225
    TInt iAsyncErrorIndex_tone;
sl@0
   226
	/**
sl@0
   227
	 * Enum for channels
sl@0
   228
	 */
sl@0
   229
	static const TEnumEntryTable iEnumChannels[];
sl@0
   230
	/**
sl@0
   231
	 * Enum for sample rate
sl@0
   232
	 */
sl@0
   233
	static const TEnumEntryTable iEnumSampleRate[];
sl@0
   234
	/**
sl@0
   235
	 * Enum for the mode
sl@0
   236
	 */
sl@0
   237
	static const TEnumEntryTable iEnumMode[];
sl@0
   238
	/**
sl@0
   239
	 * Enum for the priorities
sl@0
   240
	 */
sl@0
   241
	static const TEnumEntryTable iEnumPriority[];
sl@0
   242
	/**
sl@0
   243
	 * Enum for the priority preference
sl@0
   244
	 */
sl@0
   245
	static const TEnumEntryTable iEnumPriorityPreference[];
sl@0
   246
	/**
sl@0
   247
	 * Enum for initialize(FourCC, HwDevice) the mode and state
sl@0
   248
	 */
sl@0
   249
	static const TEnumEntryTable iEnumInitializeLType[];
sl@0
   250
	};
sl@0
   251
sl@0
   252
#endif // T_CMMFDEVSOUND_DATA_H