]> Creatis software - crea.git/blob - lib/creaDevManagerLib/modelCDMLib.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / modelCDMLib.cpp
1 /*
2 # ---------------------------------------------------------------------
3 #
4 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
5 #                        pour la Sant�)
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
9 #
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.
16 #
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
21 #  liability.
22 #
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 # ------------------------------------------------------------------------
26  */
27
28 /*
29  * modelCDMLib.cpp
30  *
31  *  Created on: Nov 23, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "modelCDMLib.h"
36
37 #include <fstream>
38 #include <algorithm>
39
40 #include "CDMUtilities.h"
41 #include "creaWx.h"
42 #include "wx/dir.h"
43
44 modelCDMLib::modelCDMLib()
45 {
46 }
47
48 modelCDMLib::modelCDMLib(modelCDMIProjectTreeNode* parent, const std::string& path, const std::string& name, const int& level)
49 {
50   std::cout << "creating lib\n";
51   this->parent = parent;
52   this->type = wxDIR_DIRS;
53   this->name = name;
54   this->level = level;
55   this->path = path;
56
57
58
59   this->path = CDMUtilities::fixPath(path);
60   //open makelists file
61   std::string pathFixed(CDMUtilities::fixPath(path));
62
63   this->libraries.clear();
64   wxDir dir(crea::std2wx((pathFixed).c_str()));
65   if (dir.IsOpened())
66     {
67       wxString fileName;
68       //folders
69       bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
70       while (cont)
71         {
72           std::string stdfileName = crea::wx2std(fileName);
73
74           if(stdfileName != "template_lib")
75             {
76               modelCDMLibrary* library = new modelCDMLibrary(this, pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
77               this->libraries.push_back(library);
78               this->children.push_back(library);
79             }
80           else
81             {
82               modelCDMFolder* folder = new modelCDMFolder(this, pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
83               this->children.push_back(folder);
84             }
85
86           cont = dir.GetNext(&fileName);
87         }
88       //files
89       cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
90       while (cont)
91         {
92           std::string stdfileName = crea::wx2std(fileName);
93
94           //if CMakeLists, create CMakeLists
95           if(stdfileName == "CMakeLists.txt")
96             {
97               this->CMakeLists = new modelCDMCMakeListsFile(this, pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
98               this->children.push_back(this->CMakeLists);
99             }
100           //if is an unknown file, create file
101           else
102             {
103               this->children.push_back(new modelCDMFile(this, pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1));
104             }
105
106           cont = dir.GetNext(&fileName);
107         }
108     }
109   this->SortChildren();
110   std::sort(this->libraries.begin(), this->libraries.end(), CompareNodeItem);
111 }
112
113 modelCDMLib::~modelCDMLib()
114 {
115 }
116
117 const std::vector<modelCDMLibrary*>& modelCDMLib::GetLibraries() const
118 {
119   return this->libraries;
120 }
121
122 modelCDMLibrary* modelCDMLib::CreateLibrary(
123     const std::string& name,
124     std::string*& result
125 )
126 {
127   //copy template library folder with new name
128   std::string copyCommand = "cp -r \"" + this->path + CDMUtilities::SLASH + "template_lib\" \"" + this->path + CDMUtilities::SLASH + name + "\"";
129   if(system(copyCommand.c_str()))
130     {
131       result = new std::string("An error occurred while running '" + copyCommand + "'.");
132       return NULL;
133     }
134   //set name of library in CMakeLists inside copied folder
135   std::string line;
136   std::ifstream in((this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt").c_str());
137   if( !in.is_open())
138     {
139       result = new std::string("CMakeLists.txt file failed to open.");
140       return NULL;
141     }
142   std::ofstream out((this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt.tmp").c_str());
143   while (getline(in, line))
144     {
145       if(line == "SET ( LIBRARY_NAME   MyLib  )")
146         line = "SET ( LIBRARY_NAME   " + name + "  )";
147       out << line << std::endl;
148     }
149   in.close();
150   out.close();
151   //delete old file and rename new file
152   std::string renameCommand = "mv \"" + this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt.tmp\" \"" + this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt\"";
153   if(system(renameCommand.c_str()))
154     {
155       result = new std::string("An error occurred while running '" + renameCommand + "'.");
156       return NULL;
157     }
158
159   //add library to model
160   modelCDMLibrary* library = new modelCDMLibrary(this, this->path + CDMUtilities::SLASH + name, name, this->level + 1);
161   this->libraries.push_back(library);
162   this->children.push_back(library);
163
164   this->SortChildren();
165
166   result = new std::string(this->path + CDMUtilities::SLASH + name);
167   return library;
168 }
169
170 const bool modelCDMLib::Refresh(std::string*& result)
171 {
172   std::cout << "refreshing lib" << std::endl;
173   this->type = wxDIR_DIRS;
174
175
176
177   std::vector<bool> checked(this->children.size(), false);
178   std::vector<bool> checkedLibraries(this->libraries.size(), false);
179
180   //check all folders
181   wxDir dir(crea::std2wx((this->path).c_str()));
182   if (dir.IsOpened())
183     {
184       wxString fileName;
185       bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
186       while (cont)
187         {
188           std::string stdfileName = crea::wx2std(fileName);
189
190           if(stdfileName != "template_lib")
191             {
192               std::string libraryName = stdfileName;
193               //check if library already exist
194               bool found = false;
195               for (int i = 0; !found && i < this->libraries.size(); i++)
196                 {
197                   if (this->libraries[i]->GetName() == libraryName)
198                     {
199                       found = true;
200                       int pos = std::find(this->children.begin(), this->children.end(), this->libraries[i]) - this->children.begin();
201                       checked[pos] = true;
202                       checkedLibraries[i] = true;
203                       if(!this->libraries[i]->Refresh(result))
204                         return false;
205                     }
206                 }
207               if(!found)
208                 {
209                   modelCDMLibrary* library = new modelCDMLibrary(this, this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
210                   this->libraries.push_back(library);
211                   this->children.push_back(library);
212                 }
213             }
214           else
215             {
216               //check if folder already exist
217               bool found = false;
218               for (int i = 0; !found && i < this->children.size(); i++)
219                 {
220                   if (this->children[i]->GetName() == stdfileName)
221                     {
222                       found = true;
223                       checked[i] = true;
224                       if(!this->children[i]->Refresh(result))
225                         return false;
226                     }
227                 }
228               if(!found)
229                 {
230                   modelCDMFolder* folder= new modelCDMFolder(this, this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
231                   this->children.push_back(folder);
232                 }
233             }
234           cont = dir.GetNext(&fileName);
235         }
236
237       cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
238       while (cont)
239         {
240           std::string stdfileName = crea::wx2std(fileName);
241
242           //if CMakeLists, create CMakeLists
243           if(stdfileName == "CMakeLists.txt")
244             {
245               if (this->CMakeLists == NULL)
246                 {
247                   this->CMakeLists = new modelCDMCMakeListsFile(this, this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
248                   this->children.push_back(this->CMakeLists);
249                 }
250               else
251                 {
252                   int pos = std::find(this->children.begin(), this->children.end(), this->CMakeLists) - this->children.begin();
253                   checked[pos] = true;
254                   if(!this->CMakeLists->Refresh(result))
255                     return false;
256                 }
257             }
258           //if is an unknown file, create file
259           else
260             {
261               bool found = false;
262               for (int i = 0; !found && i < this->children.size(); i++)
263                 {
264                   if (this->children[i]->GetName() == stdfileName)
265                     {
266                       found = true;
267                       checked[i] = true;
268                       if(!this->children[i]->Refresh(result))
269                         return false;
270                     }
271                 }
272
273               if(!found)
274                 {
275                   modelCDMFile* file = new modelCDMFile(this, this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
276                   this->children.push_back(file);
277                 }
278             }
279
280           cont = dir.GetNext(&fileName);
281         }
282     }
283
284   for (int i = 0; i < checkedLibraries.size(); i++)
285     {
286       if(!checkedLibraries[i])
287         {
288           this->libraries.erase(this->libraries.begin()+i);
289           checkedLibraries.erase(checkedLibraries.begin()+i);
290           i--;
291         }
292     }
293   for (int i = 0; i < checked.size(); i++)
294     {
295       if(!checked[i])
296         {
297           delete this->children[i];
298           this->children.erase(this->children.begin()+i);
299           checked.erase(checked.begin()+i);
300           i--;
301         }
302     }
303   this->SortChildren();
304   std::sort(this->libraries.begin(), this->libraries.end(), CompareNodeItem);
305   return true;
306 }