X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=kernel%2Fsrc%2FbbtkFactory.cxx;h=37563de8e3523386c3d7076837e0d32c0bf15a2c;hb=a48bf3d21a4f9a6b54792b965878c7f69c2099f4;hp=bc21a292287b96f3cdc776d07d76c3e4dcb812c4;hpb=5d503ab0e50fbae3cd2ebd26e6c815557abbe42e;p=bbtk.git diff --git a/kernel/src/bbtkFactory.cxx b/kernel/src/bbtkFactory.cxx index bc21a29..37563de 100644 --- a/kernel/src/bbtkFactory.cxx +++ b/kernel/src/bbtkFactory.cxx @@ -1,22 +1,33 @@ -/*========================================================================= - -Program: bbtk -Module: $RCSfile: bbtkFactory.cxx,v $ -Language: C++ - -Date: $Date: 2008/07/01 07:58:28 $ -Version: $Revision: 1.37 $ - - -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. +/*========================================================================= + Program: bbtk + Module: $RCSfile: bbtkFactory.cxx,v $ + Language: C++ + Date: $Date: 2009/06/08 14:50:03 $ + Version: $Revision: 1.45 $ +=========================================================================*/ -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. +/* --------------------------------------------------------------------- + +* 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::Factory : can load and unload dynamic libraries containing @@ -28,6 +39,7 @@ PURPOSE. See the above copyright notices for more information. #include "bbtkConnection.h" #include "bbtkConfigurationFile.h" #include "bbtkUtilities.h" +#include "bbtkConfigurationFile.h" #include // for struct stat stFileInfo @@ -37,6 +49,7 @@ PURPOSE. See the above copyright notices for more information. #include // std::toupper +#include namespace bbtk { @@ -45,7 +58,7 @@ namespace bbtk /// Default ctor Factory::Pointer Factory::New() { - bbtkDebugMessage("Kernel",9,"Factory::New()"< ~Factory()"< Factory::Reset()"<GetName()<<" " + bbtkMessage("output",2,p->GetName()<<" " <GetVersion() <<" " <GetAuthor() << " Category(s) :" <GetCategory() <GetDescription()<GetDescription()<AddFactory(GetThisPointer()); mPackageMap[pkgname] = p; @@ -136,7 +149,7 @@ namespace bbtk // // lastname : string before the last / (if any), or user supplied name - bbtkDebugMessageInc("Kernel",7,"Factory::LoadPackage(\""< package_paths; @@ -154,7 +167,7 @@ namespace bbtk iUnload = mPackageMap.find(pkgname); if (iUnload != mPackageMap.end()) { - bbtkMessage("Output",2,"["<< pkgname <<"] already loaded" << std::endl); + bbtkMessage("output",2,"["<< pkgname <<"] already loaded" << std::endl); return; } @@ -195,7 +208,7 @@ namespace bbtk // The following is *NOT* a debug time message : // It's a user intended message. // Please don't remove it. - bbtkMessage("Output",3," [" < mAlive; + do { + mAlive.clear(); + while (mPackageMap.begin() != mPackageMap.end()) + { + PackageMapType::iterator i = mPackageMap.begin(); + Package::WeakPointer p = i->second; + ClosePackage(i); + if (p.lock()) mAlive.push_back(p); + } + std::vector< Package::WeakPointer >::iterator i; + for (i=mAlive.begin();i!=mAlive.end();++i) + { + // If not dead : reinsert + if (i->lock()) + { + bbtkDebugMessage("kernel",7,"Package "<lock()->GetName() + <<" still alive"<lock()); + } + } + } + while (mPackageMap.size()>0); + + bbtkDebugDecTab("kernel",7); } //=================================================================== @@ -333,7 +368,7 @@ namespace bbtk /// Finally erases the package entry in the packages map void Factory::ClosePackage(PackageMapType::iterator& i) { - bbtkDebugMessageInc("Kernel",7,"Factory::ClosePackage(\"" + bbtkDebugMessageInc("kernel",7,"Factory::ClosePackage(\"" <second->GetName() <<"\")"<first << std::endl); + bbtkMessage("help",1, i->first << std::endl); if (details) { - i->second->PrintBlackBoxes(false,adaptors); + i->second->PrintHelpListDescriptors(false,adaptors); } } - bbtkDebugDecTab("Kernel",9); + bbtkDebugDecTab("kernel",9); } //=================================================================== //=================================================================== /// Displays help on a package - void Factory::HelpPackage(const std::string& name, bool adaptors) const + void Factory::PrintHelpPackage(const std::string& name, bool adaptors) const { - bbtkDebugMessageInc("Kernel",9,"Factory::HelpPackage(\""<first<<" "); + bbtkMessage("help",1, "Package "<first<<" "); if (i->second->GetVersion().length()>0) - bbtkMessageCont("Help",1,"v" <second->GetVersion()); + bbtkMessageCont("help",1,"v" <second->GetVersion()); if (i->second->GetAuthor().length()>0) - bbtkMessageCont("Help",1,"- "<second->GetAuthor()); + bbtkMessageCont("help",1,"- "<second->GetAuthor()); if (i->second->GetCategory().length()>0) - bbtkMessageCont("Help",1,"- "<second->GetCategory()); + bbtkMessageCont("help",1,"- "<second->GetCategory()); - bbtkMessageCont("Help",1,std::endl); - bbtkIncTab("Help",1); - bbtkMessage("Help",1,i->second->GetDescription()<second->GetNumberOfBlackBoxes()>0) + bbtkMessageCont("help",1,std::endl); + bbtkIncTab("help",1); + bbtkMessage("help",1,i->second->GetDescription()<second->GetNumberOfDescriptors()>0) { - bbtkMessage("Help",1, "Black boxes : "<second->PrintBlackBoxes(true,adaptors); + bbtkMessage("help",1, "Black boxes : "<second->PrintHelpListDescriptors(true,adaptors); } else { - bbtkMessage("Help",1, "No black boxes"< /// Returns the package to which it belongs - void Factory::HelpBlackBox(const std::string& name, + void Factory::PrintHelpDescriptor(const std::string& name, std::string& package, bool full) const { - bbtkDebugMessageInc("Kernel",9,"Factory::HelpBlackBox(\""<second->ContainsBlackBox(name)) + if (i->second->ContainsDescriptor(name)) { - i->second->HelpBlackBox(name,full); + i->second->PrintHelpDescriptor(name,full); package = i->second->GetName(); found = true; } } - bbtkDebugDecTab("Kernel",9); + bbtkDebugDecTab("kernel",9); if (!found) { bbtkError("No package of the factory contains any black box <" @@ -453,13 +490,13 @@ namespace bbtk /// Inserts a package in the factory void Factory::InsertPackage( Package::Pointer p ) { - bbtkDebugMessageInc("Kernel",9,"Factory::InsertPackage(\""<< + bbtkDebugMessageInc("kernel",9,"Factory::InsertPackage(\""<< p->GetName()<<"\")"<AddFactory(GetThisPointer()); mPackageMap[p->GetName()] = p; - bbtkDebugDecTab("Kernel",9); + bbtkDebugDecTab("kernel",9); } //=================================================================== @@ -467,7 +504,7 @@ namespace bbtk /// Removes a package from the factory (and deletes it) void Factory::RemovePackage( Package::Pointer p ) { - bbtkDebugMessageInc("Kernel",9,"Factory::RemovePackage(\""<< + bbtkDebugMessageInc("kernel",9,"Factory::RemovePackage(\""<< p->GetName()<<"\")"<GetName()<<"\") : package absent from factory"); } - bbtkDebugDecTab("Kernel",9); + bbtkDebugDecTab("kernel",9); } //=================================================================== @@ -496,7 +533,7 @@ namespace bbtk BlackBox::Pointer Factory::NewBlackBox(const std::string& type, const std::string& name) const { - bbtkDebugMessageInc("Kernel",7,"Factory::NewBlackBox(\"" + bbtkDebugMessageInc("kernel",7,"Factory::NewBlackBox(\"" <,<" <,\"" < widget adaptor available"); } - bbtkDebugDecTab("Kernel",7); + bbtkDebugDecTab("kernel",7); return b; } //=================================================================== @@ -585,7 +622,7 @@ namespace bbtk const DataInfo& typeout, std::string& adaptor) const { - bbtkDebugMessageInc("Kernel",8,"Factory::FindAdaptor(<" + bbtkDebugMessageInc("kernel",8,"Factory::FindAdaptor(<" <,<" <)"<,<" <)"<,<" <)"<"<second.lock()->GetTypeName(); - bbtkMessage("Kernel",5, + bbtkMessage("kernel",5, "===> Found first part : "<first.mTypeIn<<"->" <first.mTypeOut< Found second part : "< No second part found"<bbGetName()<<"\",\""<bbGetName()<<"\",\""<second; } else { - bbtkDebugDecTab("Kernel",9); + bbtkDebugDecTab("kernel",9); bbtkError("package \""<second->CheckBoxes(); + i->second->Check(); } bbtkMessage("debug",1,"****** Checking Factory "<<(void*)this <<" ... OK"<first.c_str(),url.c_str(),";" ); } fprintf( ff , "}\n\n"); - bbtkDebugDecTab("Kernel",9); + bbtkDebugDecTab("kernel",9); } //=================================================================== @@ -796,41 +833,41 @@ namespace bbtk PackageMapType::const_iterator i; for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i ) { - if (i->second->ContainsBlackBox(name)) - { + if (i->second->ContainsDescriptor(name)) + { std::string separator = ConfigurationFile::GetInstance().Get_file_separator (); - - // Don't pollute the file store with "temp_dir" directories ... + + // Don't pollute the file store with "temp_dir" directories ... std::string default_doc_dir = ConfigurationFile::GetInstance().Get_default_temp_dir(); std::string directory = "\"" + default_doc_dir + separator + "temp_dir" +separator + "\""; std::string filename2 = default_doc_dir + separator + "temp_dir" + separator + "tmp.html"; - + #if defined(_WIN32) - std::string command("start \"Titre\" /D "); + std::string command("start \"Titre\" /D "); #else - std::string command("gnome-open "); + std::string command("gnome-open "); #endif - command=command + directory +" tmp.html"; - FILE *ff; - ff=fopen(filename2.c_str(),"w"); - - fprintf(ff,"TMP \n"); - - - //fprintf(ff, "Link\n", i->second->GetDocURL().c_str(),name.c_str() ); - fclose(ff); - system( command.c_str() ); - found = true; - } + command=command + directory +" tmp.html"; + FILE *ff; + ff=fopen(filename2.c_str(),"w"); + + fprintf(ff,"TMP \n"); + + + //fprintf(ff, "Link\n", i->second->GetDocURL().c_str(),name.c_str() ); + fclose(ff); + system( command.c_str() ); + found = true; + } } - - bbtkDebugDecTab("Kernel",9); + + bbtkDebugDecTab("kernel",9); if (!found) { - bbtkError("No package of the factory contains any black box <" - <"); + bbtkError("No package of the factory contains any black box <" + <"); } } @@ -840,7 +877,7 @@ namespace bbtk void Factory::CreateHtmlIndex(IndexEntryType type, const std::string& filename) { - bbtkDebugMessageInc("Kernel",9,"Factory::CreateHtmlIndex(\"" + bbtkDebugMessageInc("kernel",9,"Factory::CreateHtmlIndex(\"" <second; if (pack->GetName()=="user") continue; - Package::BlackBoxMapType::const_iterator j; - for (j = pack->GetBlackBoxMap().begin(); - j!= pack->GetBlackBoxMap().end(); + Package::DescriptorMapType::const_iterator j; + for (j = pack->GetDescriptorMap().begin(); + j!= pack->GetDescriptorMap().end(); ++j) { @@ -976,7 +1013,9 @@ namespace bbtk s << "  -  \n"; s << "\n"; - s << "first << "/main.html>(Doxygen documentation of the source)\n"; +//EED 26Mars2009 + std::string bin_path = bbtk::ConfigurationFile::GetInstance().Get_bin_path(); + s << "first << "/main.html>(Doxygen documentation of the source)\n"; } else { @@ -1024,7 +1063,7 @@ namespace bbtk //---------------------- // End - bbtkDebugDecTab("Kernel",9); + bbtkDebugDecTab("kernel",9); } //==========================================================================