Salome HOME
Merge from V6_main 01/04/2013
[modules/yacs.git] / src / runtime / CppComponent.hxx
1 // Copyright (C) 2006-2013  CEA/DEN, EDF R&D
2 //
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.
7 //
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.
12 //
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
16 //
17 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
18 //
19
20 #ifndef __YACS_CppCOMPONENT__
21 #define __YACS_CppCOMPONENT__
22
23 #include <string>
24 #include "ComponentInstance.hxx"
25
26 namespace YACS 
27 {
28   namespace ENGINE
29   {
30
31     class Any;
32
33     struct returnInfo {
34          int code;
35          std::string message;
36     };
37
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) ();
42         
43     class CppComponent : public ComponentInstance {
44       public:
45
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();
52
53         void run(const char * service, int nbIn, int nbOut,
54                          Any ** argIn, Any ** argOut) throw (YACS::Exception);
55
56         static const char KIND[];
57         virtual std::string getKind() const;
58         virtual void load();
59         virtual void unload();
60         virtual bool isLoaded();
61         virtual ServiceNode* createNode(const std::string& name);
62         virtual YACS::ENGINE::ComponentInstance* clone() const;
63         
64       protected:
65   
66         void * __obj;
67         YACS::ENGINE::RunFunction __run;
68         YACS::ENGINE::TerminateFunction __terminate;
69     };
70   };
71 };
72
73 #endif