]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/modelCDMLibrary.cpp
Feature #1711 CreaDevManager application implementation
[crea.git] / lib / creaDevManagerLib / modelCDMLibrary.cpp
index 58cc8929b669dea3741d889e30b937d297f34fae..9bac184430df0e36052796f23797df89e84b10da 100644 (file)
@@ -181,7 +181,11 @@ bool modelCDMLibrary::SetNameLibrary(const std::string& fileName, 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 + "'.");
@@ -429,3 +433,96 @@ void modelCDMLibrary::CheckStructure(std::map<std::string, bool>& properties)
 
     }
 }
+
+std::map<std::string, bool> modelCDMLibrary::Get3rdPartyLibraries()
+{
+  std::map<std::string, std::string> correspondence;
+  correspondence["${crea_LIBRARIES}"] = "Crea";
+  correspondence["${WXWIDGETS_LIBRARIES}"] = "WxWidgets";
+  correspondence["${KWWidgets_LIBRARIES}"] = "KWWidgets";
+  correspondence["${VTK_LIBRARIES}"] = "VTK";
+  correspondence["${ITK_LIBRARIES}"] = "ITK";
+  correspondence["${GDCM_LIBRARIES}"] = "GDCM";
+  correspondence["${BOOST_LIBRARIES}"] = "Boost";
+  std::map<std::string, bool> res;
+  res["Crea"] = false;
+  res["WxWidgets"] = false;
+  res["KWWidgets"] = false;
+  res["VTK"] = false;
+  res["ITK"] = false;
+  res["GDCM"] = false;
+  res["Boost"] = false;
+
+  if(this->HasCMakeLists())
+    {
+      CDMUtilities::readCMLFile(this->CMakeLists->GetPath().c_str());
+      std::ifstream CMFile(this->CMakeLists->GetPath().c_str());
+      if (CMFile.is_open())
+        {
+          std::string line;
+          while(!CMFile.eof())
+            {
+              std::getline(CMFile, line, '(');
+
+              std::vector<std::string> lineSeg;
+              CDMUtilities::splitter::split(lineSeg,line,"\n ",CDMUtilities::splitter::no_empties);
+
+              if(lineSeg.size() > 0 && lineSeg[lineSeg.size()-1] == "SET")
+                {
+                  //std::cout << "found set" << std::endl;
+                  std::getline(CMFile, line, ')');
+                  //std::cout << line << std::endl;
+                  CDMUtilities::splitter::split(lineSeg,line,"\n",CDMUtilities::splitter::no_empties);
+                  if(lineSeg.size() > 0)
+                    {
+                      //std::cout << lineSeg[0] << std::endl;
+                      for(int i = 0; i < lineSeg[0].size(); ++i)
+                        if (lineSeg[0][i] == ' ')
+                          {
+                            lineSeg[0].erase(i,1);
+                            --i;
+                          }
+                      //std::cout << lineSeg[0] << std::endl;
+                      if (lineSeg[0] == "${LIBRARY_NAME}_LINK_LIBRARIES")
+                        {
+                          //std::cout << "link" << std::endl;
+                          for (int l = 1; l < lineSeg.size(); ++l)
+                            {
+                              for(int i = 0;i < lineSeg[l].size(); i++)
+                                if (lineSeg[l][i] == ' ')
+                                  {
+                                    lineSeg[l].erase(i,1);
+                                    i--;
+                                  }
+                              if(lineSeg[l].size() > 0 && lineSeg[l][0] == '$')
+                                {
+                                  //std::cout << "found " << lineSeg[l] << std::endl;
+                                  res[correspondence[lineSeg[l]]] = true;
+                                }
+                            }
+                        }
+                    }
+                }
+            }
+          CMFile.close();
+        }
+    }
+  return res;
+}
+
+bool modelCDMLibrary::Set3rdPartyLibrary(const std::string& library_name, const bool& toInclude)
+{
+  return false;
+}
+
+std::map<std::string, bool> modelCDMLibrary::GetCustomLibraries()
+{
+  std::map<std::string, bool> res;
+  res["Test"] = false;
+  return res;
+}
+
+bool modelCDMLibrary::SetCustomLibrary(const std::string& library_name, const bool& toInclude)
+{
+  return false;
+}