os/mm/mmtestenv/mmtestfw/recog/TestFrameworkRecog.h
changeset 0 bde4ae8d615e
     1.1 --- /dev/null	Thu Jan 01 00:00:00 1970 +0000
     1.2 +++ b/os/mm/mmtestenv/mmtestfw/recog/TestFrameworkRecog.h	Fri Jun 15 03:10:57 2012 +0200
     1.3 @@ -0,0 +1,80 @@
     1.4 +// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
     1.5 +// All rights reserved.
     1.6 +// This component and the accompanying materials are made available
     1.7 +// under the terms of "Eclipse Public License v1.0"
     1.8 +// which accompanies this distribution, and is available
     1.9 +// at the URL "http://www.eclipse.org/legal/epl-v10.html".
    1.10 +//
    1.11 +// Initial Contributors:
    1.12 +// Nokia Corporation - initial contribution.
    1.13 +//
    1.14 +// Contributors:
    1.15 +//
    1.16 +// Description:
    1.17 +//
    1.18 +
    1.19 +#ifndef __TESTFRAMEWORKRECOG_H__
    1.20 +#define __TESTFRAMEWORKRECOG_H__
    1.21 +
    1.22 +#include <apmrec.h>
    1.23 +
    1.24 +_LIT(KRecogSemaphoreName, "TFR_SEM");				// Semaphore of the current test thread
    1.25 +_LIT(KRecogParentSemaphoreName, "TFR_PARENT_SEM");	// Semaphore of the main recognizer thread
    1.26 +const TInt KUidTestFrameworkRecognizerValue = 0x101F7C0E;
    1.27 +const TUid KUidTestFrameworkRecognizer = { KUidTestFrameworkRecognizerValue };
    1.28 +
    1.29 +class TTestScriptInfo
    1.30 +	{
    1.31 +public:
    1.32 +	TInt iThreadStartupDelay;
    1.33 +	TFileName iScriptPath;
    1.34 +	TBuf<32> iParams;
    1.35 +	};
    1.36 +typedef CArrayFixFlat<TTestScriptInfo> CTestScriptArray;
    1.37 +
    1.38 +// CTestFrameworkRecogActive
    1.39 +class CTestFrameworkRecogActive : public CActive
    1.40 +	{
    1.41 +public:
    1.42 +	CTestFrameworkRecogActive(CTestScriptArray* aTestScriptArray);
    1.43 +	~CTestFrameworkRecogActive();
    1.44 +public:
    1.45 +	TInt CreateNextTestThread();
    1.46 +protected:
    1.47 +	static TInt ThreadFunc(TAny* aPtr);
    1.48 +	void DoThreadFuncL();
    1.49 +	static TInt StartTestThreadFn(TAny* aPtr);
    1.50 +	void DoStartTestThreadL();
    1.51 +	// from CActive
    1.52 +protected:
    1.53 +	void RunL();
    1.54 +	void DoCancel();
    1.55 +protected:
    1.56 +	CTestScriptArray* iTestScriptArray;
    1.57 +	TInt iCurrentScript;
    1.58 +	};
    1.59 +
    1.60 +// CTestFrameworkRecognizer
    1.61 +class CTestFrameworkRecognizer : public CApaDataRecognizerType
    1.62 +	{
    1.63 +public:
    1.64 +	CTestFrameworkRecognizer();
    1.65 +	~CTestFrameworkRecognizer();
    1.66 +	// New functions
    1.67 +public:
    1.68 +	void DoCreateL();
    1.69 +protected:
    1.70 +	void LoadConfigFileL(const TDesC& aFileName);
    1.71 +	void ProcessLineL(const TDesC8& aLine);
    1.72 +	// from CApaDataRecognizerType
    1.73 +protected:
    1.74 +	TUint PreferredBufSize();
    1.75 +	TDataType SupportedDataTypeL(TInt aIndex) const;
    1.76 +	void DoRecognizeL(const TDesC& aName, const TDesC8& aBuffer);
    1.77 +protected:
    1.78 +	CTestScriptArray* iTestScriptArray;
    1.79 +	CTestFrameworkRecogActive* iTestActive;
    1.80 +	TBool iRunScript;
    1.81 +	};
    1.82 +
    1.83 +#endif // __TESTFRAMEWORKRECOG_H__