Salome HOME
Update copyrights 2014.
[modules/yacs.git] / src / runtime / DistributedPythonNode.hxx
1 // Copyright (C) 2006-2014  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, or (at your option) any later version.
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 __DISTRIBUTEDPYTHONNODE_HXX__
21 #define __DISTRIBUTEDPYTHONNODE_HXX__
22
23 #include "ServerNode.hxx"
24
25 // rnv: avoid compilation warning on Linux : "_POSIX_C_SOURCE" and "_XOPEN_SOURCE" are redefined
26 #ifdef _POSIX_C_SOURCE
27 #undef _POSIX_C_SOURCE
28 #endif
29
30 #ifdef _XOPEN_SOURCE
31 #undef _XOPEN_SOURCE
32 #endif
33
34 #include <Python.h>
35 #include <omniORB4/CORBA.h>
36 #include "YACSRuntimeSALOMEExport.hxx"
37
38 namespace YACS
39 {
40   namespace ENGINE
41   {
42     class YACSRUNTIMESALOME_EXPORT DistributedPythonNode : public ServerNode
43     {   
44     protected:
45       Node *simpleClone(ComposedNode *father, bool editionOnly) const;
46     public:
47       DistributedPythonNode(const std::string& name);
48       DistributedPythonNode(const DistributedPythonNode& other, ComposedNode *father);
49       ~DistributedPythonNode();
50       void execute();
51       void load();
52       //!this method returns the type of container expected
53       std::string getEffectiveKindOfServer() const;
54       //!this method returns the type of input/output expected
55       std::string getKind() const;
56       ServerNode *createNode(const std::string& name) const;
57       virtual std::string typeName() {return "YACS__ENGINE__DistributedPythonNode";}
58     private:
59       void initMySelf();
60       void dealException(CORBA::Exception *exc, const char *method, const char *ref);
61     public:
62       static const char KIND[];
63       static const char IMPL_NAME[];
64       static const char SALOME_CONTAINER_METHOD_IDL[];
65     protected:
66       PyObject* _context;
67       PyObject* _pyfuncSer;
68       PyObject* _pyfuncUnser;
69     };
70   }
71 }
72
73 #endif