Update contrib.
1 // Copyright (c) 2002-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 __PARSELINE_H__
17 #define __PARSELINE_H__
21 * Max len of string buffers
26 const TInt KMaxLenStepData = 256;
27 const TInt KMaxLenScriptLine = 2000;
36 const TInt KNoGuardTimer = -1L;
39 * constant that indicates that the panic reason should be ignored
41 const TInt KNoPanicReason = -1;
45 * This class is used for storing information on
46 * test suite DLLs currently loaded
51 class CSuiteDll : public CBase
55 static CSuiteDll* NewL(const TDesC& aName, CLog* aLog);
56 void ConstructL(const TDesC& aName, CLog* aLog);
60 CTestSuite* Suite() const;
65 RLibrary iLibrary; // DLL Library
66 CTestSuite* iTestSuite; // pointer to Test suite object
67 TBuf<KMaxLenTestSuiteName> iName; // name of the test suite
72 * CStepData class used for passing test step data to the step thread
73 * JW 03-01-03 : rewritten from TStepData to use heap - avoiding stack overflow
82 static CStepData* NewL(const TDesC& aStep, const TDesC& aConfig, CSuiteDll* aSuite);
83 static CStepData* NewL(const TDesC& aStep, const TDesC& aConfig, const TDesC& aParamSet, CSuiteDll* aSuite);
86 void ConstructL(const TDesC& aStep, const TDesC& aConfig, const TDesC& aParamSet, CSuiteDll* aSuite);
91 const TDesC& ParamSet() const;
92 CSuiteDll* SuiteDll() const;
94 TBuf<KMaxLenStepData> iStep;
95 TBuf<KMaxLenStepData> iConfig;
96 TBuf<KMaxLenStepData> iParamSet;
102 * CParseLine - the main test script interpreter
107 class CParseLine : public CBase
110 static CParseLine* NewL(CScript* aScript, CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer, const TDesC& aMatchString);
112 CParseLine(const TDesC& aMatchString);
113 void ConstructL(CScript* aScript, CTestUtils* aTestUtils, CLog* aLog, TInt64 aGuardTimer);
115 void ProcessLineL(const TDesC8& aNarrowline, TInt aLineNo); // process a line of script
118 TPtrC CurrentSuiteName() const;
119 TPtrC CurrentStepName() const;
124 static TInt ThreadFunctionL (TAny* aPtr);
125 static TInt ThreadTrapFunctionL (TAny* aPtr);
127 // script keyword commands
128 void ScriptPrint(const TDesC& aText);
129 void RunScriptL(const TDesC& aText);
130 void RunTestStep(const TDesC& aText);
131 void RunPanicTestStep(const TDesC& aText);
132 void RunTerminationTestStep(const TDesC& aText);
133 void RunUtil(const TDesC& aText);
134 void LoadSuiteL(const TDesC& aText);
136 TVerdict DoTestNewThread(const TDesC& aSuite, const TDesC& aStep,
137 TInt64 aGuardTimerValue, const TDesC& aConfig, const TDesC& aParamSet);
138 TVerdict DoPanicTest(const TDesC& aSuite, const TDesC& aStep, TInt64 aGuardTimerValue, const TExitCategoryName aExitCategory, TInt aExitReason, const TDesC& aConfig, const TDesC& aParamSet);
139 TVerdict DoTerminationTest(const TDesC& aSuite, const TDesC& aStep, TInt64 aGuardTimerValue, TInt aExitReason, const TDesC& aConfig);
140 void GetHeapAndStackSize(const CStepData* aStepData, TInt* aHeapSize, TInt* aStackSize);
148 void RunProgram(const TDesC& aText);
149 void TestComplete(const TDesC& aText);
150 void Delay(const TDesC& aText);
151 void SetSeverity(const TDesC& aText);
152 void LogSettings(const TDesC& aText);
153 // logger - use only with macros
154 void LogExtra(const TText8* aFile, TInt aLine, TInt aSeverity,
155 TRefByValue<const TDesC16> aFmt, ...);
156 void CreateUniqueTestThreadL(const TDesC& aBaseName, TDes& aThreadName, RThread& aTestThread, TThreadFunction aFunction, TInt aStackSize, TInt aHeapMinSize, TInt aHeapMaxSize, TAny *aPtr);
158 // record of the current test suite / step name
159 TBuf<KMaxLenTestSuiteName> iCurrentSuiteName;
160 TBuf<KMaxLenTestStepName> iCurrentStepName;
163 TPath iTheTestPath; // test path
165 TInt iProcessHandleCountBefore;
166 TInt iThreadHandleCountBefore;
168 // the current test result
169 TVerdict iTestVerdict;
173 CTestUtils* iTestUtils;
176 // default guard timer, if any
181 const TDesC& iMatchString;
184 // array of CSuiteDll objects which contain
185 // information on the current loaded test suite DLLs
186 CArrayPtr<CSuiteDll>* iArrayLoadedSuiteDll;
188 // Flag to indicate that there has been an error
189 // and the user has selected to skip the rest of the script until a
190 // test result statement is found in the log
194 #endif // __PARSELINE_H__