]> 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(const std::string& path, const int& level)
49 {
50   this->type = wxDIR_DIRS;
51   this->name = "lib";
52   this->level = level;
53   this->path = path;
54
55
56
57   this->path = CDMUtilities::fixPath(path);
58   //open makelists file
59   std::string pathFixed(CDMUtilities::fixPath(path));
60
61   this->libraries.clear();
62   wxDir dir(crea::std2wx((pathFixed).c_str()));
63   if (dir.IsOpened())
64     {
65       wxString fileName;
66       //folders
67       bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
68       while (cont)
69         {
70           std::string stdfileName = crea::wx2std(fileName);
71
72           modelCDMLibrary* library = new modelCDMLibrary(pathFixed + "/" + stdfileName, this->level + 1);
73           this->libraries.push_back(library);
74           this->children.push_back(library);
75
76           cont = dir.GetNext(&fileName);
77         }
78       //files
79       cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
80       while (cont)
81         {
82           std::string stdfileName = crea::wx2std(fileName);
83
84           //if CMakeLists, create CMakeLists
85           if(stdfileName == "CMakeLists.txt")
86             {
87               this->CMakeLists = new modelCDMCMakeListsFile(pathFixed + "/" + stdfileName, this->level + 1);
88               this->children.push_back(this->CMakeLists);
89             }
90           //if is an unknown file, create file
91           else
92             {
93               this->children.push_back(new modelCDMFile(pathFixed + "/" + stdfileName, this->level + 1));
94             }
95
96           cont = dir.GetNext(&fileName);
97         }
98     }
99   this->SortChildren();
100 }
101
102 modelCDMLib::~modelCDMLib()
103 {
104 }
105
106 modelCDMLibrary* modelCDMLib::CreateLibrary(
107     const std::string& name,
108     std::string*& result,
109     const std::string& path
110 )
111 {
112   //copy template library folder with new name
113   //TODO: fix for windows
114   std::string copyCommand = "cp -r " + this->path + "/template_lib " + this->path + "/" + name;
115   if(system(copyCommand.c_str()))
116     {
117       result = new std::string("An error occurred while running '" + copyCommand + "'.");
118       return NULL;
119     }
120   //set name of library in CMakeLists inside copied folder
121   std::string line;
122   std::ifstream in((this->path + "/" + name + "/CMakeLists.txt").c_str());
123   if( !in.is_open())
124     {
125       result = new std::string("CMakeLists.txt file failed to open.");
126       return NULL;
127     }
128   std::ofstream out((this->path + "/" + name + "/CMakeLists.txt.tmp").c_str());
129   while (getline(in, line))
130     {
131       if(line == "SET ( LIBRARY_NAME   MyLib  )")
132         line = "SET ( LIBRARY_NAME   " + name + "  )";
133       out << line << std::endl;
134     }
135   in.close();
136   out.close();
137   //delete old file and rename new file
138   std::string renameCommand = "mv " + this->path + "/" + name + "/CMakeLists.txt.tmp " + this->path + "/" + name + "/CMakeLists.txt";
139   if(system(renameCommand.c_str()))
140     {
141       result = new std::string("An error occurred while running '" + renameCommand + "'.");
142       return NULL;
143     }
144
145   //add library to model
146   //TODO: fix for windows
147   modelCDMLibrary* library = new modelCDMLibrary(this->path + "/" + name, this->level + 1);
148   this->libraries.push_back(library);
149   this->children.push_back(library);
150
151   this->SortChildren();
152
153   result = new std::string(this->path + "/" + name);
154   return library;
155 }
156
157 bool modelCDMLib::OpenCMakeListsFile(std::string*& result)
158 {
159   //TODO: implement method
160   return true;
161 }
162
163 const bool modelCDMLib::Refresh(std::string*& result)
164 {
165   //TODO: implement method
166
167
168
169   this->type = wxDIR_DIRS;
170   this->name = "lib";
171   this->level = level;
172   this->path = path;
173
174
175
176   std::vector<bool> checked(this->children.size(), false);
177   std::vector<bool> checkedLibraries(this->libraries.size(), false);
178
179   //check all folders
180   wxDir dir(crea::std2wx((this->path).c_str()));
181   if (dir.IsOpened())
182     {
183       wxString fileName;
184       bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
185       while (cont)
186         {
187           std::string stdfileName = crea::wx2std(fileName);
188           std::string libraryName = stdfileName;
189           //check if they already exist
190           bool found = false;
191           for (int i = 0;!found && i < this->libraries.size(); i++)
192             {
193               if (this->libraries[i]->GetName() == libraryName)
194                 {
195                   found = true;
196                   int pos = std::find(this->children.begin(), this->children.end(), this->libraries[i]) - this->children.begin();
197                   checked[pos] = true;
198                   checkedLibraries[i] = true;
199                   if(!this->libraries[i]->Refresh(result))
200                     return false;
201                 }
202             }
203           if(!found)
204             {
205               modelCDMLibrary* library = new modelCDMLibrary(this->path + "/" + stdfileName, this->level + 1);
206               this->libraries.push_back(library);
207               this->children.push_back(library);
208             }
209           cont = dir.GetNext(&fileName);
210         }
211
212       cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
213       while (cont)
214         {
215           std::string stdfileName = crea::wx2std(fileName);
216
217           //if CMakeLists, create CMakeLists
218           if(stdfileName == "CMakeLists.txt")
219             {
220               if (this->CMakeLists == NULL)
221                 {
222                   this->CMakeLists = new modelCDMCMakeListsFile(this->path + "/" + stdfileName, this->level + 1);
223                   this->children.push_back(this->CMakeLists);
224                 }
225               else
226                 {
227                   int pos = std::find(this->children.begin(), this->children.end(), this->CMakeLists) - this->children.begin();
228                   checked[pos] = true;
229                   if(!this->CMakeLists->Refresh(result))
230                     return false;
231                 }
232             }
233           //if is an unknown file, create file
234           else
235             {
236               bool found = false;
237               for (int i = 0; i <!found && this->children.size(); i++)
238                 {
239                   if (this->children[i]->GetName() == stdfileName)
240                     {
241                       found = true;
242                       checked[i] = true;
243                       if(!this->children[i]->Refresh(result))
244                         return false;
245                     }
246                 }
247
248               if(!found)
249                 {
250                   modelCDMFile* file = new modelCDMFile(this->path + "/" + stdfileName, this->level + 1);
251                   this->children.push_back(file);
252                 }
253             }
254
255           cont = dir.GetNext(&fileName);
256         }
257     }
258
259   for (int i = 0; i < checkedLibraries.size(); i++)
260     {
261       if(!checkedLibraries[i])
262         {
263           this->libraries.erase(this->libraries.begin()+i);
264           checkedLibraries.erase(checkedLibraries.begin()+i);
265           i--;
266         }
267     }
268   for (int i = 0; i < checked.size(); i++)
269     {
270       if(!checked[i])
271         {
272           delete this->children[i];
273           this->children.erase(this->children.begin()+i);
274           checked.erase(checked.begin()+i);
275           i--;
276         }
277     }
278   this->SortChildren();
279   return true;
280 }