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