]> Creatis software - crea.git/blob - lib/creaDevManagerLib/CDMUtilities.cpp
Feature #1711 CreaDevManager application implementation
[crea.git] / lib / creaDevManagerLib / CDMUtilities.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  * CDMUtilities.cpp
30  *
31  *  Created on: Nov 23, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "CDMUtilities.h"
36
37 #include<vector>
38 #include<string>
39 #include<iostream>
40 #include<fstream>
41 #include<algorithm>
42 #include<cstdlib>
43
44 #include<creaWx.h>
45 #include<wx/config.h>
46
47 namespace CDMUtilities
48 {
49   template <typename Container>
50   Container& splitter::split
51   (
52       Container& result,
53       const typename Container::value_type& s,
54       const typename Container::value_type& delimiters,
55       empties_t empties
56   )
57   {
58     result.clear();
59     size_t current;
60     size_t next = -1;
61     do
62       {
63         if (empties == no_empties)
64           {
65             next = s.find_first_not_of(delimiters, next + 1);
66             if (next == Container::value_type::npos)
67               {
68                 break;
69               }
70             next -= 1;
71           }
72         current = next + 1;
73         next = s.find_first_of(delimiters, current);
74         result.push_back(s.substr(current, next - current));
75       }
76     while (next != Container::value_type::npos);
77     return result;
78   }
79
80   const std::string fixPath(const std::string& path)
81   {
82     std::string pathFixed = "";
83
84 #ifdef _WIN32
85     // ------ Windows
86     std::vector<std::string> pathSplit;
87
88     splitter::split(pathSplit, path, CDMUtilities::SLASH, splitter::no_empties);
89
90         if(0 < pathSplit.size())
91                 pathFixed = pathSplit[0];
92
93     for (int i = 1; i < (int)(pathSplit.size()); i++)
94       {
95         pathFixed += CDMUtilities::SLASH + pathSplit[i];
96       }
97 #else
98     // ------ LINUX / MacOS
99     //break path into folders
100     std::vector<std::string> pathSplit;
101
102     splitter::split(pathSplit, path, CDMUtilities::SLASH, splitter::no_empties);
103
104     for (int i = 0; i < pathSplit.size(); i++)
105       {
106         pathFixed += CDMUtilities::SLASH + pathSplit[i];
107       }
108 #endif
109     return pathFixed;
110
111   }
112
113   int openTextEditor(const std::string& file)
114   {
115 #ifdef _WIN32
116     wxConfigBase* pConfig =  wxConfigBase::Get();
117     std::string command = "start " + crea::wx2std(pConfig->Read(wxT("TEXT_EDITOR"), crea::std2wx(CDMUtilities::TEXT_EDITOR)));
118
119     if(file != "")
120       command += " \"" + file + "\"";
121 #else
122     wxConfigBase* pConfig =  wxConfigBase::Get();
123     std::string command = crea::wx2std(pConfig->Read(wxT("TEXT_EDITOR"), crea::std2wx(CDMUtilities::TEXT_EDITOR)));
124
125     if(file != "")
126       command += " \"" + file + "\"";
127     command += " &";
128 #endif
129     return system(command.c_str());
130   }
131
132   int openFileExplorer(const std::string& file)
133   {
134 #ifdef _WIN32
135     wxConfigBase* pConfig =  wxConfigBase::Get();
136     std::string command = "start " + crea::wx2std(pConfig->Read(wxT("FILE_EXPLORER"), crea::std2wx(CDMUtilities::FILE_EXPLORER)));
137
138     if(file != "")
139       command += " \"" + file + "\"";
140 #else
141     wxConfigBase* pConfig =  wxConfigBase::Get();
142     std::string command = crea::wx2std(pConfig->Read(wxT("FILE_EXPLORER"), crea::std2wx(CDMUtilities::FILE_EXPLORER)));
143
144     if(file != "")
145       command += " \"" + file + "\"";
146     command += " &";
147 #endif
148     return system(command.c_str());
149   }
150
151   int openFileWithCommand(const std::string& file, const std::string& command)
152   {
153 #ifdef _WIN32
154     std::string comm = "start " + command;
155     if(file != "")
156       comm += " \"" + file + "\"";
157 #else
158     std::string comm = command;
159     if(file != "")
160       comm += " \"" + file + "\"";
161     comm += " &";
162 #endif
163     return system(comm.c_str());
164   }
165
166   int openBBEditor()
167   {
168 #ifdef _WIN32
169     std::string comm = "start bbEditor";
170 #else
171         std::string comm = "bbEditor &";
172 #endif
173     return system(comm.c_str());
174   }
175
176   int openCreaToolsTools()
177   {
178 #ifdef _WIN32
179     std::string comm = "start creaTools";
180 #else
181     std::string comm = "creaTools.sh &";
182 #endif
183     
184     return system(comm.c_str());
185   }
186
187   int openTerminal(const std::string& command)
188   {
189     wxConfigBase* pConfig =  wxConfigBase::Get();
190     std::string comm = crea::wx2std(pConfig->Read(wxT("TERMINAl"), crea::std2wx(CDMUtilities::TERMINAL)));
191     if (command != "")
192       comm += + " " + command;
193     comm += " &";
194     return system(comm.c_str());
195   }
196
197   bool createEmptyClass(const std::string& name, const std::string& path)
198   {
199     std::vector<std::string> words;
200     splitter::split(words,name," \\/\",.'`",splitter::no_empties);
201     std::string fixedName = "";
202     for (int i = 0; i < (int)(words.size()); i++)
203       {
204         fixedName += words[i];
205       }
206
207     if(fixedName == "" || path == "")
208       {
209         return false;
210       }
211
212     std::string nameupper = fixedName;
213     std::transform(nameupper.begin(), nameupper.end(),nameupper.begin(),::toupper);
214
215     std::ofstream out((path + SLASH + fixedName + ".h").c_str());
216     if( !out.is_open())
217       {
218         return false;
219       }
220
221     out << "/*" << std::endl;
222     out << "# ---------------------------------------------------------------------" << std::endl;
223     out << "#" << std::endl;
224     out << "# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image" << std::endl;
225     out << "#                        pour la Sante)" << std::endl;
226     out << "# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton" << std::endl;
227     out << "# Previous Authors : Laurent Guigues, Jean-Pierre Roux" << std::endl;
228     out << "# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil" << std::endl;
229     out << "#" << std::endl;
230     out << "#  This software is governed by the CeCILL-B license under French law and" << std::endl;
231     out << "#  abiding by the rules of distribution of free software. You can  use," << std::endl;
232     out << "#  modify and/ or redistribute the software under the terms of the CeCILL-B" << std::endl;
233     out << "#  license as circulated by CEA, CNRS and INRIA at the following URL" << std::endl;
234     out << "#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html" << std::endl;
235     out << "#  or in the file LICENSE.txt." << std::endl;
236     out << "#" << std::endl;
237     out << "#  As a counterpart to the access to the source code and  rights to copy," << std::endl;
238     out << "#  modify and redistribute granted by the license, users are provided only" << std::endl;
239     out << "#  with a limited warranty  and the software's author,  the holder of the" << std::endl;
240     out << "#  economic rights,  and the successive licensors  have only  limited" << std::endl;
241     out << "#  liability." << std::endl;
242     out << "#" << std::endl;
243     out << "#  The fact that you are presently reading this means that you have had" << std::endl;
244     out << "#  knowledge of the CeCILL-B license and that you accept its terms." << std::endl;
245     out << "# ------------------------------------------------------------------------" << std::endl;
246     out << "*/" << std::endl;
247     out << "" << std::endl;
248     out << "#ifndef _" << nameupper << "_H_" << std::endl;
249     out << "#define _" << nameupper << "_H_" << std::endl;
250     out << "" << std::endl;
251     out << "//---------------------------------------------" << std::endl;
252     out << "// Class Name: " << fixedName << "" << std::endl;
253     out << "// [classdescription]" << std::endl;
254     out << "//---------------------------------------------" << std::endl;
255     out << "" << std::endl;
256     out << "class " << fixedName << "" << std::endl;
257     out << "{" << std::endl;
258     out << "" << std::endl;
259     out << "//---------------------------------------------" << std::endl;
260     out << "//Methods and attributes exposed to other classes" << std::endl;
261     out << "//---------------------------------------------" << std::endl;
262     out << "public :" << std::endl;
263     out << "  " << fixedName << "();" << std::endl;
264     out << "  ~" << fixedName << "();" << std::endl;
265     out << "" << std::endl;
266     out << "//--Method template----------------------------" << std::endl;
267     out << "//  void FunctionName(int& parameterA);" << std::endl;
268     out << "" << std::endl;
269     out << "" << std::endl;
270     out << "//---------------------------------------------" << std::endl;
271     out << "//Methods and attributes exposed only to classes" << std::endl;
272     out << "//that are derived from this class" << std::endl;
273     out << "//---------------------------------------------" << std::endl;
274     out << "protected:" << std::endl;
275     out << "" << std::endl;
276     out << "//---------------------------------------------" << std::endl;
277     out << "//Methods and attributes only visible by this class" << std::endl;
278     out << "//---------------------------------------------" << std::endl;
279     out << "private:" << std::endl;
280     out << "" << std::endl;
281     out << "};" << std::endl;
282     out << "" << std::endl;
283     out << "//-end of _" << nameupper << "_H_------------------------------------------------------" << std::endl;
284     out << "#endif" << std::endl;
285
286     out.close();
287
288     out.open((path + CDMUtilities::SLASH + fixedName + ".cpp").c_str());
289     if( !out.is_open())
290       {
291         return false;
292       }
293
294     out << "/*" << std::endl;
295     out << "# ---------------------------------------------------------------------" << std::endl;
296     out << "#" << std::endl;
297     out << "# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image" << std::endl;
298     out << "#                        pour la Sante)" << std::endl;
299     out << "# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton" << std::endl;
300     out << "# Previous Authors : Laurent Guigues, Jean-Pierre Roux" << std::endl;
301     out << "# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil" << std::endl;
302     out << "#" << std::endl;
303     out << "#  This software is governed by the CeCILL-B license under French law and" << std::endl;
304     out << "#  abiding by the rules of distribution of free software. You can  use," << std::endl;
305     out << "#  modify and/ or redistribute the software under the terms of the CeCILL-B" << std::endl;
306     out << "#  license as circulated by CEA, CNRS and INRIA at the following URL" << std::endl;
307     out << "#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html" << std::endl;
308     out << "#  or in the file LICENSE.txt." << std::endl;
309     out << "#" << std::endl;
310     out << "#  As a counterpart to the access to the source code and  rights to copy," << std::endl;
311     out << "#  modify and redistribute granted by the license, users are provided only" << std::endl;
312     out << "#  with a limited warranty  and the software's author,  the holder of the" << std::endl;
313     out << "#  economic rights,  and the successive licensors  have only  limited" << std::endl;
314     out << "#  liability." << std::endl;
315     out << "#" << std::endl;
316     out << "#  The fact that you are presently reading this means that you have had" << std::endl;
317     out << "#  knowledge of the CeCILL-B license and that you accept its terms." << std::endl;
318     out << "# ------------------------------------------------------------------------" << std::endl;
319     out << "*/" << std::endl;
320     out << "" << std::endl;
321     out << "#include \"" << fixedName << ".h\"" << std::endl;
322     out << "" << std::endl;
323     out << "" << fixedName << "::" << fixedName << "()" << std::endl;
324     out << "{" << std::endl;
325     out << "}" << std::endl;
326     out << "" << std::endl;
327     out << "" << fixedName << "::~" << fixedName << "()" << std::endl;
328     out << "{" << std::endl;
329     out << "}" << std::endl;
330     out << "" << std::endl;
331     out << "//---------------------------------------------" << std::endl;
332     out << "//Method template" << std::endl;
333     out << "//---------------------------------------------" << std::endl;
334     out << "/*" << std::endl;
335     out << "void " << fixedName << "::FunctionName(int& parameterA)" << std::endl;
336     out << "{" << std::endl;
337     out << "  parameterA = 2 * parameterA;" << std::endl;
338     out << "  return;" << std::endl;
339     out << "}" << std::endl;
340     out << "*/" << std::endl;
341
342     return true;
343   }
344
345   std::string stringify(const std::string& line)
346   {
347         std::string res;
348         for (int i = 0; i < (int)(line.size()); i++)
349         {
350           if(line[i] == '\\')
351             res.push_back('\\');
352           if(line[i] == '\"')
353             res.push_back('\\');
354           res.push_back(line[i]);
355         }
356         return res;
357   }
358
359   CMLFile readCMLFile(const std::string& file_path)
360   {
361     CMLFile res;
362
363     std::ifstream file(file_path.c_str());
364     if (file.is_open())
365       {
366         char ch = file.get();
367         while (!file.eof())
368           {
369             syntaxElement element;
370             if (isspace(ch))
371               {
372                 //std::cout << "space" << std::endl;
373                 element.first = "space";
374                 element.second.push_back(std::string(1,ch));
375               }
376             else if (ch == '#')
377               {
378                 //std::cout << "comment" << std::endl;
379                 element.first = "comment";
380                 std::string commentValue;
381                 while (ch != '\n')
382                   {
383                     commentValue.push_back(ch);
384
385                     ch = file.get();
386                     if (file.eof())
387                       break;
388                   };
389                 if (!file.eof())
390                   commentValue.push_back('\n');
391                 element.second.push_back(commentValue);
392               }
393             else
394               {
395                 //std::cout << "command" << std::endl;
396                 element.first = "command";
397                 std::string commandValue;
398                 while (true)
399                   {
400                     //std::cout << ch;
401                     //std::cout.flush();
402                     while(!isspace(ch) && ch != '(' && ch != ')' && ch != '#')
403                       {
404                         if(ch == '"')
405                           {
406                             if (commandValue.size()) {
407                               element.second.push_back(commandValue);
408                               commandValue.clear();
409                             }
410                             commandValue.push_back(ch);
411                             ch = file.get();
412                             while(!file.eof() && ch != '"')
413                               {
414                                 if(ch == '\\')
415                                   {
416                                     commandValue.push_back(ch);
417                                     ch = file.get();
418                                     if(!file.eof())
419                                       commandValue.push_back(ch);
420                                   }
421                                 else
422                                   {
423                                     commandValue.push_back(ch);
424                                   }
425                                 ch = file.get();
426                               }
427                             if(!file.eof())
428                               commandValue.push_back(ch);
429                             element.second.push_back(commandValue);
430                             commandValue.clear();
431                           }
432                         else
433                           commandValue.push_back(ch);
434
435                         ch = file.get();
436                       }
437
438                     if (!file.eof() && (isspace(ch) || ch == '(' || ch == ')' || ch == '#'))
439                       {
440                         if (commandValue.size()) {
441                           element.second.push_back(commandValue);
442                           commandValue.clear();
443                         }
444                         commandValue.push_back(ch);
445                         if (ch == '#') {
446                           while (ch != '\n') {
447                             ch = file.get();
448                             if (file.eof())
449                               break;
450                             commandValue.push_back(ch);
451                           };
452                         }
453                         element.second.push_back(commandValue);
454                         if (commandValue == ")")
455                           {
456                             commandValue.clear();
457                             break;
458                           }
459                         commandValue.clear();
460                       }
461
462                     ch = file.get();
463                     if (file.eof())
464                       break;
465                   }
466               }
467             res.push_back(element);
468
469             ch = file.get();
470             if (file.eof())
471               break;
472           }
473
474         file.close();
475       }
476
477 /*
478     std::cout << "CMakeLists: " << file_path << std::endl;
479     for (int i = 0; i < res.size(); ++i) {
480       if (res[i].first == "command")
481         std::cout << "@";
482       for (int j = 0; j < res[i].second.size(); ++j) {
483         std::cout << "~" << res[i].second[j];
484       }
485       if (res[i].first == "command")
486         std::cout << "@";
487     }
488     std::cout << "End of file" << std::endl;
489 */
490     return res;
491   }
492
493   bool writeCMLFile(const std::string& file_path, const CMLFile& data)
494   {
495     std::ofstream file(file_path.c_str());
496     if(file.is_open())
497       {
498         for (int i = 0; i < data.size(); ++i) {
499           for (int j = 0; j < data[i].second.size(); ++j) {
500             file << data[i].second[j];
501           }
502         }
503         file.close();
504         return true;
505       }
506     return false;
507   }
508
509 }