Update contrib.
2 * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
4 * This component and the accompanying materials are made available
5 * under the terms of "Eclipse Public License v1.0"
6 * which accompanies this distribution, and is available
7 * at the URL "http://www.eclipse.org/legal/epl-v10.html".
9 * Initial Contributors:
10 * Nokia Corporation - initial contribution.
20 #include "t_cmmfdevsounddata.h"
23 //Constants for HwDevice
24 const TInt KHwDeviceDefaultDataLength = 9;
25 const TInt KFourCCLength = 4;
26 //Supported Input Data Types
27 const TInt KFourCCMaxBitDisplacement = 24;
28 const TInt K8Bits = 8;
29 const TInt KTFourCC = 4;
34 _LIT(KCmdNewL, "NewL");
35 _LIT(KCmdNewLLoopL, "NewLLoopL");
36 _LIT(KCmdDestructor, "~");
37 _LIT(KCmdCapabilities, "Capabilities");
38 _LIT(KCmdConfig, "Config");
39 _LIT(KCmdMaxGain, "MaxGain");
40 _LIT(KCmdMaxVolume, "MaxVolume");
41 _LIT(KCmdGetPlayBalanceL, "GetPlayBalanceL");
42 _LIT(KCmdGetRecordBalanceL, "GetRecordBalanceL");
43 _LIT(KCmdGetSupportedInputDataTypesL, "GetSupportedInputDataTypesL");
44 _LIT(KCmdGetSupportedOutputDataTypesL, "GetSupportedOutputDataTypesL");
45 _LIT(KCmdSamplesPlayed, "SamplesPlayed");
46 _LIT(KCmdSamplesRecorded, "SamplesRecorded");
47 _LIT(KCmdVolume, "Volume");
48 _LIT(KCmdGain, "Gain");
49 _LIT(KCmdFixedSequenceCount, "FixedSequenceCount");
50 _LIT(KCmdFixedSequenceName, "FixedSequenceName");
51 _LIT(KCmdSetConfigL, "SetConfigL");
52 _LIT(KCmdSetDTMFLengths, "SetDTMFLengths");
53 _LIT(KCmdSetGain, "SetGain");
54 _LIT(KCmdSetPlayBalanceL, "SetPlayBalanceL");
55 _LIT(KCmdSetPrioritySettings, "SetPrioritySettings");
56 _LIT(KCmdSetRecordBalanceL, "SetRecordBalanceL");
57 _LIT(KCmdSetToneRepeats, "SetToneRepeats");
58 _LIT(KCmdSetVolume, "SetVolume");
59 _LIT(KCmdSetVolumeRamp, "SetVolumeRamp");
60 _LIT(KCmdInitializeL, "InitializeL");
61 _LIT(KCmdPlayDTMFStringL, "PlayDTMFStringL");
62 _LIT(KCmdPlayData, "PlayData");
63 _LIT(KCmdPlayDualToneL, "PlayDualToneL");
64 _LIT(KCmdPlayInitL, "PlayInitL");
65 _LIT(KCmdPlayToneL, "PlayToneL");
66 _LIT(KCmdPlayToneSequenceL, "PlayToneSequenceL");
67 _LIT(KCmdRecordData, "RecordData");
68 _LIT(KCmdRecordInitL, "RecordInitL");
69 _LIT(KCmdStop, "Stop");
70 _LIT(KCmdErrorConceal, "ErrorConceal");
71 _LIT(KCmdSetVolumeLoop, "SetVolumeLoop");
76 _LIT(KCmdUtilityReplaceFile, "ReplaceFile");
77 _LIT(KCmdUtilityOpenFile, "OpenFile");
78 _LIT(KCmdUtilityCloseFile, "CloseFile");
79 _LIT(KCmdUtilityFileStartPosition, "FileStartPosition");
83 //INI Section name literals
84 _LIT(KGainValue, "Gain");
85 _LIT(KVolumeValue, "Volume");
86 _LIT(KLeftPercentage, "LeftPercentage");
87 _LIT(KRightPercentage, "RightPercentage");
88 _LIT(KSequenceNumber, "SequenceNumber");
90 _LIT(KEncoding, "Encoding");
91 _LIT(KChannels, "Channels");
92 _LIT(KBufferSize, "BufferSize");
93 _LIT(KToneOnLength, "ToneOnLength");
94 _LIT(KToneOffLength, "ToneOffLength");
95 _LIT(KPause, "Pause");
96 _LIT(KPauseLength, "PauseLength");
97 _LIT(KPriority, "Priority");
98 _LIT(KPreference, "Preference");
99 _LIT(KPriorityState, "PriorityState");
100 _LIT(KRepeatCount, "RepeatCount");
101 _LIT(KRepeatTrailingSilence, "RepeatTrailingSilence");
102 _LIT(KRampDuration, "RampDuration");
104 _LIT(KHwDevice, "HwDevice");
105 _LIT(KFourCC, "FourCC");
106 _LIT(KFilename, "Filename");
107 _LIT(KDTMFString, "DTMFString");
108 _LIT(KFrequency, "Frequency");
109 _LIT(KFrequencyOne, "FrequencyOne");
110 _LIT(KFrequencyTwo, "FrequencyTwo");
111 _LIT(KDuration, "Duration");
113 _LIT(KAllowedError, "AllowedError");
114 _LIT(KVolumeList, "VolumeList");
115 _LIT(KVolumeLoop, "VolumeLoop");
119 //Literals for iEnumChannels
120 _LIT(KEMMFStereo, "EMMFStereo");
121 _LIT(KEMMFMono, "EMMFMono");
124 const CDataWrapperBase::TEnumEntryTable CT_CMMFDevSoundData::iEnumChannels[] =
126 {KEMMFMono, EMMFMono},
127 {KEMMFStereo, EMMFStereo}
131 //Literals for iEnumSampleRate
132 _LIT(KEMMFSampleRate8000Hz, "EMMFSampleRate8000Hz");
133 _LIT(KEMMFSampleRate11025Hz, "EMMFSampleRate11025Hz");
134 _LIT(KEMMFSampleRate16000Hz, "EMMFSampleRate16000Hz");
135 _LIT(KEMMFSampleRate22050Hz, "EMMFSampleRate22050Hz");
136 _LIT(KEMMFSampleRate32000Hz, "EMMFSampleRate32000Hz");
137 _LIT(KEMMFSampleRate44100Hz, "EMMFSampleRate44100Hz");
138 _LIT(KEMMFSampleRate48000Hz, "EMMFSampleRate48000Hz");
139 _LIT(KEMMFSampleRate88200Hz, "EMMFSampleRate88200Hz");
140 _LIT(KEMMFSampleRate96000Hz, "EMMFSampleRate96000Hz");
141 _LIT(KEMMFSampleRate12000Hz, "EMMFSampleRate12000Hz");
142 _LIT(KEMMFSampleRate24000Hz, "EMMFSampleRate24000Hz");
143 _LIT(KEMMFSampleRate64000Hz, "EMMFSampleRate64000Hz");
146 const CDataWrapperBase::TEnumEntryTable CT_CMMFDevSoundData::iEnumSampleRate[] =
148 {KEMMFSampleRate8000Hz, EMMFSampleRate8000Hz},
149 {KEMMFSampleRate11025Hz, EMMFSampleRate11025Hz},
150 {KEMMFSampleRate16000Hz, EMMFSampleRate16000Hz},
151 {KEMMFSampleRate22050Hz, EMMFSampleRate22050Hz},
152 {KEMMFSampleRate32000Hz, EMMFSampleRate32000Hz},
153 {KEMMFSampleRate44100Hz, EMMFSampleRate44100Hz},
154 {KEMMFSampleRate48000Hz, EMMFSampleRate48000Hz},
155 {KEMMFSampleRate88200Hz, EMMFSampleRate88200Hz},
156 {KEMMFSampleRate96000Hz, EMMFSampleRate96000Hz},
157 {KEMMFSampleRate12000Hz, EMMFSampleRate12000Hz},
158 {KEMMFSampleRate24000Hz, EMMFSampleRate24000Hz},
159 {KEMMFSampleRate64000Hz, EMMFSampleRate64000Hz}
163 //Literal for iEnumMode
164 _LIT(KEMMFStateIdle, "EMMFStateIdle");
165 _LIT(KEMMFStatePlaying, "EMMFStatePlaying");
166 _LIT(KEMMFStateTonePlaying, "EMMFStateTonePlaying");
167 _LIT(KEMMFStateRecording, "EMMFStateRecording");
168 _LIT(KEMMFStatePlayingRecording, "EMMFStatePlayingRecording");
169 _LIT(KEMMFStateConverting, "EMMFStateConverting");
172 const CDataWrapperBase::TEnumEntryTable CT_CMMFDevSoundData::iEnumMode[] =
174 {KEMMFStateIdle, EMMFStateIdle},
175 {KEMMFStatePlaying, EMMFStatePlaying},
176 {KEMMFStateRecording, EMMFStateRecording},
177 {KEMMFStateTonePlaying, EMMFStateTonePlaying},
178 {KEMMFStatePlayingRecording, EMMFStatePlayingRecording},
179 {KEMMFStateConverting, EMMFStateConverting}
183 //Literals for iEnumInitializeLType
184 _LIT(KEInitializeState, "EInitializeState");
185 _LIT(KEInitializeHwDeviceMode, "EInitializeHwDeviceMode");
186 _LIT(KEInitializeFourCCMode, "EInitializeFourCCMode");
189 enum TMMFInitializeMode
192 EInitializeHwDeviceMode,
193 EInitializeFourCCMode
196 const CDataWrapperBase::TEnumEntryTable CT_CMMFDevSoundData::iEnumInitializeLType[] =
198 {KEInitializeState, EInitializeState},
199 {KEInitializeHwDeviceMode, EInitializeHwDeviceMode},
200 {KEInitializeFourCCMode, EInitializeFourCCMode}
204 * Two phase constructor
206 * @leave system wide error
208 CT_CMMFDevSoundData* CT_CMMFDevSoundData::NewL()
210 CT_CMMFDevSoundData* ret = new (ELeave) CT_CMMFDevSoundData();
211 CleanupStack::PushL(ret);
213 CleanupStack::Pop(ret);
218 * Private constructor. First phase construction
220 CT_CMMFDevSoundData::CT_CMMFDevSoundData()
235 iErrorConceal(EFalse),
238 iRecordErrorIndex(0),
241 iInitializeErrorIndex(0)
246 * Second phase construction
251 * @leave system wide error
253 void CT_CMMFDevSoundData::ConstructL()
261 CT_CMMFDevSoundData::~CT_CMMFDevSoundData()
270 void CT_CMMFDevSoundData::DestroyData()
280 * Return a pointer to the object that the data wraps
282 * @return pointer to the object that the data wraps
284 TAny* CT_CMMFDevSoundData::GetObject()
290 * Process a command read from the Ini file
291 * @param aCommand - The command to process
292 * @param aSection - The section get from the *.ini file of the project T_Wlan
293 * @param aAsyncErrorIndex - Command index dor async calls to returns errors to
294 * @return TBool - ETrue if the command is process
295 * @leave - system wide error
297 TBool CT_CMMFDevSoundData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
301 if (aCommand == KCmdNewL)
305 else if(aCommand == KCmdNewLLoopL)
307 DoCmdNewLLoopL(aSection);
309 else if (aCommand == KCmdDestructor)
313 else if (aCommand == KCmdUtilityReplaceFile)
315 DoCmdUtilityReplaceFile(aSection);
317 else if (aCommand == KCmdUtilityOpenFile)
319 DoCmdUtilityOpenFile(aSection);
321 else if (aCommand == KCmdUtilityCloseFile)
323 DoCmdUtilityCloseFile();
325 else if (aCommand == KCmdUtilityFileStartPosition)
327 DoCmdUtilityFileStartPosition();
329 else if (aCommand == KCmdCapabilities)
333 else if (aCommand == KCmdConfig)
337 else if (aCommand == KCmdMaxGain)
339 DoCmdMaxGain(aSection);
341 else if (aCommand == KCmdMaxVolume)
343 DoCmdMaxVolume(aSection);
345 else if (aCommand == KCmdGetPlayBalanceL)
347 DoCmdGetPlayBalanceL(aSection);
349 else if (aCommand == KCmdGetRecordBalanceL)
351 DoCmdGetRecordBalanceL(aSection);
353 else if (aCommand == KCmdGetSupportedInputDataTypesL)
355 DoCmdGetSupportedInputDataTypesL();
357 else if (aCommand == KCmdGetSupportedOutputDataTypesL)
359 DoCmdGetSupportedOutputDataTypesL();
361 else if (aCommand == KCmdSamplesPlayed)
363 DoCmdSamplesPlayed();
365 else if (aCommand == KCmdSamplesRecorded)
367 DoCmdSamplesRecorded();
369 else if (aCommand == KCmdVolume)
371 DoCmdVolume(aSection);
373 else if (aCommand == KCmdGain)
377 else if (aCommand == KCmdFixedSequenceCount)
379 DoCmdFixedSequenceCount();
381 else if (aCommand == KCmdFixedSequenceName)
383 DoCmdFixedSequenceName(aSection);
385 else if (aCommand == KCmdSetConfigL)
387 DoCmdSetConfigL(aSection);
389 else if (aCommand == KCmdSetDTMFLengths)
391 DoCmdSetDTMFLengths(aSection);
393 else if (aCommand == KCmdSetGain)
395 DoCmdSetGain(aSection);
397 else if (aCommand == KCmdSetPlayBalanceL)
399 DoCmdSetPlayBalanceL(aSection);
401 else if (aCommand == KCmdSetPrioritySettings)
403 DoCmdSetPrioritySettings(aSection);
405 else if (aCommand == KCmdSetRecordBalanceL)
407 DoCmdSetRecordBalanceL(aSection);
409 else if (aCommand == KCmdSetToneRepeats)
411 DoCmdSetToneRepeats(aSection);
413 else if (aCommand == KCmdSetVolume)
415 DoCmdSetVolume(aSection);
417 else if (aCommand == KCmdSetVolumeLoop)
419 DoCmdSetVolumeLoop(aSection);
421 else if (aCommand == KCmdSetVolumeRamp)
423 DoCmdSetVolumeRamp(aSection);
425 else if (aCommand == KCmdInitializeL)
427 DoCmdInitializeL(aSection,aAsyncErrorIndex);
429 else if (aCommand == KCmdPlayDTMFStringL)
431 DoCmdPlayDTMFStringL(aSection, aAsyncErrorIndex);
433 else if (aCommand == KCmdPlayData)
437 else if (aCommand == KCmdPlayDualToneL)
439 DoCmdPlayDualToneL(aSection, aAsyncErrorIndex);
441 else if (aCommand == KCmdPlayInitL)
443 DoCmdPlayInitL(aAsyncErrorIndex);
445 else if (aCommand == KCmdPlayToneL)
447 DoCmdPlayToneL(aSection, aAsyncErrorIndex);
449 else if (aCommand == KCmdPlayToneSequenceL)
451 DoCmdPlayToneSequenceL(aSection,aAsyncErrorIndex);
453 else if (aCommand == KCmdRecordData)
457 else if (aCommand == KCmdRecordInitL)
459 DoCmdRecordInitL(aAsyncErrorIndex);
461 else if (aCommand == KCmdStop)
465 else if(aCommand == KCmdErrorConceal)
467 DoCmdUtilityErrorConceal();
471 ERR_PRINTF1(_L("Unknown command."));
478 * Handles initialization completion event.
479 * CMMFDevSound object calls this function when its InitializeL() function
481 * @param aError - Error code. KErrNone if successful. Other values are possible
482 * indicating a problem initializing CMMFDevSound object.
486 void CT_CMMFDevSoundData::InitializeComplete(TInt aError)
488 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::InitializeComplete"));
489 if(KErrNone != aError)
491 ERR_PRINTF2(_L("InitializeComplete callback failed with error %d"), aError);
492 SetAsyncError(iInitializeErrorIndex, aError);
493 iInitializeErrorIndex = 0;
498 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::InitializeComplete"));
502 * It's needed for playing o converting
503 * @param aBuffer - Buffer into which data should be read. The amount of data that is
504 * needed is specified in CMMFBuffer::RequestSize().
506 void CT_CMMFDevSoundData::BufferToBeFilled(CMMFBuffer* aBuffer)
510 ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
511 SetBlockResult(EFail);
515 TBool dataOk = ETrue;
517 iBuffer->SetLastBuffer(EFalse);
518 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
522 TInt error = iAudiofile.Read(iLastSample,buffer->Data());
523 if (error != KErrNone)
525 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), error);
526 SetBlockResult(EFail);
532 TInt error = iAudiofile.Read(buffer->Data());
533 if (error != KErrNone)
535 ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), error);
536 SetBlockResult(EFail);
542 if (buffer->Data().Length() != buffer->RequestSize())
544 iBuffer->SetLastBuffer(ETrue);
548 iErrorConceal=EFalse;
549 buffer->Data().Zero();
550 INFO_PRINTF1(_L("buffer->Data().Zero()"));
554 iLastSample=iAudiofile.Seek(ESeekCurrent ,pos);
555 INFO_PRINTF2(_L("Number of samples played so far: %d"), pos);
562 * Handles play completion or cancel event.
564 * CMMFDevSound object calls this function when an attempt to play audio sample
565 * has completed, successfully or otherwise.
567 * @param aError - Error code. The status of playback. KErrUnderflow playing of the
568 * audio sample is complete. KErrAccessDenied the sound device is in
569 * use by another higher priority client.
571 void CT_CMMFDevSoundData::PlayError(TInt aError)
573 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::PlayError"));
577 if(aError != KErrNone && aError != KErrUnderflow)
579 ERR_PRINTF2(_L("Playback completed with error %d"), aError);
580 SetAsyncError(iPlayErrorIndex, aError);
583 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::PlayError"));
588 * Handles tone play completion event.
591 * CMMFDevSound object calls this function when an attempt to play tone has
592 * completed, successfully or otherwise.
594 * The following are the play tone functions; PlayToneL(), PlayDMTFStringL(),
595 * PlayToneSequenceL(), and PlayFixedSequenceL().
597 * @param aError - Error code. The status of tone playback. KErrUnderflow playing of
598 * the tone is complete. KErrAccessDenied the sound device is in use by
599 * another higher priority client. KErrCancel playing of the audio
600 * sample is stopped by DevSound client another higher priority client.
604 void CT_CMMFDevSoundData::ToneFinished(TInt aError)
606 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::ToneFinished"));
610 if(aError != KErrNone)
612 ERR_PRINTF2(_L("Tone finished with error %d"), aError);
613 SetAsyncError(iToneErrorIndex, aError);
617 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::ToneFinished"));
621 * Handles CMMFDevSound object's data request event.
623 * CMMFDevSound object calls this function when the buffer, aBuffer gets filled
624 * while recording or converting. The observer should notify CMMFDevSound
625 * object as quickly as possible after data in the buffer is processed by
626 * calling RecordData(), otherwise the implementation might callback
627 * the function RecordError() on derived class object with error code KErrOverflow.
629 * @param aBuffer - Buffer containing processed (recorded or converted) data. The amount
630 * of data that is available is specified in CMMFBuffer::RequestSize().
633 void CT_CMMFDevSoundData::BufferToBeEmptied(CMMFBuffer* aBuffer)
637 INFO_PRINTF1(_L("BufferToBeEmptied callback received a NULL CMMFBuffer"));
638 SetBlockResult(EFail);
643 CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
644 TInt error = iAudiofile.Write(buffer->Data());
645 if(error == KErrNone)
647 if (!aBuffer->LastBuffer())
657 ERR_PRINTF2(_L("iFile.Write() returned the error %d"), error);
658 SetBlockResult(EFail);
664 * Stops the ongoing operation (Play, Record, TonePlay, Convert).
665 * This function should be synchronous and invoke no callbacks through MDevSoundObserver.
667 void CT_CMMFDevSoundData::Stop()
669 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::Stop()"));
674 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::Stop()"));
678 * Handles record completion or cancel event.
680 * CMMFDevSound object calls this function when an attempt to record audio sample
681 * has completed, successfully or otherwise.
683 * @param aError - Error code. The status of recording. KErrOverflow audio devices
684 * runs out of internal buffer. KErrAccessDenied the sound device is
685 * in use by another higher priority client.
689 void CT_CMMFDevSoundData::RecordError(TInt aError)
691 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::RecordError"));
692 if(aError != KErrNone)
694 ERR_PRINTF2(_L("Record failed with error %d"), aError);
695 SetAsyncError(iRecordErrorIndex , aError);
696 iRecordErrorIndex = 0;
698 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::RecordError"));
703 * Handles conversion completion or cancel event.
705 * CMMFDevSound object calls this function when an attempt to convert data from
706 * source format to destination format has completed, successfully or otherwise.
708 * @param aError - Error code. KErrCancel conversion operation is cancelled. KErrNone
709 * conversion is complete. Other values are possible indicating a
710 * problem converting data.
713 void CT_CMMFDevSoundData::ConvertError(TInt aError)
715 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::ConvertError"));
716 ERR_PRINTF1(_L("Invalid Callback call"));
717 if (aError == KErrNone)
719 INFO_PRINTF1(_L("Data conversion completed successfully."));
721 if (aError == KErrCancel)
723 INFO_PRINTF1(_L("Data conversion operation was cancelled."));
725 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::ConvertError"));
729 * Handles device event.
731 * CMMFDevSound object calls this function when a message is received from the
732 * audio hardware device.
734 * @param aMessageType - Defines the type of message. Used to determine how to
735 * interpret the contents of aMsg.
736 * @param aMsg - Message that is packed in the Descriptor format.
740 void CT_CMMFDevSoundData::DeviceMessage(TUid aMessageType, const TDesC8& aMsg)
742 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DeviceMessage"));
743 INFO_PRINTF2(_L("Message type: %d"), aMessageType.iUid);
744 INFO_PRINTF2(_L("Message type: %S"), &aMsg);
745 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DeviceMessage"));
750 * Create a new or Replace the existing file
753 void CT_CMMFDevSoundData::DoCmdUtilityReplaceFile(const TTEFSectionName& aSection)
755 INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DoCmdUtilityReplaceFile()"));
757 TBool dataOk = ETrue;
758 if (!GetStringFromConfig(aSection, KFilename, fileName))
760 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFilename);
761 SetBlockResult(EFail);
766 TInt error = iAudiofile.Replace(iFs, fileName, EFileRead);
767 if (error != KErrNone)
769 ERR_PRINTF2(_L("Could not open input file. Error = %d"), error);
774 INFO_PRINTF1(_L("*END* CT_CMMFDevSoundData::DoCmdUtilityReplaceFile()"));
780 void CT_CMMFDevSoundData::DoCmdUtilityOpenFile(const TTEFSectionName& aSection)
783 INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DoCmdUtilityOpenFile()"));
785 TBool dataOk = ETrue;
786 if (!GetStringFromConfig(aSection, KFilename, fileName))
788 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFilename);
789 SetBlockResult(EFail);
794 TInt error = iAudiofile.Open(iFs, fileName, EFileRead);
795 if (error != KErrNone)
797 ERR_PRINTF2(_L("Could not open input file. Error = %d"), error);
802 INFO_PRINTF1(_L("*END* CT_CMMFDevSoundData::DoCmdUtilityOpenFile()"));
806 * Close the opened file
808 void CT_CMMFDevSoundData::DoCmdUtilityCloseFile()
810 INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DoCmdUtilityCloseFile()"));
812 INFO_PRINTF1(_L("*END* CT_CMMFDevSoundData::DoCmdUtilityCloseFile()"));
816 * Place the the pointer file at the begining
819 void CT_CMMFDevSoundData::DoCmdUtilityFileStartPosition()
821 INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DoCmdUtilityFileStartPosition()"));
822 TInt filePosition = 0;
823 TBool dataOk = ETrue;
824 TInt error = iAudiofile.Seek(ESeekStart, filePosition);
825 if (error != KErrNone)
827 ERR_PRINTF2(_L("Could not set file to the start position. Error = %d"), error);
833 INFO_PRINTF2(_L("File Position: %d"), filePosition);
835 INFO_PRINTF1(_L("*END* CT_CMMFDevSoundData::DoCmdUtilityFileStartPosition()"));
840 * Creates "n" instance of CMMFDevSound
841 * @param aSection - Section to read from the ini file
844 void CT_CMMFDevSoundData::DoCmdNewLLoopL(const TTEFSectionName&aSection)
846 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdNewLLoopL"));
847 CMMFDevSound* devSound = NULL;
848 TBool dataOk = ETrue;
850 if (!GetIntFromConfig(aSection, KLoop, loop))
852 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KLoop);
853 SetBlockResult(EFail);
857 if ( !GetIntFromConfig(aSection, KAllowedError, allowedError) )
859 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KAllowedError);
860 SetBlockResult(EFail);
865 for(TInt i=0; i<loop; i++)
867 TRAPD(error,devSound = CMMFDevSound::NewL());
868 if(error == KErrNone)
870 INFO_PRINTF2(_L("Instance %d of DevSound was created"),i);
871 CleanupStack::PushL(devSound);
872 iObjectsDevSound.AppendL(devSound);
873 CleanupStack::Pop(devSound);
875 else if(error == allowedError)
877 INFO_PRINTF2(_L(" Allowing Error: %d"), error);
878 ERR_PRINTF2(_L(" Could not create CMMFDevSound due to error: %d"), error);
881 else if((error != KErrNone) && (error!=allowedError))
883 ERR_PRINTF2(_L("> Could not create CMMFDevSound: %d"), error);
887 iObjectsDevSound.ResetAndDestroy();
888 INFO_PRINTF2(_L("%d DevSound instances were deleted"),loop);
890 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdNewLLoopL"));
895 * Create an instance of CMMFDevSound
897 void CT_CMMFDevSoundData::DoCmdNewL()
899 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdNewL"));
901 TRAPD(error,iDevSound = CMMFDevSound::NewL());
904 ERR_PRINTF2(_L("> Could not create CMMFDevSound: %d"), error);
910 iErrorConceal = EFalse;
912 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdNewL"));
915 * Destroy an instance of CMMFDevSound
918 void CT_CMMFDevSoundData::DoCmdDestructor()
920 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdDestroyData"));
922 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdDestroyData"));
926 * Show the supported Audio settings ie. encoding, sample rates, mono/stereo operation, buffer
931 void CT_CMMFDevSoundData::DoCmdCapabilities()
933 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdCapabilities"));
934 iCapabilities = iDevSound->Capabilities();
935 INFO_PRINTF5(_L("Supported Audio settings: buffsize=%d, channels=0x%x, encoding=0x%x and rate=0x%x"),
936 iCapabilities.iBufferSize,
937 iCapabilities.iChannels,
938 iCapabilities.iEncoding,
939 iCapabilities.iRate);
940 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdCapabilities"));
945 * Shows the current device configuration.
949 void CT_CMMFDevSoundData::DoCmdConfig()
951 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdConfig"));
952 TMMFCapabilities currentConfiguration = iDevSound->Config();
953 INFO_PRINTF5(_L("Current device configuration: buffsize=%d, channels=0x%x, encoding=0x%x and rate=0x%x"),
954 currentConfiguration.iBufferSize,
955 currentConfiguration.iChannels,
956 currentConfiguration.iEncoding,
957 currentConfiguration.iRate);
958 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdConfig"));
963 * Shows an integer representing the maximum gain the device supports.
964 * This is the maximum value which can be passed to CMMFDevSound::SetGain.
965 * @param aSection - The section to read the params from the ini file
969 void CT_CMMFDevSoundData::DoCmdMaxGain(const TTEFSectionName& aSection)
971 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdMaxGain"));
972 TBool dataOk = ETrue;
973 TInt expectedGainValue=0;
974 if (!GetIntFromConfig(aSection, KGainValue, expectedGainValue))
976 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KGainValue);
977 SetBlockResult(EFail);
982 iGainValue = iDevSound->MaxGain();
983 INFO_PRINTF2(_L("Retrieved maximum gain value: %d"), iGainValue);
984 if (expectedGainValue != iGainValue)
986 ERR_PRINTF3(_L("Expected gain value %d is different from retrieved gain value %d"), expectedGainValue, iGainValue);
987 SetBlockResult(EFail);
990 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdMaxGain"));
994 * Shows an integer representing the maximum volume device supports.
995 * This is the maximum value which can be passed to CMMFDevSound::SetVolume.
996 * @param aSection - Section to read params from the ini file
1000 void CT_CMMFDevSoundData::DoCmdMaxVolume(const TTEFSectionName& aSection)
1002 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdMaxVolume"));
1003 TBool dataOk = ETrue;
1004 TInt expectedVolumeValue=0;
1005 if(!GetIntFromConfig(aSection, KVolumeValue, expectedVolumeValue))
1007 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KVolumeValue);
1008 SetBlockResult(EFail);
1013 iVolumeValue = iDevSound->MaxVolume();
1014 INFO_PRINTF2(_L("Retrieved maximum volume value: %d"), iVolumeValue);
1015 if(expectedVolumeValue != iVolumeValue)
1017 ERR_PRINTF3(_L("Expected volume value %d is different from retrieved volume value %d"), expectedVolumeValue, iVolumeValue);
1018 SetBlockResult(EFail);
1021 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdMaxVolume"));
1025 * Shows the speaker balance set for playing.
1026 * @param aSection - Section to read params from the ini file
1030 void CT_CMMFDevSoundData::DoCmdGetPlayBalanceL(const TTEFSectionName& aSection)
1032 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGetPlayBalanceL"));
1033 TBool dataOk = ETrue;
1034 TInt expectedLeftPercentage=0;
1035 if (!GetIntFromConfig(aSection, KLeftPercentage, expectedLeftPercentage))
1037 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KLeftPercentage);
1038 SetBlockResult(EFail);
1041 TInt expectedRightPercentage=0;
1042 if (!GetIntFromConfig(aSection, KRightPercentage, expectedRightPercentage))
1044 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRightPercentage);
1045 SetBlockResult(EFail);
1050 TRAPD(error, iDevSound->GetPlayBalanceL(iLeftPercentage, iRightPercentage));
1051 if (error != KErrNone)
1053 ERR_PRINTF2(_L("GetPlayBalanceL left with error %d"), error);
1058 INFO_PRINTF3(_L("> Retrieved play balance values are left: %d, right:%d"), iLeftPercentage, iRightPercentage);
1059 if (expectedLeftPercentage !=iLeftPercentage)
1061 ERR_PRINTF3(_L("Expected left percentage value %d is different from retrieved value %d"), expectedLeftPercentage, iLeftPercentage);
1062 SetBlockResult(EFail);
1064 if (expectedRightPercentage !=iRightPercentage)
1066 ERR_PRINTF3(_L("Expected right percentage value %d is different from retrieved value %d"), expectedRightPercentage, iRightPercentage);
1067 SetBlockResult(EFail);
1072 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGetPlayBalanceL"));
1077 * Shows the microphone gain balance set for recording.
1078 * @param aSection - Section to read params from the ini file
1081 void CT_CMMFDevSoundData::DoCmdGetRecordBalanceL(const TTEFSectionName& aSection)
1083 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGetRecordBalanceL"));
1084 TBool dataOk = ETrue;
1085 TInt expectedLeftPercentage=0;
1086 if(!GetIntFromConfig(aSection, KLeftPercentage, expectedLeftPercentage))
1088 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KLeftPercentage);
1089 SetBlockResult(EFail);
1092 TInt expectedRightPercentage=0;
1093 if(!GetIntFromConfig(aSection, KRightPercentage, expectedRightPercentage))
1095 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRightPercentage);
1096 SetBlockResult(EFail);
1101 TRAPD(error, iDevSound->GetRecordBalanceL(iLeftPercentage, iRightPercentage));
1102 if (error != KErrNone)
1104 ERR_PRINTF2(_L("GetRecordBalanceL left with error %d"), error);
1109 INFO_PRINTF3(_L("> Retrieved record balance values are left: %d, right:%d"), iLeftPercentage, iRightPercentage);
1110 if(expectedLeftPercentage !=iLeftPercentage)
1112 ERR_PRINTF3(_L("Expected left percentage value %d is different from retrieved value %d"), expectedLeftPercentage, iLeftPercentage);
1113 SetBlockResult(EFail);
1115 if(expectedRightPercentage !=iRightPercentage)
1117 ERR_PRINTF3(_L("Expected right ercentage value %d is different from retrieved value %d"), expectedRightPercentage, iRightPercentage);
1118 SetBlockResult(EFail);
1123 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGetRecordBalanceL"));
1127 * Shows a list of the supported input datatypes that can be sent to DevSound for playing audio.
1128 * The datatypes returned are those that the DevSound supports given the priority settings passed
1129 * in aPrioritySettings.
1133 void CT_CMMFDevSoundData::DoCmdGetSupportedInputDataTypesL()
1135 TUid outputUid= {0x0};
1136 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGetSupportedInputDataTypesL"));
1137 RArray< TFourCC > supportedDataTypes;
1138 TRAPD(error, iDevSound->GetSupportedInputDataTypesL(supportedDataTypes, iPrioritySettings));
1139 if (error != KErrNone)
1141 ERR_PRINTF2(_L("GetSupportedInputDataTypesL left with error %d"), error);
1146 INFO_PRINTF1(_L("List of the supported input datatypes that can be sent to DevSound for playing audio."));
1147 for (TInt i=0; i<supportedDataTypes.Count(); i++)
1149 TFourCC fourCC = supportedDataTypes[i];
1151 for(TInt j=0; j<= KFourCCMaxBitDisplacement; j+=K8Bits)
1153 name.Append((TUint8)(fourCC.FourCC() >> j));
1155 INFO_PRINTF3(_L("Supported Input Data types: 0x%x %S "), fourCC.FourCC(), &name);
1156 UtilityFourCCToHwDeviceUidL(name,EDecoder, outputUid);
1157 if(outputUid.iUid != 0)
1159 INFO_PRINTF3(_L("\nHwDevice Uid=0x%08x for %S"),outputUid.iUid,&name);
1163 INFO_PRINTF1(_L("Not Found"));
1166 supportedDataTypes.Reset();
1168 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGetSupportedInputDataTypesL"));
1172 * Shows a list of the supported output dataypes that can be received from DevSound for
1173 * recording audio. The datatypes returned are those that the DevSound supports given the priority
1174 * settings passed in aPrioritySettings.
1178 void CT_CMMFDevSoundData::DoCmdGetSupportedOutputDataTypesL()
1180 TUid outputUid= {0x0};
1181 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGetSupportedOutputDataTypesL"));
1182 RArray< TFourCC > supportedDataTypes;
1183 TRAPD(error, iDevSound->GetSupportedOutputDataTypesL(supportedDataTypes, iPrioritySettings));
1184 if (error != KErrNone)
1186 ERR_PRINTF2(_L("GetSupportedOutputDataTypesL left with error %d"), error);
1191 INFO_PRINTF1(_L("List of the supported output dataypes that can be received from DevSound for recording audio."));
1192 for (TInt i=0; i<supportedDataTypes.Count(); i++)
1194 TFourCC fourCC = supportedDataTypes[i];
1196 for(TInt j=0; j<=KFourCCMaxBitDisplacement; j+=K8Bits)
1198 name.Append((TUint8)(fourCC.FourCC() >> j));
1200 INFO_PRINTF3(_L("Supported Output Data types: 0x%x %S "), fourCC.FourCC(), &name);
1201 UtilityFourCCToHwDeviceUidL(name, EEncoder, outputUid);
1202 if(outputUid.iUid != 0)
1204 INFO_PRINTF3(_L("\nHwDevice Uid=0x%08x for %S"),outputUid.iUid,&name);
1208 INFO_PRINTF1(_L("Not Found"));
1211 supportedDataTypes.Reset();
1213 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGetSupportedOutputDataTypesL"));
1217 * Shows the number of samples played
1221 void CT_CMMFDevSoundData::DoCmdSamplesPlayed()
1223 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSamplesPlayed"));
1224 INFO_PRINTF2(_L("Number of samples played so far: %d"),iDevSound->SamplesPlayed());
1225 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSamplesPlayed"));
1229 * Shows the number of samples recorded
1233 void CT_CMMFDevSoundData::DoCmdSamplesRecorded()
1235 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSamplesRecorded"));
1236 INFO_PRINTF2(_L("Number of samples recorded so far: %d"), iDevSound->SamplesRecorded());
1237 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSamplesRecorded"));
1241 * Shows an integer representing the current volume.
1242 * @param aSection - Section to read param from the ini file
1245 void CT_CMMFDevSoundData::DoCmdVolume(const TTEFSectionName& aSection)
1247 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdVolume"));
1248 TBool dataOk = ETrue;
1249 TInt expectedVolumeValue=0;
1250 if(!GetIntFromConfig(aSection, KVolumeValue, expectedVolumeValue))
1252 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KVolumeValue);
1253 SetBlockResult(EFail);
1258 iVolumeValue = iDevSound->Volume();
1259 INFO_PRINTF2(_L("Retrieved volume value: %d"), iVolumeValue);
1260 if(expectedVolumeValue != iVolumeValue)
1262 ERR_PRINTF3(_L("Expected volume value %d is different from retrieved volume value %d"), expectedVolumeValue, iVolumeValue);
1263 SetBlockResult(EFail);
1266 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdVolume"));
1270 * Shows an integer representing the current gain.
1271 * @param aSection - Section to read param from the ini file
1274 void CT_CMMFDevSoundData::DoCmdGain(const TTEFSectionName& aSection)
1276 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGain"));
1277 TBool dataOk = ETrue;
1278 TInt expectedGainValue=0;
1279 if(!GetIntFromConfig(aSection, KGainValue, expectedGainValue))
1281 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KGainValue);
1282 SetBlockResult(EFail);
1287 iGainValue = iDevSound->Gain();
1288 INFO_PRINTF2(_L("Retrieved gain value: %d"), iGainValue);
1289 if(expectedGainValue != iGainValue)
1291 ERR_PRINTF3(_L("Expected gain value %d is different from retrieved gain value %d"), expectedGainValue, iGainValue);
1292 SetBlockResult(EFail);
1295 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGain"));
1299 * Shows the number of available pre-defined tone sequences
1303 void CT_CMMFDevSoundData::DoCmdFixedSequenceCount()
1305 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdFixedSequenceCount"));
1306 INFO_PRINTF2(_L("Number of available pre-defined tone sequences: %d"), iDevSound->FixedSequenceCount());
1307 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdFixedSequenceCount"));
1311 * Shows the name assigned to a specific pre-defined tone sequence.
1312 * This is the number of the fixed sequence supported by DevSound by default.
1313 * @param aSection - Section to read params from the ini file
1316 void CT_CMMFDevSoundData::DoCmdFixedSequenceName(const TTEFSectionName& aSection)
1318 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdFixedSequenceName"));
1319 TBool dataOk =ETrue;
1320 TInt sequenceNumber=0;
1321 if(!GetIntFromConfig(aSection, KSequenceNumber, sequenceNumber))
1323 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KSequenceNumber);
1324 SetBlockResult(EFail);
1329 INFO_PRINTF2(_L("Name assigned to a specific pre-defined tone sequence returned: %S"),
1330 &iDevSound->FixedSequenceName(sequenceNumber));
1332 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdFixedSequenceName"));
1337 * Configure CMMFDevSound object with the settings in aConfig.
1338 * Use this to set sampling rate, encoding and mono/stereo.
1339 * @param aSection - Section to read params from the ini file
1342 void CT_CMMFDevSoundData::DoCmdSetConfigL(const TTEFSectionName& aSection)
1344 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetConfigL"));
1347 INFO_PRINTF1(_L("To use default values run Capabilities before SetConfigL"));
1348 if (!GetEnumFromConfig(aSection, KRate, iEnumSampleRate, rate))
1350 INFO_PRINTF2(_L("Rate value was not overwritten, using default value %d."), iCapabilities.iRate);
1354 iCapabilities.iRate = rate;
1358 if (!GetIntFromConfig(aSection, KEncoding, encoding))
1360 INFO_PRINTF2(_L("Encoding value was not overwritten, using default value %d."), iCapabilities.iEncoding);
1364 iCapabilities.iEncoding = encoding;
1368 if (!GetEnumFromConfig(aSection, KChannels, iEnumChannels, channels))
1370 INFO_PRINTF2(_L("Channels value was not overwritten, using default value %d ."), iCapabilities.iChannels);
1374 iCapabilities.iChannels = channels;
1378 if (!GetIntFromConfig(aSection, KBufferSize, bufferSize))
1380 INFO_PRINTF2(_L("BufferSize value was not overwritten, using default value %d"), iCapabilities.iBufferSize);
1384 iCapabilities.iBufferSize = bufferSize;
1386 TRAPD(error,iDevSound->SetConfigL(iCapabilities))
1387 if(error != KErrNone)
1389 ERR_PRINTF2(_L("SetConfigL left with error %d"), error);
1392 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetConfigL"));
1397 * Defines the duration of tone on, tone off and tone pause to be used during the
1398 * DTMF tone playback operation.
1399 * Supported only during tone playing.
1400 * @param aSection - Section to read param from the ini file
1403 void CT_CMMFDevSoundData::DoCmdSetDTMFLengths(const TTEFSectionName& aSection)
1405 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetDTMFLengths"));
1407 TBool dataOk = ETrue;
1408 if (!GetIntFromConfig(aSection, KToneOnLength, time))
1410 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KToneOnLength);
1411 SetBlockResult(EFail);
1414 TTimeIntervalMicroSeconds32 toneOnLength(time);
1416 if (!GetIntFromConfig(aSection, KToneOffLength, time))
1418 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KToneOffLength);
1419 SetBlockResult(EFail);
1422 TTimeIntervalMicroSeconds32 toneOffLength(time);
1424 if (!GetIntFromConfig(aSection, KPauseLength, time))
1426 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KPauseLength);
1427 SetBlockResult(EFail);
1430 TTimeIntervalMicroSeconds32 pauseLength(time);
1433 iDevSound->SetDTMFLengths(toneOnLength, toneOffLength, pauseLength);
1435 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetDTMFLengths"));
1440 * Changes the current recording gain to a specified value.
1441 * The gain can be changed before or during recording and is effective
1443 * @params aSection - Section to read param from the ini file
1445 void CT_CMMFDevSoundData::DoCmdSetGain(const TTEFSectionName& aSection)
1447 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetGain"));
1448 TInt gainValue = iGainValue;
1449 if(!GetIntFromConfig(aSection, KGainValue, gainValue))
1451 INFO_PRINTF1(_L("The Gain value was not found in the ini file, using default value"));
1453 INFO_PRINTF2(_L("Setting gain value to %d"), gainValue);
1454 iDevSound->SetGain(gainValue);
1455 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetGain"));
1459 * Sets the speaker balance for playing.
1460 * The speaker balance can be changed before or during playback and is
1461 * effective immediately.
1462 * @param aSection - The section to read params from the ini file
1465 void CT_CMMFDevSoundData::DoCmdSetPlayBalanceL(const TTEFSectionName& aSection)
1467 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetPlayBalanceL"));
1468 TInt leftPercentage = iLeftPercentage;
1469 if(!GetIntFromConfig(aSection, KLeftPercentage, leftPercentage))
1471 INFO_PRINTF1(_L("The Left percentage was not found in the ini file, using default value"));
1473 TInt rightPercentage = iRightPercentage;
1474 if(!GetIntFromConfig(aSection, KRightPercentage, rightPercentage))
1476 INFO_PRINTF1(_L("The Right percentage was not found in the ini file, using default value"));
1478 INFO_PRINTF3(_L("Setting play balance to left: %d, right: %d values"), leftPercentage, rightPercentage);
1479 TRAPD(error, iDevSound->SetPlayBalanceL(leftPercentage, rightPercentage));
1480 if(error != KErrNone)
1482 ERR_PRINTF2(_L("SetPlayBalanceL left with error %d"), error);
1485 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetPlayBalanceL"));
1489 * Defines the priority settings that should be used for this instance.
1490 * @param aSection - Section to read params from the ini file
1493 void CT_CMMFDevSoundData::DoCmdSetPrioritySettings(const TTEFSectionName& aSection)
1495 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetPrioritySettings"));
1496 TBool dataOk = ETrue;
1497 if(!GetIntFromConfig(aSection, KPriority, iPrioritySettings.iPriority))
1499 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KPriority);
1500 SetBlockResult(EFail);
1504 if (!GetHexFromConfig(aSection, KPreference, preference))
1506 ERR_PRINTF2(_L("%S parameter was not found in INI file"), &KPreference);
1507 SetBlockResult(EFail);
1510 iPrioritySettings.iPref = (TMdaPriorityPreference)preference;
1512 if (!GetEnumFromConfig(aSection, KPriorityState, iEnumMode, state))
1514 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KPriorityState);
1515 SetBlockResult(EFail);
1518 iPrioritySettings.iState = (TMMFState)state;
1521 iDevSound->SetPrioritySettings(iPrioritySettings);
1523 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetPrioritySettings"));
1527 * Sets the microphone gain balance for recording.
1528 * The microphone gain balance can be changed before or during recording and
1529 * is effective immediately.
1530 * @param aSection - Section to read params from the ini file
1533 void CT_CMMFDevSoundData::DoCmdSetRecordBalanceL(const TTEFSectionName& aSection)
1535 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetRecordBalanceL"));
1536 TInt leftPercentage = iLeftPercentage;
1537 if (!GetIntFromConfig(aSection, KLeftPercentage, leftPercentage))
1539 INFO_PRINTF1(_L("The Left value was not found in the ini file, using default value"));
1541 TInt rightPercentage = iRightPercentage;
1542 if (!GetIntFromConfig(aSection, KRightPercentage, rightPercentage))
1544 INFO_PRINTF1(_L("The Right value was not found in the ini file, using default value"));
1546 INFO_PRINTF3(_L("Setting record balance to left: %d, right: %d values"), leftPercentage, rightPercentage);
1547 TRAPD(error, iDevSound->SetRecordBalanceL(leftPercentage, rightPercentage));
1548 if (KErrNone != error)
1550 ERR_PRINTF2(_L("SetRecordBalanceL left with error %d"), error);
1553 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetRecordBalanceL"));
1557 * Defines the number of times the audio is to be repeated during the tone
1558 * playback operation.
1559 * A period of silence can follow each playing of a tone. The tone playing can
1560 * be repeated indefinitely.
1561 * @param aSection - Section to read params from the ini file
1564 void CT_CMMFDevSoundData::DoCmdSetToneRepeats(const TTEFSectionName& aSection)
1566 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetToneRepeats"));
1568 TBool dataOk = ETrue;
1569 if (!GetIntFromConfig(aSection, KRepeatCount, repeatCount))
1571 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRepeatCount);
1572 SetBlockResult(EFail);
1577 if (!GetIntFromConfig(aSection, KRepeatTrailingSilence, tempValue))
1579 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRepeatTrailingSilence);
1580 SetBlockResult(EFail);
1583 TTimeIntervalMicroSeconds repeatTrailingSilence(tempValue);
1587 iDevSound->SetToneRepeats(repeatCount, repeatTrailingSilence);
1589 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetToneRepeats"));
1593 * Defines the period over which the volume level is to rise smoothly from
1594 * nothing to the normal volume level.
1595 * The function is only available while the tone is playing.
1596 * @param aSection - Section to read params from the ini file
1599 void CT_CMMFDevSoundData::DoCmdSetVolume(const TTEFSectionName& aSection)
1601 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetVolume"));
1602 TInt volume = iVolumeValue;
1603 if(!GetIntFromConfig(aSection, KVolumeValue, volume))
1605 INFO_PRINTF1(_L("The Volume value was not found in the ini file, using default value"));
1607 INFO_PRINTF2(_L("Setting volume value to %d"), volume);
1608 iDevSound->SetVolume(volume);
1609 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetVolume"));
1613 * Defines the loop over which the volume level is to rise smoothly from
1614 * nothing to the normal volume level.
1615 * @param aSection - Section to read params from the ini file
1618 void CT_CMMFDevSoundData::DoCmdSetVolumeLoop(const TTEFSectionName& aSection)
1620 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetVolumeLoop"));
1622 TBool dataOk = ETrue;
1623 if (!GetIntFromConfig(aSection, KVolumeLoop, volLoop))
1625 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KVolumeLoop);
1626 SetBlockResult(EFail);
1633 RPointerArray<HBufC> volumeList;
1634 for (TInt i=0; i<volLoop; i++)
1636 if (!GetArrayRectFromConfig(aSection, KVolumeList, volumeList))
1638 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KVolumeList);
1639 volumeList.ResetAndDestroy();
1640 SetBlockResult(EFail);
1645 for (TInt j=0; j<volumeList.Count(); j++)
1647 parVolume.Set(*volumeList[j]);
1648 TLex lex(parVolume);
1649 TInt error = lex.Val(volumeValue);
1650 if (error != KErrNone)
1652 ERR_PRINTF2(_L("Obtaining volume value failed with error %d"), error);
1654 volumeList.ResetAndDestroy();
1658 INFO_PRINTF3(_L("Setting volume number %d in the iteration number %d"), j, i);
1659 iDevSound->SetVolume(volumeValue);
1664 volumeList.ResetAndDestroy();
1666 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetVolumeLoop"));
1670 * Defines the period over which the volume level is to rise smoothly from
1671 * nothing to the normal volume level.
1672 * The function is only available while the tone is playing.
1673 * @param aSection - Section to read param from the ini file
1676 void CT_CMMFDevSoundData::DoCmdSetVolumeRamp(const TTEFSectionName& aSection)
1678 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetVolumeRamp"));
1680 TBool dataOk = ETrue;
1681 if (!GetIntFromConfig(aSection, KRampDuration, tempValue))
1683 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRampDuration);
1684 SetBlockResult(EFail);
1687 TTimeIntervalMicroSeconds rampDuration(tempValue);
1691 iDevSound->SetVolumeRamp(rampDuration);
1693 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetVolumeRamp"));
1697 * Initializes DevSound object for the mode aMode for processing audio data
1698 * with hardware device aHWDev and supporting FourCC.
1699 * Too Initializes CMMFDevSound object to play and record PCM16 raw audio data
1700 * with sampling rate of 8 KHz.
1701 * @param aSection - Section to read params from the ini file
1703 void CT_CMMFDevSoundData::DoCmdInitializeL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
1705 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdInitializeL"));
1706 TBool dataOk = ETrue;
1708 if (!GetEnumFromConfig(aSection, KMode, iEnumMode, mode))
1710 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KMode);
1711 SetBlockResult(EFail);
1717 if (!GetHexFromConfig(aSection, KHwDevice, hwDeviceInt))
1719 INFO_PRINTF2(_L("%S parameter was not found in INI file"), &KHwDevice);
1720 TPtrC fourCCIniString;
1721 if (!GetStringFromConfig(aSection, KFourCC, fourCCIniString))
1723 INFO_PRINTF2(_L("%S parameter was not found in INI file"), &KFourCC);
1726 INFO_PRINTF1(_L("Initializing DevSound with overload: void InitializeL(MDevSoundObserver &aDevSoundObserver, TMMFState aMode)"));
1727 TRAPD(error, iDevSound->InitializeL(*this, (TMMFState)mode));
1728 if(KErrNone != error)
1730 ERR_PRINTF2(_L("InitializeL(aMDevSoundObserver, mode) left with error %d"), error);
1737 if (fourCCIniString.Length() > KTFourCC)
1739 ERR_PRINTF2(_L("FourCC obtained from INI file exceeded the valid length in %d"), fourCCIniString.Length());
1740 SetBlockResult(EFail);
1745 TBuf<256> fourCCString;
1746 fourCCString.Copy(fourCCIniString);
1747 while (fourCCString.Length() < KTFourCC)
1749 fourCCString.Insert(0, _L(" "));
1752 fourCC = TFourCC(fourCCString[3] << 24 | fourCCString[2] << 16 | fourCCString[1] << 8 | fourCCString[0]);
1753 INFO_PRINTF1(_L("Initializing DevSound with overload: void InitializeL(MDevSoundObserver &aDevSoundObserver, TFourCC aDesiredFourCC, TMMFState aMode)"));
1754 TRAPD(error, iDevSound->InitializeL(*this, fourCC, (TMMFState)mode));
1757 ERR_PRINTF2(_L("InitializeL(aMDevSoundObserver, fourCC, mode) left with error %d"), error);
1758 ERR_PRINTF2(_L(" %S Not supported in this device"), &fourCCString);
1760 SetBlockResult(EFail);
1770 hwDevice.iUid = hwDeviceInt;
1771 INFO_PRINTF1(_L("Initializing DevSound with overload: void InitializeL(MDevSoundObserver &aDevSoundObserver, TUid aHWDev, TMMFState aMode)"));
1772 TRAPD(error, iDevSound->InitializeL(*this, hwDevice, (TMMFState)mode));
1773 if(KErrNone != error)
1775 ERR_PRINTF2(_L("InitializeL(aMDevSoundObserver, hwDevice, mode) left with error %d"), error);
1785 iInitializeErrorIndex = aAsyncErrorIndex;
1787 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdInitializeL"));
1792 * Initializes the audio device and starts playing the DTMF string aDTMFString.
1793 * @param aSection - Section to read param from the ini file
1796 void CT_CMMFDevSoundData::DoCmdPlayDTMFStringL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
1798 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayDTMFStringL"));
1799 TBool dataOk = ETrue;
1801 if (!GetStringFromConfig(aSection, KDTMFString, dtmfString) )
1803 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDTMFString);
1804 SetBlockResult(EFail);
1809 TRAPD( error, iDevSound->PlayDTMFStringL(dtmfString) );
1810 if(error != KErrNone)
1812 ERR_PRINTF2(_L("Play DTMF string failed with error: %d "), error);
1817 iToneErrorIndex = aAsyncErrorIndex;
1822 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayDTMFStringL"));
1826 * Plays data in the buffer at the current volume.
1830 void CT_CMMFDevSoundData::DoCmdPlayData()
1832 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayData"));
1834 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayData"));
1838 * Helper for the DoCmdPlayData command
1840 void CT_CMMFDevSoundData::PlayData()
1842 INFO_PRINTF1(_L("CT_CMMFDevSoundData::PlayData()"));
1843 iDevSound->PlayData();
1847 * Initializes audio device and starts playing a dual tone.
1848 * The generated tone consists of two sine waves of different frequencies summed together.
1849 * Dual Tone is played with the specified frequencies and for the specified duration.
1850 * @param aSection - Section to read params from the ini file.
1853 void CT_CMMFDevSoundData::DoCmdPlayDualToneL(const TTEFSectionName& aSection , const TInt aAsyncErrorIndex)
1855 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayDualToneL"));
1856 TBool dataOk = ETrue;
1857 TInt frequencyOne=0;
1858 if (!GetIntFromConfig(aSection, KFrequencyOne, frequencyOne) )
1860 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFrequencyOne);
1861 SetBlockResult(EFail);
1865 TInt frequencyTwo=0;
1866 if (!GetIntFromConfig(aSection, KFrequencyTwo, frequencyTwo) )
1868 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFrequencyTwo);
1869 SetBlockResult(EFail);
1874 if (!GetIntFromConfig(aSection, KDuration, duration) )
1876 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDuration);
1877 SetBlockResult(EFail);
1882 TRAPD( error, iDevSound->PlayDualToneL(frequencyOne, frequencyTwo, duration) );
1883 if(error != KErrNone)
1885 ERR_PRINTF2(_L("Play dual tone failed with error %d"), error);
1890 iToneErrorIndex = aAsyncErrorIndex;
1895 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayDualToneL"));
1900 * Initializes the audio device and starts the play process.
1902 * This function queries and acquires the audio policy before initializing audio device. If there was
1903 * an error during policy initialization, PlayError() function will be called on the observer with
1904 * error code KErrAccessDenied, otherwise BufferToBeFilled() function will be called with a buffer
1905 * reference. After reading data into the buffer reference passed, the client should call PlayData() to play data.
1907 * The amount of data that can be played is specified in CMMFBuffer::RequestSize(). Any data that is read into
1908 * buffer beyond this size will be ignored.
1912 void CT_CMMFDevSoundData::DoCmdPlayInitL(const TInt aAsyncErrorIndex)
1914 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayInitL"));
1915 TRAPD(error, iDevSound->PlayInitL());
1916 if (error != KErrNone)
1918 ERR_PRINTF2(_L("PlayInitL left with error %d"), error);
1923 iPlayErrorIndex = aAsyncErrorIndex;
1926 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayInitL"));
1930 * Initializes the audio device and starts playing a tone. The tone is played with the
1931 * frequency and duration specified.
1932 * @param aSection - Section to read params from the ini file
1935 void CT_CMMFDevSoundData::DoCmdPlayToneL(const TTEFSectionName& aSection , const TInt aAsyncErrorIndex)
1937 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayToneL"));
1938 TBool dataOk = ETrue;
1940 if (!GetIntFromConfig(aSection, KFrequency, frequency))
1942 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFrequency);
1943 SetBlockResult(EFail);
1948 if (!GetIntFromConfig(aSection, KDuration, duration))
1950 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDuration);
1951 SetBlockResult(EFail);
1956 TRAPD(error, iDevSound->PlayToneL(frequency, duration));
1957 if (error != KErrNone)
1959 ERR_PRINTF2(_L("Play tone failed with error %d"), error);
1964 iToneErrorIndex = aAsyncErrorIndex;
1968 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayToneL"));
1972 * Initializes the audio device and starts playing a tone sequence.
1973 * @param aSection - Section to read param from the ini file
1976 void CT_CMMFDevSoundData::DoCmdPlayToneSequenceL(const TTEFSectionName& aSection , const TInt aAsyncErrorIndex)
1978 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayToneSequenceL"));
1979 TBool dataOk = ETrue;
1980 TPtrC toneFileParameter;
1981 if (!GetStringFromConfig(aSection, KFilename, toneFileParameter))
1983 ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFilename);
1984 SetBlockResult(EFail);
1989 TInt error = iToneFile.Open(iFs, toneFileParameter, EFileRead);
1990 if (error != KErrNone)
1992 ERR_PRINTF2(_L("Open file failed with error %d"), error);
1997 error = iToneFile.Read(iToneSequence);
1998 if (error != KErrNone)
2000 ERR_PRINTF2(_L("Read file failed with error %d"), error);
2005 TRAP(error, iDevSound->PlayToneSequenceL(iToneSequence));
2006 if (error != KErrNone)
2008 ERR_PRINTF2(_L("Play tone sequence failed with error %d"), error);
2013 iToneErrorIndex = aAsyncErrorIndex;
2019 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayToneSequenceL"));
2023 * Contine the process of recording.
2025 * Once the buffer is filled with recorded data, the Observer gets a reference to the buffer along
2026 * with the callback function BufferToBeEmptied(). After processing the buffer (copying over to a
2027 * different buffer or writing to file) the client should call this function to continue the
2028 * recording process.
2032 void CT_CMMFDevSoundData::DoCmdRecordData()
2034 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdRecordData"));
2036 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdRecordData"));
2040 * Helper method to DoCmdRecordData command
2042 void CT_CMMFDevSoundData::RecordData()
2044 iDevSound->RecordData();
2048 * Initializes audio device and starts the recording process.
2050 * This command queries and acquires the audio policy before initializing audio device. If there
2051 * was an error during policy initialization, RecordError() function will be called on the observer
2052 * with error code KErrAccessDenied, otherwise BufferToBeEmptied() function will be called with a
2053 * buffer reference. This buffer contains recorded or encoded data. After processing data in the
2054 * buffer reference passed, the client should call RecordData() to continue recording process.
2056 * The amount of data that is available is specified in CMMFBuffer::RequestSize().
2060 void CT_CMMFDevSoundData::DoCmdRecordInitL(const TInt aAsyncErrorIndex)
2062 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdRecordInitL"));
2063 iRecordErrorIndex = aAsyncErrorIndex;
2064 TRAPD(error, iDevSound->RecordInitL());
2065 if (error != KErrNone)
2067 ERR_PRINTF2(_L("RecordInitL left with error %d"), error);
2070 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdRecordInitL"));
2079 void CT_CMMFDevSoundData::DoCmdUtilityErrorConceal()
2081 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdErrorConceal"));
2082 iErrorConceal=ETrue;
2083 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdErrorConceal"));
2087 * Stop an audio file
2091 void CT_CMMFDevSoundData::DoCmdStop(const TTEFSectionName& aSection)
2093 INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdStop"));
2095 if(!GetBoolFromConfig(aSection,KPause,pause))
2097 INFO_PRINTF1(_L("The DoCmdStop command will be execute"));
2103 INFO_PRINTF1(_L("a Pause was required"));
2106 INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdStop"));
2113 * Utility for get the HwDevice for play and recording
2116 void CT_CMMFDevSoundData::UtilityFourCCToHwDeviceUidL(const TDesC& aFourCC, THwDeviceType aType, TUid& aHwDeviceUid)
2118 TPtrC8 fourCCPtr(0,0);
2119 TPtrC8 fourCCP16Ptr(0,0);
2120 RImplInfoPtrArray impArray;
2121 CleanupResetAndDestroyPushL(impArray);
2122 REComSession::ListImplementationsL(TUid::Uid(KMmfUidPluginInterfaceHwDevice), impArray);
2123 TBuf<KHwDeviceDefaultDataLength> datatype;
2124 for(TInt i = 0; i < impArray.Count(); ++i)
2126 CImplementationInformation& entry = *(impArray[i]);
2128 if (entry.DataType().Length() == KHwDeviceDefaultDataLength)
2130 INFO_PRINTF2(_L("Implementation UID=0x%08x"),entry.ImplementationUid());
2131 datatype.Copy(entry.DataType());
2132 INFO_PRINTF2(_L("Default data (fourCCs)=%S"), &datatype);
2134 if(aType == EDecoder)
2136 fourCCPtr.Set(entry.DataType().Left(KFourCCLength));
2137 fourCCP16Ptr.Set(entry.DataType().Right(KFourCCLength));
2139 else if (aType == EEncoder)
2141 fourCCPtr.Set(entry.DataType().Right(KFourCCLength));
2142 fourCCP16Ptr.Set(entry.DataType().Left(KFourCCLength));
2145 TBuf16<4> foundFourCC;
2146 foundFourCC.Copy(fourCCPtr);
2147 if(aFourCC.CompareF(foundFourCC) == 0)
2149 aHwDeviceUid = entry.ImplementationUid();
2154 CleanupStack::PopAndDestroy(&impArray);
2155 REComSession::FinalClose();