]> Creatis software - crea.git/blobdiff - lib/creaDevManagerLib/modelCDMAppli.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / modelCDMAppli.cpp
index ebd4de0170deefe08dd3e8d453bf5739a1325c44..c92932a1c5583de3c0a9f6795d926fefe26cc13d 100644 (file)
@@ -46,10 +46,11 @@ modelCDMAppli::modelCDMAppli()
 {
 }
 
-modelCDMAppli::modelCDMAppli(const std::string& path, const int& level)
+modelCDMAppli::modelCDMAppli(const std::string& path, const std::string& name, const int& level)
 {
+  std::cout << "creating appli\n";
   this->type = wxDIR_DIRS;
-  this->name = "appli";
+  this->name = name;
   this->level = level;
   this->path = path;
 
@@ -68,15 +69,36 @@ modelCDMAppli::modelCDMAppli(const std::string& path, const int& level)
         {
           std::string stdfileName = crea::wx2std(fileName);
 
-          modelCDMApplication* application = new modelCDMApplication(pathFixed + "/" + stdfileName, this->level + 1);
+          modelCDMApplication* application = new modelCDMApplication(pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
           this->applications.push_back(application);
           this->children.push_back(application);
 
           cont = dir.GetNext(&fileName);
         }
+      //files
+      cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
+      while (cont)
+        {
+          std::string stdfileName = crea::wx2std(fileName);
+
+          //if CMakeLists, create CMakeLists
+          if(stdfileName == "CMakeLists.txt")
+            {
+              this->CMakeLists = new modelCDMCMakeListsFile(pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
+              this->children.push_back(this->CMakeLists);
+            }
+          //if is an unknown file, create file
+          else
+            {
+              this->children.push_back(new modelCDMFile(pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1));
+            }
+
+          cont = dir.GetNext(&fileName);
+        }
 
     }
   this->SortChildren();
+  std::sort(this->applications.begin(), this->applications.end(), CompareNodeItem);
 }
 
 modelCDMAppli::~modelCDMAppli()
@@ -90,13 +112,11 @@ const std::vector<modelCDMApplication*>& modelCDMAppli::GetApplications() const
 
 modelCDMApplication* modelCDMAppli::CreateApplication(
     const std::string& name,
-    std::string*& result,
-    const std::string& path
+    std::string*& result
 )
 {
   //copy template application folder with new name
-  //TODO: fix for windows
-  std::string copyCommand = "cp -r " + this->path + "/template_appli " + this->path + "/" + name;
+  std::string copyCommand = "cp -r \"" + this->path + CDMUtilities::SLASH + "template_appli\" \"" + this->path + CDMUtilities::SLASH + name + "\"";
   if(system(copyCommand.c_str()))
     {
       result = new std::string("An error occurred while running '" + copyCommand + "'.");
@@ -104,13 +124,13 @@ modelCDMApplication* modelCDMAppli::CreateApplication(
     }
   //set name of library in CMakeLists inside copied folder
   std::string line;
-  std::ifstream in((this->path + "/" + name + "/CMakeLists.txt").c_str());
+  std::ifstream in((this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt").c_str());
   if( !in.is_open())
     {
       result = new std::string("CMakeLists.txt file failed to open.");
       return NULL;
     }
-  std::ofstream out((this->path + "/" + name + "/CMakeLists.txt.tmp").c_str());
+  std::ofstream out((this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt.tmp").c_str());
   while (getline(in, line))
     {
       if(line == "SET ( EXE_NAME   MyExe  )")
@@ -120,7 +140,7 @@ modelCDMApplication* modelCDMAppli::CreateApplication(
   in.close();
   out.close();
   //delete old file and rename new file
-  std::string renameCommand = "mv " + this->path + "/" + name + "/CMakeLists.txt.tmp " + this->path + "/" + name + "/CMakeLists.txt";
+  std::string renameCommand = "mv \"" + this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt.tmp\" \"" + this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt\"";
   if(system(renameCommand.c_str()))
     {
       result = new std::string("An error occurred while running '" + renameCommand + "'.");
@@ -128,14 +148,13 @@ modelCDMApplication* modelCDMAppli::CreateApplication(
     }
 
   //add application to model
-  //TODO: fix for windows
-  modelCDMApplication* application = new modelCDMApplication(this->path + "/" + name, this->level + 1);
+  modelCDMApplication* application = new modelCDMApplication(this->path + CDMUtilities::SLASH + name, name, this->level + 1);
   this->applications.push_back(application);
   this->children.push_back(application);
 
   this->SortChildren();
 
-  result = new std::string(this->path + "/" + name);
+  result = new std::string(this->path + CDMUtilities::SLASH + name);
   return application;
 }
 
@@ -143,11 +162,6 @@ const bool modelCDMAppli::Refresh(std::string*& result)
 {
   std::cout << "refreshing appli" << std::endl;
   this->type = wxDIR_DIRS;
-  this->name = "appli";
-  this->level = level;
-  this->path = path;
-
-
 
   std::vector<bool> checked(this->children.size(), false);
   std::vector<bool> checkedApplications(this->applications.size(), false);
@@ -164,7 +178,7 @@ const bool modelCDMAppli::Refresh(std::string*& result)
           std::string applicationName = stdfileName;
           //check if they already exist
           bool found = false;
-          for (int i = 0;!found && i < this->applications.size(); i++)
+          for (int i = 0; !found && i < this->applications.size(); i++)
             {
               if (this->applications[i]->GetName() == applicationName)
                 {
@@ -178,7 +192,7 @@ const bool modelCDMAppli::Refresh(std::string*& result)
             }
           if(!found)
             {
-              modelCDMApplication* application= new modelCDMApplication(this->path + "/" + stdfileName, this->level + 1);
+              modelCDMApplication* application= new modelCDMApplication(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
               this->applications.push_back(application);
               this->children.push_back(application);
             }
@@ -195,7 +209,7 @@ const bool modelCDMAppli::Refresh(std::string*& result)
             {
               if (this->CMakeLists == NULL)
                 {
-                  this->CMakeLists = new modelCDMCMakeListsFile(this->path + "/" + stdfileName, this->level + 1);
+                  this->CMakeLists = new modelCDMCMakeListsFile(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
                   this->children.push_back(this->CMakeLists);
                 }
               else
@@ -210,7 +224,7 @@ const bool modelCDMAppli::Refresh(std::string*& result)
           else
             {
               bool found = false;
-              for (int i = 0; i <!found && this->children.size(); i++)
+              for (int i = 0; !found && i < this->children.size(); i++)
                 {
                   if (this->children[i]->GetName() == stdfileName)
                     {
@@ -223,7 +237,7 @@ const bool modelCDMAppli::Refresh(std::string*& result)
 
               if(!found)
                 {
-                  modelCDMFile* file = new modelCDMFile(this->path + "/" + stdfileName, this->level + 1);
+                  modelCDMFile* file = new modelCDMFile(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
                   this->children.push_back(file);
                 }
             }
@@ -252,5 +266,6 @@ const bool modelCDMAppli::Refresh(std::string*& result)
         }
     }
   this->SortChildren();
+  std::sort(this->applications.begin(), this->applications.end(), CompareNodeItem);
   return true;
 }