X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=inline;f=lib%2FcreaDevManagerLib%2FmodelCDMLib.cpp;h=8ebd9ae100555df4211fdc2149729e3b7081062e;hb=311bdcc514f85386f3bbbef9ff6a88bf69fd930f;hp=2201891d72615c8ca1b01f935eced1ed2c3712fd;hpb=73787c5a26e6b218b9e6c716dafc7d16330441e7;p=crea.git diff --git a/lib/creaDevManagerLib/modelCDMLib.cpp b/lib/creaDevManagerLib/modelCDMLib.cpp index 2201891..8ebd9ae 100644 --- a/lib/creaDevManagerLib/modelCDMLib.cpp +++ b/lib/creaDevManagerLib/modelCDMLib.cpp @@ -35,6 +35,7 @@ #include "modelCDMLib.h" #include +#include #include "CDMUtilities.h" #include "creaWx.h" @@ -44,10 +45,11 @@ modelCDMLib::modelCDMLib() { } -modelCDMLib::modelCDMLib(const std::string& path, const int& level) +modelCDMLib::modelCDMLib(const std::string& path, const std::string& name, const int& level) { + std::cout << "creating lib\n"; this->type = wxDIR_DIRS; - this->name = "lib"; + this->name = name; this->level = level; this->path = path; @@ -62,48 +64,73 @@ modelCDMLib::modelCDMLib(const std::string& path, const int& level) if (dir.IsOpened()) { wxString fileName; + //folders bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS); while (cont) { std::string stdfileName = crea::wx2std(fileName); - modelCDMLibrary* library = new modelCDMLibrary(pathFixed + "/" + stdfileName, this->level + 1); + modelCDMLibrary* library = new modelCDMLibrary(pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1); this->libraries.push_back(library); this->children.push_back(library); 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->libraries.begin(), this->libraries.end(), CompareNodeItem); } modelCDMLib::~modelCDMLib() { } -modelCDMIProjectTreeNode* modelCDMLib::CreateLibrary( +const std::vector& modelCDMLib::GetLibraries() const +{ + return this->libraries; +} + +modelCDMLibrary* modelCDMLib::CreateLibrary( const std::string& name, - std::string*& result, - const std::string& path + std::string*& result ) { //copy template library folder with new name - std::string copyCommand = "cp -r " + this->path + "/template_lib " + this->path + "/" + name; + std::string copyCommand = "cp -r \"" + this->path + CDMUtilities::SLASH + "template_lib\" \"" + this->path + CDMUtilities::SLASH + name + "\""; if(system(copyCommand.c_str())) { result = new std::string("An error occurred while running '" + copyCommand + "'."); return NULL; } - //TODO: set name of library in CMakeLists inside copied folder + //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 ( LIBRARY_NAME MyLib )") @@ -113,7 +140,7 @@ modelCDMIProjectTreeNode* modelCDMLib::CreateLibrary( 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 + "'."); @@ -121,22 +148,126 @@ modelCDMIProjectTreeNode* modelCDMLib::CreateLibrary( } //add library to model - modelCDMLibrary* library = new modelCDMLibrary(this->path + "/" + name, this->level + 1); + modelCDMLibrary* library = new modelCDMLibrary(this->path + CDMUtilities::SLASH + name, name, this->level + 1); this->libraries.push_back(library); this->children.push_back(library); - result = new std::string(this->path + "/" + name); - return library; -} + this->SortChildren(); -bool modelCDMLib::OpenCMakeListsFile(std::string*& result) -{ - //TODO: implement method - return true; + result = new std::string(this->path + CDMUtilities::SLASH + name); + return library; } const bool modelCDMLib::Refresh(std::string*& result) { - //TODO: implement method + std::cout << "refreshing lib" << std::endl; + this->type = wxDIR_DIRS; + + + + std::vector checked(this->children.size(), false); + std::vector checkedLibraries(this->libraries.size(), false); + + //check all folders + wxDir dir(crea::std2wx((this->path).c_str())); + if (dir.IsOpened()) + { + wxString fileName; + bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS); + while (cont) + { + std::string stdfileName = crea::wx2std(fileName); + std::string libraryName = stdfileName; + //check if they already exist + bool found = false; + for (int i = 0; !found && i < this->libraries.size(); i++) + { + if (this->libraries[i]->GetName() == libraryName) + { + found = true; + int pos = std::find(this->children.begin(), this->children.end(), this->libraries[i]) - this->children.begin(); + checked[pos] = true; + checkedLibraries[i] = true; + if(!this->libraries[i]->Refresh(result)) + return false; + } + } + if(!found) + { + modelCDMLibrary* library = new modelCDMLibrary(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1); + this->libraries.push_back(library); + this->children.push_back(library); + } + cont = dir.GetNext(&fileName); + } + + cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES); + while (cont) + { + std::string stdfileName = crea::wx2std(fileName); + + //if CMakeLists, create CMakeLists + if(stdfileName == "CMakeLists.txt") + { + if (this->CMakeLists == NULL) + { + this->CMakeLists = new modelCDMCMakeListsFile(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1); + this->children.push_back(this->CMakeLists); + } + else + { + int pos = std::find(this->children.begin(), this->children.end(), this->CMakeLists) - this->children.begin(); + checked[pos] = true; + if(!this->CMakeLists->Refresh(result)) + return false; + } + } + //if is an unknown file, create file + else + { + bool found = false; + for (int i = 0; !found && i < this->children.size(); i++) + { + if (this->children[i]->GetName() == stdfileName) + { + found = true; + checked[i] = true; + if(!this->children[i]->Refresh(result)) + return false; + } + } + + if(!found) + { + modelCDMFile* file = new modelCDMFile(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1); + this->children.push_back(file); + } + } + + cont = dir.GetNext(&fileName); + } + } + + for (int i = 0; i < checkedLibraries.size(); i++) + { + if(!checkedLibraries[i]) + { + this->libraries.erase(this->libraries.begin()+i); + checkedLibraries.erase(checkedLibraries.begin()+i); + i--; + } + } + for (int i = 0; i < checked.size(); i++) + { + if(!checked[i]) + { + delete this->children[i]; + this->children.erase(this->children.begin()+i); + checked.erase(checked.begin()+i); + i--; + } + } + this->SortChildren(); + std::sort(this->libraries.begin(), this->libraries.end(), CompareNodeItem); return true; }