X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkFactory.cxx;h=bdcde1fc42f876b2e719346661c23895db8a103b;hb=97d3e37bb950037df11ff1f40a43b2328ce460ee;hp=d2d893c289472a00759da2b5dff0d0a90e1c34e2;hpb=d74933e88492b90684ad0648d9ca7eb9d6ecb720;p=bbtk.git diff --git a/kernel/src/bbtkFactory.cxx b/kernel/src/bbtkFactory.cxx index d2d893c..bdcde1f 100644 --- a/kernel/src/bbtkFactory.cxx +++ b/kernel/src/bbtkFactory.cxx @@ -4,8 +4,8 @@ Program: bbtk Module: $RCSfile: bbtkFactory.cxx,v $ Language: C++ -Date: $Date: 2008/01/30 12:14:43 $ -Version: $Revision: 1.8 $ +Date: $Date: 2008/03/03 14:55:55 $ +Version: $Revision: 1.25 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de @@ -35,6 +35,7 @@ PURPOSE. See the above copyright notices for more information. #include // for getcwd #endif +#include // std::toupper // was in gdcm ... /* @@ -61,7 +62,7 @@ namespace bbtk /// 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); - + if ( pack.mPackage->GetBBTKVersion() != bbtk::GetVersion() ) + { + std::string v(pack.mPackage->GetBBTKVersion()); + UnLoadPackage(pkgname); + bbtkError("Cannot load package ["<SetDocURL(doc); + pack.mPackage->SetDocRelativeURL(reldoc); + //=================================================================== - bbtkMessage("Output",2,pack.mPackage->GetName()<<" " - <GetVersion() - <<" (bbtk " - <GetBBTKVersion()<<") " - <GetAuthor() << " Keyword(s) :" - <GetKeyword() - <GetDescription()<GetName()<<" " + <GetVersion() + <<" (bbtk " + <GetBBTKVersion()<<") " + <GetAuthor() << " Category(s) :" + <GetCategory() + <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 @@ -275,10 +272,8 @@ namespace bbtk // // 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 @@ -321,8 +316,8 @@ namespace bbtk return; } - // std::string path = Utilities::ExpandLibName(upath, verbose); - std::string path = Utilities::ExpandLibName(name, verbose); // keep last item, here. + // std::string path = Utilities::ExpandLibName(upath, false); + std::string path = Utilities::ExpandLibName(name,false); // keep last item, here. if (path != "") { @@ -336,12 +331,12 @@ namespace bbtk // The following is *NOT* a debug time message : // It's a user intended message. // Please don't remove it. - if (verbose) - std::cout <<" [" <second.mPackage->GetName() <<"\")"<second.mPackage->GetAuthor().length()>0) bbtkMessageCont("Help",1,"- "<second.mPackage->GetAuthor()); - if (i->second.mPackage->GetKeyword().length()>0) - bbtkMessageCont("Help",1,"- "<second.mPackage->GetKeyword()); + if (i->second.mPackage->GetCategory().length()>0) + bbtkMessageCont("Help",1,"- "<second.mPackage->GetCategory()); bbtkMessageCont("Help",1,std::endl); bbtkIncTab("Help",1); @@ -572,19 +567,22 @@ namespace bbtk } else { - bbtkDebugDecTab("Core",9); + bbtkDebugDecTab("Kernel",9); bbtkError("package \""< - void Factory::HelpBlackBox(const std::string& name, bool full) const + /// Returns the package to which it belongs + void Factory::HelpBlackBox(const std::string& name, + std::string& package, + bool full) const { - bbtkDebugMessageInc("Core",9,"Factory::HelpBlackBox(\""<second.mPackage->ContainsBlackBox(name)) { i->second.mPackage->HelpBlackBox(name,full); + package = i->second.mPackage->GetName(); found = true; } } - bbtkDebugDecTab("Core",9); + bbtkDebugDecTab("Kernel",9); if (!found) { bbtkError("No package of the factory contains any black box <" @@ -612,7 +611,7 @@ namespace bbtk /// Inserts a package in the factory void Factory::InsertPackage( Package* p ) { - bbtkDebugMessageInc("Core",9,"Factory::InsertPackage(\""<< + bbtkDebugMessageInc("Kernel",9,"Factory::InsertPackage(\""<< p->GetName()<<"\")"<GetName()] = pack; - bbtkDebugDecTab("Core",9); + bbtkDebugDecTab("Kernel",9); } //=================================================================== @@ -629,7 +628,7 @@ namespace bbtk /// Removes a package from the factory (and deletes it) void Factory::RemovePackage( Package* p ) { - bbtkDebugMessageInc("Core",9,"Factory::RemovePackage(\""<< + bbtkDebugMessageInc("Kernel",9,"Factory::RemovePackage(\""<< p->GetName()<<"\")"<GetName()<<"\") : package absent from factory"); } - bbtkDebugDecTab("Core",9); + bbtkDebugDecTab("Kernel",9); } //=================================================================== @@ -658,7 +657,7 @@ namespace bbtk BlackBox* Factory::NewBlackBox(const std::string& type, const std::string& name) const { - bbtkDebugMessageInc("Core",7,"Factory::NewBlackBox(\"" + bbtkDebugMessageInc("Kernel",7,"Factory::NewBlackBox(\"" <,<" <,\"" < adaptor available"); } - bbtkDebugDecTab("Core",7); + bbtkDebugDecTab("Kernel",7); return b; } //=================================================================== @@ -717,7 +716,7 @@ namespace bbtk BlackBox* to, const std::string& input) const { - bbtkDebugMessage("Core",7,"Factory::NewConnection(\"" + bbtkDebugMessage("Kernel",7,"Factory::NewConnection(\"" <bbGetName()<<"\",\""<bbGetName()<<"\",\""<second.mPackage; } else { - bbtkDebugDecTab("Core",9); + bbtkDebugDecTab("Kernel",9); bbtkError("package \""<second.mPackage; } else { - bbtkDebugDecTab("Core",9); + bbtkDebugDecTab("Kernel",9); bbtkError("package \""<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 ) @@ -854,10 +855,10 @@ namespace bbtk { 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"; + // 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 "); @@ -880,13 +881,206 @@ namespace bbtk } } - bbtkDebugDecTab("Core",9); + 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* pack = i->second.mPackage; + if (pack->GetName()=="user") continue; + Package::BlackBoxMapType::const_iterator j; + for (j = pack->GetBlackBoxMap().begin(); + j!= pack->GetBlackBoxMap().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; + } + } + + } + } + // 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) + { + s << "


\n"; + s << "

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

first<<"/index.html\">" + << ii->first<<"\n"; + + s << "  -  \n"; + + s << "\n"; + 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 bbi 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); + } + }