Salome HOME
Merge from V6_main 01/04/2013
[modules/yacs.git] / src / runtime / PythonNode.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 _PYTHONNODE_HXX_
21 #define _PYTHONNODE_HXX_
22
23 #include "YACSRuntimeSALOMEExport.hxx"
24 #include "InlineNode.hxx"
25 #include <SALOMEconfig.h>
26 #include CORBA_CLIENT_HEADER(SALOME_PyNode)
27
28 #include <Python.h>
29
30 namespace YACS
31 {
32   namespace ENGINE
33   {
34     class YACSRUNTIMESALOME_EXPORT PythonNode : public InlineNode 
35     {
36     protected:
37       Node *simpleClone(ComposedNode *father, bool editionOnly) const;
38     public:
39       PythonNode(const PythonNode& other, ComposedNode *father);
40       PythonNode(const std::string& name);
41       virtual ~PythonNode();
42       virtual void checkBasicConsistency() const throw(Exception);
43       virtual void execute();
44       virtual void load();
45       virtual void loadRemote();
46       virtual void loadLocal();
47       virtual void executeRemote();
48       virtual void executeLocal();
49       virtual void shutdown(int level);
50       std::string getContainerLog();
51       PythonNode* cloneNode(const std::string& name);
52       static const char KIND[];
53       static const char IMPL_NAME[];
54       virtual std::string typeName() {return "YACS__ENGINE__PythonNode";}
55     protected:
56       PyObject* _context;
57       PyObject* _pyfuncSer;
58       PyObject* _pyfuncUnser;
59       Engines::PyScriptNode_var _pynode;
60     };
61
62     class PyFuncNode : public InlineFuncNode 
63     {
64     protected:
65       Node *simpleClone(ComposedNode *father, bool editionOnly) const;
66     public:
67       PyFuncNode(const PyFuncNode& other, ComposedNode *father);
68       PyFuncNode(const std::string& name);
69       virtual ~PyFuncNode();
70       virtual void checkBasicConsistency() const throw(Exception);
71       virtual void execute();
72       virtual void load();
73       virtual void loadRemote();
74       virtual void loadLocal();
75       virtual void executeRemote();
76       virtual void executeLocal();
77       virtual void shutdown(int level);
78       std::string getContainerLog();
79       PyFuncNode* cloneNode(const std::string& name);
80       virtual std::string typeName() {return "YACS__ENGINE__PyFuncNode";}
81     protected:
82       PyObject* _context;
83       PyObject* _pyfunc;
84       PyObject* _pyfuncSer;
85       PyObject* _pyfuncUnser;
86       Engines::PyNode_var _pynode;
87     };
88   }
89 }
90
91 #endif