2 # ---------------------------------------------------------------------
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
6 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
7 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
8 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
10 # This software is governed by the CeCILL-B license under French law and
11 # abiding by the rules of distribution of free software. You can use,
12 # modify and/ or redistribute the software under the terms of the CeCILL-B
13 # license as circulated by CEA, CNRS and INRIA at the following URL
14 # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
15 # or in the file LICENSE.txt.
17 # As a counterpart to the access to the source code and rights to copy,
18 # modify and redistribute granted by the license, users are provided only
19 # with a limited warranty and the software's author, the holder of the
20 # economic rights, and the successive licensors have only limited
23 # The fact that you are presently reading this means that you have had
24 # knowledge of the CeCILL-B license and that you accept its terms.
25 # ------------------------------------------------------------------------
31 * Created on: Nov 23, 2012
32 * Author: Daniel Felipe Gonzalez Obando
35 #include "modelCDMLib.h"
40 #include "CDMUtilities.h"
44 modelCDMLib::modelCDMLib()
48 modelCDMLib::modelCDMLib(const std::string& path, const std::string& name, const int& level)
50 std::cout << "creating lib\n";
51 this->type = wxDIR_DIRS;
58 this->path = CDMUtilities::fixPath(path);
60 std::string pathFixed(CDMUtilities::fixPath(path));
62 this->libraries.clear();
63 wxDir dir(crea::std2wx((pathFixed).c_str()));
68 bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
71 std::string stdfileName = crea::wx2std(fileName);
73 if(stdfileName != "template_lib")
75 modelCDMLibrary* library = new modelCDMLibrary(pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
76 this->libraries.push_back(library);
77 this->children.push_back(library);
81 modelCDMFolder* folder = new modelCDMFolder(pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
82 this->children.push_back(folder);
85 cont = dir.GetNext(&fileName);
88 cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
91 std::string stdfileName = crea::wx2std(fileName);
93 //if CMakeLists, create CMakeLists
94 if(stdfileName == "CMakeLists.txt")
96 this->CMakeLists = new modelCDMCMakeListsFile(pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
97 this->children.push_back(this->CMakeLists);
99 //if is an unknown file, create file
102 this->children.push_back(new modelCDMFile(pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1));
105 cont = dir.GetNext(&fileName);
108 this->SortChildren();
109 std::sort(this->libraries.begin(), this->libraries.end(), CompareNodeItem);
112 modelCDMLib::~modelCDMLib()
116 const std::vector<modelCDMLibrary*>& modelCDMLib::GetLibraries() const
118 return this->libraries;
121 modelCDMLibrary* modelCDMLib::CreateLibrary(
122 const std::string& name,
126 //copy template library folder with new name
127 std::string copyCommand = "cp -r \"" + this->path + CDMUtilities::SLASH + "template_lib\" \"" + this->path + CDMUtilities::SLASH + name + "\"";
128 if(system(copyCommand.c_str()))
130 result = new std::string("An error occurred while running '" + copyCommand + "'.");
133 //set name of library in CMakeLists inside copied folder
135 std::ifstream in((this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt").c_str());
138 result = new std::string("CMakeLists.txt file failed to open.");
141 std::ofstream out((this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt.tmp").c_str());
142 while (getline(in, line))
144 if(line == "SET ( LIBRARY_NAME MyLib )")
145 line = "SET ( LIBRARY_NAME " + name + " )";
146 out << line << std::endl;
150 //delete old file and rename new file
151 std::string renameCommand = "mv \"" + this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt.tmp\" \"" + this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt\"";
152 if(system(renameCommand.c_str()))
154 result = new std::string("An error occurred while running '" + renameCommand + "'.");
158 //add library to model
159 modelCDMLibrary* library = new modelCDMLibrary(this->path + CDMUtilities::SLASH + name, name, this->level + 1);
160 this->libraries.push_back(library);
161 this->children.push_back(library);
163 this->SortChildren();
165 result = new std::string(this->path + CDMUtilities::SLASH + name);
169 const bool modelCDMLib::Refresh(std::string*& result)
171 std::cout << "refreshing lib" << std::endl;
172 this->type = wxDIR_DIRS;
176 std::vector<bool> checked(this->children.size(), false);
177 std::vector<bool> checkedLibraries(this->libraries.size(), false);
180 wxDir dir(crea::std2wx((this->path).c_str()));
184 bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
187 std::string stdfileName = crea::wx2std(fileName);
189 if(stdfileName != "template_lib")
191 std::string libraryName = stdfileName;
192 //check if library already exist
194 for (int i = 0; !found && i < this->libraries.size(); i++)
196 if (this->libraries[i]->GetName() == libraryName)
199 int pos = std::find(this->children.begin(), this->children.end(), this->libraries[i]) - this->children.begin();
201 checkedLibraries[i] = true;
202 if(!this->libraries[i]->Refresh(result))
208 modelCDMLibrary* library = new modelCDMLibrary(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
209 this->libraries.push_back(library);
210 this->children.push_back(library);
215 //check if folder already exist
217 for (int i = 0; !found && i < this->children.size(); i++)
219 if (this->children[i]->GetName() == stdfileName)
223 if(!this->children[i]->Refresh(result))
229 modelCDMFolder* folder= new modelCDMFolder(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
230 this->children.push_back(folder);
233 cont = dir.GetNext(&fileName);
236 cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
239 std::string stdfileName = crea::wx2std(fileName);
241 //if CMakeLists, create CMakeLists
242 if(stdfileName == "CMakeLists.txt")
244 if (this->CMakeLists == NULL)
246 this->CMakeLists = new modelCDMCMakeListsFile(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
247 this->children.push_back(this->CMakeLists);
251 int pos = std::find(this->children.begin(), this->children.end(), this->CMakeLists) - this->children.begin();
253 if(!this->CMakeLists->Refresh(result))
257 //if is an unknown file, create file
261 for (int i = 0; !found && i < this->children.size(); i++)
263 if (this->children[i]->GetName() == stdfileName)
267 if(!this->children[i]->Refresh(result))
274 modelCDMFile* file = new modelCDMFile(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
275 this->children.push_back(file);
279 cont = dir.GetNext(&fileName);
283 for (int i = 0; i < checkedLibraries.size(); i++)
285 if(!checkedLibraries[i])
287 this->libraries.erase(this->libraries.begin()+i);
288 checkedLibraries.erase(checkedLibraries.begin()+i);
292 for (int i = 0; i < checked.size(); i++)
296 delete this->children[i];
297 this->children.erase(this->children.begin()+i);
298 checked.erase(checked.begin()+i);
302 this->SortChildren();
303 std::sort(this->libraries.begin(), this->libraries.end(), CompareNodeItem);