]> Creatis software - crea.git/blob - lib/creaDevManagerLib/modelCDMFolder.cpp
Feature #1711
[crea.git] / lib / creaDevManagerLib / modelCDMFolder.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  * modelCDMFolder.cpp
30  *
31  *  Created on: Nov 28, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "modelCDMFolder.h"
36
37 #include <creaWx.h>
38 #include <wx/dir.h>
39
40 #include "CDMUtilities.h"
41
42 modelCDMFolder::modelCDMFolder()
43 {
44   this->CMakeLists = NULL;
45 }
46
47 modelCDMFolder::modelCDMFolder(const std::string& path, const int& level)
48 {
49   //set attributes
50   this->children.clear();
51   this->level = level;
52   this->CMakeLists = NULL;
53   this->length = 0;
54
55   std::vector<std::string> words;
56   std::string delimiters;
57   //TODO::fix for windows
58   delimiters = "/";
59   CDMUtilities::splitter::split(words, path, delimiters, CDMUtilities::splitter::no_empties);
60   this->name = words[words.size()-1];
61
62   this->path = path;
63   this->type = wxDIR_DIRS;
64
65   std::string pathFixed(CDMUtilities::fixPath(path));
66   //check all folders
67   wxDir dir(crea::std2wx((pathFixed).c_str()));
68   if (dir.IsOpened())
69     {
70       wxString fileName;
71       bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
72       while (cont)
73         {
74           std::string stdfileName = crea::wx2std(fileName);
75
76           //if is an unknown folder, create folder
77           this->children.push_back(new modelCDMFolder(pathFixed + "/" + stdfileName, this->level + 1));
78
79           cont = dir.GetNext(&fileName);
80         }
81
82       cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
83       while (cont)
84         {
85           std::string stdfileName = crea::wx2std(fileName);
86
87           //if CMakeLists, create CMakeLists
88           if(stdfileName == "CMakeLists.txt")
89             {
90               this->CMakeLists = new modelCDMCMakeListsFile(pathFixed + "/" + stdfileName, this->level + 1);
91               this->children.push_back(this->CMakeLists);
92             }
93           else
94             {
95               this->children.push_back(new modelCDMFile(pathFixed + "/" + stdfileName, this->level + 1));
96             }
97           //if is an unknown file, create file
98           cont = dir.GetNext(&fileName);
99         }
100     }
101
102   this->SortChildren();
103 }
104
105 modelCDMFolder::~modelCDMFolder()
106 {
107   this->folders.clear();
108   this->CMakeLists = NULL;
109   for (int i = 0; i < this->children.size(); i++)
110     {
111       if(this->children[i] != NULL)
112         {
113           delete this->children[i];
114           this->children[i] = NULL;
115         }
116     }
117   this->children.clear();
118 }
119
120 bool modelCDMFolder::CreateFolder(const std::string& name, std::string*& result,
121     const std::string& path)
122 {
123   //TODO: implement method
124   return true;
125 }
126
127 bool modelCDMFolder::OpenCMakeListsFile(std::string*& result)
128 {
129   if (this->CMakeLists == NULL)
130     {
131       result = new std::string("There's no CMakeLists file to open.");
132       return false;
133     }
134   if (!CDMUtilities::openTextEditor(this->CMakeLists->GetPath()))
135     return true;
136   else
137     {
138       result = new std::string("Couldn't open CMakeLists file.");
139       return false;
140     }
141 }
142
143 const bool modelCDMFolder::Refresh(std::string*& result)
144 {
145   //TODO: implement method
146   return true;
147 }
148
149 modelCDMCMakeListsFile* modelCDMFolder::GetCMakeLists() const
150 {
151   return this->CMakeLists;
152 }
153
154 std::vector<modelCDMFolder*> modelCDMFolder::GetFolders() const
155 {
156   return this->folders;
157 }
158
159 bool
160 modelCDMFolder::HasCMakeLists()
161 {
162   return this->CMakeLists != NULL;
163 }