sl@0
|
1 |
// Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
|
sl@0
|
2 |
// All rights reserved.
|
sl@0
|
3 |
// This component and the accompanying materials are made available
|
sl@0
|
4 |
// under the terms of "Eclipse Public License v1.0"
|
sl@0
|
5 |
// which accompanies this distribution, and is available
|
sl@0
|
6 |
// at the URL "http://www.eclipse.org/legal/epl-v10.html".
|
sl@0
|
7 |
//
|
sl@0
|
8 |
// Initial Contributors:
|
sl@0
|
9 |
// Nokia Corporation - initial contribution.
|
sl@0
|
10 |
//
|
sl@0
|
11 |
// Contributors:
|
sl@0
|
12 |
//
|
sl@0
|
13 |
// Description:
|
sl@0
|
14 |
//
|
sl@0
|
15 |
|
sl@0
|
16 |
#ifndef __TESTFRAMEWORKRECOG_H__
|
sl@0
|
17 |
#define __TESTFRAMEWORKRECOG_H__
|
sl@0
|
18 |
|
sl@0
|
19 |
#include <apmrec.h>
|
sl@0
|
20 |
|
sl@0
|
21 |
_LIT(KRecogSemaphoreName, "TFR_SEM"); // Semaphore of the current test thread
|
sl@0
|
22 |
_LIT(KRecogParentSemaphoreName, "TFR_PARENT_SEM"); // Semaphore of the main recognizer thread
|
sl@0
|
23 |
const TInt KUidTestFrameworkRecognizerValue = 0x101F7C0E;
|
sl@0
|
24 |
const TUid KUidTestFrameworkRecognizer = { KUidTestFrameworkRecognizerValue };
|
sl@0
|
25 |
|
sl@0
|
26 |
class TTestScriptInfo
|
sl@0
|
27 |
{
|
sl@0
|
28 |
public:
|
sl@0
|
29 |
TInt iThreadStartupDelay;
|
sl@0
|
30 |
TFileName iScriptPath;
|
sl@0
|
31 |
TBuf<32> iParams;
|
sl@0
|
32 |
};
|
sl@0
|
33 |
typedef CArrayFixFlat<TTestScriptInfo> CTestScriptArray;
|
sl@0
|
34 |
|
sl@0
|
35 |
// CTestFrameworkRecogActive
|
sl@0
|
36 |
class CTestFrameworkRecogActive : public CActive
|
sl@0
|
37 |
{
|
sl@0
|
38 |
public:
|
sl@0
|
39 |
CTestFrameworkRecogActive(CTestScriptArray* aTestScriptArray);
|
sl@0
|
40 |
~CTestFrameworkRecogActive();
|
sl@0
|
41 |
public:
|
sl@0
|
42 |
TInt CreateNextTestThread();
|
sl@0
|
43 |
protected:
|
sl@0
|
44 |
static TInt ThreadFunc(TAny* aPtr);
|
sl@0
|
45 |
void DoThreadFuncL();
|
sl@0
|
46 |
static TInt StartTestThreadFn(TAny* aPtr);
|
sl@0
|
47 |
void DoStartTestThreadL();
|
sl@0
|
48 |
// from CActive
|
sl@0
|
49 |
protected:
|
sl@0
|
50 |
void RunL();
|
sl@0
|
51 |
void DoCancel();
|
sl@0
|
52 |
protected:
|
sl@0
|
53 |
CTestScriptArray* iTestScriptArray;
|
sl@0
|
54 |
TInt iCurrentScript;
|
sl@0
|
55 |
};
|
sl@0
|
56 |
|
sl@0
|
57 |
// CTestFrameworkRecognizer
|
sl@0
|
58 |
class CTestFrameworkRecognizer : public CApaDataRecognizerType
|
sl@0
|
59 |
{
|
sl@0
|
60 |
public:
|
sl@0
|
61 |
CTestFrameworkRecognizer();
|
sl@0
|
62 |
~CTestFrameworkRecognizer();
|
sl@0
|
63 |
// New functions
|
sl@0
|
64 |
public:
|
sl@0
|
65 |
void DoCreateL();
|
sl@0
|
66 |
protected:
|
sl@0
|
67 |
void LoadConfigFileL(const TDesC& aFileName);
|
sl@0
|
68 |
void ProcessLineL(const TDesC8& aLine);
|
sl@0
|
69 |
// from CApaDataRecognizerType
|
sl@0
|
70 |
protected:
|
sl@0
|
71 |
TUint PreferredBufSize();
|
sl@0
|
72 |
TDataType SupportedDataTypeL(TInt aIndex) const;
|
sl@0
|
73 |
void DoRecognizeL(const TDesC& aName, const TDesC8& aBuffer);
|
sl@0
|
74 |
protected:
|
sl@0
|
75 |
CTestScriptArray* iTestScriptArray;
|
sl@0
|
76 |
CTestFrameworkRecogActive* iTestActive;
|
sl@0
|
77 |
TBool iRunScript;
|
sl@0
|
78 |
};
|
sl@0
|
79 |
|
sl@0
|
80 |
#endif // __TESTFRAMEWORKRECOG_H__
|