1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mmapitest/devsoundexthaitest/inc/T_CMMFDevSoundData.h Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,252 @@
1.4 +/*
1.5 +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +
1.23 +#ifndef T_CMMFDEVSOUND_DATA_H
1.24 +#define T_CMMFDEVSOUND_DATA_H
1.25 +
1.26 +//User includes
1.27 +#include "datawrapperbase.h"
1.28 +
1.29 +//Epoc Includes
1.30 +#include <sounddevice.h> //CMMFDevSound
1.31 +
1.32 +/**
1.33 + * This class tests the CMMFDevSound API's
1.34 + */
1.35 +
1.36 +enum THwDeviceType
1.37 + {
1.38 + EDecoder,
1.39 + EEncoder
1.40 + };
1.41 +
1.42 +class CT_CMMFDevSoundData : public CDataWrapperBase, public MDevSoundObserver
1.43 + {
1.44 +public:
1.45 + ~CT_CMMFDevSoundData();
1.46 + static CT_CMMFDevSoundData* NewL();
1.47 + virtual TAny* GetObject();
1.48 + virtual TBool DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
1.49 +
1.50 +protected:
1.51 + CT_CMMFDevSoundData();
1.52 + void ConstructL();
1.53 +
1.54 +private:
1.55 + void UtilityFourCCToHwDeviceUidL(const TDesC& aFourCC, THwDeviceType aType, TUid& aHwDeviceUid);
1.56 + void DestroyData();
1.57 + void Stop();
1.58 + void PlayData();
1.59 + void RecordData();
1.60 +
1.61 + /** From MDevSoundObserver */
1.62 + virtual void InitializeComplete(TInt aError);
1.63 + virtual void ToneFinished(TInt aError);
1.64 + virtual void BufferToBeFilled(CMMFBuffer* aBuffer);
1.65 + virtual void PlayError(TInt aError);
1.66 + virtual void BufferToBeEmptied(CMMFBuffer* aBuffer);
1.67 + virtual void RecordError(TInt aError);
1.68 + virtual void ConvertError(TInt aError);
1.69 + virtual void DeviceMessage(TUid uid, const TDesC8& aMsg);
1.70 +
1.71 +protected:
1.72 + void DoCmdNewL();
1.73 + void DoCmdNewLLoopL(const TTEFSectionName&aSection);
1.74 + void DoCmdDestructor();
1.75 + void DoCmdCapabilities();
1.76 + void DoCmdConfig();
1.77 + void DoCmdMaxGain(const TTEFSectionName& aSection);
1.78 + void DoCmdMaxVolume(const TTEFSectionName& aSection);
1.79 + void DoCmdGetPlayBalanceL(const TTEFSectionName& aSection);
1.80 + void DoCmdGetRecordBalanceL(const TTEFSectionName& aSection);
1.81 + void DoCmdGetSupportedInputDataTypesL();
1.82 + void DoCmdGetSupportedOutputDataTypesL();
1.83 + void DoCmdSamplesPlayed();
1.84 + void DoCmdSamplesRecorded();
1.85 + void DoCmdVolume(const TTEFSectionName& aSection);
1.86 + void DoCmdGain(const TTEFSectionName& aSection);
1.87 + void DoCmdFixedSequenceCount();
1.88 + void DoCmdFixedSequenceName(const TTEFSectionName& aSection);
1.89 + void DoCmdSetConfigL(const TTEFSectionName& aSection);
1.90 + void DoCmdSetDTMFLengths(const TTEFSectionName& aSection);
1.91 + void DoCmdSetGain(const TTEFSectionName& aSection);
1.92 + void DoCmdSetPlayBalanceL(const TTEFSectionName& aSection);
1.93 + void DoCmdSetPrioritySettings(const TTEFSectionName& aSection);
1.94 + void DoCmdSetRecordBalanceL(const TTEFSectionName& aSection);
1.95 + void DoCmdSetToneRepeats(const TTEFSectionName& aSection);
1.96 + void DoCmdSetVolume(const TTEFSectionName& aSection);
1.97 + void DoCmdSetVolumeRamp(const TTEFSectionName& aSection);
1.98 + void DoCmdInitializeL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
1.99 + void DoCmdPlayDTMFStringL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
1.100 + void DoCmdPlayData();
1.101 + void DoCmdPlayDualToneL(const TTEFSectionName& aSection);
1.102 + void DoCmdPlayInitL(const TInt aAsyncErrorIndex);
1.103 + void DoCmdPlayToneL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
1.104 + void DoCmdPlayToneSequenceL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex);
1.105 + void DoCmdRecordData();
1.106 + void DoCmdRecordInitL(const TInt aAsyncErrorIndex);
1.107 + void DoCmdStop(const TTEFSectionName& aSection);
1.108 + void DoCmdSetVolumeLoop(const TTEFSectionName& aSection);
1.109 +
1.110 + void DoCmdUtilityErrorConceal();
1.111 + void DoCmdUtilityReplaceFile(const TTEFSectionName& aSection);
1.112 + void DoCmdUtilityOpenFile(const TTEFSectionName& aSection);
1.113 + void DoCmdUtilityCloseFile();
1.114 + void DoCmdUtilityFileStartPosition();
1.115 +
1.116 +private:
1.117 +
1.118 + /**
1.119 + * Wrapped object
1.120 + */
1.121 + CMMFDevSound* iDevSound;
1.122 + /**
1.123 + * Array to store DevSound objects
1.124 + */
1.125 + RPointerArray<CMMFDevSound> iObjectsDevSound;
1.126 + /**
1.127 + * Prority settings
1.128 + */
1.129 + TMMFPrioritySettings iPrioritySettings;
1.130 + /**
1.131 + * Capabilities
1.132 + */
1.133 + TMMFCapabilities iCapabilities;
1.134 + /**
1.135 + * Store the volume value
1.136 + */
1.137 + TInt iVolumeValue;
1.138 + /**
1.139 + * Store the gain value
1.140 + */
1.141 + TInt iGainValue;
1.142 + /**
1.143 + * Left percentage
1.144 + */
1.145 + TInt iLeftPercentage;
1.146 + /**
1.147 + * Right percentage
1.148 + */
1.149 + TInt iRightPercentage;
1.150 + /**
1.151 + * File Server
1.152 + */
1.153 + RFs iFs;
1.154 + /**
1.155 + * File for tones
1.156 + */
1.157 + RFile iToneFile;
1.158 + /**
1.159 + * File for audio
1.160 + */
1.161 + RFile iAudiofile;
1.162 + /**
1.163 + * Buffer to be filled or to review if it's empty
1.164 + */
1.165 + CMMFBuffer* iBuffer;
1.166 + /**
1.167 + * Last sample of audio file
1.168 + */
1.169 + TInt iLastSample;
1.170 + /**
1.171 + * for control the pause (DoCmdPause)
1.172 + */
1.173 + TBool iPaused;
1.174 + /**
1.175 + * Conceal the error
1.176 + */
1.177 + TBool iErrorConceal;
1.178 + /**
1.179 + * End of file
1.180 + */
1.181 + TBool iEndFile;
1.182 + /**
1.183 + * Buffer to be filled with tone sequence
1.184 + */
1.185 + TBuf8<1024> iToneSequence;
1.186 + /**
1.187 + * Index for Async error for command InitializeComplete
1.188 + */
1.189 + TInt iInitializeCompleteError;
1.190 + /**
1.191 + * Index for Async error for command ToneFinished
1.192 + */
1.193 + TInt iToneFinishedError;
1.194 + /**
1.195 + * Index for Async error for command BufferToBeFilled
1.196 + */
1.197 + TInt iBufferToBeFilledError;
1.198 + /**
1.199 + * Index for Async error for command PlayError
1.200 + */
1.201 + TInt iPlayErrorError;
1.202 + /**
1.203 + * Index for Async error for command BufferToBeEmptied
1.204 + */
1.205 + TInt iBufferToBeEmptiedError;
1.206 + /**
1.207 + * Index for Async error for command RecordError
1.208 + */
1.209 + TInt iRecordErrorError;
1.210 + /**
1.211 + * Index for Async error for command ConvertError
1.212 + */
1.213 + TInt iConvertErrorError;
1.214 + /**
1.215 + * Index for Async error for command DeviceMessage
1.216 + */
1.217 + TInt iDeviceMessageError;
1.218 + /**
1.219 + * Index for Async error for command UtilityFourCCToHwDeviceUidL
1.220 + */
1.221 + TInt iUtilityFourCCToHwDeviceUidLError;
1.222 + /**
1.223 + * Index for Async error
1.224 + */
1.225 + TInt iAsyncErrorIndex_initialize;
1.226 + TInt iAsyncErrorIndex_play;
1.227 + TInt iAsyncErrorIndex_record;
1.228 + TInt iAsyncErrorIndex_tone;
1.229 + /**
1.230 + * Enum for channels
1.231 + */
1.232 + static const TEnumEntryTable iEnumChannels[];
1.233 + /**
1.234 + * Enum for sample rate
1.235 + */
1.236 + static const TEnumEntryTable iEnumSampleRate[];
1.237 + /**
1.238 + * Enum for the mode
1.239 + */
1.240 + static const TEnumEntryTable iEnumMode[];
1.241 + /**
1.242 + * Enum for the priorities
1.243 + */
1.244 + static const TEnumEntryTable iEnumPriority[];
1.245 + /**
1.246 + * Enum for the priority preference
1.247 + */
1.248 + static const TEnumEntryTable iEnumPriorityPreference[];
1.249 + /**
1.250 + * Enum for initialize(FourCC, HwDevice) the mode and state
1.251 + */
1.252 + static const TEnumEntryTable iEnumInitializeLType[];
1.253 + };
1.254 +
1.255 +#endif // T_CMMFDEVSOUND_DATA_H