]> Creatis software - crea.git/blob - lib/creaDevManagerLib/modelCDMAppli.cpp
9740917aae5f5cce588dc3dc0318853c3d5e2ec8
[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
40 #include "CDMUtilities.h"
41 #include "creaWx.h"
42 #include "wx/dir.h"
43
44 modelCDMAppli::modelCDMAppli()
45 {
46 }
47
48 modelCDMAppli::modelCDMAppli(const std::string& path, const int& level)
49 {
50   this->type = wxDIR_DIRS;
51   this->name = "appli";
52   this->level = level;
53   this->path = path;
54
55
56
57   this->path = CDMUtilities::fixPath(path);
58   std::string pathFixed(CDMUtilities::fixPath(path));
59
60   this->applications.clear();
61   wxDir dir(crea::std2wx((pathFixed).c_str()));
62   if (dir.IsOpened())
63     {
64       wxString fileName;
65       bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
66       while (cont)
67         {
68           std::string stdfileName = crea::wx2std(fileName);
69
70           modelCDMApplication* application = new modelCDMApplication(pathFixed + "/" + stdfileName, this->level + 1);
71           this->applications.push_back(application);
72           this->children.push_back(application);
73
74           cont = dir.GetNext(&fileName);
75         }
76
77     }
78   this->SortChildren();
79 }
80
81 modelCDMAppli::~modelCDMAppli()
82 {
83 }
84
85 modelCDMApplication* modelCDMAppli::CreateApplication(
86     const std::string& name,
87     std::string*& result,
88     const std::string& path
89 )
90 {
91   //copy template library folder with new name
92   //TODO: fix for windows
93   std::string copyCommand = "cp -r " + this->path + "/template_appli " + this->path + "/" + name;
94   if(system(copyCommand.c_str()))
95     {
96       result = new std::string("An error occurred while running '" + copyCommand + "'.");
97       return NULL;
98     }
99   //set name of library in CMakeLists inside copied folder
100   std::string line;
101   std::ifstream in((this->path + "/" + name + "/CMakeLists.txt").c_str());
102   if( !in.is_open())
103     {
104       result = new std::string("CMakeLists.txt file failed to open.");
105       return NULL;
106     }
107   std::ofstream out((this->path + "/" + name + "/CMakeLists.txt.tmp").c_str());
108   while (getline(in, line))
109     {
110       if(line == "SET ( EXE_NAME   MyExe  )")
111         line = "SET ( EXE_NAME   " + name + "  )";
112       out << line << std::endl;
113     }
114   in.close();
115   out.close();
116   //delete old file and rename new file
117   std::string renameCommand = "mv " + this->path + "/" + name + "/CMakeLists.txt.tmp " + this->path + "/" + name + "/CMakeLists.txt";
118   if(system(renameCommand.c_str()))
119     {
120       result = new std::string("An error occurred while running '" + renameCommand + "'.");
121       return NULL;
122     }
123
124   //add application to model
125   //TODO: fix for windows
126   modelCDMApplication* application = new modelCDMApplication(this->path + "/" + name, this->level + 1);
127   this->applications.push_back(application);
128   this->children.push_back(application);
129
130   this->SortChildren();
131
132   result = new std::string(this->path + "/" + name);
133   return application;
134 }
135
136 bool modelCDMAppli::OpenCMakeListsFile(std::string*& result)
137 {
138   //TODO: implement method
139   return true;
140 }
141
142 const bool modelCDMAppli::Refresh(std::string*& result)
143 {
144   //TODO: implement method
145   return true;
146 }