sl@0: /* sl@0: * Copyright (c) 2005-2009 Nokia Corporation and/or its subsidiary(-ies). sl@0: * All rights reserved. sl@0: * This component and the accompanying materials are made available sl@0: * under the terms of "Eclipse Public License v1.0" sl@0: * which accompanies this distribution, and is available sl@0: * at the URL "http://www.eclipse.org/legal/epl-v10.html". sl@0: * sl@0: * Initial Contributors: sl@0: * Nokia Corporation - initial contribution. sl@0: * sl@0: * Contributors: sl@0: * sl@0: * Description: sl@0: * sl@0: */ sl@0: sl@0: sl@0: #include "t_caudiooutputdata.h" sl@0: sl@0: /*@{*/ sl@0: // Output options Id's sl@0: const TUid OUTPUT_NOPREFERENCE = TUid::Uid(0x00); sl@0: const TUid OUTPUT_ALL = TUid::Uid(0x01); sl@0: const TUid OUTPUT_NOOUTPUT = TUid::Uid(0x02); sl@0: const TUid OUTPUT_PRIVATE = TUid::Uid(0x03); sl@0: const TUid OUTPUT_PUBLIC = TUid::Uid(0x04); sl@0: /*@}*/ sl@0: sl@0: sl@0: /*@{*/ sl@0: //Section name literals sl@0: _LIT(KDevSoundKey, "DevSoundInstanceName"); sl@0: _LIT(KAudioOutputPar, "AudioOutput"); sl@0: _LIT(KSecureOutputPar, "SecureOutput"); sl@0: /*@}*/ sl@0: sl@0: /*@{*/ sl@0: //Command literals sl@0: _LIT(KCmdNewL, "NewL"); sl@0: _LIT(KCmdDestructor, "~"); sl@0: _LIT(KCmdAudioOutput, "AudioOutput"); sl@0: _LIT(KCmdDefaultAudioOutput, "DefaultAudioOutput"); sl@0: _LIT(KCmdRegisterObserver, "RegisterObserver"); sl@0: _LIT(KCmdSecureOutput, "SecureOutput"); sl@0: _LIT(KCmdSetAudioOutput, "SetAudioOutput"); sl@0: _LIT(KCmdSetSecureOutput, "SetSecureOutput"); sl@0: _LIT(KCmdUnregisterObserver, "UnregisterObserver"); sl@0: /*@}*/ sl@0: sl@0: sl@0: /*@{*/ sl@0: // Output options literal sl@0: _LIT(KOutput_NoPreference, "Output_NoPreference"); sl@0: _LIT(KOutput_All, "Output_All"); sl@0: _LIT(KOutput_NoOutput, "Output_NoOutput"); sl@0: _LIT(KOutput_Private, "Output_Private"); sl@0: _LIT(KOutput_Public, "Output_Public"); sl@0: /*@}*/ sl@0: sl@0: const CDataWrapperBase::TEnumEntryTable CT_CAudioOutputData::iEnumOutputOptions[] = sl@0: { sl@0: { KOutput_NoPreference, OUTPUT_NOPREFERENCE.iUid }, sl@0: { KOutput_All, OUTPUT_ALL.iUid }, sl@0: { KOutput_NoOutput, OUTPUT_NOOUTPUT.iUid }, sl@0: { KOutput_Private, OUTPUT_PRIVATE.iUid }, sl@0: { KOutput_Public, OUTPUT_PUBLIC.iUid } sl@0: }; sl@0: sl@0: sl@0: sl@0: /** sl@0: * Two phase constructor sl@0: * sl@0: * @leave system wide error sl@0: */ sl@0: CT_CAudioOutputData* CT_CAudioOutputData::NewL() sl@0: { sl@0: CT_CAudioOutputData* ret = new (ELeave) CT_CAudioOutputData(); sl@0: return ret; sl@0: } sl@0: sl@0: /** sl@0: * Private constructor. First phase construction sl@0: */ sl@0: CT_CAudioOutputData::CT_CAudioOutputData() sl@0: : sl@0: iAudioOutput(NULL), sl@0: iSecureOutput(EFalse) sl@0: { sl@0: } sl@0: sl@0: sl@0: /** sl@0: * Return a pointer to the object that the data wraps sl@0: * sl@0: * @return pointer to the object that the data wraps sl@0: */ sl@0: TAny* CT_CAudioOutputData::GetObject() sl@0: { sl@0: return iAudioOutput; sl@0: } sl@0: sl@0: /** sl@0: * Helper method for DoCmdDestructor sl@0: */ sl@0: void CT_CAudioOutputData::DestroyData() sl@0: { sl@0: if (iAudioOutput) sl@0: { sl@0: delete iAudioOutput; sl@0: iAudioOutput = NULL; sl@0: } sl@0: } sl@0: sl@0: sl@0: /** sl@0: * Process a command read from the Ini file sl@0: * @param aCommand - The command to process sl@0: * @param aSection - The section get from the *.ini file of the project T_Wlan sl@0: * @param aAsyncErrorIndex - Command index dor async calls to returns errors to sl@0: * @return TBool - ETrue if the command is process sl@0: * @leave - system wide error sl@0: */ sl@0: TBool CT_CAudioOutputData::DoCommandL(const TTEFFunction& aCommand, const TTEFSectionName& aSection, const TInt /*aAsyncErrorIndex*/) sl@0: { sl@0: TBool ret = ETrue; sl@0: sl@0: if (aCommand == KCmdNewL) sl@0: { sl@0: DoCmdNewL(aSection); sl@0: } sl@0: else if (aCommand == KCmdDestructor) sl@0: { sl@0: DoCmdDestructor(); sl@0: } sl@0: else if (aCommand == KCmdAudioOutput) sl@0: { sl@0: DoCmdAudioOutput(); sl@0: } sl@0: else if (aCommand == KCmdDefaultAudioOutput) sl@0: { sl@0: DoCmdDefaultAudioOutput(); sl@0: } sl@0: else if (aCommand == KCmdRegisterObserver) sl@0: { sl@0: DoCmdRegisterObserverL(); sl@0: } sl@0: else if (aCommand == KCmdSecureOutput) sl@0: { sl@0: DoCmdSecureOutput(); sl@0: } sl@0: else if (aCommand == KCmdSetAudioOutput) sl@0: { sl@0: DoCmdSetAudioOutputL(aSection); sl@0: } sl@0: else if (aCommand == KCmdSetSecureOutput) sl@0: { sl@0: DoCmdSetSecureOutputL(aSection); sl@0: } sl@0: else if (aCommand == KCmdUnregisterObserver) sl@0: { sl@0: DoCmdUnregisterObserver(); sl@0: } sl@0: else sl@0: { sl@0: ERR_PRINTF1(_L("Unknown command.")); sl@0: ret=EFalse; sl@0: } sl@0: return ret; sl@0: } sl@0: sl@0: /** sl@0: * Create an instance of CAudioOutput sl@0: * @param aSection - Section to read param from the ini file sl@0: * @return none sl@0: */ sl@0: void CT_CAudioOutputData::DoCmdNewL(const TTEFSectionName& aSection) sl@0: { sl@0: DestroyData(); sl@0: INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdNewL")); sl@0: TPtrC devSoundObject; sl@0: if( !GetStringFromConfig(aSection, KDevSoundKey, devSoundObject) ) sl@0: { sl@0: ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KDevSoundKey); sl@0: SetBlockResult(EFail); sl@0: } sl@0: else sl@0: { sl@0: CMMFDevSound* DevSoundObject = static_cast(GetDataObjectL(devSoundObject)); sl@0: iAudioOutput = (CAudioOutput*)DevSoundObject->CustomInterface(KUidAudioOutput); sl@0: INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdNewL")); sl@0: } sl@0: } sl@0: sl@0: /** sl@0: * Destroy an instance of CAudioOutput sl@0: * @param none sl@0: * @return none sl@0: */ sl@0: void CT_CAudioOutputData::DoCmdDestructor() sl@0: { sl@0: INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdDestroyData")); sl@0: DestroyData(); sl@0: INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdDestroyData")); sl@0: } sl@0: sl@0: /** sl@0: * Get the audio Output pref sl@0: * @param none sl@0: * @return none sl@0: */ sl@0: void CT_CAudioOutputData::DoCmdAudioOutput() sl@0: { sl@0: INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdAudioOutput")); sl@0: audioOutputPref = iAudioOutput->AudioOutput(); sl@0: INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdAudioOutput")); sl@0: } sl@0: sl@0: /** sl@0: * Get the default audio output pref sl@0: * @param none sl@0: * @return none sl@0: */ sl@0: void CT_CAudioOutputData::DoCmdDefaultAudioOutput() sl@0: { sl@0: INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdDefaultAudioOutput")); sl@0: audioOutputPref = iAudioOutput->DefaultAudioOutput(); sl@0: INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdDefaultAudioOutput")); sl@0: } sl@0: sl@0: /** sl@0: * Register the observer sl@0: * @param none sl@0: * @return none sl@0: */ sl@0: void CT_CAudioOutputData::DoCmdRegisterObserverL() sl@0: { sl@0: INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdRegisterObserverL")); sl@0: TRAPD( error, iAudioOutput->RegisterObserverL(*this) ); sl@0: if( error != KErrNone ) sl@0: { sl@0: ERR_PRINTF2(_L("Register observer failed with error %d"), error); sl@0: SetError(error); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdRegisterObserverL")); sl@0: } sl@0: } sl@0: sl@0: /** sl@0: * Secure the output sl@0: * @param none sl@0: * @return none sl@0: */ sl@0: void CT_CAudioOutputData::DoCmdSecureOutput() sl@0: { sl@0: INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdSecureOutput")); sl@0: iSecureOutput = iAudioOutput->SecureOutput(); sl@0: INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdSecureOutput")); sl@0: } sl@0: sl@0: /** sl@0: * Set the audio Output sl@0: * @param aSection - Section to read param from the ini file sl@0: * @return none sl@0: */ sl@0: void CT_CAudioOutputData::DoCmdSetAudioOutputL(const TTEFSectionName& aSection) sl@0: { sl@0: INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdSetAudioOutputL")); sl@0: TInt parAudioOutput; sl@0: if(!GetEnumFromConfig(aSection, KAudioOutputPar, iEnumOutputOptions, parAudioOutput)) sl@0: { sl@0: ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KAudioOutputPar); sl@0: SetBlockResult(EFail); sl@0: } sl@0: else{ sl@0: TRAPD(error, iAudioOutput->SetAudioOutputL((CAudioOutput::TAudioOutputPreference)parAudioOutput)); sl@0: if( error != KErrNone ) sl@0: { sl@0: ERR_PRINTF2(_L("Setting Audio output failed with error %d"), error); sl@0: SetError(error); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdSetAudioOutputL")); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /** sl@0: * Set the secure output sl@0: * @param aSection - Section to read param from the ini file sl@0: * @return none sl@0: */ sl@0: void CT_CAudioOutputData::DoCmdSetSecureOutputL(const TTEFSectionName& aSection) sl@0: { sl@0: INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdSetSecureOutputL")); sl@0: TBool parSecureOutput; sl@0: if(!GetBoolFromConfig(aSection, KSecureOutputPar, parSecureOutput)) sl@0: { sl@0: ERR_PRINTF2(_L("Error in getting parameter %S from INI file"), &KSecureOutputPar); sl@0: SetBlockResult(EFail); sl@0: sl@0: } sl@0: else sl@0: { sl@0: TRAPD( error, iAudioOutput->SetSecureOutputL(parSecureOutput) ); sl@0: if( error != KErrNone ) sl@0: { sl@0: ERR_PRINTF2(_L("Setting secure output failed with error %d"), error); sl@0: SetError(error); sl@0: } sl@0: else sl@0: { sl@0: INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdSetSecureOutputL")); sl@0: } sl@0: } sl@0: } sl@0: sl@0: /** sl@0: * Unregister the observer sl@0: * @param none sl@0: * @return none sl@0: */ sl@0: void CT_CAudioOutputData::DoCmdUnregisterObserver() sl@0: { sl@0: INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DoCmdUnregisterObserver")); sl@0: iAudioOutput->UnregisterObserver(*this); sl@0: INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DoCmdUnregisterObserver")); sl@0: } sl@0: sl@0: /** sl@0: * Shows that the audio output was change sl@0: * @param aAudioOutput sl@0: * @param aNewDefault - The new default value sl@0: */ sl@0: void CT_CAudioOutputData::DefaultAudioOutputChanged(CAudioOutput& /*aAudioOutput*/, CAudioOutput::TAudioOutputPreference aNewDefault) sl@0: { sl@0: INFO_PRINTF1(_L("*START*CT_CAudioOutputData::DefaultAudioOutputChanged")); sl@0: INFO_PRINTF2(_L("Audio Output changed to %d"), aNewDefault); sl@0: INFO_PRINTF1(_L("*END*CT_CAudioOutputData::DefaultAudioOutputChanged")); sl@0: }