X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkFactory.cxx;h=d541db35b9203e89b984a63daa7c2dd1a7760eb5;hb=72e1281cc66954975acc2414264239dcf055c15f;hp=eb0b829339d9e4e6330f7071e70bf995c9efa629;hpb=a26195c366a89795288009cf7e20f11afa494970;p=bbtk.git diff --git a/kernel/src/bbtkFactory.cxx b/kernel/src/bbtkFactory.cxx index eb0b829..d541db3 100644 --- a/kernel/src/bbtkFactory.cxx +++ b/kernel/src/bbtkFactory.cxx @@ -1,22 +1,40 @@ -/*========================================================================= - -Program: bbtk -Module: $RCSfile: bbtkFactory.cxx,v $ -Language: C++ +/* + # --------------------------------------------------------------------- + # + # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image + # pour la SantÈ) + # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton + # Previous Authors : Laurent Guigues, Jean-Pierre Roux + # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil + # + # 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. + # ------------------------------------------------------------------------ */ -Date: $Date: 2008/01/22 15:02:00 $ -Version: $Revision: 1.1 $ - -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: 2012/11/16 08:49:01 $ + Version: $Revision: 1.55 $ +=========================================================================*/ -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 @@ -27,6 +45,8 @@ PURPOSE. See the above copyright notices for more information. #include "bbtkMessageManager.h" #include "bbtkConnection.h" #include "bbtkConfigurationFile.h" +#include "bbtkUtilities.h" +#include "bbtkConfigurationFile.h" #include // for struct stat stFileInfo @@ -34,33 +54,28 @@ PURPOSE. See the above copyright notices for more information. #include // for getcwd #endif +#include // std::toupper -// was in gdcm ... -/* -#ifdef _MSC_VER -# define getcwd _getcwd -#endif - -#if defined(_MSC_VER) || defined(__BORLANDC__) -# include -#else -# include -#endif - -*/ - +#include namespace bbtk { - typedef Package* (*PackageAccessor)(); - typedef void (*PackageDeleteFunction)(); + //=================================================================== + /// Default ctor + Factory::Pointer Factory::New() + { + bbtkDebugMessage("kernel",9,"Factory::New()"< ~Factory()"< Factory::Reset()"< usefull in many places (at least : ConfigurationFile, Factory, Interpreter) -// should be factorized ( "bbtk::Util class ?) -/* -bool Factory::FileExists(std::string strFilename) -bool Factory::IsAtRoot(std::string cwd) -std::string Factory::ExtractPackageName(const std::string &name) -std::string Factory::ExpandLibName(const std::string &name, bool verbose) -std::string Factory::MakeLibnameFromPath(std::string path, std::string pkgname) -bool Factory::CheckIfLibraryContainsPackage(std::string libname,std::string pkgname, bool verbose) -*/ - -// See : http://www.techbytes.ca/techbyte103.html for more O.S. -bool Factory::FileExists(std::string strFilename) { - struct stat stFileInfo; - bool blnReturn; - int intStat; - - // Attempt to get the file attributes - intStat = stat(strFilename.c_str(),&stFileInfo); - if(intStat == 0) { - // We were able to get the file attributes - // so the file obviously exists. - blnReturn = true; - } else { - // We were not able to get the file attributes. - // This may mean that we don't have permission to - // access the folder which contains this file. If you - // need to do that level of checking, lookup the - // return values of stat which will give you - // more details on why stat failed. - blnReturn = false; - } - - return(blnReturn); -} - -// =================================================================================== - - std::string Factory::ExtractPackageName(const std::string &name, - std::string& path) - { - std::string pkgname; - path = ""; - - std::string::size_type slash_position = name.find_last_of("/\\"); - if (slash_position != std::string::npos) - { - pkgname = name.substr(slash_position+1,std::string::npos); - path = name.substr(0,slash_position); - // std::cout << "F:P='"<.so - - // remove {libbb} if any - if (memcmp ( pkgname.c_str(), "libbb", 5) == 0) { - pkgname = pkgname.substr(5, pkgname.length()); - } - /* - /// \ \todo what would happen if (stupid) user names his package 'libbb' ?!? - /// \ --> Should be forbidden! - */ -#elif defined(_WIN32) - - // WIN 32 mechanism - // shared lib name = .dll - - // remove {bb} if any - if (memcmp (pkgname.c_str(), "bb", 2) == 0) { - pkgname = pkgname.substr(2, pkgname.length()); - } - - /* - /// \ \todo what would happen if (stupid) user names his package 'bb' ?!? - /// \ --> Should be forbidden! - */ -#else - bbtkError("neither __GNUC__ nor _WIN32 ?!? How did you compile ?"); -#endif - return pkgname; - } - -// =================================================================================== - std::string Factory::ExpandLibName(const std::string &name, bool verbose) + // =================================================================== + bool Factory::DoLoadPackage(std::string libname, + std::string pkgname, + std::string path) { - // ----- Think of expanding path name ( ./ ../ ../../ ) - - char buf[2048]; // for getcwd - char * currentDir = getcwd(buf, 2048); - std::string cwd(currentDir); - std::string libname(name); - // tooHigh : true is user supplies a library pathname with too many "../" - bool tooHigh = false; - - if ( name[0] == '/' || name[0] == '\\' ) - { - - return(libname); - } - else if (name[0] == '.' && (name[1] == '/' || name[1] == '\\') ) - { - libname = cwd + ConfigurationFile::GetInstance().Get_file_separator () + name.substr(2, name.length()); - return(libname); - } - else if ( name[0] == '.' && name[1] == '.' && (name[2] == '/' || name[2] == '\\') ) - { - if ( IsAtRoot(cwd) ) // hope it gets / (for Linux), C: D: (for Windows) - { - // if we are already at / or c: --> hopeless - if (verbose) - std::cout << " File path [" << name << "] doesn't exist" << std::endl; - tooHigh = true; - } - else + Package::Pointer p = Package::CreateFromDynamicLibrary(libname, + pkgname, + path); + if (p!=0) { - // iterate on ../ and go up from the current working dir! - std::string a(name); - bool alreadyProcessRoot = false; - for(;;) - { - std::string::size_type slash_position = cwd.find_last_of(ConfigurationFile::GetInstance().Get_file_separator ()); - if (slash_position != std::string::npos) { - if (slash_position == 0) - slash_position = 1; - cwd = cwd.substr(0,slash_position/*+1*/); - a = a.substr(3, name.length()); // remove ../ - if (a == "" || alreadyProcessRoot) - { - if (verbose) - std::cout << " File path [" << name << "] doesn't exist" << std::endl; - tooHigh = true; - break; - } - libname = cwd; - char c = cwd[cwd.size()-1]; - if (c != '/' && c != '\\' ) - libname += ConfigurationFile::GetInstance().Get_file_separator (); - libname += a; - - if ( a[0] != '.' ) // if . (probabely ../), loop again - break; - - if (IsAtRoot(cwd)) - alreadyProcessRoot = true; - } - } // end iterating on ../ + //=================================================================== + bbtkMessage("output",2,p->GetName()<<" " + <GetVersion() + <<" " + <GetAuthor() << " Category(s) :" + <GetCategory() + <GetDescription()<AddFactory(GetThisPointer()); + mPackageMap[pkgname] = p; + return true; } - if (tooHigh) - libname=""; -// std::cout << "=======================================3 libname [" << libname << "]" << std::endl; - - return (libname); - - } // ----- End of expanding path name ( ./ ../ ../../ ) - // avoid warnings - return(""); // will never get here! - } - -// =================================================================================== - - std::string Factory::MakeLibnameFromPath(std::string path, std::string pkgname) - { - std::string libname = path; - char c = path[path.size()-1]; -#if defined(__GNUC__) - if (c != '/') - libname += "/libbb"; - libname += pkgname; - libname += ".so"; - -#elif defined(_WIN32) - if (c != '\\') - libname = path+"\\bb"; - libname += pkgname; - libname += ".dll"; -#endif - return libname; + return false; + } - -// =================================================================================== - - - bool Factory::IsAtRoot(std::string cwd) - { - if ( cwd == "/" // hope it gets / (for Linux) - || (cwd.size() <= 3 && cwd[1] == ':') ) // hope it gets C: D: (for Windows) - return (true); - else - return(false); -} -// =================================================================================== - - bool Factory::DoLoadPackage(std::string libname, - std::string pkgname, - std::string path, - bool verbose) - { - -#if defined(__GNUC__) - - void *handler; - handler = dlopen(libname.c_str(), - BBTK_RTLD_TIME | BBTK_RTLD_SCOPE ); - if (!handler) - { - if (verbose) { - std::cout <<"[" <[" <[" <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; - std::cout << "doc='"<SetDocURL(doc); - pack.mPackage->SetDocRelativeURL(reldoc); - - //=================================================================== - bbtkMessage("Output",2,pack.mPackage->GetName()<<" " - <GetVersion() - <<" (bbtk " - <GetBBTKVersion()<<") " - <GetAuthor() - <GetDescription()<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) + + void Factory::LoadPackage( const std::string& name ) { + + // 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 + // 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: ... // - 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 = ExtractPackageName(name,upath); - - bbtkMessage("Debug",1,"Package name ["< 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; +//std::cout<<"JCP bbtkFactory.cxx void Factory::LoadPackage = path "< Trying to load [" << libname << "]" <0) package_paths.push_back(upath); - - // Add the path of config file - if (use_configuration_file) - { - std::vector::const_iterator pi; - for (pi =ConfigurationFile::GetInstance().Get_package_paths().begin(); - pi!=ConfigurationFile::GetInstance().Get_package_paths().end(); - ++pi) - package_paths.push_back(*pi); - } - - - bool ok = false; - bool foundFile = false; - - std::vector::iterator i; - for (i=package_paths.begin();i!=package_paths.end();++i) - { - foundFile = false; - std::string 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 = MakeLibnameFromPath(path, pkgname); - - bbtkMessage("Debug",2,"-> Trying to load ["< 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); + } + //=================================================================== + //=================================================================== /// \brief Close the package referenced by the iterator - /// - /// If it is a dynamically loaded package - /// - Loads and calls the function "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) + /// + /// First removes the factory from the set of factories which use the package + /// If the set is empty then : + /// If it is a dynamically loaded package : + /// - Loads and calls the function "DeletePackage" of the dynamic library (responsible for package desallocation) + /// - Closes the dynamic library + /// Else : + /// - deletes the package normally + /// + /// Finally erases the package entry in the packages map + void Factory::ClosePackage(PackageMapType::iterator& i) { - bbtkDebugMessageInc("Core",7,"Factory::ClosePackage(\"" - <second.mPackage->GetName() + bbtkDebugMessageInc("kernel",7,"Factory::ClosePackage(\"" + <second->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); - } + + // Removes this from the set of factories which use the package + i->second->RemoveFactory(GetThisPointer()); + Package::WeakPointer p = i->second; + // remove the entry in the map + mPackageMap.erase(i); + // Release the package if not already destroyed + if (p.lock()) + { + Package::Release(p); + } + bbtkDebugDecTab("kernel",7); + } //=================================================================== - + //=================================================================== - /// Displays the list of packages loaded - void Factory::PrintPackages(bool details, bool adaptors) const + void Factory::PrintHelpListPackages(bool details, bool adaptors) const { - bbtkDebugMessageInc("Core",9,"Factory::PrintPackages"<first << std::endl); + bbtkMessage("help",1, i->first << std::endl); if (details) { - i->second.mPackage->PrintBlackBoxes(false,adaptors); + i->second->PrintHelpListDescriptors(false,adaptors); } } - bbtkDebugDecTab("Core",9); + bbtkDebugDecTab("kernel",9); } //=================================================================== //=================================================================== /// Displays help on a package - void Factory::HelpPackage(const std::string& name/* &userSuppliedName */, bool adaptors) const + void Factory::PrintHelpPackage(const std::string& name, bool adaptors) const { - // std::string name = ExtractPackageName(userSuppliedName); - 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, "Package "<first<<" "); + + if (i->second->GetVersion().length()>0) + bbtkMessageCont("help",1,"v" <second->GetVersion()); + + if (i->second->GetAuthor().length()>0) + bbtkMessageCont("help",1,"- "<second->GetAuthor()); + + if (i->second->GetCategory().length()>0) + bbtkMessageCont("help",1,"- "<second->GetCategory()); + + bbtkMessageCont("help",1,std::endl); + bbtkIncTab("help",1); + bbtkMessage("help",1,i->second->GetDescription()<second->GetNumberOfDescriptors()>0) { - bbtkMessage("Help",1, "Black boxes : "<second.mPackage->PrintBlackBoxes(true,adaptors); + bbtkMessage("help",1, "Black boxes : "<second->PrintHelpListDescriptors(true,adaptors); } else { - bbtkMessage("Help",1, "No black boxes"< - void Factory::HelpBlackBox(const std::string& name, bool full) const + /// Returns the package to which it belongs + void Factory::PrintHelpDescriptor(const std::string& name, + std::string& package, + bool full) const { - bbtkDebugMessageInc("Core",9,"Factory::HelpBlackBox(\""<second.mPackage->ContainsBlackBox(name)) + if (i->second->ContainsDescriptor(name)) { - i->second.mPackage->HelpBlackBox(name,full); + i->second->PrintHelpDescriptor(name,full); + package = i->second->GetName(); found = true; } } - bbtkDebugDecTab("Core",9); + bbtkDebugDecTab("kernel",9); if (!found) { bbtkError("No package of the factory contains any black box <" @@ -758,218 +512,393 @@ bool Factory::FileExists(std::string strFilename) { //=================================================================== /// Inserts a package in the factory - void Factory::InsertPackage( Package* p ) + void Factory::InsertPackage( Package::Pointer p ) { - bbtkDebugMessageInc("Core",9,"Factory::InsertPackage(\""<< + bbtkDebugMessageInc("kernel",9,"Factory::InsertPackage(\""<< p->GetName()<<"\")"<GetName()] = pack; - bbtkDebugDecTab("Core",9); + p->AddFactory(GetThisPointer()); + mPackageMap[p->GetName()] = p; + bbtkDebugDecTab("kernel",9); } //=================================================================== //=================================================================== /// Removes a package from the factory (and deletes it) - void Factory::RemovePackage( Package* p ) + void Factory::RemovePackage( Package::Pointer p ) { - bbtkDebugMessageInc("Core",9,"Factory::RemovePackage(\""<< + bbtkDebugMessageInc("kernel",9,"Factory::RemovePackage(\""<< p->GetName()<<"\")"<second.mPackage == p) break; + if (i->second == p) break; }; if (i!=mPackageMap.end()) { - ClosePackage(i); + ClosePackage(i); } else { - bbtkError("Factory::RemovePackage(\""<< - p->GetName()<<"\") : package absent from factory"); + bbtkError("Factory::RemovePackage(\""<< + p->GetName()<<"\") : package absent from factory"); } - bbtkDebugDecTab("Core",9); + bbtkDebugDecTab("kernel",9); } - //=================================================================== + //=================================================================== + std::string Factory::GetPackageNameOfaBlackBox(std::string boxType) + { + std::string packageName=""; + PackageMapType::const_iterator i; + + std::size_t found = boxType.find(":"); + if (found!=std::string::npos) + { + packageName = boxType.substr(0,found); + } else { + for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i ) + { + if ( i->second->ifBoxExist( boxType ) == true) + { + packageName = i->first; + } // if ifBoxExist + } // for i + + } // if found + return packageName; + } + + //=================================================================== + std::string Factory::GetTypeNameOfaBlackBox(std::string boxType) + { + std::string typeName=""; + + std::size_t found = boxType.find(":"); + if (found!=std::string::npos) + { + typeName = boxType.substr(found+1); + } else { + typeName=boxType; + } // if found + return typeName; + } + + + + //=================================================================== /// Creates an instance of a black box of type with name - BlackBox* Factory::NewBlackBox(const std::string& type, + BlackBox::Pointer Factory::NewBlackBox(const std::string& type, const std::string& name) const { - bbtkDebugMessageInc("Core",7,"Factory::NewBlackBox(\"" + bbtkDebugMessageInc("kernel",7,"Factory::NewBlackBox(\"" <GetPackageNameOfaBlackBox(tmp); + std::string type2 = ((bbtk::Factory*)this)->GetTypeNameOfaBlackBox(tmp); + i = mPackageMap.find(packageName); + if (i != mPackageMap.end()) + { + b = i->second->NewBlackBox(type2,name); + } else { + b =BlackBox::Pointer(); + } + +/* + std::size_t found = type.find(":"); + if (found!=std::string::npos) + { + std::string packageName = type.substr(0,found); + std::string type2 = type.substr(found+1); + i = mPackageMap.find(packageName); + if (i != mPackageMap.end()) + { + b = i->second->NewBlackBox(type2,name); + } else { + b =BlackBox::Pointer(); + } + } else { + for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i ) + { + b = i->second->NewBlackBox(type,name); + if (b) break; + } // for i + + } // if found : +*/ + + + if (!b) + { + bbtkError("black box type \""< with name + BlackBox::Pointer Factory::NewAdaptor(const DataInfo& typein, + const DataInfo& typeout, + const std::string& name) const + { + bbtkDebugMessageInc("kernel",8,"Factory::NewAdaptor(" + <second.mPackage->NewBlackBox(type,name); + b = i->second->NewAdaptor(typein,typeout,name); if (b) break; } if (!b) { - bbtkError("black box type \""< with name - BlackBox* Factory::NewAdaptor(TypeInfo typein, - TypeInfo typeout, - const std::string& name) const + BlackBox::Pointer Factory::NewWidgetAdaptor(const DataInfo& typein, + const DataInfo& typeout, + const std::string& name) const { - bbtkDebugMessageInc("Core",8,"Factory::NewAdaptor(<" - <,<" - <,\"" + bbtkDebugMessageInc("kernel",8,"Factory::NewWidgetAdaptor(<" + <,<" + <,\"" <second.mPackage->NewAdaptor(typein,typeout,name); + b = i->second->NewWidgetAdaptor(typein, + typeout, + name); if (b) break; } if (!b) { - bbtkError("no <" - < to <" - < adaptor available"); + bbtkError("no "< widget adaptor available"); } - bbtkDebugDecTab("Core",7); + bbtkDebugDecTab("kernel",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 + /// Creates an instance of a black box of type with name + bool Factory::FindAdaptor(const DataInfo& typein, + const DataInfo& typeout, + std::string& adaptor) const { - bbtkDebugMessage("Core",7,"Factory::NewConnection(\"" - <bbGetName()<<"\",\""<bbGetName()<<"\",\""<,<" + <)"<bbGetOutputType(output).name() ); - std::string t2 ( to->bbGetInputType(input).name() ); + bool b = false; + PackageMapType::const_iterator i; + for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i ) + { + b = i->second->FindAdaptor(typein, + typeout, + adaptor); + if (b) break; + } + /* + if (!b) + { + bbtkError("no "< widget adaptor available"); + } + */ + bbtkDebugDecTab("kernel",7); + return b; + } + //=================================================================== - if ( t1 == t2 ) - //from->bbGetOutputType(output) == - // to->bbGetInputType(input) ) + //=================================================================== + /// Creates an instance of a black box of type with name + bool Factory::FindWidgetAdaptor(const DataInfo& typein, + const DataInfo& typeout, + std::string& adaptor) const + { + bbtkDebugMessageInc("kernel",8,"Factory::FindWidgetAdaptor(<" + <,<" + <)"<second->FindWidgetAdaptor(typein, + typeout, + adaptor); + if (b) break; } - else + bbtkDebugDecTab("kernel",7); + return b; + } + //=================================================================== + + //=================================================================== + /// Creates an instance of a black box of type with name + bool Factory::FindWidgetAdaptor2(const DataInfo& typein, + const DataInfo& typeout, + std::string& widget, + std::string& adaptor) const + { + bbtkDebugMessageInc("kernel",8,"Factory::FindWidgetAdaptor(<" + <,<" + <)"<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); + b = i->second->FindWidgetAdaptor(typein, + typeout, + widget); + if (b) break; } - bbtkDebugDecTab("Core",7); + if (!b) + { + // Look for a widget adaptor with good nature out + bbtkMessage("kernel",5, + "*** Looking for a two pieces widget adaptor for : " + << typein << "->"<second->GetAdaptorMap().begin(); + j!=i->second->GetAdaptorMap().end(); + ++j) + { + if ( ( j->first.mKind == + BlackBoxDescriptor::DEFAULT_GUI) && + //(j->first.mTypeIn == typein) && + (j->first.mTypeOut.GetNature() == typeout.GetNature() ) + ) + { + widget = j->second.lock()->GetTypeName(); + bbtkMessage("kernel",5, + "===> Found first part : "<first.mTypeIn<<"->" + <first.mTypeOut<first.mTypeOut.GetType(), ""); + DataInfo to( typeout.GetType(), ""); + b = FindAdaptor( ti, to, adaptor ); + if (b) + { + bbtkMessage("kernel",5, + "===> Found second part : "< No second part found"<bbGetName()<<"\",\""<bbGetName()<<"\",\""<()); } //=================================================================== //=================================================================== - const Package* Factory::GetPackage(const std::string& name) const + Package::Pointer Factory::GetPackage(const std::string& name) const { - bbtkDebugMessageInc("Core",9,"Factory::GetPackage(\""<second.mPackage; + bbtkDebugDecTab("kernel",9); + return i->second; } else { - bbtkDebugDecTab("Core",9); + bbtkDebugDecTab("kernel",9); bbtkError("package \""<second.mPackage; - } - else - { - bbtkDebugDecTab("Core",9); - bbtkError("package \""<second->Check(); + } + bbtkMessage("debug",1,"****** Checking Factory "<<(void*)this + <<" ... OK"<first)->GetDocURL(); - fprintf(ff," %s [shape=ellipse, URL=\"%s\"]%s\n", - i->first.c_str(), - url.c_str(),";" ); + url=GetPackage(i->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); + bbtkDebugDecTab("kernel",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"; - + 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->ContainsDescriptor(name)) + { + std::string separator = ConfigurationFile::GetInstance().Get_file_separator (); + + // 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"); - + 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); + if (!found) + { + bbtkError("No package of the factory contains any black box <" + <"); + } + } + + + + + void Factory::CreateHtmlIndex(IndexEntryType type, + const std::string& filename) + { + bbtkDebugMessageInc("kernel",9,"Factory::CreateHtmlIndex(\"" + < > IndexType; + IndexType index; + // Builds the index map + PackageMapType::const_iterator i; + for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i ) + { + Package::Pointer pack = i->second; + if (pack->GetName()=="user") continue; + Package::DescriptorMapType::const_iterator j; + for (j = pack->GetDescriptorMap().begin(); + j!= pack->GetDescriptorMap().end(); + ++j) + { - //fprintf(ff, "Link\n", i->second.mPackage->GetDocURL().c_str(),name.c_str() ); - fclose(ff); - system( command.c_str() ); - found = true; - } - } + // Skip adaptors + if ( type==Adaptors ) + { + if (j->second->GetKind() == BlackBoxDescriptor::STANDARD ) + continue; + } + else + if (j->second->GetKind() != BlackBoxDescriptor::STANDARD ) + continue; + + std::vector keys; + if (type==Packages) + { + std::string k(""); + k += pack->GetName(); + keys.push_back(k); + title = "Boxes by package"; + } + else if ((type==Initials) || (type==Adaptors)) + { + std::string init(" "); + init[0] = std::toupper(j->second->GetTypeName()[0]); + keys.push_back(init); + title = "Alphabetical list"; + } + else if (type==Categories) + { + // Split the category string + std::string delimiters = ";,"; + Utilities::SplitString(j->second->GetCategory(), + delimiters,keys); + if (keys.size()==0) + keys.push_back(" NONE"); + title = "Boxes by category"; + } + + std::vector::const_iterator k; + for (k=keys.begin(); k!=keys.end(); ++k ) + { + IndexType::iterator p; + p = index.find(*k); + if (p != index.end()) + { + p->second.push_back(j->second); + } + else + { + std::vector v; + v.push_back(j->second); + index[*k] = v; + } + } + } + } + // Creates the file + //--------------------- + // Open output file + std::ofstream s; + s.open(filename.c_str()); + if (!s.good()) + { + bbtkError("Factory::CreateHtmlIndex : could not open file '" + <\n"; + s << "\n"; + s << ""<<title<<"\n"; + s << "\n"; + s << "\n"; + s << "\n"; + s << "\n"; + // + s << "\n"; + s << "\n"; + //---------------------- + + //---------------------- + // Html body + s << "\n"; + s << "\n"; + s << "

"<\n"; + s << "

\n"; + IndexType::iterator ii; + for (ii=index.begin();ii!=index.end();++ii) + { + s << "first<<"\">"<first<<"  "; + } + + for (ii=index.begin();ii!=index.end();++ii) { - bbtkError("No package of the factory contains any black box <" - <"); + s << "


\n"; + s << "

Top"; + if (type==Packages) + { + s << "first<<"\">\n"; + s << "

first<<"/index.html\">" + << ii->first<<"\n"; + + s << "  -  \n"; + + s << "\n"; + +//EED 26Mars2009 + /*JCP 19 Nov 2009 + std::string bin_path = bbtk::ConfigurationFile::GetInstance().Get_bin_path(); + s << "first << "/main.html>(Doxygen documentation of the source)\n"; + JCP 19 Nov 2009*/ + std::string bin_path = bbtk::ConfigurationFile::GetInstance().Get_bin_path(); + s << "first << "/main.html>(Doxygen documentation of the source)\n"; + } + else + { + s << "first<<"\">\n"; + s << "

"<first<<"\n"; + } + s << "

    \n"; + + s << "

    \n"; + + std::vector::iterator di; + for (di=ii->second.begin();di!=ii->second.end();++di) + { + std::string pack = (*di)->GetPackage()->GetName(); + std::string name = (*di)->GetTypeName(); + Utilities::html_format(name); + std::string descr = (*di)->GetDescription(); + Utilities::html_format(descr); + s << ""; + s << " "; + s << " "; + s << "\n"; + } + s << "
    "; + s << "   " + <"; + s << "" << descr << "
    \n"; + s << "

\n"; + s << "\n"; } + //---------------------- + // Footer + time_t rawtime; + tm * ptm; + time ( &rawtime ); + ptm = gmtime ( &rawtime ); + + s << "


\n"; + s << "Automatically generated by bbtk on " + << ptm->tm_mday << "/" << ptm->tm_mon << "/" << ptm->tm_year+1900 + << " - " << ptm->tm_hour << ":" << ptm->tm_min << " GMT\n"; + s << "\n"; + s.close(); + //---------------------- + + // End + bbtkDebugDecTab("kernel",9); + } + + //========================================================================== + std::string Factory::GetObjectName() const + { + return std::string("Factory"); + } + //========================================================================== + + //========================================================================== + std::string Factory::GetObjectInfo() const + { + std::stringstream i; + return i.str(); + } + //========================================================================== + + //========================================================================== +size_t Factory::GetObjectSize() const +{ + size_t s = Superclass::GetObjectSize(); + s += Factory::GetObjectInternalSize(); + return s; + } + //========================================================================== + //========================================================================== +size_t Factory::GetObjectInternalSize() const +{ + size_t s = sizeof(Factory); + return s; + } + //========================================================================== + //========================================================================== + size_t Factory::GetObjectRecursiveSize() const + { + size_t s = Superclass::GetObjectRecursiveSize(); + s += Factory::GetObjectInternalSize(); + + PackageMapType::const_iterator i; + for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i ) + { + s += i->second->GetObjectRecursiveSize(); + } + return s; } + //========================================================================== }