/*========================================================================= Program: bbtk Module: $RCSfile: bbtkFactory.cxx,v $ Language: C++ Date: $Date: 2008/01/30 09:28:15 $ Version: $Revision: 1.7 $ 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. =========================================================================*/ /** *\file *\brief Class bbtk::Factory : can load and unload dynamic libraries containing * black boxes packages and create instances of the black boxes registered * in the packages loaded. */ #include "bbtkFactory.h" #include "bbtkMessageManager.h" #include "bbtkConnection.h" #include "bbtkConfigurationFile.h" #include "bbtkUtilities.h" #include // for struct stat stFileInfo #if defined(_WIN32) #include // for getcwd #endif // was in gdcm ... /* #ifdef _MSC_VER # define getcwd _getcwd #endif #if defined(_MSC_VER) || defined(__BORLANDC__) # include #else # include #endif */ namespace bbtk { typedef Package* (*PackageAccessor)(); typedef void (*PackageDeleteFunction)(); //=================================================================== /// Default ctor Factory::Factory() { bbtkDebugMessage("Core",7,"Factory::Factory()"<[" <[" <GetBBTKVersion() != bbtk::GetVersion() ) { std::string v(pack.mPackage->GetBBTKVersion()); UnLoadPackage(pkgname); bbtkError(" package build with bbtk version " << v << " whereas application build with version " << bbtk::GetVersion()); } std::string separator = ConfigurationFile::GetInstance().Get_file_separator (); //BBTK_STRINGIFY_SYMBOL(BBTK_DOC_REL_PATH) std::string docreldoc = separator + "packages" + separator + pkgname + separator + "bbdoc" + separator + "index.html"; std::string reldoc = ".." + separator + ".." + separator + ".." + docreldoc; std::string doc = path + separator + ".." + separator + BBTK_STRINGIFY_SYMBOL(BBTK_DOC_REL_PATH) + docreldoc; pack.mPackage->SetDocURL(doc); pack.mPackage->SetDocRelativeURL(reldoc); //=================================================================== bbtkMessage("Output",2,pack.mPackage->GetName()<<" " <GetVersion() <<" (bbtk " <GetBBTKVersion()<<") " <GetAuthor() <GetDescription()<.so" for linux systems, /// - "bb.dll" for windows systems. /// If it succeeds, then tries to load the symbols "GetPackage" and "DeletePackage". /// "GetPackage" is called to get the pointer on the bbtk::Package of the library /// ("DeletePackage" is not used, its presence is just checked before loading the package). /// now, filename is only the last name (no longer the full name!) /// it will be searched within *all* the paths given in bbtk_config.xml /// verbose = true (set by "config v") displays the loading process void Factory::LoadPackage( const std::string& name, bool use_configuration_file, bool verbose) { // Note : in the following : // name : the user supplied name // - abreviated name e.g. pkg pkg.so libbpkg libbbpkg.so // - relative full name e.g. ./libbbpkg.so ../../libbbpkg.so // - absolute full name e.g. /home/usrname/proj/lib/libbbpkg.so // same for Windows, with c:, d: ... // // lastname : string before the last / (if any), or user supplied name bbtkDebugMessageInc("Core",7,"Factory::LoadPackage(\""< package_paths; std::string libname; // full path library name std::string pkgname; // e.g. libbb.so std::string upath; pkgname = Utilities::ExtractPackageName(name,upath); bbtkMessage("Debug",1,"Package name ["<0) // ------------------------------------- check user supplied location { if (name[0] != '.' && name[0] != '/' && name[1]!= ':') { bbtkError("Use absolute or relative path name! ["<::iterator i; for (i=package_paths.begin();i!=package_paths.end();++i) { foundFile = false; path = *i; // we *really* want '.' to be the current working directory if (path == ".") { char buf[2048]; // for getcwd char * currentDir = getcwd(buf, 2048); std::string cwd(currentDir); path = currentDir; } libname = Utilities::MakeLibnameFromPath(path, pkgname); bbtkMessage("Debug",2,"-> Trying to load [" << libname << "]" <DeletePackage" of the dynamic library (responsible for package desallocation) /// - Closes the dynamic library /// - Erases the package entry in the packages map /// /// Else simply erases the package entry in the packages map void Factory::ClosePackage(PackageMapType::iterator& i) { bbtkDebugMessageInc("Core",7,"Factory::ClosePackage(\"" <second.mPackage->GetName() <<"\")"<second.mDynamicLibraryHandler) { // If it is a dynamically loaded package // Loads the Package delete function std::string delfname(i->second.mPackage->GetName()); delfname += "DeletePackage"; #if defined(__GNUC__) void *delf = dlsym(i->second.mDynamicLibraryHandler, delfname.c_str()); if (!delf) { bbtkError("could not close package \"" <second.mPackage->GetName() <<"\" :"<second.mDynamicLibraryHandler, delfname.c_str()); if (!delf) { bbtkError("could not close package \"" <second.mPackage->GetName() <<"\" : "<second.mDynamicLibraryHandler); #elif defined(_WIN32) FreeLibrary(i->second.mDynamicLibraryHandler); #endif } else { // If it is a manually inserted package delete i->second.mPackage; } // remove the entry in the map mPackageMap.erase(i); bbtkDebugDecTab("Core",7); } //=================================================================== //=================================================================== /// Displays the list of packages loaded void Factory::PrintPackages(bool details, bool adaptors) const { bbtkDebugMessageInc("Core",9,"Factory::PrintPackages"<first << std::endl); if (details) { i->second.mPackage->PrintBlackBoxes(false,adaptors); } } bbtkDebugDecTab("Core",9); } //=================================================================== //=================================================================== /// Displays help on a package void Factory::HelpPackage(const std::string& name, bool adaptors) const { bbtkDebugMessageInc("Core",9,"Factory::HelpPackage(\""<first<<" "); if (i->second.mPackage->GetVersion().length()>0) bbtkMessageCont("Help",1,"v" <second.mPackage->GetVersion()); if (i->second.mPackage->GetAuthor().length()>0) bbtkMessageCont("Help",1,"- "<second.mPackage->GetAuthor()); bbtkMessageCont("Help",1,std::endl); bbtkIncTab("Help",1); bbtkMessage("Help",1,i->second.mPackage->GetDescription()<second.mPackage->GetNumberOfBlackBoxes()>0) { bbtkMessage("Help",1, "Black boxes : "<second.mPackage->PrintBlackBoxes(true,adaptors); } else { bbtkMessage("Help",1, "No black boxes"< void Factory::HelpBlackBox(const std::string& name, bool full) const { bbtkDebugMessageInc("Core",9,"Factory::HelpBlackBox(\""<second.mPackage->ContainsBlackBox(name)) { i->second.mPackage->HelpBlackBox(name,full); found = true; } } bbtkDebugDecTab("Core",9); if (!found) { bbtkError("No package of the factory contains any black box <" <"); } } //=================================================================== //=================================================================== /// Inserts a package in the factory void Factory::InsertPackage( Package* p ) { bbtkDebugMessageInc("Core",9,"Factory::InsertPackage(\""<< p->GetName()<<"\")"<GetName()] = pack; bbtkDebugDecTab("Core",9); } //=================================================================== //=================================================================== /// Removes a package from the factory (and deletes it) void Factory::RemovePackage( Package* p ) { bbtkDebugMessageInc("Core",9,"Factory::RemovePackage(\""<< p->GetName()<<"\")"<second.mPackage == p) break; }; if (i!=mPackageMap.end()) { ClosePackage(i); } else { bbtkError("Factory::RemovePackage(\""<< p->GetName()<<"\") : package absent from factory"); } bbtkDebugDecTab("Core",9); } //=================================================================== //=================================================================== /// Creates an instance of a black box of type with name BlackBox* Factory::NewBlackBox(const std::string& type, const std::string& name) const { bbtkDebugMessageInc("Core",7,"Factory::NewBlackBox(\"" <second.mPackage->NewBlackBox(type,name); if (b) break; } if (!b) { bbtkError("black box type \""< with name BlackBox* Factory::NewAdaptor(TypeInfo typein, TypeInfo typeout, const std::string& name) const { bbtkDebugMessageInc("Core",8,"Factory::NewAdaptor(<" <,<" <,\"" <second.mPackage->NewAdaptor(typein,typeout,name); if (b) break; } if (!b) { bbtkError("no <" < to <" < adaptor available"); } bbtkDebugDecTab("Core",7); return b; } //=================================================================== //=================================================================== /// Creates an instance of a connection Connection* Factory::NewConnection(BlackBox* from, const std::string& output, BlackBox* to, const std::string& input) const { bbtkDebugMessage("Core",7,"Factory::NewConnection(\"" <bbGetName()<<"\",\""<bbGetName()<<"\",\""<bbGetOutputType(output).name() ); std::string t2 ( to->bbGetInputType(input).name() ); if ( t1 == t2 ) //from->bbGetOutputType(output) == // to->bbGetInputType(input) ) { c = new Connection(from,output,to,input); } else { // std::cout << "Adaptive connection "<bbGetName() + "." + output + "-" + to->bbGetName() + "." + input; BlackBox* b = 0; PackageMapType::const_iterator i; for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i ) { b = i->second.mPackage->NewAdaptor(from->bbGetOutputType(output), to->bbGetInputType(input), name); if (b) break; } if (!b) { bbtkError("did not find any <" <bbGetOutputType(output)) <<"> to <" <bbGetInputType(input)) <<"> adaptor"); } c = new AdaptiveConnection(from,output,to,input,b); } bbtkDebugDecTab("Core",7); return c; */ } //=================================================================== //=================================================================== const Package* Factory::GetPackage(const std::string& name) const { bbtkDebugMessageInc("Core",9,"Factory::GetPackage(\""<second.mPackage; } else { bbtkDebugDecTab("Core",9); bbtkError("package \""<second.mPackage; } else { bbtkDebugDecTab("Core",9); bbtkError("package \""<first)->GetDocURL(); fprintf(ff," %s [shape=ellipse, URL=\"%s\"]%s\n",i->first.c_str(),url.c_str(),";" ); } fprintf( ff , "}\n\n"); bbtkDebugDecTab("Core",9); } //=================================================================== void Factory::ShowGraphTypes(const std::string& name) const { bool found = false; PackageMapType::const_iterator i; for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i ) { if (i->second.mPackage->ContainsBlackBox(name)) { std::string separator = ConfigurationFile::GetInstance().Get_file_separator (); // Don't pollute the file store with "doc_tmp" directories ... std::string default_doc_dir = ConfigurationFile::GetInstance().Get_default_doc_tmp(); std::string directory = "\"" + default_doc_dir + separator + "doc_tmp" +separator + "\""; std::string filename2 = default_doc_dir + separator + "doc_tmp" + separator + "tmp.html"; #if defined(_WIN32) std::string command("start \"Titre\" /D "); #else 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.mPackage->GetDocURL().c_str(),name.c_str() ); fclose(ff); system( command.c_str() ); found = true; } } bbtkDebugDecTab("Core",9); if (!found) { bbtkError("No package of the factory contains any black box <" <"); } } }