os/mm/mmapitest/devsoundexthaitest/src/T_CMMFDevSoundData.cpp
author sl
Tue, 10 Jun 2014 14:32:02 +0200
changeset 1 260cb5ec6c19
permissions -rw-r--r--
Update contrib.
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
#include "t_cmmfdevsounddata.h"
sl@0
    21
sl@0
    22
/*@{*/
sl@0
    23
//Constants for HwDevice
sl@0
    24
const TInt KHwDeviceDefaultDataLength = 9;
sl@0
    25
const TInt KFourCCLength = 4;
sl@0
    26
//Supported Input Data Types
sl@0
    27
const TInt KFourCCMaxBitDisplacement = 24;
sl@0
    28
const TInt K8Bits = 8;
sl@0
    29
const TInt KTFourCC = 4;
sl@0
    30
/*@}*/
sl@0
    31
sl@0
    32
/*@{*/
sl@0
    33
//Command literals
sl@0
    34
_LIT(KCmdNewL,                         "NewL");
sl@0
    35
_LIT(KCmdNewLLoopL,                    "NewLLoopL");
sl@0
    36
_LIT(KCmdDestructor,                   "~");
sl@0
    37
_LIT(KCmdCapabilities,                 "Capabilities");
sl@0
    38
_LIT(KCmdConfig,                       "Config");
sl@0
    39
_LIT(KCmdMaxGain,                      "MaxGain");
sl@0
    40
_LIT(KCmdMaxVolume,                    "MaxVolume");
sl@0
    41
_LIT(KCmdGetPlayBalanceL,              "GetPlayBalanceL");
sl@0
    42
_LIT(KCmdGetRecordBalanceL,            "GetRecordBalanceL");
sl@0
    43
_LIT(KCmdGetSupportedInputDataTypesL,  "GetSupportedInputDataTypesL");
sl@0
    44
_LIT(KCmdGetSupportedOutputDataTypesL, "GetSupportedOutputDataTypesL");
sl@0
    45
_LIT(KCmdSamplesPlayed,                "SamplesPlayed");
sl@0
    46
_LIT(KCmdSamplesRecorded,              "SamplesRecorded");
sl@0
    47
_LIT(KCmdVolume,                       "Volume");
sl@0
    48
_LIT(KCmdGain,                         "Gain");
sl@0
    49
_LIT(KCmdFixedSequenceCount,           "FixedSequenceCount");
sl@0
    50
_LIT(KCmdFixedSequenceName,            "FixedSequenceName");
sl@0
    51
_LIT(KCmdSetConfigL,                   "SetConfigL");
sl@0
    52
_LIT(KCmdSetDTMFLengths,               "SetDTMFLengths");
sl@0
    53
_LIT(KCmdSetGain,                      "SetGain");
sl@0
    54
_LIT(KCmdSetPlayBalanceL,              "SetPlayBalanceL");
sl@0
    55
_LIT(KCmdSetPrioritySettings,          "SetPrioritySettings");
sl@0
    56
_LIT(KCmdSetRecordBalanceL,            "SetRecordBalanceL");
sl@0
    57
_LIT(KCmdSetToneRepeats,               "SetToneRepeats");
sl@0
    58
_LIT(KCmdSetVolume,                    "SetVolume");
sl@0
    59
_LIT(KCmdSetVolumeRamp,                "SetVolumeRamp");
sl@0
    60
_LIT(KCmdInitializeL,                  "InitializeL");
sl@0
    61
_LIT(KCmdPlayDTMFStringL,              "PlayDTMFStringL");
sl@0
    62
_LIT(KCmdPlayData,                     "PlayData");
sl@0
    63
_LIT(KCmdPlayDualToneL,                "PlayDualToneL");
sl@0
    64
_LIT(KCmdPlayInitL,                    "PlayInitL");
sl@0
    65
_LIT(KCmdPlayToneL,                    "PlayToneL");
sl@0
    66
_LIT(KCmdPlayToneSequenceL,            "PlayToneSequenceL");
sl@0
    67
_LIT(KCmdRecordData,                   "RecordData");
sl@0
    68
_LIT(KCmdRecordInitL,                  "RecordInitL");
sl@0
    69
_LIT(KCmdStop,                         "Stop");
sl@0
    70
_LIT(KCmdErrorConceal,                 "ErrorConceal");
sl@0
    71
_LIT(KCmdSetVolumeLoop,                "SetVolumeLoop");
sl@0
    72
/*@}*/
sl@0
    73
sl@0
    74
/*@{*/
sl@0
    75
//Utility literals
sl@0
    76
_LIT(KCmdUtilityReplaceFile,                  "ReplaceFile");
sl@0
    77
_LIT(KCmdUtilityOpenFile,                     "OpenFile");
sl@0
    78
_LIT(KCmdUtilityCloseFile,                    "CloseFile");
sl@0
    79
_LIT(KCmdUtilityFileStartPosition,            "FileStartPosition");
sl@0
    80
/*@}*/
sl@0
    81
sl@0
    82
/*@{*/
sl@0
    83
//INI Section name literals
sl@0
    84
_LIT(KGainValue,                       "Gain");
sl@0
    85
_LIT(KVolumeValue,                     "Volume");
sl@0
    86
_LIT(KLeftPercentage,                  "LeftPercentage");
sl@0
    87
_LIT(KRightPercentage,                 "RightPercentage");
sl@0
    88
_LIT(KSequenceNumber,                  "SequenceNumber");
sl@0
    89
_LIT(KRate,                            "Rate");
sl@0
    90
_LIT(KEncoding,                        "Encoding");
sl@0
    91
_LIT(KChannels,                        "Channels");
sl@0
    92
_LIT(KBufferSize,                      "BufferSize");
sl@0
    93
_LIT(KToneOnLength,                    "ToneOnLength");
sl@0
    94
_LIT(KToneOffLength,                   "ToneOffLength");
sl@0
    95
_LIT(KPause,                           "Pause");
sl@0
    96
_LIT(KPauseLength,                     "PauseLength");
sl@0
    97
_LIT(KPriority,                        "Priority");
sl@0
    98
_LIT(KPreference,                      "Preference");
sl@0
    99
_LIT(KPriorityState,                   "PriorityState");
sl@0
   100
_LIT(KRepeatCount,                     "RepeatCount");
sl@0
   101
_LIT(KRepeatTrailingSilence,           "RepeatTrailingSilence");
sl@0
   102
_LIT(KRampDuration,                    "RampDuration");
sl@0
   103
_LIT(KMode,                            "Mode");
sl@0
   104
_LIT(KHwDevice,                        "HwDevice");
sl@0
   105
_LIT(KFourCC,                          "FourCC");
sl@0
   106
_LIT(KFilename,                        "Filename");
sl@0
   107
_LIT(KDTMFString,                      "DTMFString");
sl@0
   108
_LIT(KFrequency,                       "Frequency");
sl@0
   109
_LIT(KFrequencyOne,                    "FrequencyOne");
sl@0
   110
_LIT(KFrequencyTwo,                    "FrequencyTwo");
sl@0
   111
_LIT(KDuration,                        "Duration");
sl@0
   112
_LIT(KLoop,                            "Loop");
sl@0
   113
_LIT(KAllowedError,                    "AllowedError");
sl@0
   114
_LIT(KVolumeList,                      "VolumeList");
sl@0
   115
_LIT(KVolumeLoop,                      "VolumeLoop");
sl@0
   116
/*@}*/
sl@0
   117
sl@0
   118
/*@{*/
sl@0
   119
//Literals for iEnumChannels
sl@0
   120
_LIT(KEMMFStereo, "EMMFStereo");
sl@0
   121
_LIT(KEMMFMono,   "EMMFMono");
sl@0
   122
/*@}*/
sl@0
   123
sl@0
   124
const CDataWrapperBase::TEnumEntryTable CT_CMMFDevSoundData::iEnumChannels[] =
sl@0
   125
	{
sl@0
   126
	{KEMMFMono,   EMMFMono},
sl@0
   127
	{KEMMFStereo, EMMFStereo}
sl@0
   128
	};
sl@0
   129
sl@0
   130
/*@{*/
sl@0
   131
//Literals for iEnumSampleRate
sl@0
   132
_LIT(KEMMFSampleRate8000Hz,  "EMMFSampleRate8000Hz");
sl@0
   133
_LIT(KEMMFSampleRate11025Hz, "EMMFSampleRate11025Hz");
sl@0
   134
_LIT(KEMMFSampleRate16000Hz, "EMMFSampleRate16000Hz");
sl@0
   135
_LIT(KEMMFSampleRate22050Hz, "EMMFSampleRate22050Hz");
sl@0
   136
_LIT(KEMMFSampleRate32000Hz, "EMMFSampleRate32000Hz");
sl@0
   137
_LIT(KEMMFSampleRate44100Hz, "EMMFSampleRate44100Hz");
sl@0
   138
_LIT(KEMMFSampleRate48000Hz, "EMMFSampleRate48000Hz");
sl@0
   139
_LIT(KEMMFSampleRate88200Hz, "EMMFSampleRate88200Hz");
sl@0
   140
_LIT(KEMMFSampleRate96000Hz, "EMMFSampleRate96000Hz");
sl@0
   141
_LIT(KEMMFSampleRate12000Hz, "EMMFSampleRate12000Hz");
sl@0
   142
_LIT(KEMMFSampleRate24000Hz, "EMMFSampleRate24000Hz");
sl@0
   143
_LIT(KEMMFSampleRate64000Hz, "EMMFSampleRate64000Hz");
sl@0
   144
/*@}*/
sl@0
   145
sl@0
   146
const CDataWrapperBase::TEnumEntryTable CT_CMMFDevSoundData::iEnumSampleRate[] =
sl@0
   147
	{
sl@0
   148
	{KEMMFSampleRate8000Hz,  EMMFSampleRate8000Hz},
sl@0
   149
	{KEMMFSampleRate11025Hz, EMMFSampleRate11025Hz},
sl@0
   150
	{KEMMFSampleRate16000Hz, EMMFSampleRate16000Hz},
sl@0
   151
	{KEMMFSampleRate22050Hz, EMMFSampleRate22050Hz},
sl@0
   152
	{KEMMFSampleRate32000Hz, EMMFSampleRate32000Hz},
sl@0
   153
	{KEMMFSampleRate44100Hz, EMMFSampleRate44100Hz},
sl@0
   154
	{KEMMFSampleRate48000Hz, EMMFSampleRate48000Hz},
sl@0
   155
	{KEMMFSampleRate88200Hz, EMMFSampleRate88200Hz},
sl@0
   156
	{KEMMFSampleRate96000Hz, EMMFSampleRate96000Hz},
sl@0
   157
	{KEMMFSampleRate12000Hz, EMMFSampleRate12000Hz},
sl@0
   158
	{KEMMFSampleRate24000Hz, EMMFSampleRate24000Hz},
sl@0
   159
	{KEMMFSampleRate64000Hz, EMMFSampleRate64000Hz}
sl@0
   160
	};
sl@0
   161
sl@0
   162
/*@{*/
sl@0
   163
//Literal for iEnumMode
sl@0
   164
_LIT(KEMMFStateIdle,             "EMMFStateIdle");
sl@0
   165
_LIT(KEMMFStatePlaying,          "EMMFStatePlaying");
sl@0
   166
_LIT(KEMMFStateTonePlaying,      "EMMFStateTonePlaying");
sl@0
   167
_LIT(KEMMFStateRecording,        "EMMFStateRecording");
sl@0
   168
_LIT(KEMMFStatePlayingRecording, "EMMFStatePlayingRecording");
sl@0
   169
_LIT(KEMMFStateConverting,       "EMMFStateConverting");
sl@0
   170
/*@}*/
sl@0
   171
sl@0
   172
const CDataWrapperBase::TEnumEntryTable CT_CMMFDevSoundData::iEnumMode[] =
sl@0
   173
	{
sl@0
   174
	{KEMMFStateIdle,             EMMFStateIdle},
sl@0
   175
	{KEMMFStatePlaying,          EMMFStatePlaying},
sl@0
   176
	{KEMMFStateRecording,        EMMFStateRecording},
sl@0
   177
	{KEMMFStateTonePlaying,      EMMFStateTonePlaying},
sl@0
   178
	{KEMMFStatePlayingRecording, EMMFStatePlayingRecording},
sl@0
   179
	{KEMMFStateConverting,       EMMFStateConverting}
sl@0
   180
	};
sl@0
   181
sl@0
   182
/*@{*/
sl@0
   183
//Literals for iEnumInitializeLType
sl@0
   184
_LIT(KEInitializeState,          "EInitializeState");
sl@0
   185
_LIT(KEInitializeHwDeviceMode,   "EInitializeHwDeviceMode");
sl@0
   186
_LIT(KEInitializeFourCCMode,     "EInitializeFourCCMode");
sl@0
   187
/*@}*/
sl@0
   188
sl@0
   189
enum TMMFInitializeMode
sl@0
   190
	{
sl@0
   191
	EInitializeState,
sl@0
   192
	EInitializeHwDeviceMode,
sl@0
   193
	EInitializeFourCCMode
sl@0
   194
	};
sl@0
   195
sl@0
   196
const CDataWrapperBase::TEnumEntryTable CT_CMMFDevSoundData::iEnumInitializeLType[] =
sl@0
   197
	{
sl@0
   198
	{KEInitializeState,        EInitializeState},
sl@0
   199
	{KEInitializeHwDeviceMode, EInitializeHwDeviceMode},
sl@0
   200
	{KEInitializeFourCCMode,   EInitializeFourCCMode}
sl@0
   201
	};
sl@0
   202
sl@0
   203
/**
sl@0
   204
 * Two phase constructor
sl@0
   205
 *
sl@0
   206
 * @leave   system wide error
sl@0
   207
 */
sl@0
   208
CT_CMMFDevSoundData* CT_CMMFDevSoundData::NewL()
sl@0
   209
	{
sl@0
   210
	CT_CMMFDevSoundData* ret = new (ELeave) CT_CMMFDevSoundData();
sl@0
   211
	CleanupStack::PushL(ret);
sl@0
   212
	ret->ConstructL();
sl@0
   213
	CleanupStack::Pop(ret);
sl@0
   214
	return ret;
sl@0
   215
	}
sl@0
   216
sl@0
   217
/**
sl@0
   218
 * Private constructor. First phase construction
sl@0
   219
 */
sl@0
   220
CT_CMMFDevSoundData::CT_CMMFDevSoundData()
sl@0
   221
	:
sl@0
   222
	iDevSound(NULL),
sl@0
   223
	iPrioritySettings(),
sl@0
   224
	iCapabilities(),
sl@0
   225
	iVolumeValue(0),
sl@0
   226
	iGainValue(0),
sl@0
   227
	iLeftPercentage(0),
sl@0
   228
	iRightPercentage(0),
sl@0
   229
	iFs(),
sl@0
   230
	iToneFile(),
sl@0
   231
	iAudiofile(),
sl@0
   232
	iBuffer(NULL),
sl@0
   233
	iLastSample(0),
sl@0
   234
	iPaused(EFalse),
sl@0
   235
	iErrorConceal(EFalse),
sl@0
   236
	iEndFile(EFalse),
sl@0
   237
	iToneSequence(),
sl@0
   238
	iInitializeCompleteError(0),
sl@0
   239
	iToneFinishedError(0),
sl@0
   240
	iBufferToBeFilledError(0),
sl@0
   241
	iPlayErrorError(0),
sl@0
   242
	iBufferToBeEmptiedError(0),
sl@0
   243
	iRecordErrorError(0),
sl@0
   244
	iConvertErrorError(0),
sl@0
   245
	iDeviceMessageError(0),
sl@0
   246
	iUtilityFourCCToHwDeviceUidLError(0),
sl@0
   247
    iAsyncErrorIndex_initialize(0),
sl@0
   248
    iAsyncErrorIndex_play(0),
sl@0
   249
    iAsyncErrorIndex_record(0),
sl@0
   250
    iAsyncErrorIndex_tone(0)
sl@0
   251
    
sl@0
   252
	{
sl@0
   253
	}
sl@0
   254
sl@0
   255
/**
sl@0
   256
 * Second phase construction
sl@0
   257
 * @internalComponent
sl@0
   258
 * @return  N/A
sl@0
   259
 * @pre     None
sl@0
   260
 * @post    None
sl@0
   261
 * @leave   system wide error
sl@0
   262
 */
sl@0
   263
void CT_CMMFDevSoundData::ConstructL()
sl@0
   264
	{
sl@0
   265
	iFs.Connect();
sl@0
   266
	}
sl@0
   267
sl@0
   268
/**
sl@0
   269
 * Public destructor
sl@0
   270
 */
sl@0
   271
CT_CMMFDevSoundData::~CT_CMMFDevSoundData()
sl@0
   272
	{
sl@0
   273
	iFs.Close();
sl@0
   274
	DestroyData();
sl@0
   275
	}
sl@0
   276
sl@0
   277
/**
sl@0
   278
 * Helper Destructor
sl@0
   279
 */
sl@0
   280
void CT_CMMFDevSoundData::DestroyData()
sl@0
   281
	{
sl@0
   282
		INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DestroyData()"));
sl@0
   283
	if(iDevSound)
sl@0
   284
		{
sl@0
   285
			INFO_PRINTF1(_L("Delete DevSound object."));
sl@0
   286
		delete iDevSound;
sl@0
   287
		iDevSound = NULL;
sl@0
   288
		}
sl@0
   289
			INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DestroyData()"));
sl@0
   290
	}
sl@0
   291
sl@0
   292
/**
sl@0
   293
 * Return a pointer to the object that the data wraps
sl@0
   294
 *
sl@0
   295
 * @return  pointer to the object that the data wraps
sl@0
   296
 */
sl@0
   297
TAny* CT_CMMFDevSoundData::GetObject()
sl@0
   298
	{
sl@0
   299
	return iDevSound;
sl@0
   300
	}
sl@0
   301
sl@0
   302
/**
sl@0
   303
 * Process a command read from the Ini file
sl@0
   304
 * @param aCommand          - The command to process
sl@0
   305
 * @param aSection          - The section get from the *.ini file of the project T_Wlan
sl@0
   306
 * @param aAsyncErrorIndex  - Command index dor async calls to returns errors to
sl@0
   307
 * @return TBool            - ETrue if the command is process
sl@0
   308
 * @leave                   - system wide error
sl@0
   309
 */
sl@0
   310
TBool CT_CMMFDevSoundData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
sl@0
   311
	{
sl@0
   312
	TBool ret = ETrue;
sl@0
   313
sl@0
   314
	if (aCommand == KCmdNewL)
sl@0
   315
		{
sl@0
   316
		DoCmdNewL();
sl@0
   317
		}
sl@0
   318
	else if(aCommand == KCmdNewLLoopL)
sl@0
   319
		{
sl@0
   320
		DoCmdNewLLoopL(aSection);
sl@0
   321
		}
sl@0
   322
	else if (aCommand == KCmdDestructor)
sl@0
   323
		{
sl@0
   324
		DoCmdDestructor();
sl@0
   325
		}
sl@0
   326
	else if (aCommand == KCmdUtilityReplaceFile)
sl@0
   327
		{
sl@0
   328
		DoCmdUtilityReplaceFile(aSection);
sl@0
   329
		}
sl@0
   330
	else if (aCommand == KCmdUtilityOpenFile)
sl@0
   331
		{
sl@0
   332
		DoCmdUtilityOpenFile(aSection);
sl@0
   333
		}
sl@0
   334
	else if (aCommand == KCmdUtilityCloseFile)
sl@0
   335
		{
sl@0
   336
		DoCmdUtilityCloseFile();
sl@0
   337
		}
sl@0
   338
	else if (aCommand == KCmdUtilityFileStartPosition)
sl@0
   339
		{
sl@0
   340
		DoCmdUtilityFileStartPosition();
sl@0
   341
		}
sl@0
   342
	else if (aCommand == KCmdCapabilities)
sl@0
   343
		{
sl@0
   344
		DoCmdCapabilities();
sl@0
   345
		}
sl@0
   346
	else if (aCommand == KCmdConfig)
sl@0
   347
		{
sl@0
   348
		DoCmdConfig();
sl@0
   349
		}
sl@0
   350
	else if (aCommand == KCmdMaxGain)
sl@0
   351
		{
sl@0
   352
		DoCmdMaxGain(aSection);
sl@0
   353
		}
sl@0
   354
	else if (aCommand == KCmdMaxVolume)
sl@0
   355
		{
sl@0
   356
		DoCmdMaxVolume(aSection);
sl@0
   357
		}
sl@0
   358
	else if (aCommand == KCmdGetPlayBalanceL)
sl@0
   359
		{
sl@0
   360
		DoCmdGetPlayBalanceL(aSection);
sl@0
   361
		}
sl@0
   362
	else if (aCommand == KCmdGetRecordBalanceL)
sl@0
   363
		{
sl@0
   364
		DoCmdGetRecordBalanceL(aSection);
sl@0
   365
		}
sl@0
   366
	else if (aCommand == KCmdGetSupportedInputDataTypesL)
sl@0
   367
		{
sl@0
   368
		DoCmdGetSupportedInputDataTypesL();
sl@0
   369
		}
sl@0
   370
	else if (aCommand == KCmdGetSupportedOutputDataTypesL)
sl@0
   371
		{
sl@0
   372
		DoCmdGetSupportedOutputDataTypesL();
sl@0
   373
		}
sl@0
   374
	else if (aCommand == KCmdSamplesPlayed)
sl@0
   375
		{
sl@0
   376
		DoCmdSamplesPlayed();
sl@0
   377
		}
sl@0
   378
	else if (aCommand == KCmdSamplesRecorded)
sl@0
   379
		{
sl@0
   380
		DoCmdSamplesRecorded();
sl@0
   381
		}
sl@0
   382
	else if (aCommand == KCmdVolume)
sl@0
   383
		{
sl@0
   384
		DoCmdVolume(aSection);
sl@0
   385
		}
sl@0
   386
	else if (aCommand == KCmdGain)
sl@0
   387
		{
sl@0
   388
		DoCmdGain(aSection);
sl@0
   389
		}
sl@0
   390
	else if (aCommand == KCmdFixedSequenceCount)
sl@0
   391
		{
sl@0
   392
		DoCmdFixedSequenceCount();
sl@0
   393
		}
sl@0
   394
	else if (aCommand == KCmdFixedSequenceName)
sl@0
   395
		{
sl@0
   396
		DoCmdFixedSequenceName(aSection);
sl@0
   397
		}
sl@0
   398
	else if (aCommand == KCmdSetConfigL)
sl@0
   399
		{
sl@0
   400
		DoCmdSetConfigL(aSection);
sl@0
   401
		}
sl@0
   402
	else if (aCommand == KCmdSetDTMFLengths)
sl@0
   403
		{
sl@0
   404
		DoCmdSetDTMFLengths(aSection);
sl@0
   405
		}
sl@0
   406
	else if (aCommand == KCmdSetGain)
sl@0
   407
		{
sl@0
   408
		DoCmdSetGain(aSection);
sl@0
   409
		}
sl@0
   410
	else if (aCommand == KCmdSetPlayBalanceL)
sl@0
   411
		{
sl@0
   412
		DoCmdSetPlayBalanceL(aSection);
sl@0
   413
		}
sl@0
   414
	else if (aCommand == KCmdSetPrioritySettings)
sl@0
   415
		{
sl@0
   416
		DoCmdSetPrioritySettings(aSection);
sl@0
   417
		}
sl@0
   418
	else if (aCommand == KCmdSetRecordBalanceL)
sl@0
   419
		{
sl@0
   420
		DoCmdSetRecordBalanceL(aSection);
sl@0
   421
		}
sl@0
   422
	else if (aCommand == KCmdSetToneRepeats)
sl@0
   423
		{
sl@0
   424
		DoCmdSetToneRepeats(aSection);
sl@0
   425
		}
sl@0
   426
	else if (aCommand == KCmdSetVolume)
sl@0
   427
		{
sl@0
   428
		DoCmdSetVolume(aSection);
sl@0
   429
		}
sl@0
   430
	else if (aCommand == KCmdSetVolumeLoop)
sl@0
   431
		{
sl@0
   432
		DoCmdSetVolumeLoop(aSection);
sl@0
   433
		}
sl@0
   434
	else if (aCommand == KCmdSetVolumeRamp)
sl@0
   435
		{
sl@0
   436
		DoCmdSetVolumeRamp(aSection);
sl@0
   437
		}
sl@0
   438
	else if (aCommand == KCmdInitializeL)
sl@0
   439
		{
sl@0
   440
		DoCmdInitializeL(aSection, aAsyncErrorIndex);
sl@0
   441
		}
sl@0
   442
	else if (aCommand == KCmdPlayDTMFStringL)
sl@0
   443
		{
sl@0
   444
		DoCmdPlayDTMFStringL(aSection, aAsyncErrorIndex);
sl@0
   445
		}
sl@0
   446
	else if (aCommand == KCmdPlayData)
sl@0
   447
		{
sl@0
   448
		DoCmdPlayData();
sl@0
   449
		}
sl@0
   450
	else if (aCommand == KCmdPlayDualToneL)
sl@0
   451
		{
sl@0
   452
		DoCmdPlayDualToneL(aSection);
sl@0
   453
		}
sl@0
   454
	else if (aCommand == KCmdPlayInitL)
sl@0
   455
		{
sl@0
   456
		DoCmdPlayInitL(aAsyncErrorIndex);
sl@0
   457
		}
sl@0
   458
	else if (aCommand == KCmdPlayToneL)
sl@0
   459
		{
sl@0
   460
		DoCmdPlayToneL(aSection, aAsyncErrorIndex);
sl@0
   461
		}
sl@0
   462
	else if (aCommand == KCmdPlayToneSequenceL)
sl@0
   463
		{
sl@0
   464
		DoCmdPlayToneSequenceL(aSection, aAsyncErrorIndex);
sl@0
   465
		}
sl@0
   466
	else if (aCommand == KCmdRecordData)
sl@0
   467
		{
sl@0
   468
		DoCmdRecordData();
sl@0
   469
		}
sl@0
   470
	else if (aCommand == KCmdRecordInitL)
sl@0
   471
		{
sl@0
   472
		DoCmdRecordInitL(aAsyncErrorIndex);
sl@0
   473
		}
sl@0
   474
	else if (aCommand == KCmdStop)
sl@0
   475
		{
sl@0
   476
		DoCmdStop(aSection);
sl@0
   477
		}
sl@0
   478
	else if(aCommand == KCmdErrorConceal)
sl@0
   479
		{
sl@0
   480
		DoCmdUtilityErrorConceal();
sl@0
   481
		}
sl@0
   482
	else
sl@0
   483
		{
sl@0
   484
		ERR_PRINTF1(_L("Unknown command."));
sl@0
   485
		ret=EFalse;
sl@0
   486
		}
sl@0
   487
	return ret;
sl@0
   488
	}
sl@0
   489
sl@0
   490
/**
sl@0
   491
 * Handles initialization completion event.
sl@0
   492
 * CMMFDevSound object calls this function when its InitializeL() function
sl@0
   493
 * completes.
sl@0
   494
 * @param  aError - Error code. KErrNone if successful. Other values are possible
sl@0
   495
 *                  indicating a problem initializing CMMFDevSound object.
sl@0
   496
 * @return void
sl@0
   497
 */
sl@0
   498
sl@0
   499
void CT_CMMFDevSoundData::InitializeComplete(TInt aError)
sl@0
   500
	{
sl@0
   501
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::InitializeComplete"));
sl@0
   502
	if(KErrNone != aError)
sl@0
   503
		{
sl@0
   504
		ERR_PRINTF2(_L("InitializeComplete callback failed with error %d"), aError);
sl@0
   505
        SetAsyncError(iAsyncErrorIndex_initialize, aError);
sl@0
   506
        iAsyncErrorIndex_initialize = 0;
sl@0
   507
		}
sl@0
   508
	DecOutstanding();
sl@0
   509
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::InitializeComplete"));
sl@0
   510
	}
sl@0
   511
sl@0
   512
/**
sl@0
   513
 * It's needed for playing o converting
sl@0
   514
 * @param aBuffer - Buffer into which data should be read. The amount of data that is
sl@0
   515
 *                  needed is specified in CMMFBuffer::RequestSize().
sl@0
   516
 */
sl@0
   517
void CT_CMMFDevSoundData::BufferToBeFilled(CMMFBuffer* aBuffer)
sl@0
   518
	{
sl@0
   519
	if (!aBuffer)
sl@0
   520
		{
sl@0
   521
		ERR_PRINTF1(_L("BufferToBeFilled callback received a NULL CMMFBuffer!"));
sl@0
   522
		SetBlockResult(EFail);
sl@0
   523
		}
sl@0
   524
	else
sl@0
   525
		{
sl@0
   526
		TBool dataOk = ETrue;
sl@0
   527
		iBuffer = aBuffer;
sl@0
   528
		iBuffer->SetLastBuffer(EFalse);
sl@0
   529
		CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
   530
		if (iPaused)
sl@0
   531
			{
sl@0
   532
			iPaused=EFalse;
sl@0
   533
			TInt error = iAudiofile.Read(iLastSample,buffer->Data());
sl@0
   534
			if (error != KErrNone)
sl@0
   535
				{
sl@0
   536
				ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), error);
sl@0
   537
				SetBlockResult(EFail);
sl@0
   538
				dataOk = EFalse;
sl@0
   539
				}
sl@0
   540
			}
sl@0
   541
		else
sl@0
   542
			{
sl@0
   543
			TInt error = iAudiofile.Read(buffer->Data());
sl@0
   544
			if (error != KErrNone)
sl@0
   545
				{
sl@0
   546
				ERR_PRINTF2(_L("ERROR : iFile.Read() failed with %d"), error);
sl@0
   547
				SetBlockResult(EFail);
sl@0
   548
				dataOk =EFalse;
sl@0
   549
				}
sl@0
   550
			}
sl@0
   551
		if(dataOk)
sl@0
   552
			{
sl@0
   553
			if (buffer->Data().Length() != buffer->RequestSize())
sl@0
   554
				{
sl@0
   555
				iBuffer->SetLastBuffer(ETrue);
sl@0
   556
				}
sl@0
   557
			if (iErrorConceal)
sl@0
   558
				{
sl@0
   559
				iErrorConceal=EFalse;
sl@0
   560
				buffer->Data().Zero();
sl@0
   561
				INFO_PRINTF1(_L("buffer->Data().Zero()"));
sl@0
   562
				}
sl@0
   563
			PlayData();
sl@0
   564
			TInt pos=0;
sl@0
   565
			iLastSample=iAudiofile.Seek(ESeekCurrent ,pos);
sl@0
   566
			INFO_PRINTF2(_L("Number of samples played so far: %d"), pos);
sl@0
   567
			iLastSample=pos;
sl@0
   568
			}
sl@0
   569
		}
sl@0
   570
	}
sl@0
   571
sl@0
   572
/**
sl@0
   573
* Handles play completion or cancel event.
sl@0
   574
*
sl@0
   575
* CMMFDevSound object calls this function when an attempt to play audio sample
sl@0
   576
* has completed, successfully or otherwise.
sl@0
   577
*
sl@0
   578
*   @param  aError - Error code. The status of playback. KErrUnderflow playing of the
sl@0
   579
*                    audio sample is complete. KErrAccessDenied the sound device is in
sl@0
   580
*                    use by another higher priority client.
sl@0
   581
*/
sl@0
   582
void CT_CMMFDevSoundData::PlayError(TInt aError)
sl@0
   583
	{
sl@0
   584
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::PlayError"));
sl@0
   585
	if (aError == KErrUnderflow)
sl@0
   586
		{
sl@0
   587
		ERR_PRINTF2(_L("Playback completed normally with error %d"), aError);
sl@0
   588
		//iAudiofile.Close();
sl@0
   589
		}
sl@0
   590
	else
sl@0
   591
		{
sl@0
   592
		ERR_PRINTF2(_L("Playback completed with error %d"), aError);
sl@0
   593
		SetAsyncError(iAsyncErrorIndex_play,aError);
sl@0
   594
        iAsyncErrorIndex_play = 0;
sl@0
   595
		}
sl@0
   596
	DecOutstanding();
sl@0
   597
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::PlayError"));
sl@0
   598
	}
sl@0
   599
sl@0
   600
sl@0
   601
/**
sl@0
   602
 *  Handles tone play completion event.
sl@0
   603
 *
sl@0
   604
 *
sl@0
   605
 *  CMMFDevSound object calls this function when an attempt to play tone has
sl@0
   606
 *  completed, successfully or otherwise.
sl@0
   607
 *
sl@0
   608
 *  The following are the play tone functions; PlayToneL(), PlayDMTFStringL(),
sl@0
   609
 *  PlayToneSequenceL(), and PlayFixedSequenceL().
sl@0
   610
 *
sl@0
   611
 *  @param  aError -  Error code. The status of tone playback. KErrUnderflow playing of
sl@0
   612
 *                    the tone is complete. KErrAccessDenied the sound device is in use by
sl@0
   613
 *                    another higher priority client. KErrCancel playing of the audio
sl@0
   614
 *                    sample is stopped by DevSound client another higher priority client.
sl@0
   615
 *
sl@0
   616
 */
sl@0
   617
sl@0
   618
void CT_CMMFDevSoundData::ToneFinished(TInt aError)
sl@0
   619
	{
sl@0
   620
	ERR_PRINTF1(_L("*START*CT_CMMFDevSoundData::ToneFinished"));
sl@0
   621
	
sl@0
   622
	if (aError == KErrUnderflow)
sl@0
   623
		{
sl@0
   624
		ERR_PRINTF2(_L("Tone finished normally with error = %d"), aError);
sl@0
   625
		}
sl@0
   626
	else
sl@0
   627
		{
sl@0
   628
		ERR_PRINTF2(_L("Tone finished with error %d"), aError);
sl@0
   629
		SetAsyncError(iAsyncErrorIndex_tone, aError);
sl@0
   630
        iAsyncErrorIndex_tone = 0;
sl@0
   631
		}
sl@0
   632
	DecOutstanding();
sl@0
   633
	iToneFile.Close();
sl@0
   634
	ERR_PRINTF1(_L("*END*CT_CMMFDevSoundData::ToneFinished"));
sl@0
   635
	}
sl@0
   636
sl@0
   637
/**
sl@0
   638
 * Handles CMMFDevSound object's data request event.
sl@0
   639
 *
sl@0
   640
 * CMMFDevSound object calls this function when the buffer, aBuffer gets filled
sl@0
   641
 * while recording or converting. The observer should notify CMMFDevSound
sl@0
   642
 * object as quickly as possible after data in the buffer is processed by
sl@0
   643
 * calling RecordData(), otherwise the implementation might callback
sl@0
   644
 * the function RecordError() on derived class object with error code KErrOverflow.
sl@0
   645
 *
sl@0
   646
 * @param  aBuffer - Buffer containing processed (recorded or converted) data. The amount
sl@0
   647
 *                   of data that is available is specified in CMMFBuffer::RequestSize().
sl@0
   648
 */
sl@0
   649
sl@0
   650
void CT_CMMFDevSoundData::BufferToBeEmptied(CMMFBuffer* aBuffer)
sl@0
   651
	{
sl@0
   652
	if (!aBuffer)
sl@0
   653
		{
sl@0
   654
		INFO_PRINTF1(_L("BufferToBeEmptied callback received a NULL CMMFBuffer"));
sl@0
   655
		SetBlockResult(EFail);
sl@0
   656
		}
sl@0
   657
	else
sl@0
   658
		{
sl@0
   659
		iBuffer = aBuffer;
sl@0
   660
		CMMFDataBuffer* buffer = static_cast <CMMFDataBuffer*> (iBuffer);
sl@0
   661
		TInt error = iAudiofile.Write(buffer->Data());
sl@0
   662
		if(error == KErrNone)
sl@0
   663
			{
sl@0
   664
			if (!aBuffer->LastBuffer())
sl@0
   665
				{
sl@0
   666
				RecordData();
sl@0
   667
				}
sl@0
   668
			else{
sl@0
   669
				Stop();
sl@0
   670
				}
sl@0
   671
			}
sl@0
   672
		else
sl@0
   673
			{
sl@0
   674
			ERR_PRINTF2(_L("iFile.Write() returned the error %d"), error);
sl@0
   675
			SetBlockResult(EFail);
sl@0
   676
			}
sl@0
   677
		}
sl@0
   678
	}
sl@0
   679
sl@0
   680
/**
sl@0
   681
 * Stops the ongoing operation (Play, Record, TonePlay, Convert).
sl@0
   682
 * This function should be synchronous and invoke no callbacks through MDevSoundObserver.
sl@0
   683
 */
sl@0
   684
void CT_CMMFDevSoundData::Stop()
sl@0
   685
	{
sl@0
   686
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::Stop()"));
sl@0
   687
	iDevSound->Stop();
sl@0
   688
    
sl@0
   689
	DecOutstanding();
sl@0
   690
sl@0
   691
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::Stop()"));
sl@0
   692
	}
sl@0
   693
sl@0
   694
/**
sl@0
   695
 * Handles record completion or cancel event.
sl@0
   696
 *
sl@0
   697
 * CMMFDevSound object calls this function when an attempt to record audio sample
sl@0
   698
 * has completed, successfully or otherwise.
sl@0
   699
 *
sl@0
   700
 * @param  aError - Error code. The status of recording. KErrOverflow audio devices
sl@0
   701
 *                  runs out of internal buffer. KErrAccessDenied the sound device is
sl@0
   702
 *                  in use by another higher priority client.
sl@0
   703
 *
sl@0
   704
 */
sl@0
   705
sl@0
   706
void CT_CMMFDevSoundData::RecordError(TInt aError)
sl@0
   707
	{
sl@0
   708
	ERR_PRINTF1(_L("*START*CT_CMMFDevSoundData::RecordError"));
sl@0
   709
	ERR_PRINTF2(_L("RecordError callback returned error = %d"), aError);
sl@0
   710
	SetAsyncError(iAsyncErrorIndex_record, aError);
sl@0
   711
    iAsyncErrorIndex_record = 0;
sl@0
   712
	//iAudiofile.Close();
sl@0
   713
	ERR_PRINTF1(_L("*END*CT_CMMFDevSoundData::RecordError"));
sl@0
   714
	}
sl@0
   715
sl@0
   716
sl@0
   717
/**
sl@0
   718
 * Handles conversion completion or cancel event.
sl@0
   719
 *
sl@0
   720
 * CMMFDevSound object calls this function when an attempt to convert data from
sl@0
   721
 * source format to destination format has completed, successfully or otherwise.
sl@0
   722
 *
sl@0
   723
 * @param  aError - Error code. KErrCancel conversion operation is cancelled. KErrNone
sl@0
   724
 *                  conversion is complete. Other values are possible indicating a
sl@0
   725
 *                  problem converting data.
sl@0
   726
 */
sl@0
   727
sl@0
   728
void CT_CMMFDevSoundData::ConvertError(TInt aError)
sl@0
   729
	{
sl@0
   730
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::ConvertError"));
sl@0
   731
	ERR_PRINTF1(_L("Invalid Callback call"));
sl@0
   732
	if (aError == KErrNone)
sl@0
   733
		{
sl@0
   734
		INFO_PRINTF1(_L("Data conversion completed successfully."));
sl@0
   735
		}
sl@0
   736
	if (aError == KErrCancel)
sl@0
   737
		{
sl@0
   738
		INFO_PRINTF1(_L("Data conversion operation was cancelled."));
sl@0
   739
		}
sl@0
   740
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::ConvertError"));
sl@0
   741
	}
sl@0
   742
sl@0
   743
/**
sl@0
   744
 * Handles device event.
sl@0
   745
 *
sl@0
   746
 * CMMFDevSound object calls this function when a message is received from the
sl@0
   747
 * audio hardware device.
sl@0
   748
 *
sl@0
   749
 * @param   aMessageType - Defines the type of message. Used to determine how to
sl@0
   750
 *                         interpret the contents of aMsg.
sl@0
   751
 * @param   aMsg         - Message that is packed in the Descriptor format.
sl@0
   752
 */
sl@0
   753
sl@0
   754
sl@0
   755
void CT_CMMFDevSoundData::DeviceMessage(TUid aMessageType, const TDesC8& aMsg)
sl@0
   756
	{
sl@0
   757
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DeviceMessage"));
sl@0
   758
	INFO_PRINTF2(_L("Message type: %d"), aMessageType.iUid);
sl@0
   759
	INFO_PRINTF2(_L("Message type: %S"), &aMsg);
sl@0
   760
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DeviceMessage"));
sl@0
   761
	}
sl@0
   762
sl@0
   763
sl@0
   764
/**
sl@0
   765
 * Create a new or Replace the existing file
sl@0
   766
 *
sl@0
   767
 */
sl@0
   768
void CT_CMMFDevSoundData::DoCmdUtilityReplaceFile(const TTEFSectionName& aSection)
sl@0
   769
	{
sl@0
   770
	INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DoCmdUtilityReplaceFile()"));
sl@0
   771
	TPtrC fileName;
sl@0
   772
	TBool dataOk = ETrue;
sl@0
   773
	if (!GetStringFromConfig(aSection, KFilename, fileName))
sl@0
   774
		{
sl@0
   775
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFilename);
sl@0
   776
		SetBlockResult(EFail);
sl@0
   777
		dataOk =EFalse;
sl@0
   778
		}
sl@0
   779
	if(dataOk)
sl@0
   780
		{
sl@0
   781
		TInt error = iAudiofile.Replace(iFs, fileName, EFileRead);
sl@0
   782
		if (error != KErrNone)
sl@0
   783
			{
sl@0
   784
			ERR_PRINTF2(_L("Could not open input file. Error = %d"), error);
sl@0
   785
			SetError(error);
sl@0
   786
			}
sl@0
   787
		}
sl@0
   788
sl@0
   789
	INFO_PRINTF1(_L("*END* CT_CMMFDevSoundData::DoCmdUtilityReplaceFile()"));
sl@0
   790
	}
sl@0
   791
sl@0
   792
/**
sl@0
   793
 * Open a file
sl@0
   794
 */
sl@0
   795
void CT_CMMFDevSoundData::DoCmdUtilityOpenFile(const TTEFSectionName& aSection)
sl@0
   796
	{
sl@0
   797
sl@0
   798
	INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DoCmdUtilityOpenFile()"));
sl@0
   799
	TPtrC fileName;
sl@0
   800
	TBool dataOk = ETrue;
sl@0
   801
	if (!GetStringFromConfig(aSection, KFilename, fileName))
sl@0
   802
		{
sl@0
   803
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFilename);
sl@0
   804
		SetBlockResult(EFail);
sl@0
   805
		dataOk =EFalse;
sl@0
   806
		}
sl@0
   807
	if(dataOk)
sl@0
   808
		{
sl@0
   809
		TInt error = iAudiofile.Open(iFs, fileName, EFileRead);
sl@0
   810
		if (error != KErrNone)
sl@0
   811
			{
sl@0
   812
			ERR_PRINTF2(_L("Could not open input file. Error = %d"), error);
sl@0
   813
			iFs.Close();
sl@0
   814
			SetError(error);
sl@0
   815
			}
sl@0
   816
		}
sl@0
   817
	INFO_PRINTF1(_L("*END* CT_CMMFDevSoundData::DoCmdUtilityOpenFile()"));
sl@0
   818
	}
sl@0
   819
sl@0
   820
/**
sl@0
   821
 * Close the opened file
sl@0
   822
 */
sl@0
   823
void CT_CMMFDevSoundData::DoCmdUtilityCloseFile()
sl@0
   824
	{
sl@0
   825
	INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DoCmdUtilityCloseFile()"));
sl@0
   826
	iAudiofile.Close();
sl@0
   827
	INFO_PRINTF1(_L("*END* CT_CMMFDevSoundData::DoCmdUtilityCloseFile()"));
sl@0
   828
	}
sl@0
   829
sl@0
   830
/**
sl@0
   831
 * Place the the pointer file at the begining
sl@0
   832
 *
sl@0
   833
 */
sl@0
   834
void CT_CMMFDevSoundData::DoCmdUtilityFileStartPosition()
sl@0
   835
	{
sl@0
   836
	INFO_PRINTF1(_L("*START* CT_CMMFDevSoundData::DoCmdUtilityFileStartPosition()"));
sl@0
   837
	TInt filePosition(0);
sl@0
   838
	TBool dataOk = ETrue;
sl@0
   839
	TInt error = iAudiofile.Seek(ESeekStart, filePosition);
sl@0
   840
	if (error != KErrNone)
sl@0
   841
		{
sl@0
   842
		ERR_PRINTF2(_L("Could not set file to the start position. Error = %d"), error);
sl@0
   843
		SetError(error);
sl@0
   844
		dataOk =EFalse;
sl@0
   845
		}
sl@0
   846
	if(dataOk)
sl@0
   847
		{
sl@0
   848
		INFO_PRINTF2(_L("File Position: %d"), filePosition);
sl@0
   849
		}
sl@0
   850
	INFO_PRINTF1(_L("*END* CT_CMMFDevSoundData::DoCmdUtilityFileStartPosition()"));
sl@0
   851
	}
sl@0
   852
sl@0
   853
/**
sl@0
   854
 * Creates "n" instance of CMMFDevSound
sl@0
   855
 * @param aSection - Section to read from the ini file
sl@0
   856
 * @return void
sl@0
   857
 */
sl@0
   858
void CT_CMMFDevSoundData::DoCmdNewLLoopL(const TTEFSectionName&aSection)
sl@0
   859
	{
sl@0
   860
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdNewLLoopL"));
sl@0
   861
	CMMFDevSound* devSound = NULL;
sl@0
   862
	TBool dataOk = ETrue;
sl@0
   863
	TInt loop;
sl@0
   864
	if (!GetIntFromConfig(aSection, KLoop, loop))
sl@0
   865
		{
sl@0
   866
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KLoop);
sl@0
   867
		SetBlockResult(EFail);
sl@0
   868
		dataOk = EFalse;
sl@0
   869
		}
sl@0
   870
	TInt allowedError;
sl@0
   871
	if ( !GetIntFromConfig(aSection, KAllowedError, allowedError) )
sl@0
   872
		{
sl@0
   873
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KAllowedError);
sl@0
   874
		SetBlockResult(EFail);
sl@0
   875
		dataOk = EFalse;
sl@0
   876
		}
sl@0
   877
	if(dataOk)
sl@0
   878
		{
sl@0
   879
		for(TInt i=0; i<loop; i++)
sl@0
   880
			{
sl@0
   881
			TRAPD(error,devSound = CMMFDevSound::NewL());
sl@0
   882
			if(error == KErrNone)
sl@0
   883
				{
sl@0
   884
				INFO_PRINTF2(_L("Instance %d of DevSound was created"),i);
sl@0
   885
				CleanupStack::PushL(devSound);
sl@0
   886
				iObjectsDevSound.AppendL(devSound);
sl@0
   887
				CleanupStack::Pop(devSound);
sl@0
   888
				}
sl@0
   889
			else if(error == allowedError)
sl@0
   890
				{
sl@0
   891
				INFO_PRINTF2(_L(" Allowing Error: %d"), error);
sl@0
   892
				ERR_PRINTF2(_L(" Could not create CMMFDevSound due to error: %d"), error);
sl@0
   893
				i = loop;
sl@0
   894
				}
sl@0
   895
			else if((error != KErrNone) && (error!=allowedError))
sl@0
   896
				{
sl@0
   897
				ERR_PRINTF2(_L("> Could not create CMMFDevSound: %d"), error);
sl@0
   898
				SetError(error);
sl@0
   899
				}
sl@0
   900
			}
sl@0
   901
		iObjectsDevSound.ResetAndDestroy();
sl@0
   902
		INFO_PRINTF2(_L("%d DevSound instances were deleted"),loop);
sl@0
   903
		}
sl@0
   904
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdNewLLoopL"));
sl@0
   905
	}
sl@0
   906
sl@0
   907
sl@0
   908
/**
sl@0
   909
 * Create an instance of CMMFDevSound
sl@0
   910
 */
sl@0
   911
void CT_CMMFDevSoundData::DoCmdNewL()
sl@0
   912
	{
sl@0
   913
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdNewL"));
sl@0
   914
	DestroyData();
sl@0
   915
	TRAPD(error,iDevSound = CMMFDevSound::NewL());
sl@0
   916
	if(error!= KErrNone)
sl@0
   917
		{
sl@0
   918
		ERR_PRINTF2(_L("> Could not create CMMFDevSound: %d"), error);
sl@0
   919
		SetError(error);
sl@0
   920
		}
sl@0
   921
	else
sl@0
   922
		{
sl@0
   923
		iPaused= EFalse;
sl@0
   924
		iErrorConceal = EFalse;
sl@0
   925
		}
sl@0
   926
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdNewL"));
sl@0
   927
	}
sl@0
   928
/**
sl@0
   929
 * Destroy an instance of CMMFDevSound
sl@0
   930
 */
sl@0
   931
sl@0
   932
void CT_CMMFDevSoundData::DoCmdDestructor()
sl@0
   933
	{
sl@0
   934
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdDestroyData"));
sl@0
   935
	DestroyData();
sl@0
   936
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdDestroyData"));
sl@0
   937
	}
sl@0
   938
sl@0
   939
/**
sl@0
   940
 * Show the supported Audio settings ie. encoding, sample rates, mono/stereo operation, buffer
sl@0
   941
 * size, etc.
sl@0
   942
 * @param none
sl@0
   943
 * @return none
sl@0
   944
 */
sl@0
   945
void CT_CMMFDevSoundData::DoCmdCapabilities()
sl@0
   946
	{
sl@0
   947
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdCapabilities"));
sl@0
   948
	iCapabilities = iDevSound->Capabilities();
sl@0
   949
	INFO_PRINTF5(_L("Supported Audio settings: buffsize=%d, channels=0x%x, encoding=0x%x and rate=0x%x"),
sl@0
   950
							iCapabilities.iBufferSize,
sl@0
   951
							iCapabilities.iChannels,
sl@0
   952
							iCapabilities.iEncoding,
sl@0
   953
							iCapabilities.iRate);
sl@0
   954
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdCapabilities"));
sl@0
   955
	}
sl@0
   956
sl@0
   957
sl@0
   958
/**
sl@0
   959
 * Shows the current device configuration.
sl@0
   960
 * @params none
sl@0
   961
 * @return none
sl@0
   962
 */
sl@0
   963
void CT_CMMFDevSoundData::DoCmdConfig()
sl@0
   964
	{
sl@0
   965
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdConfig"));
sl@0
   966
	TMMFCapabilities currentConfiguration = iDevSound->Config();
sl@0
   967
	INFO_PRINTF5(_L("Current device configuration: buffsize=%d, channels=0x%x, encoding=0x%x and rate=0x%x"),
sl@0
   968
			currentConfiguration.iBufferSize,
sl@0
   969
			currentConfiguration.iChannels,
sl@0
   970
			currentConfiguration.iEncoding,
sl@0
   971
			currentConfiguration.iRate);
sl@0
   972
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdConfig"));
sl@0
   973
	}
sl@0
   974
sl@0
   975
sl@0
   976
/**
sl@0
   977
 * Shows an integer representing the maximum gain the device supports.
sl@0
   978
 * This is the maximum value which can be passed to CMMFDevSound::SetGain.
sl@0
   979
 * @param aSection - The section to read the params from the ini file
sl@0
   980
 * @return none
sl@0
   981
 */
sl@0
   982
sl@0
   983
void CT_CMMFDevSoundData::DoCmdMaxGain(const TTEFSectionName& aSection)
sl@0
   984
	{
sl@0
   985
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdMaxGain"));
sl@0
   986
	TBool dataOk = ETrue;
sl@0
   987
	TInt expectedGainValue;
sl@0
   988
	if (!GetIntFromConfig(aSection, KGainValue, expectedGainValue))
sl@0
   989
		{
sl@0
   990
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KGainValue);
sl@0
   991
		SetBlockResult(EFail);
sl@0
   992
		dataOk = EFalse;
sl@0
   993
		}
sl@0
   994
	if(dataOk)
sl@0
   995
		{
sl@0
   996
		iGainValue = iDevSound->MaxGain();
sl@0
   997
		INFO_PRINTF2(_L("Retrieved maximum gain value: %d"), iGainValue);
sl@0
   998
		if (expectedGainValue != iGainValue)
sl@0
   999
			{
sl@0
  1000
			ERR_PRINTF3(_L("Expected gain value %d is different from retrieved gain value %d"), expectedGainValue, iGainValue);
sl@0
  1001
			SetBlockResult(EFail);
sl@0
  1002
			}
sl@0
  1003
		}
sl@0
  1004
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdMaxGain"));
sl@0
  1005
	}
sl@0
  1006
sl@0
  1007
/**
sl@0
  1008
 * Shows an integer representing the maximum volume device supports.
sl@0
  1009
 * This is the maximum value which can be passed to CMMFDevSound::SetVolume.
sl@0
  1010
 * @param aSection - Section to read params from the ini file
sl@0
  1011
 * @return none
sl@0
  1012
 */
sl@0
  1013
sl@0
  1014
void CT_CMMFDevSoundData::DoCmdMaxVolume(const TTEFSectionName& aSection)
sl@0
  1015
	{
sl@0
  1016
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdMaxVolume"));
sl@0
  1017
	TBool dataOk = ETrue;
sl@0
  1018
	TInt expectedVolumeValue;
sl@0
  1019
	if(!GetIntFromConfig(aSection, KVolumeValue, expectedVolumeValue))
sl@0
  1020
		{
sl@0
  1021
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KVolumeValue);
sl@0
  1022
		SetBlockResult(EFail);
sl@0
  1023
		dataOk = EFalse;
sl@0
  1024
		}
sl@0
  1025
	if(dataOk)
sl@0
  1026
		{
sl@0
  1027
		iVolumeValue = iDevSound->MaxVolume();
sl@0
  1028
		INFO_PRINTF2(_L("Retrieved maximum volume value: %d"), iVolumeValue);
sl@0
  1029
		if(expectedVolumeValue != iVolumeValue)
sl@0
  1030
			{
sl@0
  1031
			ERR_PRINTF3(_L("Expected volume value %d is different from retrieved volume value %d"), expectedVolumeValue, iVolumeValue);
sl@0
  1032
			SetBlockResult(EFail);
sl@0
  1033
			}
sl@0
  1034
		}
sl@0
  1035
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdMaxVolume"));
sl@0
  1036
	}
sl@0
  1037
sl@0
  1038
/**
sl@0
  1039
 * Shows the speaker balance set for playing.
sl@0
  1040
 * @param aSection - Section to read params from the ini file
sl@0
  1041
 * @return none
sl@0
  1042
 */
sl@0
  1043
sl@0
  1044
void CT_CMMFDevSoundData::DoCmdGetPlayBalanceL(const TTEFSectionName& aSection)
sl@0
  1045
	{
sl@0
  1046
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGetPlayBalanceL"));
sl@0
  1047
	TBool dataOk = ETrue;
sl@0
  1048
	TInt expectedLeftPercentage;
sl@0
  1049
	if (!GetIntFromConfig(aSection, KLeftPercentage, expectedLeftPercentage))
sl@0
  1050
		{
sl@0
  1051
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KLeftPercentage);
sl@0
  1052
		SetBlockResult(EFail);
sl@0
  1053
		dataOk = EFalse;
sl@0
  1054
		}
sl@0
  1055
	TInt expectedRightPercentage;
sl@0
  1056
	if (!GetIntFromConfig(aSection, KRightPercentage, expectedRightPercentage))
sl@0
  1057
		{
sl@0
  1058
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRightPercentage);
sl@0
  1059
		SetBlockResult(EFail);
sl@0
  1060
		dataOk = EFalse;
sl@0
  1061
		}
sl@0
  1062
	if(dataOk)
sl@0
  1063
		{
sl@0
  1064
		TRAPD(error, iDevSound->GetPlayBalanceL(iLeftPercentage, iRightPercentage));
sl@0
  1065
		if (error != KErrNone)
sl@0
  1066
			{
sl@0
  1067
			ERR_PRINTF2(_L("GetPlayBalanceL left with error %d"), error);
sl@0
  1068
			SetError(error);
sl@0
  1069
			}
sl@0
  1070
		else
sl@0
  1071
			{
sl@0
  1072
			INFO_PRINTF3(_L("> Retrieved play balance values are left: %d, right:%d"), iLeftPercentage, iRightPercentage);
sl@0
  1073
			if (expectedLeftPercentage !=iLeftPercentage)
sl@0
  1074
				{
sl@0
  1075
				ERR_PRINTF3(_L("Expected left percentage value %d is different from retrieved value %d"), expectedLeftPercentage, iLeftPercentage);
sl@0
  1076
				SetBlockResult(EFail);
sl@0
  1077
				}
sl@0
  1078
			if (expectedRightPercentage !=iRightPercentage)
sl@0
  1079
				{
sl@0
  1080
				ERR_PRINTF3(_L("Expected right percentage value %d is different from retrieved value %d"), expectedRightPercentage, iRightPercentage);
sl@0
  1081
				SetBlockResult(EFail);
sl@0
  1082
				}
sl@0
  1083
			}
sl@0
  1084
		}
sl@0
  1085
sl@0
  1086
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGetPlayBalanceL"));
sl@0
  1087
	}
sl@0
  1088
sl@0
  1089
sl@0
  1090
/**
sl@0
  1091
 * Shows the microphone gain balance set for recording.
sl@0
  1092
 * @param aSection - Section to read params from the ini file
sl@0
  1093
 * @return none
sl@0
  1094
 */
sl@0
  1095
void CT_CMMFDevSoundData::DoCmdGetRecordBalanceL(const TTEFSectionName& aSection)
sl@0
  1096
	{
sl@0
  1097
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGetRecordBalanceL"));
sl@0
  1098
	TBool dataOk = ETrue;
sl@0
  1099
	TInt expectedLeftPercentage;
sl@0
  1100
	if(!GetIntFromConfig(aSection, KLeftPercentage, expectedLeftPercentage))
sl@0
  1101
		{
sl@0
  1102
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KLeftPercentage);
sl@0
  1103
		SetBlockResult(EFail);
sl@0
  1104
		dataOk = EFalse;
sl@0
  1105
		}
sl@0
  1106
	TInt expectedRightPercentage;
sl@0
  1107
	if(!GetIntFromConfig(aSection, KRightPercentage, expectedRightPercentage))
sl@0
  1108
		{
sl@0
  1109
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRightPercentage);
sl@0
  1110
		SetBlockResult(EFail);
sl@0
  1111
		dataOk = EFalse;
sl@0
  1112
		}
sl@0
  1113
	if(dataOk)
sl@0
  1114
		{
sl@0
  1115
		TRAPD(error, iDevSound->GetRecordBalanceL(iLeftPercentage, iRightPercentage));
sl@0
  1116
		if (error != KErrNone)
sl@0
  1117
			{
sl@0
  1118
			ERR_PRINTF2(_L("GetRecordBalanceL left with error %d"), error);
sl@0
  1119
			SetError(error);
sl@0
  1120
			}
sl@0
  1121
		else
sl@0
  1122
			{
sl@0
  1123
			INFO_PRINTF3(_L("> Retrieved record balance values are left: %d, right:%d"), iLeftPercentage, iRightPercentage);
sl@0
  1124
			if(expectedLeftPercentage !=iLeftPercentage)
sl@0
  1125
				{
sl@0
  1126
				ERR_PRINTF3(_L("Expected left percentage value %d is different from retrieved value %d"), expectedLeftPercentage, iLeftPercentage);
sl@0
  1127
				SetBlockResult(EFail);
sl@0
  1128
				}
sl@0
  1129
			if(expectedRightPercentage !=iRightPercentage)
sl@0
  1130
				{
sl@0
  1131
				ERR_PRINTF3(_L("Expected right ercentage value %d is different from retrieved value %d"), expectedRightPercentage, iRightPercentage);
sl@0
  1132
				SetBlockResult(EFail);
sl@0
  1133
				}
sl@0
  1134
			}
sl@0
  1135
sl@0
  1136
		}
sl@0
  1137
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGetRecordBalanceL"));
sl@0
  1138
	}
sl@0
  1139
sl@0
  1140
/**
sl@0
  1141
 * Shows a list of the supported input datatypes that can be sent to DevSound for playing audio.
sl@0
  1142
 * The datatypes returned are those that the DevSound supports given the priority settings passed
sl@0
  1143
 * in aPrioritySettings.
sl@0
  1144
 * @params none
sl@0
  1145
 * @return none
sl@0
  1146
 */
sl@0
  1147
void CT_CMMFDevSoundData::DoCmdGetSupportedInputDataTypesL()
sl@0
  1148
	{
sl@0
  1149
	TUid outputUid= {0x0};
sl@0
  1150
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGetSupportedInputDataTypesL"));
sl@0
  1151
	RArray< TFourCC > supportedDataTypes;
sl@0
  1152
	TRAPD(error, iDevSound->GetSupportedInputDataTypesL(supportedDataTypes, iPrioritySettings));
sl@0
  1153
	if (error != KErrNone)
sl@0
  1154
		{
sl@0
  1155
		ERR_PRINTF2(_L("GetSupportedInputDataTypesL left with error %d"), error);
sl@0
  1156
		SetError(error);
sl@0
  1157
		}
sl@0
  1158
	else
sl@0
  1159
		{
sl@0
  1160
		INFO_PRINTF1(_L("List of the supported input datatypes that can be sent to DevSound for playing audio."));
sl@0
  1161
		for (TInt i=0; i<supportedDataTypes.Count(); i++)
sl@0
  1162
			{
sl@0
  1163
			TFourCC fourCC = supportedDataTypes[i];
sl@0
  1164
			TBuf<4> name;
sl@0
  1165
			for(TInt j=0; j<= KFourCCMaxBitDisplacement; j+=K8Bits)
sl@0
  1166
				{
sl@0
  1167
				name.Append((TUint8)(fourCC.FourCC() >> j));
sl@0
  1168
				}
sl@0
  1169
			INFO_PRINTF3(_L("Supported Input Data types: 0x%x  %S "), fourCC.FourCC(), &name);
sl@0
  1170
			UtilityFourCCToHwDeviceUidL(name,EDecoder, outputUid);
sl@0
  1171
			if(outputUid.iUid != 0)
sl@0
  1172
				{
sl@0
  1173
				INFO_PRINTF3(_L("\nHwDevice Uid=0x%08x for %S"),outputUid.iUid,&name);
sl@0
  1174
				}
sl@0
  1175
			else
sl@0
  1176
				{
sl@0
  1177
				INFO_PRINTF1(_L("Not Found"));
sl@0
  1178
				}
sl@0
  1179
			}
sl@0
  1180
		supportedDataTypes.Reset();
sl@0
  1181
		}
sl@0
  1182
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGetSupportedInputDataTypesL"));
sl@0
  1183
	}
sl@0
  1184
sl@0
  1185
/**
sl@0
  1186
 * Shows a list of the supported output dataypes that can be received from DevSound for
sl@0
  1187
 * recording audio.  The datatypes returned are those that the DevSound supports given the priority
sl@0
  1188
 * settings passed in aPrioritySettings.
sl@0
  1189
 * @param none
sl@0
  1190
 * @return none
sl@0
  1191
 */
sl@0
  1192
void CT_CMMFDevSoundData::DoCmdGetSupportedOutputDataTypesL()
sl@0
  1193
	{
sl@0
  1194
	TUid outputUid= {0x0};
sl@0
  1195
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGetSupportedOutputDataTypesL"));
sl@0
  1196
	RArray< TFourCC > supportedDataTypes;
sl@0
  1197
	TRAPD(error, iDevSound->GetSupportedOutputDataTypesL(supportedDataTypes, iPrioritySettings));
sl@0
  1198
	if (error != KErrNone)
sl@0
  1199
		{
sl@0
  1200
		ERR_PRINTF2(_L("GetSupportedOutputDataTypesL left with error %d"), error);
sl@0
  1201
		SetError(error);
sl@0
  1202
		}
sl@0
  1203
	else
sl@0
  1204
		{
sl@0
  1205
		INFO_PRINTF1(_L("List of the supported output dataypes that can be received from DevSound for recording audio."));
sl@0
  1206
		for (TInt i=0; i<supportedDataTypes.Count(); i++)
sl@0
  1207
			{
sl@0
  1208
			TFourCC fourCC = supportedDataTypes[i];
sl@0
  1209
			TBuf<4> name;
sl@0
  1210
			for(TInt j=0; j<=KFourCCMaxBitDisplacement; j+=K8Bits)
sl@0
  1211
				{
sl@0
  1212
				name.Append((TUint8)(fourCC.FourCC() >> j));
sl@0
  1213
				}
sl@0
  1214
			INFO_PRINTF3(_L("Supported Output Data types: 0x%x  %S "), fourCC.FourCC(), &name);
sl@0
  1215
			UtilityFourCCToHwDeviceUidL(name, EEncoder, outputUid);
sl@0
  1216
			if(outputUid.iUid != 0)
sl@0
  1217
				{
sl@0
  1218
				INFO_PRINTF3(_L("\nHwDevice Uid=0x%08x for %S"),outputUid.iUid,&name);
sl@0
  1219
				}
sl@0
  1220
			else
sl@0
  1221
				{
sl@0
  1222
				INFO_PRINTF1(_L("Not Found"));
sl@0
  1223
				}
sl@0
  1224
			}
sl@0
  1225
		supportedDataTypes.Reset();
sl@0
  1226
		}
sl@0
  1227
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGetSupportedOutputDataTypesL"));
sl@0
  1228
	}
sl@0
  1229
sl@0
  1230
/**
sl@0
  1231
 * Shows the number of samples played
sl@0
  1232
 * @param none
sl@0
  1233
 * @return none
sl@0
  1234
 */
sl@0
  1235
void CT_CMMFDevSoundData::DoCmdSamplesPlayed()
sl@0
  1236
	{
sl@0
  1237
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSamplesPlayed"));
sl@0
  1238
	INFO_PRINTF2(_L("Number of samples played so far: %d"),iDevSound->SamplesPlayed());
sl@0
  1239
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSamplesPlayed"));
sl@0
  1240
	}
sl@0
  1241
sl@0
  1242
/**
sl@0
  1243
 * Shows the number of samples recorded
sl@0
  1244
 * @param none
sl@0
  1245
 * @return none
sl@0
  1246
 */
sl@0
  1247
void CT_CMMFDevSoundData::DoCmdSamplesRecorded()
sl@0
  1248
	{
sl@0
  1249
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSamplesRecorded"));
sl@0
  1250
	INFO_PRINTF2(_L("Number of samples recorded so far: %d"), iDevSound->SamplesRecorded());
sl@0
  1251
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSamplesRecorded"));
sl@0
  1252
	}
sl@0
  1253
sl@0
  1254
/**
sl@0
  1255
 * Shows an integer representing the current volume.
sl@0
  1256
 * @param aSection - Section to read param from the ini file
sl@0
  1257
 * @return none
sl@0
  1258
 */
sl@0
  1259
void CT_CMMFDevSoundData::DoCmdVolume(const TTEFSectionName& aSection)
sl@0
  1260
	{
sl@0
  1261
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdVolume"));
sl@0
  1262
	TBool dataOk = ETrue;
sl@0
  1263
	TInt expectedVolumeValue;
sl@0
  1264
	if(!GetIntFromConfig(aSection, KVolumeValue, expectedVolumeValue))
sl@0
  1265
		{
sl@0
  1266
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KVolumeValue);
sl@0
  1267
		SetBlockResult(EFail);
sl@0
  1268
		dataOk = EFalse;
sl@0
  1269
		}
sl@0
  1270
	if(dataOk)
sl@0
  1271
		{
sl@0
  1272
		iVolumeValue = iDevSound->Volume();
sl@0
  1273
		INFO_PRINTF2(_L("Retrieved volume value: %d"), iVolumeValue);
sl@0
  1274
		if(expectedVolumeValue != iVolumeValue)
sl@0
  1275
			{
sl@0
  1276
			ERR_PRINTF3(_L("Expected volume value %d is different from retrieved volume value %d"), expectedVolumeValue, iVolumeValue);
sl@0
  1277
			SetBlockResult(EFail);
sl@0
  1278
			}
sl@0
  1279
		}
sl@0
  1280
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdVolume"));
sl@0
  1281
	}
sl@0
  1282
sl@0
  1283
/**
sl@0
  1284
 * Shows an integer representing the current gain.
sl@0
  1285
 * @param aSection - Section to read param from the ini file
sl@0
  1286
 * @return none
sl@0
  1287
 */
sl@0
  1288
void CT_CMMFDevSoundData::DoCmdGain(const TTEFSectionName& aSection)
sl@0
  1289
	{
sl@0
  1290
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdGain"));
sl@0
  1291
	TBool dataOk = ETrue;
sl@0
  1292
	TInt expectedGainValue;
sl@0
  1293
	if(!GetIntFromConfig(aSection, KGainValue, expectedGainValue))
sl@0
  1294
		{
sl@0
  1295
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KGainValue);
sl@0
  1296
		SetBlockResult(EFail);
sl@0
  1297
		dataOk = EFalse;
sl@0
  1298
		}
sl@0
  1299
	if(dataOk)
sl@0
  1300
		{
sl@0
  1301
		iGainValue = iDevSound->Gain();
sl@0
  1302
		INFO_PRINTF2(_L("Retrieved gain value: %d"), iGainValue);
sl@0
  1303
		if(expectedGainValue != iGainValue)
sl@0
  1304
			{
sl@0
  1305
			ERR_PRINTF3(_L("Expected gain value %d is different from retrieved gain value %d"), expectedGainValue, iGainValue);
sl@0
  1306
			SetBlockResult(EFail);
sl@0
  1307
			}
sl@0
  1308
		}
sl@0
  1309
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdGain"));
sl@0
  1310
	}
sl@0
  1311
sl@0
  1312
/**
sl@0
  1313
 * Shows the number of available pre-defined tone sequences
sl@0
  1314
 * @param none
sl@0
  1315
 * @return none
sl@0
  1316
 */
sl@0
  1317
void CT_CMMFDevSoundData::DoCmdFixedSequenceCount()
sl@0
  1318
	{
sl@0
  1319
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdFixedSequenceCount"));
sl@0
  1320
	INFO_PRINTF2(_L("Number of available pre-defined tone sequences: %d"), iDevSound->FixedSequenceCount());
sl@0
  1321
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdFixedSequenceCount"));
sl@0
  1322
	}
sl@0
  1323
sl@0
  1324
/**
sl@0
  1325
 * Shows the name assigned to a specific pre-defined tone sequence.
sl@0
  1326
 * This is the number of the fixed sequence supported by DevSound by default.
sl@0
  1327
 * @param aSection -  Section to read params from the ini file
sl@0
  1328
 * @return none
sl@0
  1329
 */
sl@0
  1330
void CT_CMMFDevSoundData::DoCmdFixedSequenceName(const TTEFSectionName& aSection)
sl@0
  1331
	{
sl@0
  1332
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdFixedSequenceName"));
sl@0
  1333
	TBool dataOk =ETrue;
sl@0
  1334
	TInt sequenceNumber;
sl@0
  1335
	if(!GetIntFromConfig(aSection, KSequenceNumber, sequenceNumber))
sl@0
  1336
		{
sl@0
  1337
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KSequenceNumber);
sl@0
  1338
		SetBlockResult(EFail);
sl@0
  1339
		dataOk =EFalse;
sl@0
  1340
		}
sl@0
  1341
	if(dataOk)
sl@0
  1342
		{
sl@0
  1343
		INFO_PRINTF2(_L("Name assigned to a specific pre-defined tone sequence returned: %S"),
sl@0
  1344
					&iDevSound->FixedSequenceName(sequenceNumber));
sl@0
  1345
		}
sl@0
  1346
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdFixedSequenceName"));
sl@0
  1347
	}
sl@0
  1348
sl@0
  1349
sl@0
  1350
/**
sl@0
  1351
 * Configure CMMFDevSound object with the settings in aConfig.
sl@0
  1352
 * Use this to set sampling rate, encoding and mono/stereo.
sl@0
  1353
 * @param aSection - Section to read params from the ini file
sl@0
  1354
 * @return none
sl@0
  1355
 */
sl@0
  1356
void CT_CMMFDevSoundData::DoCmdSetConfigL(const TTEFSectionName& aSection)
sl@0
  1357
	{
sl@0
  1358
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetConfigL"));
sl@0
  1359
sl@0
  1360
	TInt rate;
sl@0
  1361
	INFO_PRINTF1(_L("To use default values run Capabilities before SetConfigL"));
sl@0
  1362
	if (!GetEnumFromConfig(aSection, KRate, iEnumSampleRate, rate))
sl@0
  1363
		{
sl@0
  1364
		INFO_PRINTF2(_L("Rate value was not overwritten, using default value %d."), iCapabilities.iRate);
sl@0
  1365
		}
sl@0
  1366
	else
sl@0
  1367
		{
sl@0
  1368
		iCapabilities.iRate = rate;
sl@0
  1369
		}
sl@0
  1370
sl@0
  1371
	TInt encoding;
sl@0
  1372
	if (!GetIntFromConfig(aSection, KEncoding, encoding))
sl@0
  1373
		{
sl@0
  1374
		INFO_PRINTF2(_L("Encoding value was not overwritten, using default value %d."), iCapabilities.iEncoding);
sl@0
  1375
		}
sl@0
  1376
	else
sl@0
  1377
		{
sl@0
  1378
		iCapabilities.iEncoding = encoding;
sl@0
  1379
		}
sl@0
  1380
sl@0
  1381
	TInt channels;
sl@0
  1382
	if (!GetEnumFromConfig(aSection, KChannels, iEnumChannels, channels))
sl@0
  1383
		{
sl@0
  1384
		INFO_PRINTF2(_L("Channels value was not overwritten, using default value %d ."), iCapabilities.iChannels);
sl@0
  1385
		}
sl@0
  1386
	else
sl@0
  1387
		{
sl@0
  1388
		iCapabilities.iChannels = channels;
sl@0
  1389
		}
sl@0
  1390
sl@0
  1391
	TInt bufferSize;
sl@0
  1392
	if (!GetIntFromConfig(aSection, KBufferSize, bufferSize))
sl@0
  1393
		{
sl@0
  1394
		INFO_PRINTF2(_L("BufferSize value was not overwritten, using default value %d"), iCapabilities.iBufferSize);
sl@0
  1395
		}
sl@0
  1396
	else
sl@0
  1397
		{
sl@0
  1398
		iCapabilities.iBufferSize = bufferSize;
sl@0
  1399
		}
sl@0
  1400
	TRAPD(error,iDevSound->SetConfigL(iCapabilities))
sl@0
  1401
	if(error != KErrNone)
sl@0
  1402
		{
sl@0
  1403
		ERR_PRINTF2(_L("SetConfigL left with error %d"), error);
sl@0
  1404
		SetError(error);
sl@0
  1405
		}
sl@0
  1406
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetConfigL"));
sl@0
  1407
	}
sl@0
  1408
sl@0
  1409
sl@0
  1410
/**
sl@0
  1411
 * Defines the duration of tone on, tone off and tone pause to be used during the
sl@0
  1412
 * DTMF tone playback operation.
sl@0
  1413
 * Supported only during tone playing.
sl@0
  1414
 * @param aSection - Section to read param from the ini file
sl@0
  1415
 * @return none
sl@0
  1416
 */
sl@0
  1417
void CT_CMMFDevSoundData::DoCmdSetDTMFLengths(const TTEFSectionName& aSection)
sl@0
  1418
	{
sl@0
  1419
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetDTMFLengths"));
sl@0
  1420
	TInt time;
sl@0
  1421
	TBool dataOk = ETrue;
sl@0
  1422
	if (!GetIntFromConfig(aSection, KToneOnLength, time))
sl@0
  1423
		{
sl@0
  1424
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KToneOnLength);
sl@0
  1425
		SetBlockResult(EFail);
sl@0
  1426
		dataOk = EFalse;
sl@0
  1427
		}
sl@0
  1428
	TTimeIntervalMicroSeconds32 toneOnLength(time);
sl@0
  1429
sl@0
  1430
	if (!GetIntFromConfig(aSection, KToneOffLength, time))
sl@0
  1431
		{
sl@0
  1432
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KToneOffLength);
sl@0
  1433
		SetBlockResult(EFail);
sl@0
  1434
		dataOk = EFalse;
sl@0
  1435
		}
sl@0
  1436
	TTimeIntervalMicroSeconds32 toneOffLength(time);
sl@0
  1437
sl@0
  1438
	if (!GetIntFromConfig(aSection, KPauseLength, time))
sl@0
  1439
		{
sl@0
  1440
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KPauseLength);
sl@0
  1441
		SetBlockResult(EFail);
sl@0
  1442
		dataOk = EFalse;
sl@0
  1443
		}
sl@0
  1444
	TTimeIntervalMicroSeconds32 pauseLength(time);
sl@0
  1445
	if(dataOk)
sl@0
  1446
		{
sl@0
  1447
		iDevSound->SetDTMFLengths(toneOnLength, toneOffLength, pauseLength);
sl@0
  1448
		}
sl@0
  1449
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetDTMFLengths"));
sl@0
  1450
	}
sl@0
  1451
sl@0
  1452
sl@0
  1453
/**
sl@0
  1454
 * Changes the current recording gain to a specified value.
sl@0
  1455
 * The gain can be changed before or during recording and is effective
sl@0
  1456
 * immediately.
sl@0
  1457
 * @params aSection - Section to read param from the ini file
sl@0
  1458
 */
sl@0
  1459
void CT_CMMFDevSoundData::DoCmdSetGain(const TTEFSectionName& aSection)
sl@0
  1460
	{
sl@0
  1461
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetGain"));
sl@0
  1462
	TInt gainValue = iGainValue;
sl@0
  1463
	if(!GetIntFromConfig(aSection, KGainValue, gainValue))
sl@0
  1464
		{
sl@0
  1465
		INFO_PRINTF1(_L("The Gain value was not found in the ini file, using default value"));
sl@0
  1466
		}
sl@0
  1467
	INFO_PRINTF2(_L("Setting gain value to %d"), gainValue);
sl@0
  1468
	iDevSound->SetGain(gainValue);
sl@0
  1469
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetGain"));
sl@0
  1470
	}
sl@0
  1471
sl@0
  1472
/**
sl@0
  1473
 * Sets the speaker balance for playing.
sl@0
  1474
 * The speaker balance can be changed before or during playback and is
sl@0
  1475
 * effective immediately.
sl@0
  1476
 * @param aSection - The section to read params from the ini file
sl@0
  1477
 * @return none
sl@0
  1478
 */
sl@0
  1479
void CT_CMMFDevSoundData::DoCmdSetPlayBalanceL(const TTEFSectionName& aSection)
sl@0
  1480
	{
sl@0
  1481
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetPlayBalanceL"));
sl@0
  1482
	TInt leftPercentage = iLeftPercentage;
sl@0
  1483
	if(!GetIntFromConfig(aSection, KLeftPercentage, leftPercentage))
sl@0
  1484
		{
sl@0
  1485
		INFO_PRINTF1(_L("The Left percentage was not found in the ini file, using default value"));
sl@0
  1486
		}
sl@0
  1487
	TInt rightPercentage = iRightPercentage;
sl@0
  1488
	if(!GetIntFromConfig(aSection, KRightPercentage, rightPercentage))
sl@0
  1489
		{
sl@0
  1490
		INFO_PRINTF1(_L("The Right percentage was not found in the ini file, using default value"));
sl@0
  1491
		}
sl@0
  1492
	INFO_PRINTF3(_L("Setting play balance to left: %d, right: %d values"), leftPercentage, rightPercentage);
sl@0
  1493
	TRAPD(error, iDevSound->SetPlayBalanceL(leftPercentage, rightPercentage));
sl@0
  1494
	if(error != KErrNone)
sl@0
  1495
		{
sl@0
  1496
		ERR_PRINTF2(_L("SetPlayBalanceL left with error %d"), error);
sl@0
  1497
		SetError(error);
sl@0
  1498
		}
sl@0
  1499
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetPlayBalanceL"));
sl@0
  1500
	}
sl@0
  1501
sl@0
  1502
/**
sl@0
  1503
 * Defines the priority settings that should be used for this instance.
sl@0
  1504
 * @param aSection - Section to read params from the ini file
sl@0
  1505
 * @return none
sl@0
  1506
 */
sl@0
  1507
void CT_CMMFDevSoundData::DoCmdSetPrioritySettings(const TTEFSectionName& aSection)
sl@0
  1508
	{
sl@0
  1509
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetPrioritySettings"));
sl@0
  1510
	TBool dataOk = ETrue;
sl@0
  1511
	if(!GetIntFromConfig(aSection, KPriority, iPrioritySettings.iPriority))
sl@0
  1512
		{
sl@0
  1513
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KPriority);
sl@0
  1514
		SetBlockResult(EFail);
sl@0
  1515
		dataOk = EFalse;
sl@0
  1516
		}
sl@0
  1517
	TInt preference;
sl@0
  1518
	if (!GetHexFromConfig(aSection, KPreference, preference))
sl@0
  1519
		{
sl@0
  1520
		ERR_PRINTF2(_L("%S parameter was not found in INI file"), &KPreference);
sl@0
  1521
		SetBlockResult(EFail);
sl@0
  1522
		dataOk = EFalse;
sl@0
  1523
		}
sl@0
  1524
	iPrioritySettings.iPref = (TMdaPriorityPreference)preference;
sl@0
  1525
	TInt state;
sl@0
  1526
	if (!GetEnumFromConfig(aSection, KPriorityState, iEnumMode, state))
sl@0
  1527
		{
sl@0
  1528
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KPriorityState);
sl@0
  1529
		SetBlockResult(EFail);
sl@0
  1530
		dataOk = EFalse;
sl@0
  1531
		}
sl@0
  1532
	iPrioritySettings.iState = (TMMFState)state;
sl@0
  1533
	if(dataOk)
sl@0
  1534
		{
sl@0
  1535
		iDevSound->SetPrioritySettings(iPrioritySettings);
sl@0
  1536
		}
sl@0
  1537
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetPrioritySettings"));
sl@0
  1538
	}
sl@0
  1539
sl@0
  1540
/**
sl@0
  1541
 * Sets the microphone gain balance for recording.
sl@0
  1542
 * The microphone gain balance can be changed before or during recording and
sl@0
  1543
 * is effective immediately.
sl@0
  1544
 * @param aSection - Section to read params from the ini file
sl@0
  1545
 * @return none
sl@0
  1546
 */
sl@0
  1547
void CT_CMMFDevSoundData::DoCmdSetRecordBalanceL(const TTEFSectionName& aSection)
sl@0
  1548
	{
sl@0
  1549
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetRecordBalanceL"));
sl@0
  1550
	TInt leftPercentage = iLeftPercentage;
sl@0
  1551
	if (!GetIntFromConfig(aSection, KLeftPercentage, leftPercentage))
sl@0
  1552
		{
sl@0
  1553
		INFO_PRINTF1(_L("The Left value was not found in the ini file, using default value"));
sl@0
  1554
		}
sl@0
  1555
	TInt rightPercentage = iRightPercentage;
sl@0
  1556
	if (!GetIntFromConfig(aSection, KRightPercentage, rightPercentage))
sl@0
  1557
		{
sl@0
  1558
		INFO_PRINTF1(_L("The Right value was not found in the ini file, using default value"));
sl@0
  1559
		}
sl@0
  1560
	INFO_PRINTF3(_L("Setting record balance to left: %d, right: %d values"), leftPercentage, rightPercentage);
sl@0
  1561
	TRAPD(error, iDevSound->SetRecordBalanceL(leftPercentage, rightPercentage));
sl@0
  1562
	if (KErrNone != error)
sl@0
  1563
		{
sl@0
  1564
		ERR_PRINTF2(_L("SetRecordBalanceL left with error %d"), error);
sl@0
  1565
		SetError(error);
sl@0
  1566
		}
sl@0
  1567
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetRecordBalanceL"));
sl@0
  1568
	}
sl@0
  1569
sl@0
  1570
/**
sl@0
  1571
 * Defines the number of times the audio is to be repeated during the tone
sl@0
  1572
 * playback operation.
sl@0
  1573
 * A period of silence can follow each playing of a tone. The tone playing can
sl@0
  1574
 * be repeated indefinitely.
sl@0
  1575
 * @param aSection - Section to read params from the ini file
sl@0
  1576
 * @return none
sl@0
  1577
 */
sl@0
  1578
void CT_CMMFDevSoundData::DoCmdSetToneRepeats(const TTEFSectionName& aSection)
sl@0
  1579
	{
sl@0
  1580
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetToneRepeats"));
sl@0
  1581
	TInt repeatCount;
sl@0
  1582
	TBool dataOk = ETrue;
sl@0
  1583
	if (!GetIntFromConfig(aSection, KRepeatCount, repeatCount))
sl@0
  1584
		{
sl@0
  1585
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRepeatCount);
sl@0
  1586
		SetBlockResult(EFail);
sl@0
  1587
		dataOk = EFalse;
sl@0
  1588
		}
sl@0
  1589
sl@0
  1590
	TInt tempValue;
sl@0
  1591
	if (!GetIntFromConfig(aSection, KRepeatTrailingSilence, tempValue))
sl@0
  1592
		{
sl@0
  1593
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRepeatTrailingSilence);
sl@0
  1594
		SetBlockResult(EFail);
sl@0
  1595
		dataOk = EFalse;
sl@0
  1596
		}
sl@0
  1597
	TTimeIntervalMicroSeconds repeatTrailingSilence(tempValue);
sl@0
  1598
sl@0
  1599
	if(dataOk)
sl@0
  1600
		{
sl@0
  1601
		iDevSound->SetToneRepeats(repeatCount, repeatTrailingSilence);
sl@0
  1602
		}
sl@0
  1603
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetToneRepeats"));
sl@0
  1604
	}
sl@0
  1605
sl@0
  1606
/**
sl@0
  1607
 * Defines the period over which the volume level is to rise smoothly from
sl@0
  1608
 * nothing to the normal volume level.
sl@0
  1609
 * The function is only available while the tone is playing.
sl@0
  1610
 * @param aSection - Section to read params from the ini file
sl@0
  1611
 * @return none
sl@0
  1612
 */
sl@0
  1613
void CT_CMMFDevSoundData::DoCmdSetVolume(const TTEFSectionName& aSection)
sl@0
  1614
	{
sl@0
  1615
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetVolume"));
sl@0
  1616
	TInt volume = iVolumeValue;
sl@0
  1617
	if(!GetIntFromConfig(aSection, KVolumeValue, volume))
sl@0
  1618
		{
sl@0
  1619
		INFO_PRINTF1(_L("The Volume value was not found in the ini file, using default value"));
sl@0
  1620
		}
sl@0
  1621
	INFO_PRINTF2(_L("Setting volume value to %d"), volume);
sl@0
  1622
	iDevSound->SetVolume(volume);
sl@0
  1623
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetVolume"));
sl@0
  1624
	}
sl@0
  1625
sl@0
  1626
/**
sl@0
  1627
 * Defines the loop over which the volume level is to rise smoothly from
sl@0
  1628
 * nothing to the normal volume level.
sl@0
  1629
 * @param aSection - Section to read params from the ini file
sl@0
  1630
 * @return none
sl@0
  1631
 */
sl@0
  1632
void CT_CMMFDevSoundData::DoCmdSetVolumeLoop(const TTEFSectionName& aSection)
sl@0
  1633
	{
sl@0
  1634
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetVolumeLoop"));
sl@0
  1635
	TInt volLoop;
sl@0
  1636
	TBool dataOk = ETrue;
sl@0
  1637
	if (!GetIntFromConfig(aSection, KVolumeLoop, volLoop))
sl@0
  1638
		{
sl@0
  1639
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KVolumeLoop);
sl@0
  1640
		SetBlockResult(EFail);
sl@0
  1641
		dataOk = EFalse;
sl@0
  1642
		}
sl@0
  1643
	if(dataOk)
sl@0
  1644
		{
sl@0
  1645
		TPtrC parVolume;
sl@0
  1646
		TInt volumeValue;
sl@0
  1647
		RPointerArray<HBufC> volumeList;
sl@0
  1648
		for (TInt i=0; i<volLoop; i++)
sl@0
  1649
			{
sl@0
  1650
			if (!GetArrayRectFromConfig(aSection, KVolumeList, volumeList))
sl@0
  1651
				{
sl@0
  1652
				ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KVolumeList);
sl@0
  1653
				volumeList.ResetAndDestroy();
sl@0
  1654
				SetBlockResult(EFail);
sl@0
  1655
				dataOk = EFalse;
sl@0
  1656
				}
sl@0
  1657
			if(dataOk)
sl@0
  1658
				{
sl@0
  1659
				for (TInt j=0; j<volumeList.Count(); j++)
sl@0
  1660
					{
sl@0
  1661
					parVolume.Set(*volumeList[j]);
sl@0
  1662
					TLex lex(parVolume);
sl@0
  1663
					TInt error = lex.Val(volumeValue);
sl@0
  1664
					if (error != KErrNone)
sl@0
  1665
						{
sl@0
  1666
						ERR_PRINTF2(_L("Obtaining volume value failed with error %d"), error);
sl@0
  1667
						SetError(error);
sl@0
  1668
						volumeList.ResetAndDestroy();
sl@0
  1669
						}
sl@0
  1670
					else
sl@0
  1671
						{
sl@0
  1672
						INFO_PRINTF3(_L("Setting volume number %d in the iteration number %d"), j, i);
sl@0
  1673
						iDevSound->SetVolume(volumeValue);
sl@0
  1674
						}
sl@0
  1675
					}
sl@0
  1676
				}
sl@0
  1677
			}
sl@0
  1678
		volumeList.ResetAndDestroy();
sl@0
  1679
		}
sl@0
  1680
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetVolumeLoop"));
sl@0
  1681
	}
sl@0
  1682
sl@0
  1683
/**
sl@0
  1684
 * Defines the period over which the volume level is to rise smoothly from
sl@0
  1685
 * nothing to the normal volume level.
sl@0
  1686
 * The function is only available while the tone is playing.
sl@0
  1687
 * @param aSection - Section to read param from the ini file
sl@0
  1688
 * @return none
sl@0
  1689
 */
sl@0
  1690
void CT_CMMFDevSoundData::DoCmdSetVolumeRamp(const TTEFSectionName& aSection)
sl@0
  1691
	{
sl@0
  1692
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdSetVolumeRamp"));
sl@0
  1693
	TInt tempValue;
sl@0
  1694
	TBool dataOk = ETrue;
sl@0
  1695
	if (!GetIntFromConfig(aSection, KRampDuration, tempValue))
sl@0
  1696
		{
sl@0
  1697
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KRampDuration);
sl@0
  1698
		SetBlockResult(EFail);
sl@0
  1699
		dataOk = EFalse;
sl@0
  1700
		}
sl@0
  1701
	TTimeIntervalMicroSeconds rampDuration(tempValue);
sl@0
  1702
sl@0
  1703
	if(dataOk)
sl@0
  1704
		{
sl@0
  1705
		iDevSound->SetVolumeRamp(rampDuration);
sl@0
  1706
		}
sl@0
  1707
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdSetVolumeRamp"));
sl@0
  1708
	}
sl@0
  1709
sl@0
  1710
/**
sl@0
  1711
 * Initializes DevSound object for the mode aMode for processing audio data
sl@0
  1712
 * with hardware device aHWDev and supporting FourCC.
sl@0
  1713
 * Too Initializes CMMFDevSound object to play and record PCM16 raw audio data
sl@0
  1714
 * with sampling rate of 8 KHz.
sl@0
  1715
 * @param aSection - Section to read params from the ini file
sl@0
  1716
 */
sl@0
  1717
void CT_CMMFDevSoundData::DoCmdInitializeL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
sl@0
  1718
	{
sl@0
  1719
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdInitializeL"));
sl@0
  1720
	TBool dataOk = ETrue;
sl@0
  1721
	TInt mode;
sl@0
  1722
	if (!GetEnumFromConfig(aSection, KMode, iEnumMode, mode))
sl@0
  1723
		{
sl@0
  1724
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KMode);
sl@0
  1725
		SetBlockResult(EFail);
sl@0
  1726
		dataOk = EFalse;
sl@0
  1727
		}
sl@0
  1728
	else
sl@0
  1729
		{
sl@0
  1730
		TInt hwDeviceInt;
sl@0
  1731
		if (!GetHexFromConfig(aSection, KHwDevice, hwDeviceInt))
sl@0
  1732
			{
sl@0
  1733
			INFO_PRINTF2(_L("%S parameter was not found in INI file"), &KHwDevice);
sl@0
  1734
			TPtrC fourCCIniString;
sl@0
  1735
			if (!GetStringFromConfig(aSection, KFourCC, fourCCIniString))
sl@0
  1736
				{
sl@0
  1737
				INFO_PRINTF2(_L("%S parameter was not found in INI file"), &KFourCC);
sl@0
  1738
				if (dataOk)
sl@0
  1739
					{
sl@0
  1740
					INFO_PRINTF1(_L("Initializing DevSound with overload: void InitializeL(MDevSoundObserver &aDevSoundObserver, TMMFState aMode)"));
sl@0
  1741
					TRAPD(error, iDevSound->InitializeL(*this, (TMMFState)mode));
sl@0
  1742
					if(KErrNone != error)
sl@0
  1743
						{
sl@0
  1744
						ERR_PRINTF2(_L("InitializeL(aMDevSoundObserver, mode) left with error %d"), error);
sl@0
  1745
						SetError(error);
sl@0
  1746
						}
sl@0
  1747
					}
sl@0
  1748
				}
sl@0
  1749
			else
sl@0
  1750
				{
sl@0
  1751
				if (fourCCIniString.Length() > KTFourCC)
sl@0
  1752
					{
sl@0
  1753
					ERR_PRINTF2(_L("FourCC obtained from INI file exceeded the valid length in %d"), fourCCIniString.Length());
sl@0
  1754
					SetBlockResult(EFail);
sl@0
  1755
					dataOk = EFalse;
sl@0
  1756
					}
sl@0
  1757
				if (dataOk)
sl@0
  1758
					{
sl@0
  1759
					TBuf<256> fourCCString;
sl@0
  1760
					fourCCString.Copy(fourCCIniString);
sl@0
  1761
					while (fourCCString.Length() < KTFourCC)
sl@0
  1762
						{
sl@0
  1763
						fourCCString.Insert(0, _L(" "));
sl@0
  1764
						}
sl@0
  1765
					TFourCC fourCC;
sl@0
  1766
					fourCC = TFourCC(fourCCString[3] << 24 | fourCCString[2] << 16 | fourCCString[1] << 8 | fourCCString[0]);
sl@0
  1767
					INFO_PRINTF1(_L("Initializing DevSound with overload: void InitializeL(MDevSoundObserver &aDevSoundObserver, TFourCC aDesiredFourCC, TMMFState aMode)"));
sl@0
  1768
					TRAPD(error, iDevSound->InitializeL(*this, fourCC, (TMMFState)mode));
sl@0
  1769
					if(KErrNone!=error)
sl@0
  1770
						{
sl@0
  1771
						ERR_PRINTF2(_L("InitializeL(aMDevSoundObserver, fourCC, mode) left with error %d"), error);
sl@0
  1772
						ERR_PRINTF2(_L(" %S Not supported in this device"), &fourCCString);
sl@0
  1773
						SetError(error);
sl@0
  1774
						}
sl@0
  1775
					}
sl@0
  1776
				}
sl@0
  1777
			}
sl@0
  1778
		else
sl@0
  1779
			{
sl@0
  1780
			if (dataOk)
sl@0
  1781
				{
sl@0
  1782
				TUid hwDevice;
sl@0
  1783
				hwDevice.iUid = hwDeviceInt;
sl@0
  1784
				INFO_PRINTF1(_L("Initializing DevSound with overload: void InitializeL(MDevSoundObserver &aDevSoundObserver, TUid aHWDev, TMMFState aMode)"));
sl@0
  1785
				TRAPD(error, iDevSound->InitializeL(*this, hwDevice, (TMMFState)mode));
sl@0
  1786
				if(KErrNone != error)
sl@0
  1787
					{
sl@0
  1788
					ERR_PRINTF2(_L("InitializeL(aMDevSoundObserver, hwDevice, mode) left with error %d"), error);
sl@0
  1789
					SetError(error);
sl@0
  1790
					}
sl@0
  1791
				}
sl@0
  1792
			}
sl@0
  1793
		}
sl@0
  1794
sl@0
  1795
	if (dataOk)
sl@0
  1796
		{
sl@0
  1797
		IncOutstanding();
sl@0
  1798
        iAsyncErrorIndex_initialize = aAsyncErrorIndex;
sl@0
  1799
		}
sl@0
  1800
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdInitializeL"));
sl@0
  1801
	}
sl@0
  1802
sl@0
  1803
sl@0
  1804
/**
sl@0
  1805
 * Initializes the audio device and starts playing the DTMF string aDTMFString.
sl@0
  1806
 * @param aSection - Section to read param from the ini file
sl@0
  1807
 * @return none
sl@0
  1808
 */
sl@0
  1809
void CT_CMMFDevSoundData::DoCmdPlayDTMFStringL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
sl@0
  1810
	{
sl@0
  1811
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayDTMFStringL"));
sl@0
  1812
	TBool dataOk = ETrue;
sl@0
  1813
	TPtrC dtmfString;
sl@0
  1814
	if (!GetStringFromConfig(aSection, KDTMFString, dtmfString) )
sl@0
  1815
		{
sl@0
  1816
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDTMFString);
sl@0
  1817
		SetBlockResult(EFail);
sl@0
  1818
		dataOk = EFalse;
sl@0
  1819
		}
sl@0
  1820
	if(dataOk)
sl@0
  1821
		{
sl@0
  1822
		TRAPD( error, iDevSound->PlayDTMFStringL(dtmfString) );
sl@0
  1823
		if(error != KErrNone)
sl@0
  1824
			{
sl@0
  1825
			ERR_PRINTF2(_L("Play DTMF string failed with error: %d "), error);
sl@0
  1826
			SetError(error);
sl@0
  1827
			}
sl@0
  1828
		else
sl@0
  1829
			{
sl@0
  1830
            iAsyncErrorIndex_tone = aAsyncErrorIndex;
sl@0
  1831
			IncOutstanding();
sl@0
  1832
			}
sl@0
  1833
		}
sl@0
  1834
sl@0
  1835
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayDTMFStringL"));
sl@0
  1836
	}
sl@0
  1837
sl@0
  1838
/**
sl@0
  1839
 * Plays data in the buffer at the current volume.
sl@0
  1840
 * @param
sl@0
  1841
 * @return
sl@0
  1842
 */
sl@0
  1843
void CT_CMMFDevSoundData::DoCmdPlayData()
sl@0
  1844
	{
sl@0
  1845
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayData"));
sl@0
  1846
	PlayData();
sl@0
  1847
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayData"));
sl@0
  1848
	}
sl@0
  1849
sl@0
  1850
/**
sl@0
  1851
 * Helper for the DoCmdPlayData command
sl@0
  1852
 */
sl@0
  1853
void CT_CMMFDevSoundData::PlayData()
sl@0
  1854
	{
sl@0
  1855
	INFO_PRINTF1(_L("CT_CMMFDevSoundData::PlayData()"));
sl@0
  1856
	iDevSound->PlayData();
sl@0
  1857
	}
sl@0
  1858
sl@0
  1859
/**
sl@0
  1860
 * Initializes audio device and starts playing a dual tone.
sl@0
  1861
 * The generated tone consists of two sine waves of different frequencies summed together.
sl@0
  1862
 * Dual Tone is played with the specified frequencies and for the specified duration.
sl@0
  1863
 * @param aSection - Section to read params from the ini file.
sl@0
  1864
 * @return none
sl@0
  1865
 */
sl@0
  1866
void CT_CMMFDevSoundData::DoCmdPlayDualToneL(const TTEFSectionName& aSection)
sl@0
  1867
	{
sl@0
  1868
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayDualToneL"));
sl@0
  1869
	TBool dataOk = ETrue;
sl@0
  1870
	TInt frequencyOne;
sl@0
  1871
	if (!GetIntFromConfig(aSection, KFrequencyOne, frequencyOne) )
sl@0
  1872
		{
sl@0
  1873
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFrequencyOne);
sl@0
  1874
		SetBlockResult(EFail);
sl@0
  1875
		dataOk = EFalse;
sl@0
  1876
		}
sl@0
  1877
sl@0
  1878
	TInt frequencyTwo;
sl@0
  1879
	if (!GetIntFromConfig(aSection, KFrequencyTwo, frequencyTwo) )
sl@0
  1880
		{
sl@0
  1881
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFrequencyTwo);
sl@0
  1882
		SetBlockResult(EFail);
sl@0
  1883
		dataOk = EFalse;
sl@0
  1884
		}
sl@0
  1885
sl@0
  1886
	TInt duration;
sl@0
  1887
	if (!GetIntFromConfig(aSection, KDuration, duration) )
sl@0
  1888
		{
sl@0
  1889
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDuration);
sl@0
  1890
		SetBlockResult(EFail);
sl@0
  1891
		dataOk = EFalse;
sl@0
  1892
		}
sl@0
  1893
	if(dataOk)
sl@0
  1894
		{
sl@0
  1895
		TRAPD( error, iDevSound->PlayDualToneL(frequencyOne, frequencyTwo, duration) );
sl@0
  1896
		if(error != KErrNone)
sl@0
  1897
			{
sl@0
  1898
			ERR_PRINTF2(_L("Play dual tone failed with error %d"), error);
sl@0
  1899
			SetError(error);
sl@0
  1900
			}
sl@0
  1901
		else
sl@0
  1902
			{
sl@0
  1903
			IncOutstanding();
sl@0
  1904
			}
sl@0
  1905
		}
sl@0
  1906
sl@0
  1907
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayDualToneL"));
sl@0
  1908
	}
sl@0
  1909
sl@0
  1910
sl@0
  1911
/**
sl@0
  1912
 * Initializes the audio device and starts the play process.
sl@0
  1913
 *
sl@0
  1914
 * This function queries and acquires the audio policy before initializing audio device. If there was
sl@0
  1915
 * an error during policy initialization, PlayError() function will be called on    the observer with
sl@0
  1916
 * error code KErrAccessDenied, otherwise BufferToBeFilled() function will be called with a buffer
sl@0
  1917
 * reference. After reading data into the buffer reference passed, the client should call PlayData() to play data.
sl@0
  1918
 *
sl@0
  1919
 * The amount of data that can be played is specified in CMMFBuffer::RequestSize(). Any data that is read into
sl@0
  1920
 * buffer beyond this size will be ignored.
sl@0
  1921
 * @param none
sl@0
  1922
 * @return none
sl@0
  1923
 */
sl@0
  1924
void CT_CMMFDevSoundData::DoCmdPlayInitL(const TInt aAsyncErrorIndex)
sl@0
  1925
	{
sl@0
  1926
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayInitL"));
sl@0
  1927
	TRAPD(error, iDevSound->PlayInitL());
sl@0
  1928
	if (error != KErrNone)
sl@0
  1929
		{
sl@0
  1930
		ERR_PRINTF2(_L("PlayInitL left with error %d"), error);
sl@0
  1931
		SetError(error);
sl@0
  1932
		}
sl@0
  1933
	else
sl@0
  1934
		{
sl@0
  1935
        iAsyncErrorIndex_play = aAsyncErrorIndex;
sl@0
  1936
		IncOutstanding();
sl@0
  1937
		}
sl@0
  1938
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayInitL"));
sl@0
  1939
	}
sl@0
  1940
sl@0
  1941
/**
sl@0
  1942
 * Initializes the audio device and starts playing a tone. The tone is played with the
sl@0
  1943
 * frequency and duration specified.
sl@0
  1944
 * @param aSection - Section to read params from the ini file
sl@0
  1945
 * @return none
sl@0
  1946
 */
sl@0
  1947
void CT_CMMFDevSoundData::DoCmdPlayToneL(const TTEFSectionName& aSection,  const TInt aAsyncErrorIndex)
sl@0
  1948
	{
sl@0
  1949
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayToneL"));
sl@0
  1950
	TBool dataOk = ETrue;
sl@0
  1951
	TInt frequency;
sl@0
  1952
	if (!GetIntFromConfig(aSection, KFrequency, frequency))
sl@0
  1953
		{
sl@0
  1954
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFrequency);
sl@0
  1955
		SetBlockResult(EFail);
sl@0
  1956
		dataOk = EFalse;
sl@0
  1957
		}
sl@0
  1958
sl@0
  1959
	TInt duration;
sl@0
  1960
	if (!GetIntFromConfig(aSection, KDuration, duration))
sl@0
  1961
		{
sl@0
  1962
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDuration);
sl@0
  1963
		SetBlockResult(EFail);
sl@0
  1964
		dataOk = EFalse;
sl@0
  1965
		}
sl@0
  1966
	if(dataOk)
sl@0
  1967
		{
sl@0
  1968
		TRAPD(error, iDevSound->PlayToneL(frequency, duration));
sl@0
  1969
		if (error != KErrNone)
sl@0
  1970
			{
sl@0
  1971
			ERR_PRINTF2(_L("Play tone failed with error %d"), error);
sl@0
  1972
			SetError(error);
sl@0
  1973
			}
sl@0
  1974
		else
sl@0
  1975
			{
sl@0
  1976
            iAsyncErrorIndex_tone = aAsyncErrorIndex;
sl@0
  1977
			IncOutstanding();
sl@0
  1978
			}
sl@0
  1979
		}
sl@0
  1980
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayToneL"));
sl@0
  1981
	}
sl@0
  1982
sl@0
  1983
/**
sl@0
  1984
 * Initializes the audio device and starts playing a tone sequence.
sl@0
  1985
 * @param aSection - Section to read param from the ini file
sl@0
  1986
 * @return none
sl@0
  1987
 */
sl@0
  1988
void CT_CMMFDevSoundData::DoCmdPlayToneSequenceL(const TTEFSectionName& aSection, const TInt aAsyncErrorIndex)
sl@0
  1989
	{
sl@0
  1990
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdPlayToneSequenceL"));
sl@0
  1991
	TBool dataOk = ETrue;
sl@0
  1992
	TPtrC toneFileParameter;
sl@0
  1993
	if (!GetStringFromConfig(aSection, KFilename, toneFileParameter))
sl@0
  1994
		{
sl@0
  1995
		ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KFilename);
sl@0
  1996
		SetBlockResult(EFail);
sl@0
  1997
		dataOk = EFalse;
sl@0
  1998
		}
sl@0
  1999
	if(dataOk)
sl@0
  2000
		{
sl@0
  2001
		TInt error = iToneFile.Open(iFs, toneFileParameter, EFileRead);
sl@0
  2002
		if (error != KErrNone)
sl@0
  2003
			{
sl@0
  2004
			ERR_PRINTF2(_L("Open file failed with error %d"), error);
sl@0
  2005
			SetError(EFail);
sl@0
  2006
			}
sl@0
  2007
		else
sl@0
  2008
			{
sl@0
  2009
			error = iToneFile.Read(iToneSequence);
sl@0
  2010
			if (error != KErrNone)
sl@0
  2011
				{
sl@0
  2012
				ERR_PRINTF2(_L("Read file failed with error %d"), error);
sl@0
  2013
				SetError(EFail);
sl@0
  2014
				}
sl@0
  2015
			else
sl@0
  2016
				{
sl@0
  2017
				TRAP(error, iDevSound->PlayToneSequenceL(iToneSequence));
sl@0
  2018
				if (error != KErrNone)
sl@0
  2019
					{
sl@0
  2020
					ERR_PRINTF2(_L("Play tone sequence failed with error %d"), error);
sl@0
  2021
					SetError(error);
sl@0
  2022
					}
sl@0
  2023
				else
sl@0
  2024
					{
sl@0
  2025
                    iAsyncErrorIndex_tone = aAsyncErrorIndex;
sl@0
  2026
					IncOutstanding();
sl@0
  2027
					}
sl@0
  2028
				}
sl@0
  2029
			}
sl@0
  2030
		}
sl@0
  2031
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdPlayToneSequenceL"));
sl@0
  2032
	}
sl@0
  2033
sl@0
  2034
/**
sl@0
  2035
 * Contine the process of recording.
sl@0
  2036
 *
sl@0
  2037
 * Once the buffer is filled with recorded  data, the Observer gets a reference to the buffer along
sl@0
  2038
 * with the callback function BufferToBeEmptied(). After processing the buffer (copying over to a
sl@0
  2039
 * different buffer or writing to file) the client should call this function to continue the
sl@0
  2040
 * recording process.
sl@0
  2041
 * @param none
sl@0
  2042
 * @return none
sl@0
  2043
 */
sl@0
  2044
void CT_CMMFDevSoundData::DoCmdRecordData()
sl@0
  2045
	{
sl@0
  2046
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdRecordData"));
sl@0
  2047
	RecordData();
sl@0
  2048
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdRecordData"));
sl@0
  2049
	}
sl@0
  2050
sl@0
  2051
/**
sl@0
  2052
 * Helper method to DoCmdRecordData command
sl@0
  2053
 */
sl@0
  2054
void CT_CMMFDevSoundData::RecordData()
sl@0
  2055
	{
sl@0
  2056
	iDevSound->RecordData();
sl@0
  2057
	}
sl@0
  2058
sl@0
  2059
/**
sl@0
  2060
 * Initializes audio device and starts the recording process.
sl@0
  2061
 *
sl@0
  2062
 * This command queries and acquires the audio policy before initializing audio device. If there
sl@0
  2063
 * was an error during policy initialization, RecordError() function will be called on the observer
sl@0
  2064
 * with error code KErrAccessDenied, otherwise BufferToBeEmptied()  function will be called with a
sl@0
  2065
 * buffer reference. This buffer contains recorded  or encoded data. After processing data in the
sl@0
  2066
 * buffer reference passed, the client should call RecordData() to continue recording process.
sl@0
  2067
 *
sl@0
  2068
 * The amount of data that is available is specified in CMMFBuffer::RequestSize().
sl@0
  2069
 * @param none
sl@0
  2070
 * @return none
sl@0
  2071
 */
sl@0
  2072
void CT_CMMFDevSoundData::DoCmdRecordInitL(const TInt aAsyncErrorIndex)
sl@0
  2073
	{
sl@0
  2074
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdRecordInitL"));
sl@0
  2075
    iAsyncErrorIndex_record = aAsyncErrorIndex;
sl@0
  2076
	TRAPD(error, iDevSound->RecordInitL());
sl@0
  2077
	if (error != KErrNone)
sl@0
  2078
		{
sl@0
  2079
		ERR_PRINTF2(_L("RecordInitL left with error %d"), error);
sl@0
  2080
		SetError(error);
sl@0
  2081
		}
sl@0
  2082
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdRecordInitL"));
sl@0
  2083
	}
sl@0
  2084
sl@0
  2085
sl@0
  2086
/**
sl@0
  2087
 * Conceal an error
sl@0
  2088
 * @param none
sl@0
  2089
 * @return none
sl@0
  2090
 */
sl@0
  2091
void CT_CMMFDevSoundData::DoCmdUtilityErrorConceal()
sl@0
  2092
	{
sl@0
  2093
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdErrorConceal"));
sl@0
  2094
	iErrorConceal=ETrue;
sl@0
  2095
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdErrorConceal"));
sl@0
  2096
	}
sl@0
  2097
sl@0
  2098
/**
sl@0
  2099
 * Stop an audio file
sl@0
  2100
 * @param none
sl@0
  2101
 * @return none
sl@0
  2102
 */
sl@0
  2103
void CT_CMMFDevSoundData::DoCmdStop(const TTEFSectionName& aSection)
sl@0
  2104
	{
sl@0
  2105
	INFO_PRINTF1(_L("*START*CT_CMMFDevSoundData::DoCmdStop"));
sl@0
  2106
	TBool pause;
sl@0
  2107
	if(!GetBoolFromConfig(aSection,KPause,pause))
sl@0
  2108
		{
sl@0
  2109
		INFO_PRINTF1(_L("The DoCmdStop command will be execute"));
sl@0
  2110
		pause = EFalse;
sl@0
  2111
		}
sl@0
  2112
	iPaused=pause;
sl@0
  2113
	if(iPaused)
sl@0
  2114
		{
sl@0
  2115
		INFO_PRINTF1(_L("a Pause was required"));
sl@0
  2116
		}
sl@0
  2117
	Stop();
sl@0
  2118
	INFO_PRINTF1(_L("*END*CT_CMMFDevSoundData::DoCmdStop"));
sl@0
  2119
	}
sl@0
  2120
sl@0
  2121
sl@0
  2122
sl@0
  2123
sl@0
  2124
/**
sl@0
  2125
 * Utility for get the HwDevice for play and recording
sl@0
  2126
 */
sl@0
  2127
sl@0
  2128
void CT_CMMFDevSoundData::UtilityFourCCToHwDeviceUidL(const TDesC& aFourCC, THwDeviceType aType, TUid& aHwDeviceUid)
sl@0
  2129
	{
sl@0
  2130
	TPtrC8 fourCCPtr(0,0);
sl@0
  2131
	TPtrC8 fourCCP16Ptr(0,0);
sl@0
  2132
	RImplInfoPtrArray impArray;
sl@0
  2133
	CleanupResetAndDestroyPushL(impArray);
sl@0
  2134
	REComSession::ListImplementationsL(TUid::Uid(KMmfUidPluginInterfaceHwDevice), impArray);
sl@0
  2135
	TBuf<KHwDeviceDefaultDataLength> datatype;
sl@0
  2136
	for(TInt i = 0; i < impArray.Count(); ++i)
sl@0
  2137
		{
sl@0
  2138
		CImplementationInformation& entry = *(impArray[i]);
sl@0
  2139
		// Validate lenght
sl@0
  2140
		if (entry.DataType().Length() == KHwDeviceDefaultDataLength)
sl@0
  2141
			{
sl@0
  2142
			INFO_PRINTF2(_L("Implementation UID=0x%08x"),entry.ImplementationUid());
sl@0
  2143
			datatype.Copy(entry.DataType());
sl@0
  2144
			INFO_PRINTF2(_L("Default data (fourCCs)=%S"), &datatype);
sl@0
  2145
			// Extract FourCC
sl@0
  2146
			if(aType == EDecoder)
sl@0
  2147
				{
sl@0
  2148
				fourCCPtr.Set(entry.DataType().Left(KFourCCLength));
sl@0
  2149
				fourCCP16Ptr.Set(entry.DataType().Right(KFourCCLength));
sl@0
  2150
				}
sl@0
  2151
			else if (aType == EEncoder)
sl@0
  2152
				{
sl@0
  2153
				fourCCPtr.Set(entry.DataType().Right(KFourCCLength));
sl@0
  2154
				fourCCP16Ptr.Set(entry.DataType().Left(KFourCCLength));
sl@0
  2155
				}
sl@0
  2156
			// Compare FourCC
sl@0
  2157
			TBuf16<4> foundFourCC;
sl@0
  2158
			foundFourCC.Copy(fourCCPtr);
sl@0
  2159
			if(aFourCC.CompareF(foundFourCC) == 0)
sl@0
  2160
				{
sl@0
  2161
				aHwDeviceUid = entry.ImplementationUid();
sl@0
  2162
				break;
sl@0
  2163
				}
sl@0
  2164
			}
sl@0
  2165
		}
sl@0
  2166
	CleanupStack::PopAndDestroy(&impArray);
sl@0
  2167
	REComSession::FinalClose();
sl@0
  2168
	}