Salome HOME
Merge from V6_main 01/04/2013
[modules/kernel.git] / src / LifeCycleCORBA_SWIG / libSALOME_LifeCycleCORBA.i
1 // Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
2 //
3 // Copyright (C) 2003-2007  OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN,
4 // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS
5 //
6 // This library is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU Lesser General Public
8 // License as published by the Free Software Foundation; either
9 // version 2.1 of the License.
10 //
11 // This library is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14 // Lesser General Public License for more details.
15 //
16 // You should have received a copy of the GNU Lesser General Public
17 // License along with this library; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
19 //
20 // See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
21 //
22
23 // ----------------------------------------------------------------------------
24 //
25 %module libSALOME_LifeCycleCORBA
26
27 %feature("autodoc", "1");
28
29 %include <std_except.i>
30 %include "std_string.i"
31
32
33 // ----------------------------------------------------------------------------
34
35 %{
36 #include "utilities.h"
37 #include "SALOME_LifeCycleCORBA.hxx"
38 #include "SALOME_FileTransferCORBA.hxx"
39 #include "SALOME_NamingService.hxx"
40 #include "ServiceUnreachable.hxx"
41 #include "Utils_SALOME_Exception.hxx"
42 #if PY_VERSION_HEX < 0x02050000 && !defined(PY_SSIZE_T_MIN)
43 typedef int Py_ssize_t;
44 #define PY_SSIZE_T_MAX INT_MAX
45 #define PY_SSIZE_T_MIN INT_MIN
46 #endif
47
48 //--- from omniORBpy.h (not present on Debian Sarge packages)
49
50 struct omniORBpyAPI {
51
52   PyObject* (*cxxObjRefToPyObjRef)(const CORBA::Object_ptr cxx_obj,
53                                    CORBA::Boolean hold_lock);
54   // Convert a C++ object reference to a Python object reference.
55   // If <hold_lock> is true, caller holds the Python interpreter lock.
56
57   CORBA::Object_ptr (*pyObjRefToCxxObjRef)(PyObject* py_obj,
58                                            CORBA::Boolean hold_lock);
59   // Convert a Python object reference to a C++ object reference.
60   // Raises BAD_PARAM if the Python object is not an object reference.
61   // If <hold_lock> is true, caller holds the Python interpreter lock.
62
63
64   omniORBpyAPI();
65   // Constructor for the singleton. Sets up the function pointers.
66 };
67
68 omniORBpyAPI* api;
69
70 %}
71
72
73 // ----------------------------------------------------------------------------
74
75
76 %init
77 %{
78   // init section
79
80   PyObject* omnipy = PyImport_ImportModule((char*)"_omnipy");
81   if (!omnipy)
82   {
83     PyErr_SetString(PyExc_ImportError, (char*)"Cannot import _omnipy");
84     return;
85   }
86   PyObject* pyapi = PyObject_GetAttrString(omnipy, (char*)"API");
87   api = (omniORBpyAPI*)PyCObject_AsVoidPtr(pyapi);
88   Py_DECREF(pyapi);
89 %}
90
91
92
93 // ----------------------------------------------------------------------------
94
95 %typemap(out) Engines::Container_ptr, Engines::EngineComponent_ptr, Engines::fileRef_ptr,
96               Engines::ContainerManager_ptr, Engines::ResourcesManager_ptr 
97 {
98   MESSAGE("typemap out on CORBA object ptr");
99   SCRUTE($1);
100   $result = api->cxxObjRefToPyObjRef($1, 1);
101   SCRUTE($result);
102 }
103
104 %typemap(typecheck,precedence=SWIG_TYPECHECK_POINTER) Engines::fileRef_ptr
105 {
106   $1=PyObject_HasAttrString($input, "__omni_obj");
107 }
108
109 %typemap(in) Engines::fileRef_ptr aFileRef
110 {
111   MESSAGE("typemap in on CORBA object ptr");
112   try {
113      CORBA::Object_ptr obj = api->pyObjRefToCxxObjRef($input,1);
114      $1 = Engines::fileRef::_narrow(obj);
115      SCRUTE($1);
116   }
117   catch (...) {
118      PyErr_SetString(PyExc_RuntimeError, "not a valid CORBA object ptr");
119   }
120 }
121
122 // We use a dictionary to represent ContainerParameters structure instead of the CORBA
123 // structure itself because it would require a transformation from the Python
124 // ContainerParameters structure, generated by omniOrbPy, to a C++ ContainerParameters
125 // structure, generated by omniOrb, and this would be quite complex.
126 %typemap(typecheck,precedence=SWIG_TYPECHECK_POINTER) const Engines::ContainerParameters &
127 {
128   $1 = PyDict_Check($input)? 1 : 0;
129 }
130
131 %typemap(in) const Engines::ContainerParameters &
132 {
133   MESSAGE("typemap in on Engines::ContainerParameters");
134   if (PyDict_Check($input) == 1)
135     {
136       Engines::ContainerParameters *param = new Engines::ContainerParameters ;
137       SALOME_LifeCycleCORBA::preSet(*param);
138
139       PyObject *key, *value;
140       Py_ssize_t pos = 0;
141       while (PyDict_Next($input, &pos, &key, &value))
142        {
143          char* keystr = PyString_AsString(key);
144          if (strcmp(keystr,"container_name")==0)
145            {
146              param->container_name = CORBA::string_dup(PyString_AsString(value));
147            }
148          else if (strcmp(keystr,"resource_name")==0)
149            {
150              param->resource_params.name = CORBA::string_dup(PyString_AsString(value));
151            }
152          else if (strcmp(keystr,"hostname")==0)
153            {
154              param->resource_params.hostname = CORBA::string_dup(PyString_AsString(value));
155            }
156          else if (strcmp(keystr,"OS")==0)
157            {
158              param->resource_params.OS = CORBA::string_dup(PyString_AsString(value));
159            }
160          else if (strcmp(keystr,"mem_mb")==0)
161            {
162              param->resource_params.mem_mb = PyLong_AsLong(value);
163            }
164          else if (strcmp(keystr,"cpu_clock")==0)
165            {
166              param->resource_params.cpu_clock = PyLong_AsLong(value);
167            }
168          else if (strcmp(keystr,"nb_proc_per_node")==0)
169            {
170              param->resource_params.nb_proc_per_node = PyLong_AsLong(value);
171            }
172          else if (strcmp(keystr,"nb_node")==0)
173            {
174              param->resource_params.nb_node = PyLong_AsLong(value);
175            }
176          else if (strcmp(keystr,"isMPI")==0)
177            {
178              param->isMPI = PyLong_AsLong(value);
179            }
180          else if (strcmp(keystr,"workingdir")==0)
181              param->workingdir = CORBA::string_dup(PyString_AsString(value));
182          else if (strcmp(keystr,"mode")==0)
183              param->mode = CORBA::string_dup(PyString_AsString(value));
184          else if (strcmp(keystr,"policy")==0)
185              param->resource_params.policy = CORBA::string_dup(PyString_AsString(value));
186          else if (strcmp(keystr,"parallelLib")==0)
187            {
188              param->parallelLib = CORBA::string_dup(PyString_AsString(value));
189            }
190        }
191       $1 = param;
192     }
193   else 
194     {
195        MESSAGE("Not a ContainerParameters struct");
196        PyErr_SetString(PyExc_TypeError,"Must Be a Python ContainerParameters object");
197        return NULL;
198     }
199 }
200
201
202 %typemap(freearg) const Engines::ContainerParameters &
203 {
204   MESSAGE("delete $1");
205   delete $1;
206 }
207
208 // ----------------------------------------------------------------------------
209
210 %include <Utils_SALOME_Exception.hxx>
211
212 %exception {
213     Py_BEGIN_ALLOW_THREADS
214     try {
215       $action
216     }
217     catch (ServiceUnreachable) {
218        Py_BLOCK_THREADS
219        PyErr_SetString(PyExc_RuntimeError,"Naming Service Unreacheable");
220        return NULL;
221     }
222     catch (SALOME_Exception &e) {
223        Py_BLOCK_THREADS
224        PyErr_SetString(PyExc_RuntimeError,e.what());
225        return NULL;
226     }
227     catch (SALOME::SALOME_Exception &e) {
228        Py_BLOCK_THREADS
229        PyErr_SetString(PyExc_RuntimeError,e.details.text);
230        return NULL;
231     }
232     catch (...) {
233        Py_BLOCK_THREADS
234        PyErr_SetString(PyExc_RuntimeError, "unknown exception");
235        return NULL;
236     }
237     Py_END_ALLOW_THREADS
238 }
239
240
241 %include <SALOME_LifeCycleCORBA.hxx>
242 %include <SALOME_FileTransferCORBA.hxx>