Update contrib.
1 // Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
2 // All rights reserved.
3 // This component and the accompanying materials are made available
4 // under the terms of "Eclipse Public License v1.0"
5 // which accompanies this distribution, and is available
6 // at the URL "http://www.eclipse.org/legal/epl-v10.html".
8 // Initial Contributors:
9 // Nokia Corporation - initial contribution.
16 #ifndef __TESTFRAMEWORKRECOG_H__
17 #define __TESTFRAMEWORKRECOG_H__
21 _LIT(KRecogSemaphoreName, "TFR_SEM"); // Semaphore of the current test thread
22 _LIT(KRecogParentSemaphoreName, "TFR_PARENT_SEM"); // Semaphore of the main recognizer thread
23 const TInt KUidTestFrameworkRecognizerValue = 0x101F7C0E;
24 const TUid KUidTestFrameworkRecognizer = { KUidTestFrameworkRecognizerValue };
29 TInt iThreadStartupDelay;
30 TFileName iScriptPath;
33 typedef CArrayFixFlat<TTestScriptInfo> CTestScriptArray;
35 // CTestFrameworkRecogActive
36 class CTestFrameworkRecogActive : public CActive
39 CTestFrameworkRecogActive(CTestScriptArray* aTestScriptArray);
40 ~CTestFrameworkRecogActive();
42 TInt CreateNextTestThread();
44 static TInt ThreadFunc(TAny* aPtr);
46 static TInt StartTestThreadFn(TAny* aPtr);
47 void DoStartTestThreadL();
53 CTestScriptArray* iTestScriptArray;
57 // CTestFrameworkRecognizer
58 class CTestFrameworkRecognizer : public CApaDataRecognizerType
61 CTestFrameworkRecognizer();
62 ~CTestFrameworkRecognizer();
67 void LoadConfigFileL(const TDesC& aFileName);
68 void ProcessLineL(const TDesC8& aLine);
69 // from CApaDataRecognizerType
71 TUint PreferredBufSize();
72 TDataType SupportedDataTypeL(TInt aIndex) const;
73 void DoRecognizeL(const TDesC& aName, const TDesC8& aBuffer);
75 CTestScriptArray* iTestScriptArray;
76 CTestFrameworkRecogActive* iTestActive;
80 #endif // __TESTFRAMEWORKRECOG_H__