X-Git-Url: http://git.salome-platform.org/gitweb/?a=blobdiff_plain;f=src%2FParallelContainer%2FSALOME_ParallelContainerProxy_i.cxx;h=3e4445d72c2ca1a9b1635a6d027f98c67ead78e5;hb=a7e425483b5eb6a0491cbad5ef63cc67ccf64f7c;hp=c31c0aece96ea79156862a3a345a47d5ebc06ce8;hpb=63414a08d9492c25c206579c1953ec6f390679fd;p=modules%2Fkernel.git diff --git a/src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx b/src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx index c31c0aece..3e4445d72 100644 --- a/src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx +++ b/src/ParallelContainer/SALOME_ParallelContainerProxy_i.cxx @@ -1,4 +1,4 @@ -// Copyright (C) 2007-2014 CEA/DEN, EDF R&D, OPEN CASCADE +// Copyright (C) 2007-2016 CEA/DEN, EDF R&D, OPEN CASCADE // // Copyright (C) 2003-2007 OPEN CASCADE, EADS/CCR, LIP6, CEA/DEN, // CEDRAT, EDF R&D, LEG, PRINCIPIA R&D, BUREAU VERITAS @@ -69,7 +69,7 @@ Container_proxy_impl_final:: ~Container_proxy_impl_final() { if (_NS) delete _NS; - // _fab_thread not deleted beacause fab_thread is managed + // _fab_thread not deleted because fab_thread is managed // by paco_fabrique_manager } @@ -158,13 +158,17 @@ Container_proxy_impl_final::load_component_Library(const char* componentName, CO MESSAGE("Try to load C++ component"); #ifndef WIN32 +#ifdef __APPLE__ + std::string impl_name = string ("lib") + aCompName + string("Engine.dylib"); +#else std::string impl_name = string ("lib") + aCompName + string("Engine.so"); +#endif #else std::string impl_name = aCompName + string("Engine.dll"); #endif void* handle; #ifndef WIN32 - handle = dlopen( impl_name.c_str() , RTLD_LAZY ) ; + handle = dlopen( impl_name.c_str() , RTLD_LAZY | RTLD_GLOBAL ) ; #else handle = dlopen( impl_name.c_str() , 0 ) ; #endif @@ -212,7 +216,7 @@ Container_proxy_impl_final::load_component_Library(const char* componentName, CO PyObject *result = PyObject_CallMethod(pyCont, (char*)"import_component", (char*)"s",componentName); - std::string ret_p= PyString_AsString(result); + std::string ret_p= PyUnicode_AsUTF8(result); Py_XDECREF(result); Py_RELEASE_NEW_THREAD; @@ -271,11 +275,11 @@ Container_proxy_impl_final::load_component_Library(const char* componentName, CO } Engines::EngineComponent_ptr -Container_proxy_impl_final::create_component_instance(const char* componentName, ::CORBA::Long studyId) +Container_proxy_impl_final::create_component_instance(const char* componentName) { Engines::FieldsDict_var env = new Engines::FieldsDict; char* reason; - Engines::EngineComponent_ptr compo = create_component_instance_env(componentName, studyId, env, reason); + Engines::EngineComponent_ptr compo = create_component_instance_env(componentName, env, reason); CORBA::string_free(reason); return compo; } @@ -285,7 +289,7 @@ Container_proxy_impl_final::create_component_instance(const char* componentName, // Composant parallèle -> création du proxy ici puis appel de la création de chaque objet participant // au composant parallèle Engines::EngineComponent_ptr -Container_proxy_impl_final::create_component_instance_env(const char* componentName, ::CORBA::Long studyId, +Container_proxy_impl_final::create_component_instance_env(const char* componentName, const Engines::FieldsDict& env, CORBA::String_out reason) { reason=CORBA::string_dup(""); @@ -305,7 +309,7 @@ Container_proxy_impl_final::create_component_instance_env(const char* componentN _numInstance++; _numInstanceMutex.unlock(); Engines::PACO_Container_proxy_impl::updateInstanceNumber(); - return Engines::Container_proxy_impl::create_component_instance(componentName, studyId); + return Engines::Container_proxy_impl::create_component_instance(componentName); } // Parallel Component ! @@ -313,7 +317,11 @@ Container_proxy_impl_final::create_component_instance_env(const char* componentN // On commence par créer le proxy #ifndef WIN32 +#ifdef __APPLE__ + std::string impl_name = string ("lib") + aCompName + string("Engine.dylib"); +#else std::string impl_name = string ("lib") + aCompName + string("Engine.so"); +#endif #else std::string impl_name = aCompName + string("Engine.dll"); #endif @@ -342,7 +350,7 @@ Container_proxy_impl_final::create_component_instance_env(const char* componentN string instanceName = aCompName + "_inst_" + aNumI ; string component_registerName = _containerName + "/" + instanceName; - // --- Instanciate required CORBA object + // --- Instantiate required CORBA object Container_proxy_impl_final::proxy_object * proxy = new Container_proxy_impl_final::proxy_object(); proxy->proxy_id = (component_proxy_factory) (_orb, @@ -353,7 +361,7 @@ Container_proxy_impl_final::create_component_instance_env(const char* componentN instanceName.c_str(), _parallel_object_topology.total); - // --- get reference & servant from id + // --- get reference from id CORBA::Object_var obj = _poa->id_to_reference(*(proxy->proxy_id)); component_proxy = Engines::EngineComponent::_narrow(obj); proxy->proxy_corba_ref = component_proxy; @@ -378,7 +386,7 @@ Container_proxy_impl_final::create_component_instance_env(const char* componentN } catch (...) { - INFOS( "Exception catched in Proxy creation" ); + INFOS( "Exception caught in Proxy creation" ); return Engines::EngineComponent::_nil(); } @@ -392,7 +400,7 @@ Container_proxy_impl_final::create_component_instance_env(const char* componentN { try { - node->create_paco_component_node_instance(componentName, _containerName.c_str(), studyId); + node->create_paco_component_node_instance(componentName, _containerName.c_str()); MESSAGE("Call create_paco_component_node_instance done on node : " << i); } catch (SALOME::SALOME_Exception & ex)