]> 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   const std::string fixPath(const std::string& path)
50   {
51     std::string pathFixed = "";
52
53 #ifdef _WIN32
54     // ------ Windows
55     std::vector<std::string> pathSplit;
56
57     splitter::split(pathSplit, path, CDMUtilities::SLASH, splitter::no_empties);
58
59         if(0 < pathSplit.size())
60                 pathFixed = pathSplit[0];
61
62     for (int i = 1; i < (int)(pathSplit.size()); i++)
63       {
64         pathFixed += CDMUtilities::SLASH + pathSplit[i];
65       }
66 #else
67     // ------ LINUX / MacOS
68     //break path into folders
69     std::vector<std::string> pathSplit;
70
71     splitter::split(pathSplit, path, CDMUtilities::SLASH, splitter::no_empties);
72
73     for (int i = 0; i < pathSplit.size(); i++)
74       {
75         pathFixed += CDMUtilities::SLASH + pathSplit[i];
76       }
77 #endif
78     return pathFixed;
79
80   }
81
82   int openTextEditor(const std::string& file)
83   {
84 #ifdef _WIN32
85     wxConfigBase* pConfig =  wxConfigBase::Get();
86     std::string command = "start " + crea::wx2std(pConfig->Read(wxT("TEXT_EDITOR"), crea::std2wx(CDMUtilities::TEXT_EDITOR)));
87
88     if(file != "")
89       command += " \"" + file + "\"";
90 #else
91     wxConfigBase* pConfig =  wxConfigBase::Get();
92     std::string command = crea::wx2std(pConfig->Read(wxT("TEXT_EDITOR"), crea::std2wx(CDMUtilities::TEXT_EDITOR)));
93
94     if(file != "")
95       command += " \"" + file + "\"";
96     command += " &";
97 #endif
98     return system(command.c_str());
99   }
100
101   int openFileExplorer(const std::string& file)
102   {
103 #ifdef _WIN32
104     wxConfigBase* pConfig =  wxConfigBase::Get();
105     std::string command = "start " + crea::wx2std(pConfig->Read(wxT("FILE_EXPLORER"), crea::std2wx(CDMUtilities::FILE_EXPLORER)));
106
107     if(file != "")
108       command += " \"" + file + "\"";
109 #else
110     wxConfigBase* pConfig =  wxConfigBase::Get();
111     std::string command = crea::wx2std(pConfig->Read(wxT("FILE_EXPLORER"), crea::std2wx(CDMUtilities::FILE_EXPLORER)));
112
113     if(file != "")
114       command += " \"" + file + "\"";
115     command += " &";
116 #endif
117     return system(command.c_str());
118   }
119
120   int openFileWithCommand(const std::string& file, const std::string& command, const std::string& parameters)
121   {
122 #ifdef _WIN32
123     std::string comm = "start " + command;
124     if(file != "")
125       comm += " \"" + file + "\" " + parameters;
126 #else
127     std::string comm = command;
128     if(file != "")
129       comm += " \"" + file + "\" " + parameters;
130     comm += " &";
131 #endif
132     std::cout << "executing: " << comm << std::endl;
133     return system(comm.c_str());
134   }
135
136   int openBBEditor()
137   {
138 #ifdef _WIN32
139     std::string comm = "start bbEditor";
140 #else
141         std::string comm = "bbEditor &";
142 #endif
143     return system(comm.c_str());
144   }
145
146   int openCreaToolsTools()
147   {
148 #ifdef _WIN32
149     std::string comm = "start creaTools";
150 #else
151     std::string comm = "creaTools.sh &";
152 #endif
153     
154     return system(comm.c_str());
155   }
156
157   int openTerminal(const std::string& command)
158   {
159     wxConfigBase* pConfig =  wxConfigBase::Get();
160     std::string comm = crea::wx2std(pConfig->Read(wxT("TERMINAl"), crea::std2wx(CDMUtilities::TERMINAL)));
161     if (command != "")
162       comm += + " " + command;
163     comm += " &";
164     return system(comm.c_str());
165   }
166
167   bool createEmptyClass(const std::string& name, const std::string& path)
168   {
169     std::vector<std::string> words;
170     splitter::split(words,name," \\/\",.'`",splitter::no_empties);
171     std::string fixedName = "";
172     for (int i = 0; i < (int)(words.size()); i++)
173       {
174         fixedName += words[i];
175       }
176
177     if(fixedName == "" || path == "")
178       {
179         return false;
180       }
181
182     std::string nameupper = fixedName;
183     std::transform(nameupper.begin(), nameupper.end(),nameupper.begin(),::toupper);
184
185     std::ofstream out((path + SLASH + fixedName + ".h").c_str());
186     if( !out.is_open())
187       {
188         return false;
189       }
190
191     out << "/*" << std::endl;
192     out << "# ---------------------------------------------------------------------" << std::endl;
193     out << "#" << std::endl;
194     out << "# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image" << std::endl;
195     out << "#                        pour la Sante)" << std::endl;
196     out << "# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton" << std::endl;
197     out << "# Previous Authors : Laurent Guigues, Jean-Pierre Roux" << std::endl;
198     out << "# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil" << std::endl;
199     out << "#" << std::endl;
200     out << "#  This software is governed by the CeCILL-B license under French law and" << std::endl;
201     out << "#  abiding by the rules of distribution of free software. You can  use," << std::endl;
202     out << "#  modify and/ or redistribute the software under the terms of the CeCILL-B" << std::endl;
203     out << "#  license as circulated by CEA, CNRS and INRIA at the following URL" << std::endl;
204     out << "#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html" << std::endl;
205     out << "#  or in the file LICENSE.txt." << std::endl;
206     out << "#" << std::endl;
207     out << "#  As a counterpart to the access to the source code and  rights to copy," << std::endl;
208     out << "#  modify and redistribute granted by the license, users are provided only" << std::endl;
209     out << "#  with a limited warranty  and the software's author,  the holder of the" << std::endl;
210     out << "#  economic rights,  and the successive licensors  have only  limited" << std::endl;
211     out << "#  liability." << std::endl;
212     out << "#" << std::endl;
213     out << "#  The fact that you are presently reading this means that you have had" << std::endl;
214     out << "#  knowledge of the CeCILL-B license and that you accept its terms." << std::endl;
215     out << "# ------------------------------------------------------------------------" << std::endl;
216     out << "*/" << std::endl;
217     out << "" << std::endl;
218     out << "#ifndef _" << nameupper << "_H_" << std::endl;
219     out << "#define _" << nameupper << "_H_" << std::endl;
220     out << "" << std::endl;
221     out << "//---------------------------------------------" << std::endl;
222     out << "// Class Name: " << fixedName << "" << std::endl;
223     out << "// [classdescription]" << std::endl;
224     out << "//---------------------------------------------" << std::endl;
225     out << "" << std::endl;
226     out << "class " << fixedName << "" << std::endl;
227     out << "{" << std::endl;
228     out << "" << std::endl;
229     out << "//---------------------------------------------" << std::endl;
230     out << "//Methods and attributes exposed to other classes" << std::endl;
231     out << "//---------------------------------------------" << std::endl;
232     out << "public :" << std::endl;
233     out << "  " << fixedName << "();" << std::endl;
234     out << "  ~" << fixedName << "();" << std::endl;
235     out << "" << std::endl;
236     out << "//--Method template----------------------------" << std::endl;
237     out << "//  void FunctionName(int& parameterA);" << std::endl;
238     out << "" << std::endl;
239     out << "" << std::endl;
240     out << "//---------------------------------------------" << std::endl;
241     out << "//Methods and attributes exposed only to classes" << std::endl;
242     out << "//that are derived from this class" << std::endl;
243     out << "//---------------------------------------------" << std::endl;
244     out << "protected:" << std::endl;
245     out << "" << std::endl;
246     out << "//---------------------------------------------" << std::endl;
247     out << "//Methods and attributes only visible by this class" << std::endl;
248     out << "//---------------------------------------------" << std::endl;
249     out << "private:" << std::endl;
250     out << "" << std::endl;
251     out << "};" << std::endl;
252     out << "" << std::endl;
253     out << "//-end of _" << nameupper << "_H_------------------------------------------------------" << std::endl;
254     out << "#endif" << std::endl;
255
256     out.close();
257
258     out.open((path + CDMUtilities::SLASH + fixedName + ".cpp").c_str());
259     if( !out.is_open())
260       {
261         return false;
262       }
263
264     out << "/*" << std::endl;
265     out << "# ---------------------------------------------------------------------" << std::endl;
266     out << "#" << std::endl;
267     out << "# Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image" << std::endl;
268     out << "#                        pour la Sante)" << std::endl;
269     out << "# Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton" << std::endl;
270     out << "# Previous Authors : Laurent Guigues, Jean-Pierre Roux" << std::endl;
271     out << "# CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil" << std::endl;
272     out << "#" << std::endl;
273     out << "#  This software is governed by the CeCILL-B license under French law and" << std::endl;
274     out << "#  abiding by the rules of distribution of free software. You can  use," << std::endl;
275     out << "#  modify and/ or redistribute the software under the terms of the CeCILL-B" << std::endl;
276     out << "#  license as circulated by CEA, CNRS and INRIA at the following URL" << std::endl;
277     out << "#  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html" << std::endl;
278     out << "#  or in the file LICENSE.txt." << std::endl;
279     out << "#" << std::endl;
280     out << "#  As a counterpart to the access to the source code and  rights to copy," << std::endl;
281     out << "#  modify and redistribute granted by the license, users are provided only" << std::endl;
282     out << "#  with a limited warranty  and the software's author,  the holder of the" << std::endl;
283     out << "#  economic rights,  and the successive licensors  have only  limited" << std::endl;
284     out << "#  liability." << std::endl;
285     out << "#" << std::endl;
286     out << "#  The fact that you are presently reading this means that you have had" << std::endl;
287     out << "#  knowledge of the CeCILL-B license and that you accept its terms." << std::endl;
288     out << "# ------------------------------------------------------------------------" << std::endl;
289     out << "*/" << std::endl;
290     out << "" << std::endl;
291     out << "#include \"" << fixedName << ".h\"" << std::endl;
292     out << "" << std::endl;
293     out << "" << fixedName << "::" << fixedName << "()" << std::endl;
294     out << "{" << std::endl;
295     out << "}" << std::endl;
296     out << "" << std::endl;
297     out << "" << fixedName << "::~" << fixedName << "()" << std::endl;
298     out << "{" << std::endl;
299     out << "}" << std::endl;
300     out << "" << std::endl;
301     out << "//---------------------------------------------" << std::endl;
302     out << "//Method template" << std::endl;
303     out << "//---------------------------------------------" << std::endl;
304     out << "/*" << std::endl;
305     out << "void " << fixedName << "::FunctionName(int& parameterA)" << std::endl;
306     out << "{" << std::endl;
307     out << "  parameterA = 2 * parameterA;" << std::endl;
308     out << "  return;" << std::endl;
309     out << "}" << std::endl;
310     out << "*/" << std::endl;
311
312     return true;
313   }
314
315   std::string stringify(const std::string& line)
316   {
317         std::string res;
318         for (int i = 0; i < (int)(line.size()); i++)
319         {
320           if(line[i] == '\\')
321             res.push_back('\\');
322           if(line[i] == '\"')
323             res.push_back('\\');
324           res.push_back(line[i]);
325         }
326         return res;
327   }
328
329   std::string readFile(const std::string& file_path)
330   {
331     std::string res;
332     std::ifstream file(file_path.c_str());
333     if (file.is_open())
334       {
335         char ch = file.get();
336         while (!file.eof())
337           {
338             res.push_back(ch);
339             ch = file.get();
340           }
341         file.close();
342       }
343     return res;
344   }
345
346   bool writeFile(const std::string& file_path, const std::string& st)
347   {
348     std::ofstream file(file_path.c_str());
349     if (file.is_open())
350       {
351         file << st;
352         file.close();
353         return true;
354       }
355     return false;
356
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
510
511   void
512   normalizeStr(std::string& st)
513   {
514     while(st.size() && isspace(st[0]))
515       st.erase(0,1);
516     while(st.size() && isspace(st[st.size()-1]))
517       st.erase(st.size()-1,1);
518     return;
519   }
520
521 }