X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkFactory.cxx;h=3d4aef1d4d45ca196f30c85f81bcad68c16bd6d4;hb=bf1bdd88621c0556024de37768c2d17d12f2a265;hp=82bf038f842dfe7ae2c1ed2eec16dd1cc9d94982;hpb=c2a4b1893412e50a3d9abff221938a2d16c4a7cb;p=bbtk.git diff --git a/kernel/src/bbtkFactory.cxx b/kernel/src/bbtkFactory.cxx index 82bf038..3d4aef1 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/04/09 11:16:57 $ -Version: $Revision: 1.32 $ - - -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/05/30 17:17:00 $ + Version: $Revision: 1.52 $ +=========================================================================*/ -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,19 +49,26 @@ PURPOSE. See the above copyright notices for more information. #include // std::toupper +#include namespace bbtk { - typedef Package* (*PackageAccessor)(); - typedef void (*PackageDeleteFunction)(); + //=================================================================== + /// Default ctor + Factory::Pointer Factory::New() + { + bbtkDebugMessage("kernel",9,"Factory::New()"< ~Factory()"< Factory::Reset()"<GetName()<<" " + <GetVersion() + <<" " + <GetAuthor() << " Category(s) :" + <GetCategory() + <GetDescription()<AddFactory(GetThisPointer()); +printf("EED Factory::DoLoadPackage > %s %s %s \n",libname.c_str(), pkgname.c_str(),path.c_str()); + mPackageMap[pkgname] = p; + return true; } + return false; - // The following is *NOT* a debug time message : - // It's a user intended message. - // Please don't remove it. - bbtkMessage("Output",2," -->[" <[" <GetBBTKVersion() != bbtk::GetVersion() ) - { - std::string v(pack.mPackage->GetBBTKVersion()); - UnLoadPackage(pkgname); - bbtkError("Cannot load package ["<AddFactory(this); - mPackageMap[pkgname] = pack; - - std::string separator = - ConfigurationFile::GetInstance().Get_file_separator (); - //BBTK_STRINGIFY_SYMBOL(BBTK_DOC_REL_PATH) - std::string docreldoc = - separator + "bbdoc" + separator + pkgname + separator + "index.html"; - std::string reldoc = - ".." + 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() << " Category(s) :" - <GetCategory() - <GetDescription()< package_paths; + std::string libname; // full path library name + std::string pkgname; // e.g. libbb.so + + std::string upath; + + + pkgname = Utilities::ExtractPackageName(name,upath); + + printf("EED Factory::LoadPackage A. %s\n", name.c_str()); + printf("EED Factory::LoadPackage A. %s\n", upath.c_str()); + printf("EED Factory::LoadPackage A. %s\n", pkgname.c_str()); + + 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 << "]" < 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 << "]" < 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 /// @@ -444,162 +392,115 @@ namespace bbtk /// Finally erases the package entry in the packages map void Factory::ClosePackage(PackageMapType::iterator& i) { - bbtkDebugMessageInc("Kernel",7,"Factory::ClosePackage(\"" - <second.mPackage->GetName() + bbtkDebugMessageInc("kernel",7,"Factory::ClosePackage(\"" + <second->GetName() <<"\")"<second.mPackage->RemoveFactory(this); - - // If no more factory which use it - if (i->second.mPackage->GetFactorySet().empty()) + 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()) { - // If it is a dynamically loaded package - if (i->second.mDynamicLibraryHandler) - { - - - // 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 it normally - delete i->second.mPackage; - } + Package::Release(p); } - - // in any cases remove the entry in the map - mPackageMap.erase(i); - - bbtkDebugDecTab("Kernel",7); + 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("Kernel",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("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.mPackage->GetVersion().length()>0) - bbtkMessageCont("Help",1,"v" <second.mPackage->GetVersion()); + if (i->second->GetVersion().length()>0) + bbtkMessageCont("help",1,"v" <second->GetVersion()); - if (i->second.mPackage->GetAuthor().length()>0) - bbtkMessageCont("Help",1,"- "<second.mPackage->GetAuthor()); + if (i->second->GetAuthor().length()>0) + bbtkMessageCont("help",1,"- "<second->GetAuthor()); - if (i->second.mPackage->GetCategory().length()>0) - bbtkMessageCont("Help",1,"- "<second.mPackage->GetCategory()); + if (i->second->GetCategory().length()>0) + bbtkMessageCont("help",1,"- "<second->GetCategory()); - bbtkMessageCont("Help",1,std::endl); - bbtkIncTab("Help",1); - bbtkMessage("Help",1,i->second.mPackage->GetDescription()<second.mPackage->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.mPackage->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.mPackage->ContainsBlackBox(name)) + if (i->second->ContainsDescriptor(name)) { - i->second.mPackage->HelpBlackBox(name,full); - package = i->second.mPackage->GetName(); + 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 <" @@ -611,32 +512,32 @@ namespace bbtk //=================================================================== /// Inserts a package in the factory - void Factory::InsertPackage( Package* p ) + void Factory::InsertPackage( Package::Pointer p ) { - bbtkDebugMessageInc("Kernel",9,"Factory::InsertPackage(\""<< + bbtkDebugMessageInc("kernel",9,"Factory::InsertPackage(\""<< p->GetName()<<"\")"<AddFactory(this); - PackageInfoType pack; - pack.mDynamicLibraryHandler = 0; - pack.mPackage = p; - mPackageMap[p->GetName()] = pack; + p->AddFactory(GetThisPointer()); + +printf("EED Factory::InsertPackage %s\n", p->GetName().c_str() ); + + mPackageMap[p->GetName()] = p; - bbtkDebugDecTab("Kernel",9); + bbtkDebugDecTab("kernel",9); } //=================================================================== //=================================================================== /// Removes a package from the factory (and deletes it) - void Factory::RemovePackage( Package* p ) + void Factory::RemovePackage( Package::Pointer p ) { - bbtkDebugMessageInc("Kernel",9,"Factory::RemovePackage(\""<< + bbtkDebugMessageInc("kernel",9,"Factory::RemovePackage(\""<< p->GetName()<<"\")"<second.mPackage == p) break; + if (i->second == p) break; }; if (i!=mPackageMap.end()) @@ -649,24 +550,40 @@ namespace bbtk p->GetName()<<"\") : package absent from factory"); } - bbtkDebugDecTab("Kernel",9); + bbtkDebugDecTab("kernel",9); } //=================================================================== +// ups3 EED borrame + std::string Factory::GetPackageNameOfaBlackBox(std::string boxType) + { + std::string result=""; + PackageMapType::const_iterator i; + for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i ) + { + if ( i->second->ifBoxExist( boxType ) == true) + { + result = i->first; + } + } + return result; + } + + //=================================================================== /// 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("Kernel",7,"Factory::NewBlackBox(\"" + bbtkDebugMessageInc("kernel",7,"Factory::NewBlackBox(\"" <second.mPackage->NewBlackBox(type,name); + b = i->second->NewBlackBox(type,name); if (b) break; } if (!b) @@ -674,28 +591,28 @@ namespace bbtk bbtkError("black box type \""< with name - BlackBox* Factory::NewAdaptor(const DataInfo& typein, + BlackBox::Pointer Factory::NewAdaptor(const DataInfo& typein, const DataInfo& typeout, const std::string& name) const { - bbtkDebugMessageInc("Kernel",8,"Factory::NewAdaptor(" + bbtkDebugMessageInc("kernel",8,"Factory::NewAdaptor(" <second.mPackage->NewAdaptor(typein,typeout,name); + b = i->second->NewAdaptor(typein,typeout,name); if (b) break; } if (!b) @@ -704,7 +621,7 @@ namespace bbtk <<" adaptor available"); } - bbtkDebugDecTab("Kernel",7); + bbtkDebugDecTab("kernel",7); return b; } //=================================================================== @@ -712,21 +629,21 @@ namespace bbtk //=================================================================== /// Creates an instance of a black box of type with name - BlackBox* Factory::NewWidgetAdaptor(const DataInfo& typein, + BlackBox::Pointer Factory::NewWidgetAdaptor(const DataInfo& typein, const DataInfo& typeout, const std::string& name) const { - bbtkDebugMessageInc("Kernel",8,"Factory::NewWidgetAdaptor(<" + bbtkDebugMessageInc("kernel",8,"Factory::NewWidgetAdaptor(<" <,<" <,\"" <second.mPackage->NewWidgetAdaptor(typein, + b = i->second->NewWidgetAdaptor(typein, typeout, name); if (b) break; @@ -737,7 +654,7 @@ namespace bbtk <<"> widget adaptor available"); } - bbtkDebugDecTab("Kernel",7); + bbtkDebugDecTab("kernel",7); return b; } //=================================================================== @@ -748,7 +665,7 @@ namespace bbtk const DataInfo& typeout, std::string& adaptor) const { - bbtkDebugMessageInc("Kernel",8,"Factory::FindAdaptor(<" + bbtkDebugMessageInc("kernel",8,"Factory::FindAdaptor(<" <,<" <)"<second.mPackage->FindAdaptor(typein, + b = i->second->FindAdaptor(typein, typeout, adaptor); if (b) break; @@ -769,7 +686,7 @@ namespace bbtk } */ - bbtkDebugDecTab("Kernel",7); + bbtkDebugDecTab("kernel",7); return b; } //=================================================================== @@ -780,7 +697,7 @@ namespace bbtk const DataInfo& typeout, std::string& adaptor) const { - bbtkDebugMessageInc("Kernel",8,"Factory::FindWidgetAdaptor(<" + bbtkDebugMessageInc("kernel",8,"Factory::FindWidgetAdaptor(<" <,<" <)"<second.mPackage->FindWidgetAdaptor(typein, + b = i->second->FindWidgetAdaptor(typein, typeout, adaptor); if (b) break; } - bbtkDebugDecTab("Kernel",7); + bbtkDebugDecTab("kernel",7); return b; } //=================================================================== @@ -805,7 +722,7 @@ namespace bbtk std::string& widget, std::string& adaptor) const { - bbtkDebugMessageInc("Kernel",8,"Factory::FindWidgetAdaptor(<" + bbtkDebugMessageInc("kernel",8,"Factory::FindWidgetAdaptor(<" <,<" <)"<second.mPackage->FindWidgetAdaptor(typein, + b = i->second->FindWidgetAdaptor(typein, typeout, widget); if (b) break; @@ -822,24 +739,24 @@ namespace bbtk if (!b) { // Look for a widget adaptor with good nature out - bbtkMessage("Kernel",5, + bbtkMessage("kernel",5, "*** Looking for a two pieces widget adaptor for : " << typein << "->"<second.mPackage->GetAdaptorMap().begin(); - j!=i->second.mPackage->GetAdaptorMap().end(); + for (j=i->second->GetAdaptorMap().begin(); + j!=i->second->GetAdaptorMap().end(); ++j) { if ( ( j->first.mKind == - BlackBoxDescriptor::DEFAULT_WIDGET_ADAPTOR) && + BlackBoxDescriptor::DEFAULT_GUI) && //(j->first.mTypeIn == typein) && (j->first.mTypeOut.GetNature() == typeout.GetNature() ) ) { - widget = j->second->GetTypeName(); - bbtkMessage("Kernel",5, + widget = j->second.lock()->GetTypeName(); + bbtkMessage("kernel",5, "===> Found first part : "<first.mTypeIn<<"->" <first.mTypeOut< 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("Kernel",9,"Factory::GetPackage(\""<second.mPackage; + bbtkDebugDecTab("kernel",9); + return i->second; } else { - bbtkDebugDecTab("Kernel",9); + bbtkDebugDecTab("kernel",9); bbtkError("package \""<second.mPackage; - } - else - { - bbtkDebugDecTab("Kernel",9); - bbtkError("package \""<second.mPackage->CheckBoxes(); + i->second->Check(); } - bbtkMessage("Debug",1,"****** Checking Factory "<<(void*)this + bbtkMessage("debug",1,"****** Checking Factory "<<(void*)this <<" ... OK"<first.c_str(),url.c_str(),";" ); } fprintf( ff , "}\n\n"); - bbtkDebugDecTab("Kernel",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)) - { + 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.mPackage->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 <" + <"); } } @@ -1023,81 +919,80 @@ namespace bbtk void Factory::CreateHtmlIndex(IndexEntryType type, const std::string& filename) { - bbtkDebugMessageInc("Kernel",9,"Factory::CreateHtmlIndex(\"" + bbtkDebugMessageInc("kernel",9,"Factory::CreateHtmlIndex(\"" < > IndexType; + typedef std::map > IndexType; IndexType index; // Builds the index map PackageMapType::const_iterator i; for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i ) - { - Package* pack = i->second.mPackage; - if (pack->GetName()=="user") continue; - Package::BlackBoxMapType::const_iterator j; - for (j = pack->GetBlackBoxMap().begin(); - j!= pack->GetBlackBoxMap().end(); - ++j) - { + { + 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) + { // 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; - } - } - - } - } + 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 @@ -1142,7 +1037,7 @@ namespace bbtk IndexType::iterator ii; for (ii=index.begin();ii!=index.end();++ii) { - s << "first<<"\">"<first<<"  "; + s << "first<<"\">"<first<<"  "; } for (ii=index.begin();ii!=index.end();++ii) @@ -1158,7 +1053,14 @@ namespace bbtk s << "  -  \n"; s << "\n"; - s << "first << "/main.html>(Doxygen documentation of the source)\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 { @@ -1169,7 +1071,7 @@ namespace bbtk s << "

\n"; - std::vector::iterator di; + std::vector::iterator di; for (di=ii->second.begin();di!=ii->second.end();++di) { std::string pack = (*di)->GetPackage()->GetName(); @@ -1198,7 +1100,7 @@ namespace bbtk ptm = gmtime ( &rawtime ); s << "


\n"; - s << "Automatically generated by bbi on " + 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"; @@ -1206,9 +1108,53 @@ namespace bbtk //---------------------- // End - bbtkDebugDecTab("Kernel",9); + 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; + } + //========================================================================== }