]> 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
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   //open makelists file
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 modelCDMApplication* modelCDMAppli::CreateApplication(
87     const std::string& name,
88     std::string*& result,
89     const std::string& path
90 )
91 {
92   //copy template library folder with new name
93   //TODO: fix for windows
94   std::string copyCommand = "cp -r " + this->path + "/template_appli " + this->path + "/" + name;
95   if(system(copyCommand.c_str()))
96     {
97       result = new std::string("An error occurred while running '" + copyCommand + "'.");
98       return NULL;
99     }
100   //set name of library in CMakeLists inside copied folder
101   std::string line;
102   std::ifstream in((this->path + "/" + name + "/CMakeLists.txt").c_str());
103   if( !in.is_open())
104     {
105       result = new std::string("CMakeLists.txt file failed to open.");
106       return NULL;
107     }
108   std::ofstream out((this->path + "/" + name + "/CMakeLists.txt.tmp").c_str());
109   while (getline(in, line))
110     {
111       if(line == "SET ( EXE_NAME   MyExe  )")
112         line = "SET ( EXE_NAME   " + name + "  )";
113       out << line << std::endl;
114     }
115   in.close();
116   out.close();
117   //delete old file and rename new file
118   std::string renameCommand = "mv " + this->path + "/" + name + "/CMakeLists.txt.tmp " + this->path + "/" + name + "/CMakeLists.txt";
119   if(system(renameCommand.c_str()))
120     {
121       result = new std::string("An error occurred while running '" + renameCommand + "'.");
122       return NULL;
123     }
124
125   //add application to model
126   //TODO: fix for windows
127   modelCDMApplication* application = new modelCDMApplication(this->path + "/" + name, this->level + 1);
128   this->applications.push_back(application);
129   this->children.push_back(application);
130
131   this->SortChildren();
132
133   result = new std::string(this->path + "/" + name);
134   return application;
135 }
136
137 bool modelCDMAppli::OpenCMakeListsFile(std::string*& result)
138 {
139   //TODO: implement method
140   return true;
141 }
142
143 const bool modelCDMAppli::Refresh(std::string*& result)
144 {
145   //TODO: implement method
146   return true;
147 }