X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=lib%2FcreaDevManagerLib%2FmodelCDMLibrary.cpp;h=1964e882c02b6ab3192b5978c7c9139403200db6;hb=311bdcc514f85386f3bbbef9ff6a88bf69fd930f;hp=c9aeb1fa5138c7f7abe8a2440d1bc5504ca76a45;hpb=667f8ae6982afb3a65dc1e1fad8c3aabdf0caf80;p=crea.git diff --git a/lib/creaDevManagerLib/modelCDMLibrary.cpp b/lib/creaDevManagerLib/modelCDMLibrary.cpp index c9aeb1f..1964e88 100644 --- a/lib/creaDevManagerLib/modelCDMLibrary.cpp +++ b/lib/creaDevManagerLib/modelCDMLibrary.cpp @@ -34,6 +34,9 @@ #include "modelCDMLibrary.h" +#include +#include + #include "CDMUtilities.h" #include "creaWx.h" #include "wx/dir.h" @@ -42,15 +45,94 @@ modelCDMLibrary::modelCDMLibrary() { } -modelCDMLibrary::modelCDMLibrary(const std::string& path, const int& level) +modelCDMLibrary::modelCDMLibrary(const std::string& path, const std::string& name, const int& level) { - this->name = "library"; - this->path = path; + std::cout << "creating library: " + path + "\n"; + //folder name + this->name = name; + //path + this->path = CDMUtilities::fixPath(path); + //type this->type = wxDIR_DIRS; + //level this->level = level; - //TODO: open CMakeList - //TODO: get libraryName + //open CMakeList + std::string pathMakeLists = path + CDMUtilities::SLASH + "CMakeLists.txt"; + + std::ifstream confFile; + confFile.open((pathMakeLists).c_str()); + + std::string word; + while(confFile.is_open() && !confFile.eof()) + { + //get sets + std::getline(confFile,word,'('); + std::vector wordBits; + CDMUtilities::splitter::split(wordBits,word," (\n",CDMUtilities::splitter::no_empties); + + if(wordBits[wordBits.size()-1] == "SET") + { + //get library name + std::getline(confFile,word,')'); + CDMUtilities::splitter::split(wordBits, word, " ", CDMUtilities::splitter::no_empties); + if(wordBits[0] == "LIBRARY_NAME") + { + word = wordBits[1]; + for (int i = 2; i < wordBits.size(); i++) + { + word += " " + wordBits[i]; + } + + this->nameLibrary = word; + } + } + } + + confFile.close(); + + //add library contents + + this->children.clear(); + wxDir dir(crea::std2wx((this->path).c_str())); + if (dir.IsOpened()) + { + wxString fileName; + //folders + bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS); + while (cont) + { + std::string stdfileName = crea::wx2std(fileName); + + modelCDMFolder* folder = new modelCDMFolder(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1); + this->folders.push_back(folder); + this->children.push_back(folder); + + 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(this->path + 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(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1)); + } + + cont = dir.GetNext(&fileName); + } + } + this->SortChildren(); + std::sort(this->folders.begin(), this->folders.end(), CompareNodeItem); } modelCDMLibrary::~modelCDMLibrary() @@ -62,23 +144,211 @@ const std::string& modelCDMLibrary::GetNameLibrary() const return this->nameLibrary; } -bool modelCDMLibrary::CreateFolder( - const std::string& name, - std::string*& result, - const std::string& path) +bool modelCDMLibrary::SetNameLibrary(const std::string& fileName, std::string*& result) { - //TODO: implement method + std::vector words; + CDMUtilities::splitter::split(words, fileName, ", /\\\"", CDMUtilities::splitter::no_empties); + std::string fileNameReal = words[0]; + for (int i = 1; i < words.size(); i++) + { + fileNameReal += "-" + words[i]; + } + + std::string line; + //opening original cmakelists + std::ifstream in((this->path + CDMUtilities::SLASH + "CMakeLists.txt").c_str()); + if( !in.is_open()) + { + result = new std::string("CMakeLists.txt file failed to open."); + return false; + } + //opening temporal cmakelists + std::ofstream out((this->path + CDMUtilities::SLASH + "CMakeLists.txt.tmp").c_str()); + if( !out.is_open()) + { + result = new std::string("CMakeLists.txt.tmp file failed to open."); + return false; + } + //copying contents from original to temporal and making changes + while (getline(in, line)) + { + if(line.find("SET ( LIBRARY_NAME") != std::string::npos) + line = "SET ( LIBRARY_NAME " + fileNameReal + " )"; + out << line << std::endl; + } + in.close(); + out.close(); + //delete old file and rename new file + std::string renameCommand = "mv \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt.tmp\" \"" + this->path + CDMUtilities::SLASH + "CMakeLists.txt\""; + if(system(renameCommand.c_str())) + { + result = new std::string("An error occurred while running '" + renameCommand + "'."); + return false; + } + + this->nameLibrary = fileNameReal; return true; } -bool modelCDMLibrary::OpenCMakeListsFile(std::string*& result) +modelCDMFolder* modelCDMLibrary::CreateFolder(const std::string& name, std::string*& result) { - //TODO: implement method - return true; + //TODO:: mkdir depending on OS + std::string command = "mkdir \"" + path + CDMUtilities::SLASH + name + "\""; + if(system(command.c_str())) + { + result = new std::string("Error executing: " + command + "."); + return NULL; + } + modelCDMFolder* folder = new modelCDMFolder(path + CDMUtilities::SLASH + name, name, level + 1); + this->folders.push_back(folder); + this->children.push_back(folder); + + return folder; } const bool modelCDMLibrary::Refresh(std::string*& result) { - //TODO: implement method + std::cout << "refreshing library: " << this->nameLibrary << std::endl; + //set attributes + this->type = wxDIR_DIRS; + + //open CMakeList + std::string pathMakeLists = path + CDMUtilities::SLASH + "CMakeLists.txt"; + + std::ifstream confFile; + confFile.open((pathMakeLists).c_str()); + + std::string word; + while(confFile.is_open() && !confFile.eof()) + { + //get sets + std::getline(confFile,word,'('); + std::vector wordBits; + CDMUtilities::splitter::split(wordBits,word," (\n",CDMUtilities::splitter::no_empties); + + if(wordBits[wordBits.size()-1] == "SET") + { + //get library name + std::getline(confFile,word,')'); + CDMUtilities::splitter::split(wordBits, word, " ", CDMUtilities::splitter::no_empties); + if(wordBits[0] == "LIBRARY_NAME") + { + word = wordBits[1]; + for (int i = 2; i < wordBits.size(); i++) + { + word += " " + wordBits[i]; + } + + this->nameLibrary = word; + } + } + } + + confFile.close(); + + //check children + std::vector checked(this->children.size(), false); + std::vector checkedFolders(this->folders.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); + //check if they already exist + bool found = false; + for (int i = 0; !found && i < this->folders.size(); i++) + { + if (this->folders[i]->GetName() == stdfileName) + { + found = true; + int pos = std::find(this->children.begin(), this->children.end(), this->folders[i]) - this->children.begin(); + checked[pos] = true; + checkedFolders[i] = true; + if(!this->folders[i]->Refresh(result)) + return false; + } + } + if(!found) + { + modelCDMFolder* folder = new modelCDMFolder(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1); + this->folders.push_back(folder); + this->children.push_back(folder); + } + 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, check if exist in children + 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 < checkedFolders.size(); i++) + { + if(!checkedFolders[i]) + { + this->folders.erase(this->folders.begin()+i); + checkedFolders.erase(checkedFolders.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->folders.begin(), this->folders.end(), CompareNodeItem); return true; }