X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkFactory.cxx;h=c024617d59d01416250563110db678ffe8f2855b;hb=4ad5b5ee44357ad873bc8c43230defb6d0a79879;hp=ce977c9b646d1bf2472d614efc3ca8e7a27677d3;hpb=203eabe6e2180eaae1672d4acbe5ca183c8e782f;p=bbtk.git diff --git a/kernel/src/bbtkFactory.cxx b/kernel/src/bbtkFactory.cxx index ce977c9..c024617 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/02/06 08:49:19 $ -Version: $Revision: 1.15 $ +Date: $Date: 2008/04/18 12:59:15 $ +Version: $Revision: 1.33 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de @@ -37,30 +37,23 @@ PURPOSE. See the above copyright notices for more information. #include // std::toupper -// 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::Pointer Factory::New() + { + bbtkDebugMessage("Kernel",9,"Factory::New()"<[" <[" <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 + "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()<GetName()<<" " + <GetVersion() + <<" " + <GetAuthor() << " Category(s) :" + <GetCategory() + <GetDescription()<AddFactory(GetThisPointer()); + mPackageMap[pkgname] = p; + return true; + } + return false; + } - + //=================================================================== /// \brief Loads a package. /// @@ -258,14 +119,13 @@ namespace bbtk /// 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) + + void Factory::LoadPackage( const std::string& name ) { // Note : in the following : // name : the user supplied name @@ -278,8 +138,6 @@ namespace bbtk bbtkDebugMessageInc("Kernel",7,"Factory::LoadPackage(\""< package_paths; std::string libname; // full path library name @@ -322,8 +180,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 != "") { @@ -337,12 +195,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 <<" [" <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("Kernel",7,"Factory::ClosePackage(\"" - <second.mPackage->GetName() + <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) + + // 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); - 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("Kernel",7); - } + bbtkDebugDecTab("Kernel",7); + } //=================================================================== - + //=================================================================== @@ -528,7 +364,7 @@ namespace bbtk { bbtkMessage("Help",1, i->first << std::endl); if (details) { - i->second.mPackage->PrintBlackBoxes(false,adaptors); + i->second->PrintBlackBoxes(false,adaptors); } } @@ -548,22 +384,22 @@ namespace bbtk { 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) + bbtkMessage("Help",1,i->second->GetDescription()<second->GetNumberOfBlackBoxes()>0) { bbtkMessage("Help",1, "Black boxes : "<second.mPackage->PrintBlackBoxes(true,adaptors); + i->second->PrintBlackBoxes(true,adaptors); } else { @@ -583,7 +419,10 @@ namespace bbtk //=================================================================== /// Prints help on the black box of type - 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("Kernel",9,"Factory::HelpBlackBox(\""<second.mPackage->ContainsBlackBox(name)) + if (i->second->ContainsBlackBox(name)) { - i->second.mPackage->HelpBlackBox(name,full); + i->second->HelpBlackBox(name,full); + package = i->second->GetName(); found = true; } } @@ -611,24 +451,25 @@ namespace bbtk //=================================================================== /// Inserts a package in the factory - void Factory::InsertPackage( Package* p ) + void Factory::InsertPackage( Package::Pointer p ) { bbtkDebugMessageInc("Kernel",9,"Factory::InsertPackage(\""<< p->GetName()<<"\")"<AddFactory(GetThisPointer()); + mPackageMap[p->GetName()] = p; + + std::cout << p.use_count() <GetName()] = pack; 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(\""<< 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("Kernel",9); @@ -656,17 +497,17 @@ namespace bbtk //=================================================================== /// 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(\"" <second.mPackage->NewBlackBox(type,name); + b = i->second->NewBlackBox(type,name); if (b) break; } if (!b) @@ -681,29 +522,27 @@ namespace bbtk //=================================================================== /// Creates an instance of a black box of type with name - BlackBox* Factory::NewAdaptor(TypeInfo typein, - TypeInfo typeout, - const std::string& name) const + 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) { - bbtkError("no <" - < to <" - < adaptor available"); + bbtkError("no "< with name + BlackBox::Pointer Factory::NewWidgetAdaptor(const DataInfo& typein, + const DataInfo& typeout, + const std::string& name) const { - bbtkDebugMessage("Kernel",7,"Factory::NewConnection(\"" - <bbGetName()<<"\",\""<bbGetName()<<"\",\""<,<" + <,\"" + <second->NewWidgetAdaptor(typein, + typeout, + name); + if (b) break; + } + if (!b) + { + bbtkError("no "< widget adaptor available"); + } - return new Connection(from,output,to,input); - /* - Connection* c; - // !!! WARNING : WE NEED TO TEST THE TYPE NAME EQUALITY - // BECAUSE IN DIFFERENT DYN LIBS THE type_info EQUALITY CAN - // BE FALSE (DIFFERENT INSTANCES !) - - std::string t1 ( from->bbGetOutputType(output).name() ); - std::string t2 ( to->bbGetInputType(input).name() ); + bbtkDebugDecTab("Kernel",7); + return b; + } + //=================================================================== + + //=================================================================== + /// Creates an instance of a black box of type with name + bool Factory::FindAdaptor(const DataInfo& typein, + const DataInfo& typeout, + std::string& adaptor) const + { + bbtkDebugMessageInc("Kernel",8,"Factory::FindAdaptor(<" + <,<" + <)"<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("Kernel",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_WIDGET_ADAPTOR) && + //(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("Kernel",9,"Factory::GetPackage(\""<second.mPackage; + return i->second; } else { @@ -797,31 +750,26 @@ namespace bbtk } //=================================================================== + //=================================================================== - Package* Factory::GetPackage(const std::string& name) + void Factory::CheckPackages() const { - bbtkDebugMessageInc("Kernel",9,"Factory::GetPackage(\""<second.mPackage; - } - else - { - bbtkDebugDecTab("Kernel",9); - bbtkError("package \""<second->CheckBoxes(); + } + bbtkMessage("Debug",1,"****** Checking Factory "<<(void*)this + <<" ... OK"<second.mPackage->ContainsBlackBox(name)) + if (i->second->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"; + // 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 "); @@ -870,11 +819,11 @@ namespace bbtk ff=fopen(filename2.c_str(),"w"); fprintf(ff,"TMP \n"); - //fprintf(ff, "Link\n", i->second.mPackage->GetDocURL().c_str(),name.c_str() ); + //fprintf(ff, "Link\n", i->second->GetDocURL().c_str(),name.c_str() ); fclose(ff); system( command.c_str() ); found = true; @@ -900,13 +849,14 @@ namespace bbtk std::string title; - typedef std::map > 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; + Package::Pointer pack = i->second; if (pack->GetName()=="user") continue; Package::BlackBoxMapType::const_iterator j; for (j = pack->GetBlackBoxMap().begin(); @@ -914,15 +864,25 @@ namespace bbtk ++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 = "List by package"; + title = "Boxes by package"; } - else if (type==Initials) + else if ((type==Initials) || (type==Adaptors)) { std::string init(" "); init[0] = std::toupper(j->second->GetTypeName()[0]); @@ -931,25 +891,15 @@ namespace bbtk } else if (type==Categories) { - // Split the category string - //std::vector categories; - std::string delimiters = ";,"; Utilities::SplitString(j->second->GetCategory(), delimiters,keys); - - //std::vector::iterator si; - //for (si=categories.begin();si!=categories.end;++si) - // { - // keys.push_back(*si); - // } - title = "Index by category"; - if (keys.size()==0) keys.push_back(" NONE"); - title = "List by category"; + title = "Boxes by category"; } + std::vector::const_iterator k; for (k=keys.begin(); k!=keys.end(); ++k ) @@ -962,7 +912,7 @@ namespace bbtk } else { - std::vector v; + std::vector v; v.push_back(j->second); index[*k] = v; } @@ -1014,28 +964,44 @@ 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) { s << "


\n"; s << "

Top"; - s << "first<<"\">\n"; - s << "

"<first<<"\n"; + 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; + 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 << " "; @@ -1043,7 +1009,7 @@ namespace bbtk s << "\n"; } s << "
    "; - s << "
  • " <"; s << "
  • \n"; - s << "

\n"; + s << "\n"; s << "\n"; } //---------------------- @@ -1065,6 +1031,50 @@ namespace bbtk 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; + } + //========================================================================== }