1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/os/mm/mmapitest/devsoundexthaitest/src/T_CErrorConcealmentIntfcData.cpp Fri Jun 15 03:10:57 2012 +0200
1.3 @@ -0,0 +1,268 @@
1.4 +/*
1.5 +* Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies).
1.6 +* All rights reserved.
1.7 +* This component and the accompanying materials are made available
1.8 +* under the terms of "Eclipse Public License v1.0"
1.9 +* which accompanies this distribution, and is available
1.10 +* at the URL "http://www.eclipse.org/legal/epl-v10.html".
1.11 +*
1.12 +* Initial Contributors:
1.13 +* Nokia Corporation - initial contribution.
1.14 +*
1.15 +* Contributors:
1.16 +*
1.17 +* Description:
1.18 +*
1.19 +*/
1.20 +
1.21 +
1.22 +#include "t_cerrorconcealmentintfcdata.h"
1.23 +
1.24 +/*@{*/
1.25 +//Command literals
1.26 +_LIT(KCmdNewL, "NewL");
1.27 +_LIT(KCmdDestructor, "~");
1.28 +_LIT(KCmdConcealErrorForNextBuffer, "ConcealErrorForNextBuffer");
1.29 +_LIT(KCmdSetFrameMode, "SetFrameMode");
1.30 +_LIT(KCmdFrameModeRqrdForEC, "FrameModeRqrdForEC");
1.31 +/*@}*/
1.32 +
1.33 +/*@{*/
1.34 +//INI Section name literals
1.35 +_LIT(KFrameMode, "FrameMode");
1.36 +_LIT(KFrameModeRqrd, "FrameModeRqrd");
1.37 +_LIT(KDevSoundInstanceName, "DevSoundInstanceName");
1.38 +/*@}*/
1.39 +
1.40 +
1.41 +
1.42 +
1.43 +/**
1.44 + * Two phase constructor
1.45 + * @leave system wide error
1.46 + */
1.47 +CT_CErrorConcealmentIntfcData* CT_CErrorConcealmentIntfcData::NewL()
1.48 + {
1.49 + CT_CErrorConcealmentIntfcData* self = new (ELeave)CT_CErrorConcealmentIntfcData();
1.50 + return self;
1.51 + }
1.52 +
1.53 +/**
1.54 + * Private constructor. First phase construction
1.55 + */
1.56 +CT_CErrorConcealmentIntfcData::CT_CErrorConcealmentIntfcData()
1.57 + :
1.58 + iErrorConcealmentIntfc(NULL)
1.59 + {
1.60 + }
1.61 +
1.62 +
1.63 +/**
1.64 + * Public destructor
1.65 + */
1.66 +CT_CErrorConcealmentIntfcData::~CT_CErrorConcealmentIntfcData()
1.67 + {
1.68 + DestroyData();
1.69 + }
1.70 +
1.71 +
1.72 +/**
1.73 + * Helper method for DoCmdDestructor
1.74 + */
1.75 +void CT_CErrorConcealmentIntfcData::DestroyData()
1.76 + {
1.77 + if (iErrorConcealmentIntfc)
1.78 + {
1.79 + delete iErrorConcealmentIntfc;
1.80 + iErrorConcealmentIntfc = NULL;
1.81 + }
1.82 + }
1.83 +
1.84 +/**
1.85 + * Return a pointer to the object that the data wraps
1.86 + *
1.87 + * @return pointer to the object that the data wraps
1.88 + */
1.89 +TAny* CT_CErrorConcealmentIntfcData::GetObject()
1.90 + {
1.91 + return iErrorConcealmentIntfc;
1.92 + }
1.93 +
1.94 +/**
1.95 + * Process a command read from the Ini file
1.96 + * @param aCommand - The command to process
1.97 + * @param aSection - The section get from the *.ini file of the project T_Wlan
1.98 + * @param aAsyncErrorIndex - Command index dor async calls to returns errors to
1.99 + * @return TBool - ETrue if the command is process
1.100 + * @leave - System wide error
1.101 + */
1.102 +TBool CT_CErrorConcealmentIntfcData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/)
1.103 + {
1.104 + TBool ret = ETrue;
1.105 + if (aCommand == KCmdNewL)
1.106 + {
1.107 + DoCmdNewL();
1.108 + }
1.109 + else if (aCommand == KCmdDestructor)
1.110 + {
1.111 + DoCmdDestructor();
1.112 + }
1.113 + else if (aCommand == KCmdConcealErrorForNextBuffer)
1.114 + {
1.115 + DoCmdConcealErrorForNextBuffer();
1.116 + }
1.117 + else if (aCommand == KCmdSetFrameMode)
1.118 + {
1.119 + DoCmdSetFrameMode(aSection);
1.120 + }
1.121 + else if (aCommand == KCmdFrameModeRqrdForEC)
1.122 + {
1.123 + DoCmdFrameModeRqrdForEC(aSection);
1.124 + }
1.125 + else
1.126 + {
1.127 + ERR_PRINTF1(_L("Unknown command"));
1.128 + ret=EFalse;
1.129 + }
1.130 + return ret;
1.131 + }
1.132 +
1.133 +/**
1.134 + * Create an instance of CErrorConcealmentIntfc
1.135 + * @param none
1.136 + * @return none
1.137 + */
1.138 +void CT_CErrorConcealmentIntfcData::DoCmdNewL()
1.139 + {
1.140 + DestroyData();
1.141 + INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdNewL()"));
1.142 + if (!iErrorConcealmentIntfc)
1.143 + {
1.144 + TPtrC devSoundInstanceName;
1.145 + if (!GetStringFromConfig(aSection, KDevSoundInstanceName, devSoundInstanceName))
1.146 + {
1.147 + ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDevSoundInstanceName);
1.148 + SetBlockResult(EFail);
1.149 + }
1.150 + else
1.151 + {
1.152 + CMMFDevSound* devSoundInstance = static_cast<CMMFDevSound*>(GetDataObjectL(devSoundInstanceName));
1.153 + if(devSoundInstance)
1.154 + {
1.155 + iErrorConcelmentIntfc == (CErrorConcealmentIntfc*)devSoundInstance->CustomInterface(KUidErrorConcealmentIntfc);
1.156 + if (iErrorConcealmentIntfc == NULL)
1.157 + {
1.158 + ERR_PRINTF1(_L("Could not get ErrConcealment CI"));
1.159 + SetError(KErrNotFound);
1.160 + }
1.161 + else
1.162 + {
1.163 + INFO_PRINTF1(_L("ErrConcealment created successfully"));
1.164 + INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdNewL()"));
1.165 + }
1.166 + }
1.167 + else
1.168 + {
1.169 + ERR_PRINTF1(_L("DevSound not ready"));
1.170 + SetError(KErrNotReady);
1.171 + }
1.172 + }
1.173 + }
1.174 + else
1.175 + {
1.176 + INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdNewL()"));
1.177 + }
1.178 + }
1.179 +
1.180 +/**
1.181 + * Destroy an instance of CErrorConcealmentIntfc
1.182 + * @param
1.183 + * @none
1.184 + */
1.185 +void CT_CErrorConcealmentIntfcData::DoCmdDestructor()
1.186 + {
1.187 + INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdDestroyData()"));
1.188 + DestroyData();
1.189 + INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdDestroyData()"));
1.190 + }
1.191 +
1.192 +/**
1.193 + * Command for Conceal and error for next buffer
1.194 + * @param none
1.195 + * @return none
1.196 + */
1.197 +void CT_CErrorConcealmentIntfcData::DoCmdConcealErrorForNextBuffer()
1.198 + {
1.199 + INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdConcealErrorForNextBuffer()"));
1.200 + TInt error = iErrorConcealmentIntfc->ConcealErrorForNextBuffer());
1.201 + if(error != KErrNone)
1.202 + {
1.203 + ERR_PRINTF2(_L("> Could not execute DoCmdConcealErrorForNextBuffer: %d"), error);
1.204 + SetError(error);
1.205 + }
1.206 + else
1.207 + {
1.208 + INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdConcealErrorForNextBuffer()"));
1.209 + }
1.210 + }
1.211 +
1.212 +/**
1.213 + * Puts the hwdevice into a frame-based interface.
1.214 + * The alternate mode of interface would be buffer-based.
1.215 + * @param aSection - The section to read param from the ini file
1.216 + * @return none
1.217 + */
1.218 +void CT_CErrorConcealmentIntfcData::DoCmdSetFrameMode(const TTEFSectionName& aSection)
1.219 + {
1.220 + INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdSetFrameMode()"));
1.221 + TBool aFrameMode = EFalse;
1.222 + if (!GetBoolFromConfig(aSection, KFrameMode, aFrameMode))
1.223 + {
1.224 + INFO_PRINTF2(_L("Parameter %S was not found in INI file."), &KFrameMode);
1.225 + SetBlockResult(EFail);
1.226 + }
1.227 + else
1.228 + {
1.229 + TInt error = iErrorConcealmentIntfc->SetFrameMode(aFrameMode);
1.230 + if ( KErrNone != error )
1.231 + {
1.232 + ERR_PRINTF2(_L("> Could not execute DoCmdSetFrameMode: %d"), error);
1.233 + SetError(error);
1.234 + }
1.235 + else
1.236 + {
1.237 + INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdSetFrameMode()"));
1.238 + }
1.239 + }
1.240 + }
1.241 +
1.242 +/**
1.243 + * Query to find out if frame-based interface is required by hwdevice
1.244 + * for supporting error concealment.
1.245 + * @param aSection
1.246 + * @return none
1.247 + */
1.248 +void CT_CErrorConcealmentIntfcData::DoCmdFrameModeRqrdForEC(const TTEFSectionName& aSection)
1.249 + {
1.250 + INFO_PRINTF1(_L("*START*CT_CErrorConcealmentIntfcData::DoCmdFrameModeRqrdForEC()"));
1.251 + TBool aFrameModeRqrd = EFalse;
1.252 + if (!GetBoolFromConfig(aSection, KFrameModeRqrd, aFrameModeRqrd))
1.253 + {
1.254 + INFO_PRINTF2(_L("Parameter %S was not found in INI file."), &KFrameModeRqrd);
1.255 + SetBlockResult(EFail);
1.256 + }
1.257 + else
1.258 + {
1.259 + TInt error = iErrorConcealmentIntfc->FrameModeRqrdForEC(aFrameModeRqrd);
1.260 +
1.261 + if ( KErrNone != error )
1.262 + {
1.263 + ERR_PRINTF2(_L("> Could not execute DoCmdSetFrameMode: %d"), error);
1.264 + SetError(error);
1.265 + }
1.266 + else
1.267 + {
1.268 + INFO_PRINTF1(_L("*END*CT_CErrorConcealmentIntfcData::DoCmdFrameModeRqrdForEC()"));
1.269 + }
1.270 + }
1.271 + }