X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=kernel%2Fsrc%2FbbtkFactory.cxx;h=6ec28e5000ebfc5b338d688e9bbc6118682922ae;hb=d7a6d341e2d11c175351212f0bf4812784dc57e5;hp=036231f9e94cc77f90ecf8683e795c94cb7672d2;hpb=6c5d7746e8e4cb0b5d6e164b917008a7137910fb;p=bbtk.git diff --git a/kernel/src/bbtkFactory.cxx b/kernel/src/bbtkFactory.cxx index 036231f..6ec28e5 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/04/08 06:59:30 $ -Version: $Revision: 1.31 $ +Date: $Date: 2008/04/22 06:59:31 $ +Version: $Revision: 1.35 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de @@ -40,14 +40,20 @@ PURPOSE. See the above copyright notices for more information. namespace bbtk { - typedef Package* (*PackageAccessor)(); - typedef void (*PackageDeleteFunction)(); + //=================================================================== + /// Default ctor + Factory::Pointer Factory::New() + { + bbtkDebugMessage("Kernel",9,"Factory::New()"<[" <[" <GetName()<<" " + <GetVersion() + <<" " + <GetAuthor() << " Category(s) :" + <GetCategory() + <GetDescription()<AddFactory(GetThisPointer()); + mPackageMap[pkgname] = p; + return true; } -#else - bbtkError("neither __GNUC__ nor _WIN32 ?!? How did you compile ?"); -#endif - - // Stores the package - PackageInfoType pack; - pack.mDynamicLibraryHandler = handler; - // Invokes the accessor to the PackageUnit pointer - pack.mPackage = ((PackageAccessor)getpack)(); + return false; - // Test bbtk build version ok - if ( pack.mPackage->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()<second.mPackage->GetName() + <second->GetName() <<"\")"<second.mPackage->RemoveFactory(this); - - // If no more factory which use it - if (i->second.mPackage->GetFactorySet().empty()) - { - // 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; - } - } - - // in any cases remove the entry in the map + 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); } @@ -524,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); } } @@ -544,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 { @@ -591,10 +431,10 @@ namespace bbtk PackageMapType::const_iterator i; for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i ) { - if (i->second.mPackage->ContainsBlackBox(name)) + if (i->second->ContainsBlackBox(name)) { - i->second.mPackage->HelpBlackBox(name,full); - package = i->second.mPackage->GetName(); + i->second->HelpBlackBox(name,full); + package = i->second->GetName(); found = true; } } @@ -611,16 +451,13 @@ 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(this); - PackageInfoType pack; - pack.mDynamicLibraryHandler = 0; - pack.mPackage = p; - mPackageMap[p->GetName()] = pack; + p->AddFactory(GetThisPointer()); + mPackageMap[p->GetName()] = p; bbtkDebugDecTab("Kernel",9); } @@ -628,7 +465,7 @@ namespace bbtk //=================================================================== /// 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()) @@ -656,17 +493,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,7 +518,7 @@ namespace bbtk //=================================================================== /// Creates an instance of a black box of type with name - BlackBox* Factory::NewAdaptor(const DataInfo& typein, + BlackBox::Pointer Factory::NewAdaptor(const DataInfo& typein, const DataInfo& typeout, const std::string& name) const { @@ -691,11 +528,11 @@ namespace bbtk <second.mPackage->NewAdaptor(typein,typeout,name); + b = i->second->NewAdaptor(typein,typeout,name); if (b) break; } if (!b) @@ -712,7 +549,7 @@ 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 { @@ -722,11 +559,11 @@ namespace bbtk <second.mPackage->NewWidgetAdaptor(typein, + b = i->second->NewWidgetAdaptor(typein, typeout, name); if (b) break; @@ -748,7 +585,7 @@ namespace bbtk const DataInfo& typeout, std::string& adaptor) const { - bbtkDebugMessageInc("Kernel",8,"Factory::FindWidgetAdaptor(<" + bbtkDebugMessageInc("Kernel",8,"Factory::FindAdaptor(<" <,<" <)"<second.mPackage->FindAdaptor(typein, + b = i->second->FindAdaptor(typein, typeout, adaptor); if (b) break; @@ -788,19 +625,81 @@ namespace bbtk PackageMapType::const_iterator i; for (i = mPackageMap.begin(); i!=mPackageMap.end(); ++i ) { - b = i->second.mPackage->FindWidgetAdaptor(typein, + b = i->second->FindWidgetAdaptor(typein, typeout, adaptor); if (b) break; } - /* + 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(<" + <,<" + <)"<second->FindWidgetAdaptor(typein, + typeout, + widget); + if (b) break; + } if (!b) { - bbtkError("no "< widget adaptor available"); - } - */ - + // 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("Kernel",9,"Factory::GetPackage(\""<second.mPackage; + return i->second; } else { @@ -846,25 +746,19 @@ 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 (); @@ -921,11 +815,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; @@ -951,13 +845,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(); @@ -1013,7 +908,7 @@ namespace bbtk } else { - std::vector v; + std::vector v; v.push_back(j->second); index[*k] = v; } @@ -1092,7 +987,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(); @@ -1132,6 +1027,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; + } + //========================================================================== }