]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/modelCDMPackage.cpp
Feature #1711 CreaDevManager application implementation
[crea.git] / lib / creaDevManagerLib / modelCDMPackage.cpp
index c6ea443d6d516e0e00b72c65cefe38f3c7f4ef79..7e8b9ba6265533b5f88fcf5c5cc4420640e968b8 100644 (file)
 
 #include "modelCDMPackage.h"
 
+#include "modelCDMProject.h"
+#include "modelCDMLib.h"
+#include "modelCDMLibrary.h"
+
+
 #include <fstream>
 #include <sstream>
 #include <algorithm>
+#include <boost/regex.hpp>
 
 #include "creaWx.h"
 #include "wx/dir.h"
@@ -711,44 +717,31 @@ std::map<std::string, bool> modelCDMPackage::Get3rdPartyLibraries()
 
   if (this->HasCMakeLists())
     {
-      CDMUtilities::CMLFile cmlFile = CDMUtilities::readCMLFile(this->CMakeLists->GetPath().c_str());
-      // look at every syntax element
-      for (int i = 0; i < cmlFile.size(); ++i)
+      std::string CMfile = CDMUtilities::readFile(this->CMakeLists->GetPath().c_str());
+
+      boost::regex expression("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{BBTK_PACKAGE_NAME\\}_USE_\\w+\\s+ON");
+      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;
+      while(boost::regex_search(start, end, what, expression, flags))
         {
-          // if the element is a command and is a SET command
-          if (cmlFile[i].first == "command" && cmlFile[i].second[0] == "SET")
+          //std::cout << what[0].str() << std::endl;
+          boost::regex expression1 = boost::regex("\\$\\{BBTK_PACKAGE_NAME\\}_USE_\\w+");
+          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, expression1, flags))
             {
-              // search first parameter
-              int pos = 1;
-              while (pos < cmlFile[i].second.size())
-                {
-                  if (!isspace(cmlFile[i].second[pos][0]) && cmlFile[i].second[pos][0] != '#' && cmlFile[i].second[pos][0] != '(' && cmlFile[i].second[pos][0] != ')')
-                    {
-                      break;
-                    }
-                  pos++;
-                }
-              // if the first parameter is a third party statement
-              if (pos < cmlFile[i].second.size() && correspondence.find(cmlFile[i].second[pos]) != correspondence.end())
-                {
-                  std::string foundLibrary = cmlFile[i].second[pos];
-                  // search for second parameter
-                  pos++;
-                  while (pos < cmlFile[i].second.size())
-                    {
-                      if (!isspace(cmlFile[i].second[pos][0]) && cmlFile[i].second[pos][0] != '#' && cmlFile[i].second[pos][0] != '(' && cmlFile[i].second[pos][0] != ')')
-                        {
-                          break;
-                        }
-                      pos++;
-                    }
-                  // if the second parameter is ON
-                  if (pos < cmlFile[i].second.size() && cmlFile[i].second[pos] == "ON")
-                    {
-                      res[correspondence[foundLibrary]] = true;
-                    }
-                }
+              std::string dete = what1.str();
+              CDMUtilities::normalizeStr(dete);
+              //std::cout << dete << std::endl;
+              if(correspondence.find(dete) != correspondence.end())
+                res[correspondence[dete]] = true;
             }
+          start = what[0].second;
         }
     }
   return res;
@@ -759,94 +752,203 @@ bool modelCDMPackage::Set3rdPartyLibrary(const std::string& library_name,
 {
   std::map<std::string, std::string> correspondence;
 
-  correspondence["VTK"] = "${BBTK_PACKAGE_NAME}_USE_VTK";
-  correspondence["ITK"] = "${BBTK_PACKAGE_NAME}_USE_ITK";
-  correspondence["GDCM"] = "${BBTK_PACKAGE_NAME}_USE_GDCM";
-  correspondence["GDCM_VTK"] = "${BBTK_PACKAGE_NAME}_USE_GDCM_VTK";
-  correspondence["GSMIS"] = "${BBTK_PACKAGE_NAME}_USE_GSMIS";
-  correspondence["WxWidgets"] = "${BBTK_PACKAGE_NAME}_USE_WXWIDGETS";
-  correspondence["KWWidgets"] = "${BBTK_PACKAGE_NAME}_USE_KWWIDGETS";
-/*
-  if(correspondence.find(library_name) != correspondence.end())
+  correspondence["VTK"] = "_USE_VTK";
+  correspondence["ITK"] = "_USE_ITK";
+  correspondence["GDCM"] = "_USE_GDCM";
+  correspondence["GDCM_VTK"] = "_USE_GDCM_VTK";
+  correspondence["GSMIS"] = "_USE_GSMIS";
+  correspondence["WxWidgets"] = "_USE_WXWIDGETS";
+  correspondence["KWWidgets"] = "_USE_KWWIDGETS";
+
+  if (correspondence.find(library_name) != correspondence.end())
     {
       std::string library_command = correspondence[library_name];
+//      std::cout << "found correspondence " << library_command << std::endl;
+//      std::cout.flush();
       if (this->HasCMakeLists())
         {
-          CDMUtilities::CMLFile cmlFile = CDMUtilities::readCMLFile(this->CMakeLists->GetPath().c_str());
+          std::string CMfile = CDMUtilities::readFile(this->CMakeLists->GetPath().c_str());
+          std::string resCMfile = "";
           bool found = false;
-          // 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")
-                {
-                  // search first parameter
-                  int pos = 1;
-                  while (pos < cmlFile[i].second.size())
-                    {
-                      if (!isspace(cmlFile[i].second[pos][0]) && cmlFile[i].second[pos][0] != '#' && cmlFile[i].second[pos][0] != '(' && cmlFile[i].second[pos][0] != ')')
-                        {
-                          break;
-                        }
-                      pos++;
-                    }
-                  // if the first parameter is a third party statement
-                  if (pos < cmlFile[i].second.size() && cmlFile[i].second[pos] == library_command)
-                    {
-                      std::string foundLibrary = cmlFile[i].second[pos];
-                      // search for second parameter
-                      pos++;
-                      while (pos < cmlFile[i].second.size())
-                        {
-                          if (!isspace(cmlFile[i].second[pos][0]) && cmlFile[i].second[pos][0] != '#' && cmlFile[i].second[pos][0] != '(' && cmlFile[i].second[pos][0] != ')')
+
+//          std::cout << "found cmakefile: " << CMfile << std::endl;
+//          std::cout.flush();
+
+          try {
+//            std::cout << "first regex" << std::endl;
+//            std::cout.flush();
+            boost::regex expression("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{BBTK_PACKAGE_NAME\\}"+library_command+"([\\s]|#[^\\n]*\\n)+ON([\\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::cout << "found " << what.str() << std::endl;
+//                std::cout.flush();
+                found = true;
+                resCMfile += what.prefix().str();
+                if (toInclude)
+                  resCMfile += what.str();
+                else
+                  resCMfile += "#" + what.str();
+                resCMfile += what.suffix().str();
+
+                return CDMUtilities::writeFile(this->CMakeLists->GetPath().c_str(), resCMfile);
+              }
+            else
+              {
+//                std::cout << "second regex" << std::endl;
+//                std::cout.flush();
+                boost::regex expression("^\\h*#\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{BBTK_PACKAGE_NAME\\}"+library_command+"([\\s]|#[^\\n]*\\n)+ON([\\s]|#[^\\n]*\\n)*\\)");
+                if(boost::regex_search(start, end, what, expression, flags))
+                  {
+                    found = true;
+                    resCMfile += what.prefix().str();
+                    if(toInclude)
+                      {
+                        std::string dete = what[0].str();
+                        for (int i = 0; i < dete.size(); ++i) {
+                          if (dete[i] != '#')
+                            resCMfile.push_back(dete[i]);
+                          if (dete[i] == 'S')
                             {
+                              resCMfile += dete.substr(i+1);
                               break;
                             }
-                          pos++;
                         }
-                      // if the second parameter is ON
-                      if (pos < cmlFile[i].second.size() && cmlFile[i].second[pos] == "ON")
-                        {
-                          found = true;
-                          if (toInclude)
-                            {
-                              std::cout << "library already included: " << library_name << std::endl;
-                            }
-                          else
-                            {
-                              cmlFile[i].first = "comment";
-                              cmlFile[i].second[0] = "#" + cmlFile[i].second[0];
-                              std::cout << "library include commented: " << library_name << std::endl;
-                            }
-                        }
-                      else if (pos < cmlFile[i].second.size() && cmlFile[i].second[pos] == "OFF")
-                        {
-                          found = true;
-                          if (toInclude)
-                            {
-                              cmlFile[i].second[pos] = "ON";
-                              std::cout << "library include activated: " << library_name << std::endl;
-                            }
-                          else
-                            {
-                              std::cout << "library include already disabled: " << library_name << std::endl;
-                            }
-                        }
-                    }
-                } else if (cmlFile[i].first == "comment") {
-                    //TODO: check if it is commented
-                }
-            }
+                      }
+                    else
+                      resCMfile += what.str();
+
+                    resCMfile += what.suffix().str();
+                    return CDMUtilities::writeFile(this->CMakeLists->GetPath().c_str(), resCMfile);
+                  }
+                else
+                  {
+//                    std::cout << "third regex" << std::endl;
+//                    std::cout.flush();
+                    boost::regex expression("^\\h*#\\h*UNCOMMENT EACH LIBRARY NEEDED \\(WILL BE FOUND AND USED AUTOMATICALLY\\)[^\\n]*\\n");
+                    if(boost::regex_search(start, end, what, expression, flags))
+                      {
+                        found = true;
+                        resCMfile += what.prefix().str();
+                        resCMfile += what.str();
+                        if(toInclude)
+                          {
+                            resCMfile += "SET(${BBTK_PACKAGE_NAME}"+ library_command +"  ON)\n";
+                          }
+                        resCMfile += what.suffix().str();
+                        return CDMUtilities::writeFile(this->CMakeLists->GetPath().c_str(), resCMfile);
+                      }
+                  }
+              }
+          } catch (boost::bad_expression& e) {
+            std::cout << "bad regex: " << e.what() << std::endl;
+            std::cout.flush();
+          }
         }
     }
-*/
   return false;
 }
 
 std::map<std::string, bool> modelCDMPackage::GetCustomLibraries()
 {
   std::map<std::string, bool> res;
-  res["Test"] = false;
+  std::map<std::string, bool> res1;
+
+  std::map<std::string, std::string> correspondence;
+  std::vector<modelCDMLibrary*> libraries;
+  modelCDMIProjectTreeNode* p = this;
+  while(p != NULL && dynamic_cast<modelCDMProject*>(p) == NULL)
+    p = p->GetParent();
+
+  if(p != NULL && dynamic_cast<modelCDMProject*>(p)->GetLib() != NULL)
+    libraries = dynamic_cast<modelCDMProject*>(p)->GetLib()->GetLibraries();
+
+  for (int i = 0; i < libraries.size(); ++i)
+    {
+      correspondence[libraries[i]->GetName()] = libraries[i]->GetNameLibrary();
+      res[libraries[i]->GetNameLibrary()] = false;
+      res1[libraries[i]->GetNameLibrary()] = false;
+    }
+
+  if (this->HasCMakeLists())
+    {
+      std::string CMfile = CDMUtilities::readFile(this->CMakeLists->GetPath().c_str());
+
+      //find included libraries
+      boost::regex expression("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{BBTK_PACKAGE_NAME\\}_LIBS(([\\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))
+        {
+
+          expression = boost::regex("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{BBTK_PACKAGE_NAME\\}_LIBS");
+          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))
+            {
+              expression = boost::regex("^\\h*[\\w\\d]+");
+              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))
+                {
+                  std::string dete = what2.str();
+                  CDMUtilities::normalizeStr(dete);
+                  //std::cout << "detectado lib: " << dete << std::endl;
+                  if(res1.find(dete) != res1.end())
+                    res1[dete] = true;
+
+                  start2 = what2[0].second;
+                }
+            }
+        }
+
+      //find included folders
+      //std::cout << "searching..." << std::endl;
+      expression = boost::regex("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{BBTK_PACKAGE_NAME\\}_INCLUDE_DIRS(([\\s]|#[^\\n]*\\n|////[^\\n]*\\n)+([\\.\\/\\$\\{\\}\\w\\d]+|\"(?:[^\"\\\\]|\\\\.)*\"))*([\\s]|#[^\\n]*\\n)*\\)");
+      start = CMfile.begin();
+      end = CMfile.end();
+      if(boost::regex_search(start, end, what, expression, flags))
+        {
+          //std::cout << what.str() << std::endl;
+          expression = boost::regex("^\\h*SET([\\s]|#[^\\n]*\\n)*\\(([\\s]|#[^\\n]*\\n)*\\$\\{BBTK_PACKAGE_NAME\\}_INCLUDE_DIRS");
+          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::cout << what1.str() << std::endl;
+              expression = boost::regex("^\\h*\\.\\.\\/lib\\/([\\w\\d])+");
+              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))
+                {
+                  std::string dete = what2.str();
+                  CDMUtilities::normalizeStr(dete);
+                  //std::cout << "detectado dir: " << dete.substr(7) << std::endl;
+                  if(correspondence.find(dete.substr(7)) != correspondence.end())
+                    res[correspondence[dete.substr(7)]] = res1[correspondence[dete.substr(7)]];
+
+                  start2 = what2[0].second;
+                }
+            }
+        }
+    }
+
   return res;
 }