]> Creatis software - crea.git/blob - lib/creaDevManagerLib/modelCDMProject.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / modelCDMProject.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  * modelCDMProject.cpp
30  *
31  *  Created on: 13/11/2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "modelCDMProject.h"
36
37 #include <iostream>
38 #include <vector>
39 #include <fstream>
40
41 #include "CDMUtilities.h"
42 #include "creaWx.h"
43 #include "wx/dir.h"
44
45 modelCDMProject::modelCDMProject()
46 {
47   std::cout << "in constructor1" << std::endl;
48   this->appli = NULL;
49   this->lib = NULL;
50 }
51
52 modelCDMProject::modelCDMProject(
53     const std::string& path,
54     const std::string& buildPath
55 )
56 {
57   this->path = CDMUtilities::fixPath(path);
58   //open makelists file
59   std::string pathFixed(CDMUtilities::fixPath(path));
60
61   //TODO: set pathMakeLists for windows
62   std::string pathMakeLists = pathFixed + "/CMakeLists.txt";
63
64   std::ifstream confFile;
65   confFile.open((pathMakeLists).c_str());
66
67   std::string word;
68   while(confFile.is_open() && !confFile.eof())
69     {
70       //std::cout << "leyendo " << word << std::endl;
71       //get project name
72       std::getline(confFile,word,'(');
73       std::vector<std::string> wordBits;
74       CDMUtilities::splitter::split(wordBits,word," (\n",CDMUtilities::splitter::no_empties);
75
76       if(wordBits[wordBits.size()-1] == "PROJECT")
77         {
78           std::getline(confFile,word,')');
79           std::vector<std::string> nameBits;
80           CDMUtilities::splitter::split(nameBits, word, " ", CDMUtilities::splitter::no_empties);
81
82           this->name = "";
83           for (int i = 0; i < nameBits.size(); i++)
84             {
85               if(i != 0)
86                 this->name += " ";
87               this->name += nameBits[i];
88             }
89
90         }
91
92
93       if(wordBits[wordBits.size()-1] == "SET")
94         {
95           //get project version
96           std::getline(confFile,word,')');
97           if(word.find("PROJECT_MAJOR_VERSION") != std::string::npos)
98             {
99               std::vector<std::string> versionBits;
100               CDMUtilities::splitter::split(versionBits, word, " ", CDMUtilities::splitter::no_empties);
101               version = versionBits[versionBits.size()-1];
102             }
103           if(word.find("PROJECT_MINOR_VERSION") != std::string::npos)
104             {
105               std::vector<std::string> versionBits;
106               CDMUtilities::splitter::split(versionBits, word, " ", CDMUtilities::splitter::no_empties);
107               version += "." + versionBits[versionBits.size()-1];
108             }
109           if(word.find("PROJECT_BUILD_VERSION") != std::string::npos)
110             {
111               std::vector<std::string> versionBits;
112               CDMUtilities::splitter::split(versionBits, word, " ", CDMUtilities::splitter::no_empties);
113               version += "." + versionBits[versionBits.size()-1];
114             }
115
116           //get project versionDate
117           if(word.find("PROJECT_VERSION_DATE") != std::string::npos)
118             {
119               std::vector<std::string> versionBits;
120               CDMUtilities::splitter::split(versionBits, word, " \"", CDMUtilities::splitter::no_empties);
121               versionDate = versionBits[versionBits.size()-1];
122             }
123           //get project buildPath
124
125           if (buildPath != "")
126             {
127               this->buildPath = buildPath;
128             }
129           else
130             {
131               this->buildPath = this->path + "Bin";
132             }
133         }
134     }
135   confFile.close();
136
137   this->type = wxDIR_DIRS;
138   this->level = 0;
139
140   //TODO: implement method
141   //if appli exist create Appli
142   this->appli = NULL;
143   //if lib exist create Lib
144   this->lib = NULL;
145   //if bbtk_* exist create Packages
146
147
148 }
149
150 modelCDMProject::~modelCDMProject()
151 {
152   if(this->appli != NULL)
153     {
154       delete this->appli;
155       this->appli = NULL;
156     }
157   if(this->lib != NULL)
158     {
159       delete this->lib;
160       this->lib = NULL;
161     }
162   for (int i = 0; i < this->packages.size(); i++)
163     {
164       if(this->packages[i] != NULL)
165         {
166           delete this->packages[i];
167           this->packages[i] = NULL;
168         }
169     }
170 }
171
172 const std::string&
173 modelCDMProject::GetName() const
174 {
175   return this->name;
176 }
177
178 const std::string&
179 modelCDMProject::GetVersion() const
180 {
181   return this->version;
182 }
183
184 const std::string&
185 modelCDMProject::GetVersionDate() const
186 {
187   return this->versionDate;
188 }
189
190 const std::string&
191 modelCDMProject::GetBuildPath() const
192 {
193   return this->buildPath;
194 }
195
196 bool modelCDMProject::SetVersion(const std::string& version, std::string*& result)
197 {
198   //TODO: implement method
199   return true;
200 }
201
202 bool modelCDMProject::SetBuildPath(const std::string& path, std::string*& result)
203 {
204   //TODO: implement method
205   return true;
206 }
207
208 bool modelCDMProject::CreatePackage(
209     const std::string& name,
210     std::string*& result,
211     const std::string& authors,
212     const std::string& authorsEmail,
213     const std::string& version,
214     const std::string& description
215 )
216 {
217   //TODO: implement method
218   return true;
219 }
220
221 bool modelCDMProject::CreateLibrary(
222     const std::string& name,
223     std::string*& result,
224     const std::string& path
225 )
226 {
227   //TODO: implement method
228   return true;
229 }
230
231 bool modelCDMProject::CreateApplication(
232     const std::string& name,
233     std::string*& result,
234     const std::string& path
235 )
236 {
237   //TODO: implement method
238   return true;
239 }
240
241 bool modelCDMProject::CreateBlackBox(
242     const std::string& name,
243     const std::string& package,
244     const std::string& authors,
245     const std::string& authorsEmail,
246     const std::string& categories,
247     const std::string& description
248 )
249 {
250   //TODO: implement method
251   return true;
252 }
253
254 bool modelCDMProject::OpenCMakeListsFile(std::string*& result)
255 {
256   //TODO: implement method
257   return true;
258 }
259
260 const bool modelCDMProject::Refresh(std::string*& result)
261 {
262   //TODO: implement method
263   return true;
264 }
265
266 bool modelCDMProject::ConfigureBuild(std::string*& result)
267 {
268   //TODO: implement method
269   return true;
270 }
271
272 bool modelCDMProject::Build(std::string*& result)
273 {
274   //TODO: implement method
275   return true;
276 }
277
278 bool modelCDMProject::Connect(std::string*& result)
279 {
280   //TODO: implement method
281   return true;
282 }