os/mm/mmapitest/devsoundexthaitest/src/T_CErrorConcealmentIntfcData.cpp
author sl@SLION-WIN7.fritz.box
Fri, 15 Jun 2012 03:10:57 +0200
changeset 0 bde4ae8d615e
permissions -rw-r--r--
First public contribution.
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
#include "t_cerrorconcealmentintfcdata.h"
sl@0
    20
sl@0
    21
/*@{*/
sl@0
    22
//Command literals 
sl@0
    23
_LIT(KCmdNewL, 							"NewL");
sl@0
    24
_LIT(KCmdDestructor, 					"~");
sl@0
    25
_LIT(KCmdConcealErrorForNextBuffer, 	"ConcealErrorForNextBuffer");
sl@0
    26
_LIT(KCmdSetFrameMode, 					"SetFrameMode");
sl@0
    27
_LIT(KCmdFrameModeRqrdForEC, 			"FrameModeRqrdForEC");
sl@0
    28
/*@}*/
sl@0
    29
sl@0
    30
/*@{*/
sl@0
    31
//INI Section name literals
sl@0
    32
_LIT(KFrameMode, 						"FrameMode");
sl@0
    33
_LIT(KFrameModeRqrd, 					"FrameModeRqrd");
sl@0
    34
_LIT(KDevSoundInstanceName,				"DevSoundInstanceName");
sl@0
    35
/*@}*/
sl@0
    36
sl@0
    37
sl@0
    38
sl@0
    39
sl@0
    40
/**
sl@0
    41
 * Two phase constructor
sl@0
    42
 * @leave	system wide error
sl@0
    43
 */
sl@0
    44
CT_CErrorConcealmentIntfcData* CT_CErrorConcealmentIntfcData::NewL()
sl@0
    45
    {
sl@0
    46
    CT_CErrorConcealmentIntfcData* self = new (ELeave)CT_CErrorConcealmentIntfcData();    
sl@0
    47
    return self;    
sl@0
    48
    }
sl@0
    49
sl@0
    50
/**
sl@0
    51
 * Private constructor. First phase construction
sl@0
    52
 */
sl@0
    53
CT_CErrorConcealmentIntfcData::CT_CErrorConcealmentIntfcData()
sl@0
    54
	:
sl@0
    55
	iErrorConcealmentIntfc(NULL)
sl@0
    56
    {
sl@0
    57
    }
sl@0
    58
sl@0
    59
sl@0
    60
/**
sl@0
    61
 * Public destructor
sl@0
    62
 */
sl@0
    63
CT_CErrorConcealmentIntfcData::~CT_CErrorConcealmentIntfcData()
sl@0
    64
    {     
sl@0
    65
    DestroyData();
sl@0
    66
    }
sl@0
    67
sl@0
    68
sl@0
    69
/**
sl@0
    70
 * Helper method for DoCmdDestructor
sl@0
    71
 */
sl@0
    72
void CT_CErrorConcealmentIntfcData::DestroyData()
sl@0
    73
	{
sl@0
    74
	if (iErrorConcealmentIntfc)
sl@0
    75
		{ 
sl@0
    76
		delete iErrorConcealmentIntfc;
sl@0
    77
		iErrorConcealmentIntfc = NULL;
sl@0
    78
		}	 
sl@0
    79
	}
sl@0
    80
sl@0
    81
/**
sl@0
    82
 * Return a pointer to the object that the data wraps
sl@0
    83
 *
sl@0
    84
 * @return	pointer to the object that the data wraps
sl@0
    85
 */
sl@0
    86
TAny* CT_CErrorConcealmentIntfcData::GetObject()
sl@0
    87
    {
sl@0
    88
    return iErrorConcealmentIntfc;
sl@0
    89
    }
sl@0
    90
sl@0
    91
/**
sl@0
    92
 * Process a command read from the Ini file
sl@0
    93
 * @param aCommand 			- The command to process
sl@0
    94
 * @param aSection			- The section get from the *.ini file of the project T_Wlan
sl@0
    95
 * @param aAsyncErrorIndex	- Command index dor async calls to returns errors to
sl@0
    96
 * @return TBool			- ETrue if the command is process
sl@0
    97
 * @leave					- System wide error
sl@0
    98
 */
sl@0
    99
TBool CT_CErrorConcealmentIntfcData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
sl@0
   100
	{
sl@0
   101
	TBool ret = ETrue;	
sl@0
   102
	if (aCommand == KCmdNewL)
sl@0
   103
		{
sl@0
   104
		DoCmdNewL();
sl@0
   105
		}
sl@0
   106
	else if (aCommand == KCmdDestructor)
sl@0
   107
		{
sl@0
   108
		DoCmdDestructor();
sl@0
   109
		}
sl@0
   110
	else if (aCommand == KCmdConcealErrorForNextBuffer)
sl@0
   111
		{
sl@0
   112
		DoCmdConcealErrorForNextBuffer();
sl@0
   113
		}
sl@0
   114
	else if (aCommand == KCmdSetFrameMode)
sl@0
   115
		{
sl@0
   116
		DoCmdSetFrameMode(aSection);
sl@0
   117
		}
sl@0
   118
	else if (aCommand == KCmdFrameModeRqrdForEC)
sl@0
   119
		{
sl@0
   120
		DoCmdFrameModeRqrdForEC(aSection);
sl@0
   121
		}
sl@0
   122
	else
sl@0
   123
		{
sl@0
   124
		ERR_PRINTF1(_L("Unknown command"));
sl@0
   125
		ret=EFalse;
sl@0
   126
		}	
sl@0
   127
	return ret;
sl@0
   128
	}
sl@0
   129
sl@0
   130
/**
sl@0
   131
 * Create an instance of CErrorConcealmentIntfc
sl@0
   132
 * @param none
sl@0
   133
 * @return none
sl@0
   134
 */
sl@0
   135
void CT_CErrorConcealmentIntfcData::DoCmdNewL()
sl@0
   136
	{
sl@0
   137
	DestroyData();
sl@0
   138
	INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdNewL()"));
sl@0
   139
	if (!iErrorConcealmentIntfc)
sl@0
   140
		{
sl@0
   141
		TPtrC devSoundInstanceName;
sl@0
   142
		if (!GetStringFromConfig(aSection, KDevSoundInstanceName, devSoundInstanceName))
sl@0
   143
			{
sl@0
   144
			ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDevSoundInstanceName);
sl@0
   145
	    	SetBlockResult(EFail);
sl@0
   146
			}
sl@0
   147
		else
sl@0
   148
			{
sl@0
   149
			CMMFDevSound* devSoundInstance = static_cast<CMMFDevSound*>(GetDataObjectL(devSoundInstanceName));		
sl@0
   150
			if(devSoundInstance)
sl@0
   151
				{
sl@0
   152
				iErrorConcelmentIntfc == (CErrorConcealmentIntfc*)devSoundInstance->CustomInterface(KUidErrorConcealmentIntfc);
sl@0
   153
				if (iErrorConcealmentIntfc == NULL)
sl@0
   154
					{
sl@0
   155
					ERR_PRINTF1(_L("Could not get ErrConcealment CI"));
sl@0
   156
					SetError(KErrNotFound);
sl@0
   157
					}
sl@0
   158
				else
sl@0
   159
					{
sl@0
   160
					INFO_PRINTF1(_L("ErrConcealment created successfully"));
sl@0
   161
					INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdNewL()"));
sl@0
   162
					}
sl@0
   163
				}
sl@0
   164
			else
sl@0
   165
				{
sl@0
   166
				ERR_PRINTF1(_L("DevSound not ready"));
sl@0
   167
				SetError(KErrNotReady);
sl@0
   168
				}
sl@0
   169
			}
sl@0
   170
		}
sl@0
   171
	else
sl@0
   172
		{
sl@0
   173
		INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdNewL()"));
sl@0
   174
		}
sl@0
   175
	}
sl@0
   176
sl@0
   177
/**
sl@0
   178
 * Destroy an instance of CErrorConcealmentIntfc
sl@0
   179
 * @param
sl@0
   180
 * @none
sl@0
   181
 */
sl@0
   182
void CT_CErrorConcealmentIntfcData::DoCmdDestructor()
sl@0
   183
	{
sl@0
   184
	INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdDestroyData()"));
sl@0
   185
	DestroyData();
sl@0
   186
	INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdDestroyData()"));
sl@0
   187
	}
sl@0
   188
sl@0
   189
/**
sl@0
   190
 * Command for Conceal and error for next buffer
sl@0
   191
 * @param none
sl@0
   192
 * @return none
sl@0
   193
 */
sl@0
   194
void CT_CErrorConcealmentIntfcData::DoCmdConcealErrorForNextBuffer()
sl@0
   195
	{
sl@0
   196
	INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdConcealErrorForNextBuffer()"));
sl@0
   197
	TInt error = iErrorConcealmentIntfc->ConcealErrorForNextBuffer());
sl@0
   198
	if(error != KErrNone)
sl@0
   199
		{
sl@0
   200
		ERR_PRINTF2(_L("> Could not execute DoCmdConcealErrorForNextBuffer: %d"), error);
sl@0
   201
		SetError(error);
sl@0
   202
		}
sl@0
   203
	else
sl@0
   204
		{
sl@0
   205
		INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdConcealErrorForNextBuffer()"));
sl@0
   206
		}
sl@0
   207
	}
sl@0
   208
sl@0
   209
/**
sl@0
   210
 * Puts the hwdevice into a frame-based interface.
sl@0
   211
 * The alternate mode of interface would be buffer-based.
sl@0
   212
 * @param aSection - The section to read param from the ini file
sl@0
   213
 * @return none
sl@0
   214
 */
sl@0
   215
void CT_CErrorConcealmentIntfcData::DoCmdSetFrameMode(const TTEFSectionName& aSection) 
sl@0
   216
    {   
sl@0
   217
    INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdSetFrameMode()"));
sl@0
   218
    TBool aFrameMode = EFalse;
sl@0
   219
    if (!GetBoolFromConfig(aSection, KFrameMode, aFrameMode))
sl@0
   220
    	{
sl@0
   221
		INFO_PRINTF2(_L("Parameter %S was not found in INI file."), &KFrameMode);
sl@0
   222
		SetBlockResult(EFail);
sl@0
   223
    	}
sl@0
   224
    else
sl@0
   225
    	{
sl@0
   226
	    TInt error = iErrorConcealmentIntfc->SetFrameMode(aFrameMode);    
sl@0
   227
	    if ( KErrNone != error )    	
sl@0
   228
	        {
sl@0
   229
	        ERR_PRINTF2(_L("> Could not execute DoCmdSetFrameMode: %d"), error);   
sl@0
   230
	        SetError(error);
sl@0
   231
	        }
sl@0
   232
	    else
sl@0
   233
	    	{
sl@0
   234
	    	INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdSetFrameMode()")); 
sl@0
   235
	    	}
sl@0
   236
    	}
sl@0
   237
    }
sl@0
   238
sl@0
   239
/**
sl@0
   240
 * Query to find out if frame-based interface is required by hwdevice
sl@0
   241
 * for supporting error concealment.
sl@0
   242
 * @param aSection
sl@0
   243
 * @return none
sl@0
   244
 */
sl@0
   245
void CT_CErrorConcealmentIntfcData::DoCmdFrameModeRqrdForEC(const TTEFSectionName& aSection)
sl@0
   246
    {
sl@0
   247
    INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdFrameModeRqrdForEC()"));
sl@0
   248
    TBool aFrameModeRqrd = EFalse;
sl@0
   249
    if (!GetBoolFromConfig(aSection, KFrameModeRqrd, aFrameModeRqrd))
sl@0
   250
    	{
sl@0
   251
		INFO_PRINTF2(_L("Parameter %S was not found in INI file."), &KFrameModeRqrd);
sl@0
   252
		SetBlockResult(EFail);
sl@0
   253
    	}
sl@0
   254
    else
sl@0
   255
    	{
sl@0
   256
	    TInt error = iErrorConcealmentIntfc->FrameModeRqrdForEC(aFrameModeRqrd);
sl@0
   257
	    
sl@0
   258
	    if ( KErrNone != error )    	
sl@0
   259
	        {
sl@0
   260
	        ERR_PRINTF2(_L("> Could not execute DoCmdSetFrameMode: %d"), error);   
sl@0
   261
	        SetError(error);
sl@0
   262
	        }
sl@0
   263
	    else
sl@0
   264
	    	{
sl@0
   265
	    	INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdFrameModeRqrdForEC()")); 
sl@0
   266
	    	}
sl@0
   267
    	}
sl@0
   268
    }