]> 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 const std::vector<modelCDMLibrary*>& modelCDMLib::GetLibraries() const
107 {
108   return this->libraries;
109 }
110
111 modelCDMLibrary* modelCDMLib::CreateLibrary(
112     const std::string& name,
113     std::string*& result,
114     const std::string& path
115 )
116 {
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()))
121     {
122       result = new std::string("An error occurred while running '" + copyCommand + "'.");
123       return NULL;
124     }
125   //set name of library in CMakeLists inside copied folder
126   std::string line;
127   std::ifstream in((this->path + "/" + name + "/CMakeLists.txt").c_str());
128   if( !in.is_open())
129     {
130       result = new std::string("CMakeLists.txt file failed to open.");
131       return NULL;
132     }
133   std::ofstream out((this->path + "/" + name + "/CMakeLists.txt.tmp").c_str());
134   while (getline(in, line))
135     {
136       if(line == "SET ( LIBRARY_NAME   MyLib  )")
137         line = "SET ( LIBRARY_NAME   " + name + "  )";
138       out << line << std::endl;
139     }
140   in.close();
141   out.close();
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()))
145     {
146       result = new std::string("An error occurred while running '" + renameCommand + "'.");
147       return NULL;
148     }
149
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);
155
156   this->SortChildren();
157
158   result = new std::string(this->path + "/" + name);
159   return library;
160 }
161
162 bool modelCDMLib::OpenCMakeListsFile(std::string*& result)
163 {
164   //TODO: implement method
165   return true;
166 }
167
168 const bool modelCDMLib::Refresh(std::string*& result)
169 {
170   //TODO: implement method
171
172
173
174   this->type = wxDIR_DIRS;
175   this->name = "lib";
176   this->level = level;
177   this->path = path;
178
179
180
181   std::vector<bool> checked(this->children.size(), false);
182   std::vector<bool> checkedLibraries(this->libraries.size(), false);
183
184   //check all folders
185   wxDir dir(crea::std2wx((this->path).c_str()));
186   if (dir.IsOpened())
187     {
188       wxString fileName;
189       bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
190       while (cont)
191         {
192           std::string stdfileName = crea::wx2std(fileName);
193           std::string libraryName = stdfileName;
194           //check if they already exist
195           bool found = false;
196           for (int i = 0;!found && i < this->libraries.size(); i++)
197             {
198               if (this->libraries[i]->GetName() == libraryName)
199                 {
200                   found = true;
201                   int pos = std::find(this->children.begin(), this->children.end(), this->libraries[i]) - this->children.begin();
202                   checked[pos] = true;
203                   checkedLibraries[i] = true;
204                   if(!this->libraries[i]->Refresh(result))
205                     return false;
206                 }
207             }
208           if(!found)
209             {
210               modelCDMLibrary* library = new modelCDMLibrary(this->path + "/" + stdfileName, this->level + 1);
211               this->libraries.push_back(library);
212               this->children.push_back(library);
213             }
214           cont = dir.GetNext(&fileName);
215         }
216
217       cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
218       while (cont)
219         {
220           std::string stdfileName = crea::wx2std(fileName);
221
222           //if CMakeLists, create CMakeLists
223           if(stdfileName == "CMakeLists.txt")
224             {
225               if (this->CMakeLists == NULL)
226                 {
227                   this->CMakeLists = new modelCDMCMakeListsFile(this->path + "/" + stdfileName, this->level + 1);
228                   this->children.push_back(this->CMakeLists);
229                 }
230               else
231                 {
232                   int pos = std::find(this->children.begin(), this->children.end(), this->CMakeLists) - this->children.begin();
233                   checked[pos] = true;
234                   if(!this->CMakeLists->Refresh(result))
235                     return false;
236                 }
237             }
238           //if is an unknown file, create file
239           else
240             {
241               bool found = false;
242               for (int i = 0; i <!found && this->children.size(); i++)
243                 {
244                   if (this->children[i]->GetName() == stdfileName)
245                     {
246                       found = true;
247                       checked[i] = true;
248                       if(!this->children[i]->Refresh(result))
249                         return false;
250                     }
251                 }
252
253               if(!found)
254                 {
255                   modelCDMFile* file = new modelCDMFile(this->path + "/" + stdfileName, this->level + 1);
256                   this->children.push_back(file);
257                 }
258             }
259
260           cont = dir.GetNext(&fileName);
261         }
262     }
263
264   for (int i = 0; i < checkedLibraries.size(); i++)
265     {
266       if(!checkedLibraries[i])
267         {
268           this->libraries.erase(this->libraries.begin()+i);
269           checkedLibraries.erase(checkedLibraries.begin()+i);
270           i--;
271         }
272     }
273   for (int i = 0; i < checked.size(); i++)
274     {
275       if(!checked[i])
276         {
277           delete this->children[i];
278           this->children.erase(this->children.begin()+i);
279           checked.erase(checked.begin()+i);
280           i--;
281         }
282     }
283   this->SortChildren();
284   return true;
285 }