//OpenSCADA module Special.FLibSYS file: xmlfnc.h /*************************************************************************** * Copyright (C) 2009-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 XMLFNC_H #define XMLFNC_H #include #include #include "statfunc.h" namespace FLibSYS { //************************************************* //* XML node object creation * //************************************************* class xmlNode : public TFunction { public: xmlNode( ) : TFunction("xmlNode",SSPC_ID) { ioAdd(new IO("rez",trS("Result"),IO::Object,IO::Return)); ioAdd(new IO("name",trS("Name"),IO::String,IO::Default)); } string name( ) { return _("XML: Node"); } string descr( ) { return _("Creating a XML node object."); } void calc( TValFunc *val ) { val->setO(0, new XMLNodeObj(val->getS(1))); } }; //************************************************* //* Control request * //************************************************* class xmlCntrReq : public TFunction { public: xmlCntrReq( ) : TFunction("xmlCntrReq", SSPC_ID) { ioAdd(new IO("rez",trS("Result"),IO::String,IO::Return)); ioAdd(new IO("req",trS("Request"),IO::Object,IO::Default)); ioAdd(new IO("stat",trS("Station"),IO::String,IO::Default)); } string name( ) { return _("XML: Control request"); } string descr( ) { return _("Requesting for control the program, by XML."); } void calc( TValFunc *val ); }; } #endif //XMLFNC_H