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 int& level)
50 this->type = wxDIR_DIRS;
57 this->path = CDMUtilities::fixPath(path);
59 std::string pathFixed(CDMUtilities::fixPath(path));
61 this->libraries.clear();
62 wxDir dir(crea::std2wx((pathFixed).c_str()));
67 bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
70 std::string stdfileName = crea::wx2std(fileName);
72 modelCDMLibrary* library = new modelCDMLibrary(pathFixed + "/" + stdfileName, this->level + 1);
73 this->libraries.push_back(library);
74 this->children.push_back(library);
76 cont = dir.GetNext(&fileName);
79 cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
82 std::string stdfileName = crea::wx2std(fileName);
84 //if CMakeLists, create CMakeLists
85 if(stdfileName == "CMakeLists.txt")
87 this->CMakeLists = new modelCDMCMakeListsFile(pathFixed + "/" + stdfileName, this->level + 1);
88 this->children.push_back(this->CMakeLists);
90 //if is an unknown file, create file
93 this->children.push_back(new modelCDMFile(pathFixed + "/" + stdfileName, this->level + 1));
96 cont = dir.GetNext(&fileName);
102 modelCDMLib::~modelCDMLib()
106 const std::vector<modelCDMLibrary*>& modelCDMLib::GetLibraries() const
108 return this->libraries;
111 modelCDMLibrary* modelCDMLib::CreateLibrary(
112 const std::string& name,
113 std::string*& result,
114 const std::string& path
117 //copy template library folder with new name
118 //TODO: fix for windows
119 std::string copyCommand = "cp -r " + this->path + "/template_lib " + this->path + "/" + name;
120 if(system(copyCommand.c_str()))
122 result = new std::string("An error occurred while running '" + copyCommand + "'.");
125 //set name of library in CMakeLists inside copied folder
127 std::ifstream in((this->path + "/" + name + "/CMakeLists.txt").c_str());
130 result = new std::string("CMakeLists.txt file failed to open.");
133 std::ofstream out((this->path + "/" + name + "/CMakeLists.txt.tmp").c_str());
134 while (getline(in, line))
136 if(line == "SET ( LIBRARY_NAME MyLib )")
137 line = "SET ( LIBRARY_NAME " + name + " )";
138 out << line << std::endl;
142 //delete old file and rename new file
143 std::string renameCommand = "mv " + this->path + "/" + name + "/CMakeLists.txt.tmp " + this->path + "/" + name + "/CMakeLists.txt";
144 if(system(renameCommand.c_str()))
146 result = new std::string("An error occurred while running '" + renameCommand + "'.");
150 //add library to model
151 //TODO: fix for windows
152 modelCDMLibrary* library = new modelCDMLibrary(this->path + "/" + name, this->level + 1);
153 this->libraries.push_back(library);
154 this->children.push_back(library);
156 this->SortChildren();
158 result = new std::string(this->path + "/" + name);
162 const bool modelCDMLib::Refresh(std::string*& result)
164 std::cout << "refreshing lib" << std::endl;
165 this->type = wxDIR_DIRS;
172 std::vector<bool> checked(this->children.size(), false);
173 std::vector<bool> checkedLibraries(this->libraries.size(), false);
176 wxDir dir(crea::std2wx((this->path).c_str()));
180 bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
183 std::string stdfileName = crea::wx2std(fileName);
184 std::string libraryName = stdfileName;
185 //check if they already exist
187 for (int i = 0;!found && i < this->libraries.size(); i++)
189 if (this->libraries[i]->GetName() == libraryName)
192 int pos = std::find(this->children.begin(), this->children.end(), this->libraries[i]) - this->children.begin();
194 checkedLibraries[i] = true;
195 if(!this->libraries[i]->Refresh(result))
201 modelCDMLibrary* library = new modelCDMLibrary(this->path + "/" + stdfileName, this->level + 1);
202 this->libraries.push_back(library);
203 this->children.push_back(library);
205 cont = dir.GetNext(&fileName);
208 cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
211 std::string stdfileName = crea::wx2std(fileName);
213 //if CMakeLists, create CMakeLists
214 if(stdfileName == "CMakeLists.txt")
216 if (this->CMakeLists == NULL)
218 this->CMakeLists = new modelCDMCMakeListsFile(this->path + "/" + stdfileName, this->level + 1);
219 this->children.push_back(this->CMakeLists);
223 int pos = std::find(this->children.begin(), this->children.end(), this->CMakeLists) - this->children.begin();
225 if(!this->CMakeLists->Refresh(result))
229 //if is an unknown file, create file
233 for (int i = 0; i <!found && this->children.size(); i++)
235 if (this->children[i]->GetName() == stdfileName)
239 if(!this->children[i]->Refresh(result))
246 modelCDMFile* file = new modelCDMFile(this->path + "/" + stdfileName, this->level + 1);
247 this->children.push_back(file);
251 cont = dir.GetNext(&fileName);
255 for (int i = 0; i < checkedLibraries.size(); i++)
257 if(!checkedLibraries[i])
259 this->libraries.erase(this->libraries.begin()+i);
260 checkedLibraries.erase(checkedLibraries.begin()+i);
264 for (int i = 0; i < checked.size(); i++)
268 delete this->children[i];
269 this->children.erase(this->children.begin()+i);
270 checked.erase(checked.begin()+i);
274 this->SortChildren();