Salome HOME
0feb9776535183c7180ac1bc9adfa6335af6c81e
[modules/yacs.git] / src / runtime / SalomePythonNode.hxx
1 //  Copyright (C) 2006-2008  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 #ifndef _SALOMEPYTHONNODE_HXX_
20 #define _SALOMEPYTHONNODE_HXX_
21
22 #include "ServiceInlineNode.hxx"
23 #include <Python.h>
24
25 namespace YACS
26 {
27   namespace ENGINE
28   {
29     /*!
30      * This class is in charge to deal with python willing to interact with YACS placed container.
31      * Typical use is for nodes building GEOM and MESH. The great number of calls needed by this type of application,
32      * implies a human impossibility to make the corresponding graph.
33     */
34     class SalomePythonNode : public ServiceInlineNode 
35     {
36     protected:
37       Node *simpleClone(ComposedNode *father, bool editionOnly) const;
38     public:
39       SalomePythonNode(const SalomePythonNode& other, ComposedNode *father);
40       SalomePythonNode(const std::string& name);
41       virtual void execute();
42       virtual void load();
43       std::string getKind() const;
44       ServiceNode *createNode(const std::string &name);
45       SalomePythonNode* cloneNode(const std::string& name);
46     protected:
47       PyObject* _context;
48       PyObject* _pyfunc;
49     public:
50       static const char PLACEMENT_VAR_NAME_IN_INTERP[];
51     };
52   }
53 }
54
55 #endif