sl@0: /* sl@0: * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: sl@0: #ifndef T_CMMFDEVSOUND_DATA_H sl@0: #define T_CMMFDEVSOUND_DATA_H sl@0: sl@0: //User includes sl@0: #include "datawrapperbase.h" sl@0: sl@0: //Epoc Includes sl@0: #include //CMMFDevSound sl@0: sl@0: /** sl@0: * This class tests the CMMFDevSound API's sl@0: */ sl@0: sl@0: enum THwDeviceType sl@0: { sl@0: EDecoder, sl@0: EEncoder sl@0: }; sl@0: sl@0: class CT_CMMFDevSoundData : public CDataWrapperBase, public MDevSoundObserver sl@0: { sl@0: public: sl@0: ~CT_CMMFDevSoundData(); sl@0: static CT_CMMFDevSoundData* NewL(); sl@0: virtual TAny* GetObject(); sl@0: virtual TBool DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex); sl@0: sl@0: protected: sl@0: CT_CMMFDevSoundData(); sl@0: void ConstructL(); sl@0: sl@0: private: sl@0: void UtilityFourCCToHwDeviceUidL(const TDesC& aFourCC, THwDeviceType aType, TUid& aHwDeviceUid); sl@0: void DestroyData(); sl@0: void Stop(); sl@0: void PlayData(); sl@0: void RecordData(); sl@0: sl@0: /** From MDevSoundObserver */ sl@0: virtual void InitializeComplete(TInt aError); sl@0: virtual void ToneFinished(TInt aError); sl@0: virtual void BufferToBeFilled(CMMFBuffer* aBuffer); sl@0: virtual void PlayError(TInt aError); sl@0: virtual void BufferToBeEmptied(CMMFBuffer* aBuffer); sl@0: virtual void RecordError(TInt aError); sl@0: virtual void ConvertError(TInt aError); sl@0: virtual void DeviceMessage(TUid uid, const TDesC8& aMsg); sl@0: sl@0: protected: sl@0: void DoCmdNewL(); sl@0: void DoCmdNewLLoopL(const TTEFSectionName&aSection); sl@0: void DoCmdDestructor(); sl@0: void DoCmdCapabilities(); sl@0: void DoCmdConfig(); sl@0: void DoCmdMaxGain(const TTEFSectionName& aSection); sl@0: void DoCmdMaxVolume(const TTEFSectionName& aSection); sl@0: void DoCmdGetPlayBalanceL(const TTEFSectionName& aSection); sl@0: void DoCmdGetRecordBalanceL(const TTEFSectionName& aSection); sl@0: void DoCmdGetSupportedInputDataTypesL(); sl@0: void DoCmdGetSupportedOutputDataTypesL(); sl@0: void DoCmdSamplesPlayed(); sl@0: void DoCmdSamplesRecorded(); sl@0: void DoCmdVolume(const TTEFSectionName& aSection); sl@0: void DoCmdGain(const TTEFSectionName& aSection); sl@0: void DoCmdFixedSequenceCount(); sl@0: void DoCmdFixedSequenceName(const TTEFSectionName& aSection); sl@0: void DoCmdSetConfigL(const TTEFSectionName& aSection); sl@0: void DoCmdSetDTMFLengths(const TTEFSectionName& aSection); sl@0: void DoCmdSetGain(const TTEFSectionName& aSection); sl@0: void DoCmdSetPlayBalanceL(const TTEFSectionName& aSection); sl@0: void DoCmdSetPrioritySettings(const TTEFSectionName& aSection); sl@0: void DoCmdSetRecordBalanceL(const TTEFSectionName& aSection); sl@0: void DoCmdSetToneRepeats(const TTEFSectionName& aSection); sl@0: void DoCmdSetVolume(const TTEFSectionName& aSection); sl@0: void DoCmdSetVolumeRamp(const TTEFSectionName& aSection); sl@0: void DoCmdInitializeL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex); sl@0: void DoCmdPlayDTMFStringL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex); sl@0: void DoCmdPlayData(); sl@0: void DoCmdPlayDualToneL(const TTEFSectionName& aSection); sl@0: void DoCmdPlayInitL(const TInt aAsyncErrorIndex); sl@0: void DoCmdPlayToneL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex); sl@0: void DoCmdPlayToneSequenceL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex); sl@0: void DoCmdRecordData(); sl@0: void DoCmdRecordInitL(const TInt aAsyncErrorIndex); sl@0: void DoCmdStop(const TTEFSectionName& aSection); sl@0: void DoCmdSetVolumeLoop(const TTEFSectionName& aSection); sl@0: sl@0: void DoCmdUtilityErrorConceal(); sl@0: void DoCmdUtilityReplaceFile(const TTEFSectionName& aSection); sl@0: void DoCmdUtilityOpenFile(const TTEFSectionName& aSection); sl@0: void DoCmdUtilityCloseFile(); sl@0: void DoCmdUtilityFileStartPosition(); sl@0: sl@0: private: sl@0: sl@0: /** sl@0: * Wrapped object sl@0: */ sl@0: CMMFDevSound* iDevSound; sl@0: /** sl@0: * Array to store DevSound objects sl@0: */ sl@0: RPointerArray iObjectsDevSound; sl@0: /** sl@0: * Prority settings sl@0: */ sl@0: TMMFPrioritySettings iPrioritySettings; sl@0: /** sl@0: * Capabilities sl@0: */ sl@0: TMMFCapabilities iCapabilities; sl@0: /** sl@0: * Store the volume value sl@0: */ sl@0: TInt iVolumeValue; sl@0: /** sl@0: * Store the gain value sl@0: */ sl@0: TInt iGainValue; sl@0: /** sl@0: * Left percentage sl@0: */ sl@0: TInt iLeftPercentage; sl@0: /** sl@0: * Right percentage sl@0: */ sl@0: TInt iRightPercentage; sl@0: /** sl@0: * File Server sl@0: */ sl@0: RFs iFs; sl@0: /** sl@0: * File for tones sl@0: */ sl@0: RFile iToneFile; sl@0: /** sl@0: * File for audio sl@0: */ sl@0: RFile iAudiofile; sl@0: /** sl@0: * Buffer to be filled or to review if it's empty sl@0: */ sl@0: CMMFBuffer* iBuffer; sl@0: /** sl@0: * Last sample of audio file sl@0: */ sl@0: TInt iLastSample; sl@0: /** sl@0: * for control the pause (DoCmdPause) sl@0: */ sl@0: TBool iPaused; sl@0: /** sl@0: * Conceal the error sl@0: */ sl@0: TBool iErrorConceal; sl@0: /** sl@0: * End of file sl@0: */ sl@0: TBool iEndFile; sl@0: /** sl@0: * Buffer to be filled with tone sequence sl@0: */ sl@0: TBuf8<1024> iToneSequence; sl@0: /** sl@0: * Index for Async error for command InitializeComplete sl@0: */ sl@0: TInt iInitializeCompleteError; sl@0: /** sl@0: * Index for Async error for command ToneFinished sl@0: */ sl@0: TInt iToneFinishedError; sl@0: /** sl@0: * Index for Async error for command BufferToBeFilled sl@0: */ sl@0: TInt iBufferToBeFilledError; sl@0: /** sl@0: * Index for Async error for command PlayError sl@0: */ sl@0: TInt iPlayErrorError; sl@0: /** sl@0: * Index for Async error for command BufferToBeEmptied sl@0: */ sl@0: TInt iBufferToBeEmptiedError; sl@0: /** sl@0: * Index for Async error for command RecordError sl@0: */ sl@0: TInt iRecordErrorError; sl@0: /** sl@0: * Index for Async error for command ConvertError sl@0: */ sl@0: TInt iConvertErrorError; sl@0: /** sl@0: * Index for Async error for command DeviceMessage sl@0: */ sl@0: TInt iDeviceMessageError; sl@0: /** sl@0: * Index for Async error for command UtilityFourCCToHwDeviceUidL sl@0: */ sl@0: TInt iUtilityFourCCToHwDeviceUidLError; sl@0: /** sl@0: * Index for Async error sl@0: */ sl@0: TInt iAsyncErrorIndex_initialize; sl@0: TInt iAsyncErrorIndex_play; sl@0: TInt iAsyncErrorIndex_record; sl@0: TInt iAsyncErrorIndex_tone; sl@0: /** sl@0: * Enum for channels sl@0: */ sl@0: static const TEnumEntryTable iEnumChannels[]; sl@0: /** sl@0: * Enum for sample rate sl@0: */ sl@0: static const TEnumEntryTable iEnumSampleRate[]; sl@0: /** sl@0: * Enum for the mode sl@0: */ sl@0: static const TEnumEntryTable iEnumMode[]; sl@0: /** sl@0: * Enum for the priorities sl@0: */ sl@0: static const TEnumEntryTable iEnumPriority[]; sl@0: /** sl@0: * Enum for the priority preference sl@0: */ sl@0: static const TEnumEntryTable iEnumPriorityPreference[]; sl@0: /** sl@0: * Enum for initialize(FourCC, HwDevice) the mode and state sl@0: */ sl@0: static const TEnumEntryTable iEnumInitializeLType[]; sl@0: }; sl@0: sl@0: #endif // T_CMMFDEVSOUND_DATA_H