]> Creatis software - crea.git/commitdiff
Feature #1711 CreaDevManager application implementation
authorDaniel Gonzalez <daniel.gonzalez@creatis.insa-lyon.fr>
Thu, 18 Apr 2013 10:14:00 +0000 (12:14 +0200)
committerDaniel Gonzalez <daniel.gonzalez@creatis.insa-lyon.fr>
Thu, 18 Apr 2013 10:14:00 +0000 (12:14 +0200)
Feature: Now including/excluding third party libraries in packages using Regular Expressions.

lib/creaDevManagerLib/modelCDMPackage.cpp
lib/creaDevManagerLib/wxCDMPackageConfigurationDialog.cpp
lib/creaDevManagerLib/wxCDMPackageDescriptionPanel.cpp

index c080ddd34c6abc857280395537e084344d34ca7f..9a296e93cdbb090ff5247a37143b41afbfaa3337 100644 (file)
@@ -747,87 +747,105 @@ 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;
 }
 
index 7c9c3aaef956af43cbe2057c25fee210072d8c18..21787697344a889d273808c65485ebf4dc4f4541 100644 (file)
@@ -207,10 +207,10 @@ void wxCDMPackageConfigurationDialog::OnFinish(wxCommandEvent& event)
 void wxCDMPackageConfigurationDialog::On3rdLibraryIncludeChange(
     wxCommandEvent& event)
 {
-  this->package->Set3rdPartyLibrary(
-    crea::wx2std(((wxCheckBox*)event.GetEventObject())->GetName()),
-    ((wxCheckBox*)event.GetEventObject())->GetValue()
-  );
+  if(this->package->Set3rdPartyLibrary(crea::wx2std(((wxCheckBox*)event.GetEventObject())->GetName()), ((wxCheckBox*)event.GetEventObject())->GetValue()))
+    ((wxCheckBox*)event.GetEventObject())->SetValue(((wxCheckBox*)event.GetEventObject())->GetValue());
+  else
+    ((wxCheckBox*)event.GetEventObject())->SetValue(!((wxCheckBox*)event.GetEventObject())->GetValue());
 }
 
 void wxCDMPackageConfigurationDialog::OnCustomLibraryIncludeChange(
index 6858c551ff5381b80ff3164eebb880244c6e0146..c736270ab93550b09ac1733dc8de971da2f5f621 100644 (file)
@@ -88,8 +88,8 @@ bool wxCDMPackageDescriptionPanel::Create(
     long style
 )
 {
-  wxPanel::Create(parent, id, pos, size, style);
   this->package = package;
+  wxPanel::Create(parent, id, pos, size, style);
   CreateControls();
   // this part makes the scrollbars show up
   this->FitInside(); // ask the sizer about the needed size