X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcreaDevManagerLib%2FmodelCDMPackage.cpp;h=81fb90610b5ac2b5e23877905ac06d17e61c51e6;hb=5a17d994576296f2a5a85f3a01ad5631786a0c56;hp=78b6adf6ffdeb85c5c92e8d31094861e516021ad;hpb=72a6140565ccd0905f822c7bf17ea471762a9301;p=crea.git diff --git a/lib/creaDevManagerLib/modelCDMPackage.cpp b/lib/creaDevManagerLib/modelCDMPackage.cpp index 78b6adf..81fb906 100644 --- a/lib/creaDevManagerLib/modelCDMPackage.cpp +++ b/lib/creaDevManagerLib/modelCDMPackage.cpp @@ -244,7 +244,12 @@ bool modelCDMPackage::SetAuthors(const std::string& authors, std::string*& resul in.close(); out.close(); //delete old file and rename new file +#ifdef _WIN32 + std::string renameCommand = "move /Y \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt.tmp\" \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt\""; +#else std::string renameCommand = "mv \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt.tmp\" \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt\""; +#endif + if(system(renameCommand.c_str())) { result = new std::string("An error occurred while running '" + renameCommand + "'."); @@ -296,7 +301,12 @@ bool modelCDMPackage::SetVersion(const std::string& version, std::string*& resul in.close(); out.close(); //delete old file and rename new file +#ifdef _WIN32 + std::string renameCommand = "move /Y \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt.tmp\" \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt\""; +#else std::string renameCommand = "mv \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt.tmp\" \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt\""; +#endif + if(system(renameCommand.c_str())) { result = new std::string("An error occurred while running '" + renameCommand + "'."); @@ -342,7 +352,12 @@ bool modelCDMPackage::SetDescription(const std::string& description, std::string in.close(); out.close(); //delete old file and rename new file +#ifdef _WIN32 + std::string renameCommand = "move /Y \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt.tmp\" \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt\""; +#else std::string renameCommand = "mv \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt.tmp\" \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt\""; +#endif + if(system(renameCommand.c_str())) { result = new std::string("An error occurred while running '" + renameCommand + "'."); @@ -674,3 +689,85 @@ void modelCDMPackage::CheckStructure(std::map& properties) } } + +std::map modelCDMPackage::Get3rdPartyLibraries() +{ + std::map correspondence; + correspondence["${BBTK_PACKAGE_NAME}_USE_VTKON"] = "VTK"; + correspondence["${BBTK_PACKAGE_NAME}_USE_ITKON"] = "ITK"; + correspondence["${BBTK_PACKAGE_NAME}_USE_GDCMON"] = "GDCM"; + correspondence["${BBTK_PACKAGE_NAME}_USE_GDCM_VTKON"] = "GDCM_VTK"; + correspondence["${BBTK_PACKAGE_NAME}_USE_GSMISON"] = "GSMIS"; + correspondence["${BBTK_PACKAGE_NAME}_USE_WXWIDGETSON"] = "WxWidgets"; + correspondence["${BBTK_PACKAGE_NAME}_USE_KWWIDGETSON"] = "KWWidgets"; + std::map res; + res["VTK"] = false; + res["ITK"] = false; + res["GDCM"] = false; + res["GDCM_VTK"] = false; + res["GSMIS"] = false; + res["WxWidgets"] = false; + res["KWWidgets"] = false; + + if(this->HasCMakeLists()) + { + std::ifstream CMFile(this->CMakeLists->GetPath().c_str()); + if (CMFile.is_open()) + { + std::string line; + while(!CMFile.eof()) + { + std::getline(CMFile, line, '('); + + std::vector lineSeg; + CDMUtilities::splitter::split(lineSeg,line,"\n",CDMUtilities::splitter::no_empties); + for(int i = 0; lineSeg.size() > 0 && i < lineSeg[lineSeg.size()-1].size(); ++i) + if (lineSeg[lineSeg.size()-1][i] == ' ') + { + lineSeg[lineSeg.size()-1].erase(i,1); + --i; + } + if(lineSeg.size() > 0 && lineSeg[lineSeg.size()-1][0]!='#' && lineSeg[lineSeg.size()-1] == "SET") + { + std::getline(CMFile, line, ')'); + CDMUtilities::splitter::split(lineSeg,line,"\t\n",CDMUtilities::splitter::no_empties); + if(lineSeg.size() > 0) + { + for(int i = 0; i < lineSeg[0].size(); ++i) + if (lineSeg[0][i] == ' ') + { + lineSeg[0].erase(i,1); + --i; + } + + if(lineSeg[0].size() > 0 && lineSeg[0][0] == '$' && correspondence.find(lineSeg[0]) != correspondence.end()) + { + res[correspondence[lineSeg[0]]] = true; + } + } + } + } + CMFile.close(); + } + } + return res; +} + +bool modelCDMPackage::Set3rdPartyLibrary(const std::string& library_name, + const bool& toInclude) +{ + return false; +} + +std::map modelCDMPackage::GetCustomLibraries() +{ + std::map res; + res["Test"] = false; + return res; +} + +bool modelCDMPackage::SetCustomLibrary(const std::string& library_name, + const bool& toInclude) +{ + return false; +}