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