os/mm/devsoundextensions/effects/EffectTest/EffectConsoleTest.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/devsoundextensions/effects/EffectTest/EffectConsoleTest.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,225 @@
     1.4 +/*
     1.5 +* Copyright (c) 2004 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:  Effects console test
    1.18 +*
    1.19 +*/
    1.20 +
    1.21 +
    1.22 +
    1.23 +
    1.24 +#ifndef EFFECTSCONSOLETEST
    1.25 +#define EFFECTSCONSOLETEST
    1.26 +
    1.27 +//  INCLUDES
    1.28 +#include <e32svr.h>
    1.29 +#include <e32base.h>
    1.30 +#include <e32cons.h>
    1.31 +#include <mdaaudiosampleplayer.h>
    1.32 +#include <MdaAudioSampleEditor.h>
    1.33 +
    1.34 +#include <AudioEffectBase.h>
    1.35 +#include <MAudioEffectObserver.h>
    1.36 +#include <AudioEqualizerBase.h>
    1.37 +#include <MAudioEqualizerObserver.h>
    1.38 +#include <EnvironmentalReverbBase.h>
    1.39 +#include <MEnvironmentalReverbObserver.h>
    1.40 +#include <StereoWideningBase.h>
    1.41 +#include <MStereoWideningObserver.h>
    1.42 +
    1.43 +#include <customInterfaceUtility.h>
    1.44 +
    1.45 +_LIT(KAMRTestFile,"c:\\test.amr");
    1.46 +_LIT(KWAVTestFile,"c:\\test.wav");
    1.47 +
    1.48 +
    1.49 +//////////////////////////////////////////////////////////////////////////////
    1.50 +//
    1.51 +// -----> CmyActiveScheduler (definition)
    1.52 +//
    1.53 +//////////////////////////////////////////////////////////////////////////////
    1.54 +class CmyActiveScheduler : public CActiveScheduler
    1.55 +	{
    1.56 +public:
    1.57 +	void Error (TInt aError) const;
    1.58 +	};
    1.59 +
    1.60 +
    1.61 +//////////////////////////////////////////////////////////////////////////////
    1.62 +//
    1.63 +// -----> CActiveConsole (definition)
    1.64 +//
    1.65 +// An abstract class which provides the facility to issue key requests.
    1.66 +//
    1.67 +//////////////////////////////////////////////////////////////////////////////
    1.68 +class CActiveConsole : public CActive
    1.69 +	{
    1.70 +public:
    1.71 +	  // Construction
    1.72 +	CActiveConsole(CConsoleBase* aConsole);
    1.73 +	void ConstructL();
    1.74 +	static CActiveConsole* NewLC(CConsoleBase* aConsole) ;
    1.75 +	~CActiveConsole();
    1.76 +
    1.77 +	  // Issue request
    1.78 +	void RequestCharacter();
    1.79 +
    1.80 +	  // Cancel request.
    1.81 +	  // Defined as pure virtual by CActive;
    1.82 +	  // implementation provided by this class.
    1.83 +	void DoCancel();
    1.84 +
    1.85 +	  // Service completed request.
    1.86 +	  // Defined as pure virtual by CActive;
    1.87 +	  // implementation provided by this class,
    1.88 +	void RunL();
    1.89 +
    1.90 +	  // Called from RunL() - an implementation must be provided
    1.91 +	  // by derived classes to handle the completed request
    1.92 +	virtual void ProcessKeyPress(TChar aChar) = 0;
    1.93 +
    1.94 +protected:
    1.95 +	  // Data members defined by this class
    1.96 +	CConsoleBase* iConsole; // A console for reading from
    1.97 +	};
    1.98 +
    1.99 +//////////////////////////////////////////////////////////////////////////////
   1.100 +//
   1.101 +// -----> CConsoleTest (definition)
   1.102 +//
   1.103 +// This class is derived from CActiveConsole.
   1.104 +// Request handling: accepts input from the keyboard and outputs the
   1.105 +// test result through test harness.
   1.106 +//
   1.107 +//////////////////////////////////////////////////////////////////////////////
   1.108 +class CConsoleTest : public CActiveConsole,
   1.109 +				     public MMdaAudioPlayerCallback,
   1.110 +				     public MMdaObjectStateChangeObserver,
   1.111 + 					 public MAudioEffectObserver
   1.112 +					 //public MAudioEqualizerObserver
   1.113 +{
   1.114 +public:
   1.115 +
   1.116 +	enum TMenu
   1.117 +	{
   1.118 +		EMain,
   1.119 +		EPlay,
   1.120 +		ERecord,
   1.121 +		EConvert,
   1.122 +		EEqualizer,
   1.123 +		EBandId,
   1.124 +		EBandLevel,
   1.125 +		EEnvironmentalReverb1,
   1.126 +		EEnvironmentalReverb2,
   1.127 +		EStereoWidening,
   1.128 +		EStereoWideningLevel
   1.129 +
   1.130 +	};
   1.131 +
   1.132 +	// Destruction
   1.133 +	~CConsoleTest();
   1.134 +
   1.135 +public:
   1.136 +	  // Static constuction
   1.137 +	static CConsoleTest *NewLC (CConsoleBase* aConsole);
   1.138 +	static CConsoleTest *NewL(CConsoleBase* aConsole);
   1.139 +
   1.140 +	virtual void MapcInitComplete(TInt aError, const TTimeIntervalMicroSeconds& aDuration);
   1.141 +	virtual void MapcPlayComplete(TInt aError);
   1.142 +	virtual void MoscoStateChangeEvent(CBase* aObject, TInt aPreviousState, TInt aCurrentState, TInt aErrorcCode);
   1.143 +	virtual void EffectChanged( const CAudioEffect* aAudioEffect, TUint8 aEvent );
   1.144 +
   1.145 +public:
   1.146 +	  // Service request
   1.147 +	void ProcessKeyPress(TChar aChar);
   1.148 +	void ShowMenu();
   1.149 +
   1.150 +private:
   1.151 +
   1.152 +	void ConstructL();
   1.153 +	CConsoleTest(CConsoleBase* aConsole);
   1.154 +	void ProcessMain(TChar aChar);
   1.155 +	void ProcessPlayL(TChar aChar);
   1.156 +	void ProcessEqualizerL(TChar aChar);
   1.157 +	void ProcessBandId(TChar aChar);
   1.158 +	void ProcessBandLevelL(TChar aChar);
   1.159 +	void InitializeTestData();
   1.160 +	void ProcessEnvironmentalReverbL(TChar aChar);
   1.161 +	void TestCase1();
   1.162 +	void TestCase2();
   1.163 +	void TestCase3();
   1.164 +	void ProcessStereoWideningL(TChar aChar);
   1.165 +	void ProcessStereoWideningLevelL(TChar aChar);
   1.166 +
   1.167 +
   1.168 +
   1.169 +
   1.170 +private:
   1.171 +
   1.172 +	TInt iInitStatus;
   1.173 +
   1.174 +	TMenu iMenu;
   1.175 +	TMenu iParentMenu;
   1.176 +	TUint32 iBandId;
   1.177 +	CCustomInterfaceUtility* iCIUtility;
   1.178 +
   1.179 +	CMdaAudioPlayerUtility* iAudioPlayer;
   1.180 +	CAudioEqualizer* iPlayerAudioEqualizer;
   1.181 +	CEnvironmentalReverb* iPlayerEnvironmentalReverb;
   1.182 +	CStereoWidening* iPlayerStereoWidening;
   1.183 +
   1.184 +	CMdaAudioRecorderUtility* iAudioRecorder;
   1.185 +	CAudioEqualizer* iRecorderAudioEqualizer;
   1.186 +	CEnvironmentalReverb* iRecorderEnvironmentalReverb;
   1.187 +	CStereoWidening* iRecorderStereoWidening;
   1.188 +
   1.189 +	CMdaAudioConvertUtility* iAudioConverter;
   1.190 +
   1.191 +	CAudioEqualizer* iEqualizer;
   1.192 +	CEnvironmentalReverb* iEnvironmentalReverb;
   1.193 +	CStereoWidening* iStereoWidening;
   1.194 +
   1.195 +
   1.196 +	CAudioEqualizer* iAudioEqualizer;
   1.197 +
   1.198 +	TBuf<100> iSampleFilePath;
   1.199 +
   1.200 +	RFs  iFs;
   1.201 +
   1.202 +	RArray<TInt> iGoodData;
   1.203 +	RArray<TInt> iBadData;
   1.204 +
   1.205 +	};
   1.206 +
   1.207 +//////////////////////////////////////////////////////////////////////////////
   1.208 +//
   1.209 +// Main
   1.210 +//
   1.211 +//////////////////////////////////////////////////////////////////////////////
   1.212 +
   1.213 +_LIT(KTxtDBTest, "Effects Console Test");
   1.214 +
   1.215 +LOCAL_C void doTestL();
   1.216 +
   1.217 +GLDEF_C TInt E32Main() // main function called by E32
   1.218 +{
   1.219 +	__UHEAP_MARK;
   1.220 +	CTrapCleanup* cleanup=CTrapCleanup::New(); // get clean-up stack
   1.221 +	TRAPD(error, doTestL());
   1.222 +	__ASSERT_ALWAYS(!error,User::Panic(KTxtDBTest, error));
   1.223 +	delete cleanup; // destroy clean-up stack
   1.224 +	__UHEAP_MARKEND;
   1.225 +	return 0; // and return
   1.226 +}
   1.227 +
   1.228 +#endif