//OpenSCADA module Special.SystemTests file: test_kernel.h /*************************************************************************** * Copyright (C) 2003-2022 by Roman Savochenko, * * * * This program is free software; you can redistribute it and/or modify * * it under the terms of the GNU General Public License as published by * * the Free Software Foundation; version 2 of the License. * * * * This program is distributed in the hope that it will be useful, * * but WITHOUT ANY WARRANTY; without even the implied warranty of * * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the * * GNU General Public License for more details. * * * * You should have received a copy of the GNU General Public License * * along with this program; if not, write to the * * Free Software Foundation, Inc., * * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. * ***************************************************************************/ #ifndef TEST_KERNEL_H #define TEST_KERNEL_H #include "tsys.h" #undef _ #define _(mess) mod->I18N(mess).c_str() #undef trS #define trS(mess) mod->I18N(mess,mess_PreSave) using namespace OSCADA; namespace KernelTest { //************************************************ //* TTest * //************************************************ class TTest: public TSpecial { public: //Methods TTest( string name ); ~TTest( ); void modStart( ); void modStop( ); static string cat( ); void mess( const string &test, const char *fmt, ... ); void prXMLNode( const string &cat, XMLNode *node, int level = 0 ); //> Test's functions void testList( vector &ls ) const { chldList(mTest, ls); } bool testPresent( const string &id ) const { return chldPresent(mTest, id); } void testReg( TFunction *test ) { chldAdd(mTest, test); } AutoHD testAt( const string &id ) const { return chldAt(mTest, id); } protected: //Methods void load_( ); void cntrCmdProc( XMLNode *opt ); //Control interface command process TVariant objFuncCall( const string &id, vector &prms, const string &user_lang ); private: //Methods void postEnable( int flag ); string optDescr( ); void modInfo( vector &list ); string modInfo( const string &name ); static void *Task(void *); //Attributes bool endrun; // Stop pthread command int mTest; }; extern TTest *mod; } #endif //TEST_KERNEL_H