X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkPackage.cxx;h=2a1fc8d3772fdf05e8f6aa4c535c05eb6a6e9ddb;hb=2a9b694dca646ad9562f47a5bdb4f209059bd22a;hp=29cd1dc4463af4836125e11c4a50efb44bc0d60c;hpb=b60f4996d8155665b79e20f85999f287bf1d73d3;p=bbtk.git diff --git a/kernel/src/bbtkPackage.cxx b/kernel/src/bbtkPackage.cxx index 29cd1dc..2a1fc8d 100644 --- a/kernel/src/bbtkPackage.cxx +++ b/kernel/src/bbtkPackage.cxx @@ -1,25 +1,40 @@ -/*========================================================================= - + +/*========================================================================= Program: bbtk Module: $RCSfile: bbtkPackage.cxx,v $ Language: C++ - Date: $Date: 2008/06/10 19:19:42 $ - Version: $Revision: 1.20 $ - - Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de - l'Image). All rights reserved. See doc/license.txt or - http://www.creatis.insa-lyon.fr/Public/bbtk/License.html for details. - - This software is distributed WITHOUT ANY WARRANTY; without even - the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR - PURPOSE. See the above copyright notices for more information. - + Date: $Date: 2009/05/28 12:18:51 $ + Version: $Revision: 1.28 $ =========================================================================*/ + +/* --------------------------------------------------------------------- + +* Copyright (c) CREATIS-LRMN (Centre de Recherche en Imagerie Medicale) +* Authors : Eduardo Davila, Laurent Guigues, Jean-Pierre Roux +* +* This software is governed by the CeCILL-B license under French law and +* abiding by the rules of distribution of free software. You can use, +* modify and/ or redistribute the software under the terms of the CeCILL-B +* license as circulated by CEA, CNRS and INRIA at the following URL +* http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html +* or in the file LICENSE.txt. +* +* As a counterpart to the access to the source code and rights to copy, +* modify and redistribute granted by the license, users are provided only +* with a limited warranty and the software's author, the holder of the +* economic rights, and the successive licensors have only limited +* liability. +* +* The fact that you are presently reading this means that you have had +* knowledge of the CeCILL-B license and that you accept its terms. +* ------------------------------------------------------------------------ */ + /** *\file *\brief Class bbtk::Package : registers black boxes descriptors and is able to create instances of the black boxes registered. */ #include "bbtkPackage.h" +#include "bbtkComplexBlackBoxDescriptor.h" #include "bbtkMessageManager.h" #include "bbtkConfigurationFile.h" #include @@ -36,16 +51,14 @@ namespace bbtk Package::Pointer Package::New(const std::string& name, const std::string& author, const std::string& description, - const std::string& version, - const std::string& BBTKVersion) + const std::string& version) { bbtkDebugMessage("object",1,"##> Package::New('"< Package::Package('"< Package('"< Package::~Package(\""< ~Package(\""<GetName(); - - bbtkDebugMessage("package",5,"--- Releasing descriptor '" - <GetBlackBoxMap().find(descname); - if (desc == pack.lock()->GetBlackBoxMap().end()) - { - bbtkDebugMessage("package",5, - " Descriptor has already been released" - <second; - desc->second.reset(); - // if it is dead : remove it - if (pdesc.expired()) - { - bbtkDebugMessage("package",2," ==> '"<GetName(); + + bbtkDebugMessage("package",5,"--- Releasing descriptor '" + <GetBlackBoxMap().find(descname); + if (desc == pack.lock()->GetBlackBoxMap().end()) + { + bbtkDebugMessage("package",5, + " Descriptor has already been released" + <second; + desc->second.reset(); + // if it is dead : remove it + if (pdesc.expired()) + { + bbtkDebugMessage("package",2," ==> '"<GetBlackBoxMap().find(descname); + if (desc != pack.lock()->GetBlackBoxMap().end()) pack.lock()->GetBlackBoxMap().erase(desc); + } else { //pdesc.expired + bbtkDebugMessage("package",5," ... Descriptor still alive (" + <GetBlackBoxMap()[descname] = pdesc.lock(); + } // pdesc.expired } - desc = pack.lock()->GetBlackBoxMap().find(descname); - if (desc != pack.lock()->GetBlackBoxMap().end()) - pack.lock()->GetBlackBoxMap().erase(desc); - } - else - { - bbtkDebugMessage("package",5," ... Descriptor still alive (" - <GetBlackBoxMap()[descname] = pdesc.lock(); - } - } //========================================================================== @@ -220,8 +228,14 @@ namespace bbtk break; } - PackageReleaseBlackBoxDescriptorInternal(pack,*descname); - +#if defined(MACOSX) + BlackBoxDescriptor::Pointer desc = pack.lock()->mBlackBoxMap[*descname]; + if ( (dyn==0) || (boost::dynamic_pointer_cast(desc)) ) + PackageReleaseBlackBoxDescriptorInternal(pack,*descname); +#else + PackageReleaseBlackBoxDescriptorInternal(pack,*descname); +#endif + } // @@ -234,8 +248,11 @@ namespace bbtk } +#ifdef BBTK_COMPILE_DEBUG_MESSAGES + bbtkDebugMessage("package",2,"<== Package::Release('"<< packname<<"')"<mDynamicLibraryHandler ? 1:0; @@ -252,6 +269,7 @@ namespace bbtk bbtkDebugMessage("package",1," ... Package has been released" < Package::UnLoadReleasedDynamicallyLoadedPackages()"<::iterator i; - for (i=mReleasedDynamicallyLoadedPackages.begin(); - i!=mReleasedDynamicallyLoadedPackages.end(); - ++i) - { - if (!i->expired()) UnLoad(*i); - } + +//JCP- 21-04-09 + if(mReleasedDynamicallyLoadedPackages.size()>0){ + for (i=mReleasedDynamicallyLoadedPackages.begin(); + i!=mReleasedDynamicallyLoadedPackages.end(); + ++i) + { + if (!i->expired()) UnLoad(*i); + } + } +//JCP- 21-04-09 bbtkDebugMessage("package",5,"<== Package::UnLoadReleasedDynamicallyLoadedPackages()"<