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