1 // Copyright (C) 2007-2020 CEA/DEN, EDF R&D, OPEN CASCADE
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.
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 // File : SALOME_PyNode.idl
21 // Author : Christian CAREMOLI, EDF
24 #ifndef _SALOME_PYNODE_IDL_
25 #define _SALOME_PYNODE_IDL_
27 #include "SALOME_GenericObj.idl"
28 #include "SALOME_Exception.idl"
30 /*! \file SALOME_PyNode.idl \brief interface for remote python execution
34 This is a package of interfaces used for executing Python code on remote container
38 typedef sequence<octet> pickledArgs;
39 typedef sequence<string> listofstring;
42 interface PyNodeBase : SALOME::GenericObj
44 Container getContainer();
51 This method allows to define a new global var called \a varName. This newly created var will be
52 set to value \a valueOfVar.
54 void defineNewCustomVar(in string varName, in pickledArgs valueOfVar) raises (SALOME::SALOME_Exception);
57 This method executes the python code in \a codeStr and can append/remove symboles in context to make them available or not for future call of execute on this.
58 \param [in] codeStr - the python code (without statement) to be executed, that can modify the context initialized at initialization.
60 void executeAnotherPieceOfCode(in string codeStr) raises (SALOME::SALOME_Exception);
63 interface PyNode : PyNodeBase
65 /*! \brief execute a python function defined in the node
67 \param functionName the python function defined in the node to execute
68 \param inargs input argument values (tuple,dict) provided as a python pickle
69 \return output argument values (tuple) as a python pickle
71 pickledArgs execute(in string functionName, in pickledArgs inargs) raises (SALOME::SALOME_Exception);
75 interface PyScriptNode : PyNodeBase
78 This method compiles, but NOT EXECUTE, the code \a codeStr. The result of the compiled code will be used then
80 \param codeStr - the python code (without statement) to be executed, that can modify the context initialized at initialization.
82 void assignNewCompiledCode(in string codeStr) raises (SALOME::SALOME_Exception);
84 /*! \brief execute a python script defined in the node
86 \param outargsname output argument names
87 \param inargs input argument values (dict) provided as a python pickle
88 \return output argument values (tuple) as a python pickle
90 pickledArgs execute(in listofstring outargsname, in pickledArgs inargs) raises (SALOME::SALOME_Exception);
92 /*! \brief first part of whole execute method. This split is to reduce the memory peak.
94 void executeFirst(in pickledArgs inargs) raises (SALOME::SALOME_Exception);
96 /*! \brief second and last part of execute method. This split is to reduce the memory peak.
98 pickledArgs executeSecond(in listofstring outargsname) raises (SALOME::SALOME_Exception);
100 pickledArgs getValueOfVarInContext(in string varName) raises (SALOME::SALOME_Exception);
102 void assignVarInContext(in string varName, in pickledArgs value) raises (SALOME::SALOME_Exception);
104 pickledArgs callMethodOnVarInContext(in string varName, in string methodName, in pickledArgs args) raises (SALOME::SALOME_Exception);