]> Creatis software - crea.git/blob - lib/creaDevManagerLib/modelCDMLib.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / modelCDMLib.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  * modelCDMLib.cpp
30  *
31  *  Created on: Nov 23, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "modelCDMLib.h"
36
37 #include <fstream>
38
39 #include "CDMUtilities.h"
40 #include "creaWx.h"
41 #include "wx/dir.h"
42
43 modelCDMLib::modelCDMLib()
44 {
45 }
46
47 modelCDMLib::modelCDMLib(const std::string& path, const int& level)
48 {
49   this->type = wxDIR_DIRS;
50   this->name = "lib";
51   this->level = level;
52   this->path = path;
53
54
55
56   this->path = CDMUtilities::fixPath(path);
57   //open makelists file
58   std::string pathFixed(CDMUtilities::fixPath(path));
59
60   this->libraries.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           modelCDMLibrary* library = new modelCDMLibrary(pathFixed + "/" + stdfileName, this->level + 1);
71           this->libraries.push_back(library);
72           this->children.push_back(library);
73
74           cont = dir.GetNext(&fileName);
75         }
76
77     }
78   this->SortChildren();
79 }
80
81 modelCDMLib::~modelCDMLib()
82 {
83 }
84
85 modelCDMIProjectTreeNode* modelCDMLib::CreateLibrary(
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   std::string copyCommand = "cp -r " + this->path + "/template_lib " + this->path + "/" + name;
93   if(system(copyCommand.c_str()))
94     {
95       result = new std::string("An error occurred while running '" + copyCommand + "'.");
96       return NULL;
97     }
98   //TODO: set name of library in CMakeLists inside copied folder
99   std::string line;
100   std::ifstream in((this->path + "/" + name + "/CMakeLists.txt").c_str());
101   if( !in.is_open())
102     {
103       result = new std::string("CMakeLists.txt file failed to open.");
104       return NULL;
105     }
106   std::ofstream out((this->path + "/" + name + "/CMakeLists.txt.tmp").c_str());
107   while (getline(in, line))
108     {
109       if(line == "SET ( LIBRARY_NAME   MyLib  )")
110         line = "SET ( LIBRARY_NAME   " + name + "  )";
111       out << line << std::endl;
112     }
113   in.close();
114   out.close();
115   //delete old file and rename new file
116   std::string renameCommand = "mv " + this->path + "/" + name + "/CMakeLists.txt.tmp " + this->path + "/" + name + "/CMakeLists.txt";
117   if(system(renameCommand.c_str()))
118     {
119       result = new std::string("An error occurred while running '" + renameCommand + "'.");
120       return NULL;
121     }
122
123   //add library to model
124   modelCDMLibrary* library = new modelCDMLibrary(this->path + "/" + name, this->level + 1);
125   this->libraries.push_back(library);
126   this->children.push_back(library);
127
128   result = new std::string(this->path + "/" + name);
129   return library;
130 }
131
132 bool modelCDMLib::OpenCMakeListsFile(std::string*& result)
133 {
134   //TODO: implement method
135   return true;
136 }
137
138 const bool modelCDMLib::Refresh(std::string*& result)
139 {
140   //TODO: implement method
141   return true;
142 }