From: caremoli Date: Mon, 28 Sep 2009 13:34:46 +0000 (+0000) Subject: CCAR: remove some memory leaks, add set properties in env for python component (begin... X-Git-Tag: V5_1_3rc1~27 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=b522fdfabbc1b0b2a36783423e3f378195b5364b;p=modules%2Fkernel.git CCAR: remove some memory leaks, add set properties in env for python component (beginService) --- diff --git a/src/Container/Component_i.cxx b/src/Container/Component_i.cxx index 8d9582fba..0c173fae3 100644 --- a/src/Container/Component_i.cxx +++ b/src/Container/Component_i.cxx @@ -104,6 +104,8 @@ Engines_Component_i::Engines_Component_i(CORBA::ORB_ptr orb, _graphName("") , _nodeName(""), _studyId(-1), + _id(0), + _contId(0), _CanceledThread(false) { MESSAGE("Component constructor with instanceName "<< _instanceName); @@ -154,21 +156,14 @@ Engines_Component_i::Engines_Component_i(CORBA::ORB_ptr orb, _graphName("") , _nodeName(""), _studyId(-1), + _id(0), + _contId(0), _CanceledThread(false) { MESSAGE("Component constructor with instanceName "<< _instanceName); _orb = CORBA::ORB::_duplicate(orb); _poa = PortableServer::POA::_duplicate(poa); _container=Engines::Container::_duplicate(container); - try - { - _contId=_poa->reference_to_id(container); - } - catch(PortableServer::POA::WrongAdapter) - { - //not created by this poa - _contId = 0; - } const CORBA::String_var ior = _orb->object_to_string(_container); if(regist) _myConnexionToRegistry = new RegistryConnexion(0, 0, ior,"theSession", _instanceName.c_str()); @@ -189,7 +184,11 @@ Engines_Component_i::~Engines_Component_i() MESSAGE("Component destructor"); Engines_Container_i::decInstanceCnt(_interfaceName); if(_myConnexionToRegistry)delete _myConnexionToRegistry; + _myConnexionToRegistry = 0 ; if(_notifSupplier)delete _notifSupplier; + _notifSupplier = 0; + if(_id) delete _id; + _id=0; } //============================================================================= @@ -260,14 +259,7 @@ void Engines_Component_i::destroy() { MESSAGE("Engines_Component_i::destroy()"); //SCRUTE(_refcount_value()); - - if(_myConnexionToRegistry)delete _myConnexionToRegistry; - _myConnexionToRegistry = 0 ; - if(_notifSupplier)delete _notifSupplier; - _notifSupplier = 0; _poa->deactivate_object(*_id); - if(_id) - delete(_id) ; //SCRUTE(_refcount_value()); _remove_ref(); //SCRUTE(_refcount_value()); @@ -573,7 +565,8 @@ CORBA::Long Engines_Component_i::CpuUsed_impl() Engines_Container_i *Engines_Component_i::GetContainerPtr() { - return dynamic_cast(_poa->id_to_servant(*_contId)) ; + PortableServer::ObjectId_var contId=_poa->reference_to_id(_container); + return dynamic_cast(_poa->id_to_servant(contId)) ; } //============================================================================= @@ -622,14 +615,8 @@ PortableServer::ObjectId * Engines_Component_i::getId() void Engines_Component_i::beginService(const char *serviceName) { -#ifndef WIN32 - MESSAGE(pthread_self() << "Send BeginService notification for " <::iterator it; for (it = _fieldsDict.begin(); it != _fieldsDict.end(); it++) { @@ -668,21 +650,10 @@ void Engines_Component_i::beginService(const char *serviceName) { const char* value; (*it).second >>= value; - // ---todo: replace __GNUC__ test by an autoconf macro AC_CHECK_FUNC. -#if defined __GNUC__ -// int ret = setenv(cle.c_str(), value, overwrite); - setenv(cle.c_str(), value, overwrite); -#else - //CCRT porting : setenv not defined in stdlib.h std::string s(cle); s+='='; s+=value; - // char* cast because 1st arg of linux putenv function - // is not a const char* ! -// int ret=putenv((char *)s.c_str()); putenv((char *)s.c_str()); - //End of CCRT porting -#endif MESSAGE("--- setenv: "<