]> Creatis software - crea.git/blob - lib/creaDevManagerLib/modelCDMAppli.cpp
c92932a1c5583de3c0a9f6795d926fefe26cc13d
[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           modelCDMApplication* application = new modelCDMApplication(pathFixed + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
73           this->applications.push_back(application);
74           this->children.push_back(application);
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 + CDMUtilities::SLASH + stdfileName, 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 + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1));
94             }
95
96           cont = dir.GetNext(&fileName);
97         }
98
99     }
100   this->SortChildren();
101   std::sort(this->applications.begin(), this->applications.end(), CompareNodeItem);
102 }
103
104 modelCDMAppli::~modelCDMAppli()
105 {
106 }
107
108 const std::vector<modelCDMApplication*>& modelCDMAppli::GetApplications() const
109 {
110   return this->applications;
111 }
112
113 modelCDMApplication* modelCDMAppli::CreateApplication(
114     const std::string& name,
115     std::string*& result
116 )
117 {
118   //copy template application folder with new name
119   std::string copyCommand = "cp -r \"" + this->path + CDMUtilities::SLASH + "template_appli\" \"" + this->path + CDMUtilities::SLASH + 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 + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "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 + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt.tmp").c_str());
134   while (getline(in, line))
135     {
136       if(line == "SET ( EXE_NAME   MyExe  )")
137         line = "SET ( EXE_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 + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "CMakeLists.txt.tmp\" \"" + this->path + CDMUtilities::SLASH + name + CDMUtilities::SLASH + "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 application to model
151   modelCDMApplication* application = new modelCDMApplication(this->path + CDMUtilities::SLASH + name, name, this->level + 1);
152   this->applications.push_back(application);
153   this->children.push_back(application);
154
155   this->SortChildren();
156
157   result = new std::string(this->path + CDMUtilities::SLASH + name);
158   return application;
159 }
160
161 const bool modelCDMAppli::Refresh(std::string*& result)
162 {
163   std::cout << "refreshing appli" << std::endl;
164   this->type = wxDIR_DIRS;
165
166   std::vector<bool> checked(this->children.size(), false);
167   std::vector<bool> checkedApplications(this->applications.size(), false);
168
169   //check all folders
170   wxDir dir(crea::std2wx((this->path).c_str()));
171   if (dir.IsOpened())
172     {
173       wxString fileName;
174       bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
175       while (cont)
176         {
177           std::string stdfileName = crea::wx2std(fileName);
178           std::string applicationName = stdfileName;
179           //check if they already exist
180           bool found = false;
181           for (int i = 0; !found && i < this->applications.size(); i++)
182             {
183               if (this->applications[i]->GetName() == applicationName)
184                 {
185                   found = true;
186                   int pos = std::find(this->children.begin(), this->children.end(), this->applications[i]) - this->children.begin();
187                   checked[pos] = true;
188                   checkedApplications[i] = true;
189                   if(!this->applications[i]->Refresh(result))
190                     return false;
191                 }
192             }
193           if(!found)
194             {
195               modelCDMApplication* application= new modelCDMApplication(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
196               this->applications.push_back(application);
197               this->children.push_back(application);
198             }
199           cont = dir.GetNext(&fileName);
200         }
201
202       cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
203       while (cont)
204         {
205           std::string stdfileName = crea::wx2std(fileName);
206
207           //if CMakeLists, create CMakeLists
208           if(stdfileName == "CMakeLists.txt")
209             {
210               if (this->CMakeLists == NULL)
211                 {
212                   this->CMakeLists = new modelCDMCMakeListsFile(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
213                   this->children.push_back(this->CMakeLists);
214                 }
215               else
216                 {
217                   int pos = std::find(this->children.begin(), this->children.end(), this->CMakeLists) - this->children.begin();
218                   checked[pos] = true;
219                   if(!this->CMakeLists->Refresh(result))
220                     return false;
221                 }
222             }
223           //if is an unknown file, create file
224           else
225             {
226               bool found = false;
227               for (int i = 0; !found && i < this->children.size(); i++)
228                 {
229                   if (this->children[i]->GetName() == stdfileName)
230                     {
231                       found = true;
232                       checked[i] = true;
233                       if(!this->children[i]->Refresh(result))
234                         return false;
235                     }
236                 }
237
238               if(!found)
239                 {
240                   modelCDMFile* file = new modelCDMFile(this->path + CDMUtilities::SLASH + stdfileName, stdfileName, this->level + 1);
241                   this->children.push_back(file);
242                 }
243             }
244
245           cont = dir.GetNext(&fileName);
246         }
247     }
248
249   for (int i = 0; i < checkedApplications.size(); i++)
250     {
251       if(!checkedApplications[i])
252         {
253           this->applications.erase(this->applications.begin()+i);
254           checkedApplications.erase(checkedApplications.begin()+i);
255           i--;
256         }
257     }
258   for (int i = 0; i < checked.size(); i++)
259     {
260       if(!checked[i])
261         {
262           delete this->children[i];
263           this->children.erase(this->children.begin()+i);
264           checked.erase(checked.begin()+i);
265           i--;
266         }
267     }
268   this->SortChildren();
269   std::sort(this->applications.begin(), this->applications.end(), CompareNodeItem);
270   return true;
271 }