1 // Copyright (C) 2006-2013 CEA/DEN, EDF R&D
3 // This library is free software; you can redistribute it and/or
4 // modify it under the terms of the GNU Lesser General Public
5 // License as published by the Free Software Foundation; either
6 // version 2.1 of the License.
8 // This library is distributed in the hope that it will be useful,
9 // but WITHOUT ANY WARRANTY; without even the implied warranty of
10 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
11 // Lesser General Public License for more details.
13 // You should have received a copy of the GNU Lesser General Public
14 // License along with this library; if not, write to the Free Software
15 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
20 #ifndef __YACS_CppCOMPONENT__
21 #define __YACS_CppCOMPONENT__
24 #include "ComponentInstance.hxx"
38 typedef void * (*InitFunction)();
39 typedef void (*RunFunction) (void *, const char *, int, int, Any **, Any **, returnInfo *);
40 typedef void (*TerminateFunction)(void **);
41 typedef void (*PingFunction) ();
43 class CppComponent : public ComponentInstance {
46 CppComponent(const std::string & name);
47 CppComponent(void * obj, RunFunction r, TerminateFunction t,
48 const std::string & name)
49 : __obj(obj), __run(r), __terminate(t), ComponentInstance(name) {}
50 CppComponent(const CppComponent& other);
51 virtual ~CppComponent();
53 void run(const char * service, int nbIn, int nbOut,
54 Any ** argIn, Any ** argOut) throw (YACS::Exception);
56 static const char KIND[];
57 virtual std::string getKind() const;
59 virtual void unload();
60 virtual bool isLoaded();
61 virtual ServiceNode* createNode(const std::string& name);
62 virtual YACS::ENGINE::ComponentInstance* clone() const;
67 YACS::ENGINE::RunFunction __run;
68 YACS::ENGINE::TerminateFunction __terminate;