networkingtestandutils/networkingintegrationtest/scheduleTest/script.h
author Dremov Kirill (Nokia-D-MSW/Tampere) <kirill.dremov@nokia.com>
Tue, 27 Apr 2010 18:14:09 +0300
branchRCL_3
changeset 15 9bab6ffc7f45
parent 0 af10295192d8
permissions -rw-r--r--
Revision: 201017 Kit: 201017

/**
* Copyright (c) 2003-2009 Nokia Corporation and/or its subsidiary(-ies).
* All rights reserved.
* This component and the accompanying materials are made available
* under the terms of "Eclipse Public License v1.0"
* which accompanies this distribution, and is available
* at the URL "http://www.eclipse.org/legal/epl-v10.html".
*
* Initial Contributors:
* Nokia Corporation - initial contribution.
*
* Contributors:
*
* Description:
*
*/



/**
 @file Script.h
 @internalComponent
*/

#if (!defined __SCRIPT_H__)
#define __SCRIPT_H__

/**
Maximum length for script line
*/
#define MAX_SCRIPT_LINE_LENGTH  200

/**
Maximum length for suite name
*/
#define MAX_LEN_SUITE_NAME		55

class CParseLine;

class CScript : public CBase
/**
Turn on script parse debugging

@internalComponent
*/
{
public:
	static CScript* NewL();
	static CScript* NewL(CParseLine * aParse );
	~CScript();	

	/** read in a script file */
	bool OpenScriptFile(const TFileName &scriptFileName);		

	/** parse and excute script */
	enum TVerdict ExecuteScriptL();						

	void DisplayResults(void);
	void AddResult(enum TVerdict iTestVerdict );
	void AddResult(CScript * subScript );
	void Pause(void);
	TBool BreakOnError(void);
	void Close(void);

	TBool iPauseAtEnd;
	TBool iMultThread;
protected:
	CScript();
	void ConstructL();
	void ConstructL(CParseLine * aParse);
private:
	/** process a line of script */
	void ProcessLineL(const TPtrC8 &narrowline, TInt8 lineNo);	

	// data members
	/** the file system */
	RFs		iTheFs;										

	/** ptr to script file im memory */
	HBufC8 *ipScriptBuffer;								

	/** test path */
	TPath	iTheTestPath;								

	/** line parse object */
	CParseLine * iParse;

	/** current results */
	TInt	iPass;
	TInt	iFail;
	TInt	iInconclusive;
	TInt	iTestSuiteError;
	TInt	iAbort;
	TInt	iTotal;	
	
	TBool iParseLineOwner;
};

#endif /* __SCRIPT_H__ */