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