]> 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 <sstream>
39 #include <algorithm>
40
41 #include "CDMUtilities.h"
42 #include "creaWx.h"
43 #include "wx/dir.h"
44
45 modelCDMLib::modelCDMLib()
46 {
47 }
48
49 modelCDMLib::modelCDMLib(modelCDMIProjectTreeNode* parent, const std::string& path, const std::string& name, const int& level)
50 {
51   std::cout << "creating lib\n";
52   this->parent = parent;
53   this->type = wxDIR_DIRS;
54   this->name = name;
55   this->level = level;
56   this->path = path;
57
58
59
60   this->path = CDMUtilities::fixPath(path);
61   //open makelists file
62   std::string pathFixed(CDMUtilities::fixPath(path));
63
64   this->libraries.clear();
65   wxDir dir(crea::std2wx((pathFixed).c_str()));
66   if (dir.IsOpened())
67     {
68       wxString fileName;
69       //folders
70       bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
71       while (cont)
72         {
73           std::string stdfileName = crea::wx2std(fileName);
74
75           if(stdfileName != "template_lib")
76             {
77               modelCDMLibrary* library = new modelCDMLibrary(this, pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
78               this->libraries.push_back(library);
79               this->children.push_back(library);
80             }
81           else
82             {
83               modelCDMFolder* folder = new modelCDMFolder(this, pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
84               this->children.push_back(folder);
85             }
86
87           cont = dir.GetNext(&fileName);
88         }
89       //files
90       cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
91       while (cont)
92         {
93           std::string stdfileName = crea::wx2std(fileName);
94
95           //if CMakeLists, create CMakeLists
96           if(stdfileName == "CMakeLists.txt")
97             {
98               this->CMakeLists = new modelCDMCMakeListsFile(this, pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
99               this->children.push_back(this->CMakeLists);
100             }
101           //if is an unknown file, create file
102           else
103             {
104               this->children.push_back(new modelCDMFile(this, pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1));
105             }
106
107           cont = dir.GetNext(&fileName);
108         }
109     }
110   this->SortChildren();
111   std::sort(this->libraries.begin(), this->libraries.end(), CompareNodeItem);
112 }
113
114 modelCDMLib::~modelCDMLib()
115 {
116 }
117
118 const std::vector<modelCDMLibrary*>& modelCDMLib::GetLibraries() const
119 {
120   return this->libraries;
121 }
122
123 modelCDMLibrary* modelCDMLib::CreateLibrary(
124     const std::string& namein,
125     std::string*& result
126 )
127 {
128   std::vector<std::string> words;
129   CDMUtilities::splitter::split(words,namein," '/\\*\"%",CDMUtilities::splitter::no_empties);
130   std::string name;
131   for (int i = 0; i < (int)(words.size()); i++)
132     {
133           name += words[i];
134     }
135   if (name == "")
136     {
137       result = new std::string("The given name is not valid:  '/\\*\"% are forbidden.");
138           return NULL;
139     }
140   //copy template library folder with new name
141 #ifdef _WIN32
142         std::string copyCommand = "xcopy \"" + this->path + CDMUtilities::SLASH + "template_lib\" \"" + this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "\" /Y";
143 #else
144   std::string copyCommand = "cp -r \"" + this->path + CDMUtilities::SLASH + "template_lib\" \"" + this->path + CDMUtilities::SLASH + name + "\"";
145 #endif
146   if(system(copyCommand.c_str()))
147     {
148       result = new std::string("An error occurred while running '" + copyCommand + "'.");
149       return NULL;
150     }
151   //set name of library in CMakeLists inside copied folder
152   std::string line;
153   std::ifstream in((this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt").c_str());
154   if( !in.is_open())
155     {
156       result = new std::string("CMakeLists.txt file failed to open.");
157       return NULL;
158     }
159   std::ofstream out((this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt.tmp").c_str());
160   while (getline(in, line))
161     {
162       if(line == "SET ( LIBRARY_NAME   MyLib  )")
163         line = "SET ( LIBRARY_NAME   " + name + "  )";
164       out << line << std::endl;
165     }
166   in.close();
167   out.close();
168   //delete old file and rename new file
169 #ifdef _WIN32
170   std::string renameCommand = "move /Y \"" + this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt.tmp\" \"" + this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt\"";
171 #else
172   std::string renameCommand = "mv \"" + this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt.tmp\" \"" + this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt\"";
173 #endif
174   if(system(renameCommand.c_str()))
175     {
176       result = new std::string("An error occurred while running '" + renameCommand + "'.");
177       return NULL;
178     }
179
180   //add library to model
181   modelCDMLibrary* library = new modelCDMLibrary(this, this->path + CDMUtilities::SLASH + name, name, this->level + 1);
182   this->libraries.push_back(library);
183   this->children.push_back(library);
184
185   this->SortChildren();
186
187   result = new std::string(this->path + CDMUtilities::SLASH + name);
188   return library;
189 }
190
191 const bool modelCDMLib::Refresh(std::string*& result)
192 {
193   std::cout << "refreshing lib" << std::endl;
194   this->type = wxDIR_DIRS;
195
196
197
198   std::vector<bool> checked(this->children.size(), false);
199   std::vector<bool> checkedLibraries(this->libraries.size(), false);
200
201   //check all folders
202   wxDir dir(crea::std2wx((this->path).c_str()));
203   if (dir.IsOpened())
204     {
205       wxString fileName;
206       bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
207       while (cont)
208         {
209           std::string stdfileName = crea::wx2std(fileName);
210
211           if(stdfileName != "template_lib")
212             {
213               std::string libraryName = stdfileName;
214               //check if library already exist
215               bool found = false;
216               for (int i = 0; !found && i < (int)(this->libraries.size()); i++)
217                 {
218                   if (this->libraries[i]->GetName() == libraryName)
219                     {
220                       found = true;
221                       int pos = std::find(this->children.begin(), this->children.end(), this->libraries[i]) - this->children.begin();
222                       checked[pos] = true;
223                       checkedLibraries[i] = true;
224                       if(!this->libraries[i]->Refresh(result))
225                         return false;
226                     }
227                 }
228               if(!found)
229                 {
230                   modelCDMLibrary* library = new modelCDMLibrary(this, this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
231                   this->libraries.push_back(library);
232                   this->children.push_back(library);
233                 }
234             }
235           else
236             {
237               //check if folder already exist
238               bool found = false;
239               for (int i = 0; !found && i < (int)(this->children.size()); i++)
240                 {
241                   if (this->children[i]->GetName() == stdfileName)
242                     {
243                       found = true;
244                       checked[i] = true;
245                       if(!this->children[i]->Refresh(result))
246                         return false;
247                     }
248                 }
249               if(!found)
250                 {
251                   modelCDMFolder* folder= new modelCDMFolder(this, this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
252                   this->children.push_back(folder);
253                 }
254             }
255           cont = dir.GetNext(&fileName);
256         }
257
258       cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
259       while (cont)
260         {
261           std::string stdfileName = crea::wx2std(fileName);
262
263           //if CMakeLists, create CMakeLists
264           if(stdfileName == "CMakeLists.txt")
265             {
266               if (this->CMakeLists == NULL)
267                 {
268                   this->CMakeLists = new modelCDMCMakeListsFile(this, this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
269                   this->children.push_back(this->CMakeLists);
270                 }
271               else
272                 {
273                   int pos = std::find(this->children.begin(), this->children.end(), this->CMakeLists) - this->children.begin();
274                   checked[pos] = true;
275                   if(!this->CMakeLists->Refresh(result))
276                     return false;
277                 }
278             }
279           //if is an unknown file, create file
280           else
281             {
282               bool found = false;
283               for (int i = 0; !found && i < (int)(this->children.size()); i++)
284                 {
285                   if (this->children[i]->GetName() == stdfileName)
286                     {
287                       found = true;
288                       checked[i] = true;
289                       if(!this->children[i]->Refresh(result))
290                         return false;
291                     }
292                 }
293
294               if(!found)
295                 {
296                   modelCDMFile* file = new modelCDMFile(this, this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
297                   this->children.push_back(file);
298                 }
299             }
300
301           cont = dir.GetNext(&fileName);
302         }
303     }
304
305   for (int i = 0; i < (int)(checkedLibraries.size()); i++)
306     {
307       if(!checkedLibraries[i])
308         {
309           this->libraries.erase(this->libraries.begin()+i);
310           checkedLibraries.erase(checkedLibraries.begin()+i);
311           i--;
312         }
313     }
314   for (int i = 0; i < (int)(checked.size()); i++)
315     {
316       if(!checked[i])
317         {
318           delete this->children[i];
319           this->children.erase(this->children.begin()+i);
320           checked.erase(checked.begin()+i);
321           i--;
322         }
323     }
324   this->SortChildren();
325   std::sort(this->libraries.begin(), this->libraries.end(), CompareNodeItem);
326   return true;
327 }
328
329 void modelCDMLib::CheckStructure(std::map<std::string, bool>& properties)
330 {
331   //check cmake exist
332   if(this->CMakeLists != NULL)
333     {
334       //set properties parameters based on model
335       for (int i = 0; i < (int)(this->libraries.size()); i++)
336         properties["lib add " + libraries[i]->GetName()] = false;
337
338       //open cmakelists
339       std::ifstream confFile;
340       confFile.open((this->CMakeLists->GetPath()).c_str());
341
342       //take everything that is not commented
343       std::string fileContent;
344
345       std::string word;
346       std::vector<std::string> words;
347       while(confFile.is_open() && !confFile.eof())
348         {
349           std::getline(confFile,word, '\n');
350           if(word[0] != '#')
351             {
352               CDMUtilities::splitter::split(words, word, "#", CDMUtilities::splitter::empties_ok);
353               if (words.size() > 0)
354                 {
355                   word = words[0];
356                   CDMUtilities::splitter::split(words, word, " ", CDMUtilities::splitter::empties_ok);
357                   for (int i = 0; i < (int)(words.size()); i++)
358                     {
359                       if(words[i].substr(0,2) == "//")
360                         break;
361                       fileContent += words[i] + " ";
362                     }
363                 }
364             }
365         }
366
367       //check every instruction
368       std::stringstream ss(fileContent);
369       while(!ss.eof())
370         {
371           std::getline(ss,word, '(');
372
373           //check instruction name
374           CDMUtilities::splitter::split(words, word, " ", CDMUtilities::splitter::no_empties);
375
376           //add instructions
377           if (words.size() > 0 && words[words.size()-1] == "ADD_SUBDIRECTORY")
378             {
379               std::getline(ss,word, ')');
380               //std::cout << word << std::endl;
381               CDMUtilities::splitter::split(words, word, " ", CDMUtilities::splitter::no_empties);
382
383               if (words.size() > 0)
384                 {
385                   {
386                     properties["lib add " + words[0]] = true;
387                   }
388                 }
389             }
390         }
391
392     }
393
394   //check libraries' structure
395   for (int i = 0; i < (int)(this->libraries.size()); i++)
396     {
397       properties["library " + this->libraries[i]->GetName()] = true;
398       this->libraries[i]->CheckStructure(properties);
399     }
400 }