Salome HOME
Merge from V6_main_20120808 08Aug12
[modules/med.git] / src / MEDCouplingCorba_Swig / MEDCouplingCorbaTypemaps.i
diff --git a/src/MEDCouplingCorba_Swig/MEDCouplingCorbaTypemaps.i b/src/MEDCouplingCorba_Swig/MEDCouplingCorbaTypemaps.i
new file mode 100644 (file)
index 0000000..cc6ae3d
--- /dev/null
@@ -0,0 +1,45 @@
+// Copyright (C) 2007-2012  CEA/DEN, EDF R&D
+//
+// This library is free software; you can redistribute it and/or
+// modify it under the terms of the GNU Lesser General Public
+// License as published by the Free Software Foundation; either
+// version 2.1 of the License.
+//
+// This library is distributed in the hope that it will be useful,
+// but WITHOUT ANY WARRANTY; without even the implied warranty of
+// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
+// Lesser General Public License for more details.
+//
+// You should have received a copy of the GNU Lesser General Public
+// License along with this library; if not, write to the Free Software
+// Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307 USA
+//
+// See http://www.salome-platform.org/ or email : webmaster.salome@opencascade.com
+//
+
+template<class TServant>
+static PyObject *buildServantAndActivate(const typename TServant::CppType *pt)
+{
+  int argc=0;
+  TServant *serv=new TServant(pt);
+  CORBA::ORB_var orb=CORBA::ORB_init(argc,0);
+  CORBA::Object_var obj=orb->resolve_initial_references("RootPOA");
+  PortableServer::POA_var poa=PortableServer::POA::_narrow(obj);
+  PortableServer::POAManager_var mgr=poa->the_POAManager();
+  mgr->activate();
+  CORBA::Object_var ret=serv->_this();
+  char *ior=orb->object_to_string(ret);
+  PyObject *iorPython=PyString_FromString(ior);
+  PyObject* pdict=PyDict_New();
+  PyDict_SetItemString(pdict, "__builtins__", PyEval_GetBuiltins());
+  PyRun_String("import MEDCouplingCorbaServant_idl", Py_single_input, pdict, pdict);
+  PyRun_String("import CORBA", Py_single_input, pdict, pdict);
+  PyRun_String("orbTmp15634=CORBA.ORB_init([''])",Py_single_input,pdict, pdict);
+  PyObject* orbPython=PyDict_GetItemString(pdict,"orbTmp15634");
+  PyObject *corbaObj=PyObject_CallMethod(orbPython,(char*)"string_to_object",(char*)"O",iorPython);
+  Py_DECREF(pdict);
+  Py_DECREF(iorPython);
+  CORBA::string_free(ior);
+  return corbaObj;
+}
+