]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/modelCDMLibrary.cpp
Feature #1711 CreaDevManager application implementation
[crea.git] / lib / creaDevManagerLib / modelCDMLibrary.cpp
index b124c930309cb0300b647c979933774aae50644e..8567a6eba3b8b13069965812042822787e111123 100644 (file)
@@ -37,6 +37,7 @@
 #include <fstream>
 #include <sstream>
 #include <algorithm>
+#include <boost/regex.hpp>
 
 #include "CDMUtilities.h"
 #include "creaWx.h"
@@ -453,64 +454,148 @@ std::map<std::string, bool> modelCDMLibrary::Get3rdPartyLibraries()
   res["GDCM"] = false;
   res["Boost"] = false;
 
-  if(this->HasCMakeLists())
+  if (this->HasCMakeLists())
     {
-      std::ifstream CMFile(this->CMakeLists->GetPath().c_str());
-      if (CMFile.is_open())
+      std::string CMfile = CDMUtilities::readFile(this->CMakeLists->GetPath().c_str());
+
+      boost::regex expression("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{LIBRARY_NAME\\}_LINK_LIBRARIES(([\\s]|#[^\\n]*\\n)+([\\$\\{\\}\\w\\d]+|\"(?:[^\"\\\\]|\\\\.)*\"))*([\\s]|#[^\\n]*\\n)*\\)");
+      std::string::const_iterator start, end;
+      start = CMfile.begin();
+      end = CMfile.end();
+      boost::match_results<std::string::const_iterator> what;
+      boost::match_flag_type flags = boost::match_default;
+      if(boost::regex_search(start, end, what, expression, flags))
         {
-          std::string line;
-          while(!CMFile.eof())
+
+          expression = boost::regex("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{LIBRARY_NAME\\}_LINK_LIBRARIES");
+          std::string::const_iterator start1, end1;
+          start1 = what[0].first;
+          end1 = what[0].second;
+          boost::match_results<std::string::const_iterator> what1;
+          if(boost::regex_search(start1, end1, what1, expression, flags))
             {
-              std::getline(CMFile, line, '(');
+              expression = boost::regex("(#[^\\n]*\\n|\\s*\\$\\{\\w+\\})");
+              std::string::const_iterator start2, end2;
+              start2 = what1[0].second;
+              end2 = what[0].second;
+              boost::match_results<std::string::const_iterator> what2;
+              while(boost::regex_search(start2, end2, what2, expression, flags))
+                {
+                  if(what2.str()[0] != '#')
+                    {
+                      std::string dete = what2.str();
+                      CDMUtilities::normalizeStr(dete);
+                      if(correspondence.find(dete) != correspondence.end())
+                        res[correspondence[dete]] = true;
+                    }
+                  start2 = what2[0].second;
+                }
+            }
+        }
+    }
+  return res;
+}
+
+bool modelCDMLibrary::Set3rdPartyLibrary(const std::string& library_name, const bool& toInclude)
+{
+  std::map<std::string, std::string> correspondence;
 
-              std::vector<std::string> lineSeg;
-              CDMUtilities::splitter::split(lineSeg,line,"\n ",CDMUtilities::splitter::no_empties);
+  correspondence["Crea"] = "${crea_LIBRARIES}";
+  correspondence["WxWidgets"] = "${WXWIDGETS_LIBRARIES}";
+  correspondence["KWWidgets"] = "${KWWidgets_LIBRARIES}";
+  correspondence["VTK"] = "${VTK_LIBRARIES}";
+  correspondence["ITK"] = "${ITK_LIBRARIES}";
+  correspondence["GDCM"] = "${GDCM_LIBRARIES}";
+  correspondence["Boost"] = "${BOOST_LIBRARIES}";
 
-              if(lineSeg.size() > 0 && lineSeg[lineSeg.size()-1] == "SET")
+  if (correspondence.find(library_name) != correspondence.end())
+    {
+      std::string library_command = correspondence[library_name];
+      if (this->HasCMakeLists())
+        {
+          CDMUtilities::CMLFile cmlFile = CDMUtilities::readCMLFile(this->CMakeLists->GetPath());
+
+          // look at every syntax element
+          for (int i = 0; i < cmlFile.size(); ++i)
+            {
+              // if the element is a command and is a SET command
+              if (cmlFile[i].first == "command" && cmlFile[i].second[0] == "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)
+                  // search first parameter
+                  int pos = 1;
+                  while (pos < cmlFile[i].second.size())
                     {
-                      //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")
+                      // see if it is ${LIBRARY_NAME}_LINK_LIBRARIES
+                      if (cmlFile[i].second[pos] == "${LIBRARY_NAME}_LINK_LIBRARIES")
                         {
-                          //std::cout << "link" << std::endl;
-                          for (int l = 1; l < lineSeg.size(); ++l)
+                          bool found = false;
+                          pos++;
+                          // look for all the third party libraries included
+                          while (pos < cmlFile[i].second.size() && cmlFile[i].second[pos] != ")")
                             {
-                              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] == '$')
+                              // if is library_command then found
+                              if (cmlFile[i].second[pos] == library_command)
+                                {
+                                  found = true;
+                                  //if toInclude is false the make it a comment
+                                  if (!toInclude)
+                                    {
+                                      cmlFile[i].second[pos] = "#" + cmlFile[i].second[pos];
+                                      std::cout << "library commented: " << library_name << std::endl;
+                                    }
+                                  break;
+                                }
+                              else if (toInclude && cmlFile[i].second[pos][0] == '#')
                                 {
-                                  //std::cout << "found " << lineSeg[l] << std::endl;
-                                  res[correspondence[lineSeg[l]]] = true;
+                                  std::vector<std::string> segments;
+                                  CDMUtilities::splitter::split(segments, cmlFile[i].second[pos], "#", CDMUtilities::splitter::no_empties);
+                                  if(segments.size())
+                                    {
+                                      for (int j = 0; j < segments[0].size(); ++j)
+                                        {
+                                          if(isspace(segments[0][j]))
+                                            {
+                                              segments[0].erase(j,1);
+                                              j--;
+                                            }
+                                        }
+
+                                      if(segments[0].size() && segments[0] == library_command)
+                                        {
+                                          std::cout << "library uncommented: " << library_name << std::endl;
+                                          found = true;
+                                          while(cmlFile[i].second[pos][0] == '#')
+                                            {
+                                              cmlFile[i].second[pos].erase(0,1);
+                                            }
+                                          break;
+                                        }
+                                    }
                                 }
+                              pos++;
+                            }
+
+                          // if the library was not found and is an inclusion then include it.
+                          if (!found && toInclude && pos < cmlFile[i].second.size() && cmlFile[i].second[pos] == ")")
+                            {
+                              cmlFile[i].second.insert(cmlFile[i].second.begin()+pos, library_command);
+                              cmlFile[i].second.insert(cmlFile[i].second.begin()+pos+1, "\n");
+                              std::cout << "library included: " << library_name << std::endl;
                             }
                         }
+                      // if it is the first parameter but is not ${LIBRARY_NAME}_LINK_LIBRARIES then finish with this command
+                      else if (!isspace(cmlFile[i].second[pos][0]) && cmlFile[i].second[pos][0] != '#' && cmlFile[i].second[pos][0] != '(' && cmlFile[i].second[pos][0] != ')')
+                        {
+                          break;
+                        }
+                      pos++;
                     }
                 }
             }
-          CMFile.close();
+
+          return CDMUtilities::writeCMLFile(this->CMakeLists->GetPath(), cmlFile);
         }
     }
-  return res;
-}
-
-bool modelCDMLibrary::Set3rdPartyLibrary(const std::string& library_name, const bool& toInclude)
-{
   return false;
 }