]> 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
54   std::vector<std::string> words;
55   std::string delimiters;
56   //TODO::fix for windows
57   delimiters = "/";
58   CDMUtilities::splitter::split(words, path, delimiters, CDMUtilities::splitter::no_empties);
59   this->name = words[words.size()-1];
60
61   this->path = path;
62   this->type = wxDIR_DIRS;
63
64   std::string pathFixed(CDMUtilities::fixPath(path));
65   //check all folders
66   wxDir dir(crea::std2wx((pathFixed).c_str()));
67   if (dir.IsOpened())
68     {
69       wxString fileName;
70       bool cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_DIRS);
71       while (cont)
72         {
73           std::string stdfileName = crea::wx2std(fileName);
74
75           //if is an unknown folder, create folder
76           this->children.push_back(new modelCDMFolder(pathFixed + "/" + stdfileName, this->level + 1));
77
78           cont = dir.GetNext(&fileName);
79         }
80
81       cont = dir.GetFirst(&fileName, wxEmptyString, wxDIR_FILES);
82       while (cont)
83         {
84           std::string stdfileName = crea::wx2std(fileName);
85
86           //if CMakeLists, create CMakeLists
87           if(stdfileName == "CMakeLists.txt")
88             {
89               this->CMakeLists = new modelCDMCMakeListsFile(pathFixed + "/" + stdfileName, this->level + 1);
90               this->children.push_back(this->CMakeLists);
91             }
92           else
93             {
94               this->children.push_back(new modelCDMFile(pathFixed + "/" + stdfileName, this->level + 1));
95             }
96           //if is an unknown file, create file
97           cont = dir.GetNext(&fileName);
98         }
99     }
100
101   this->SortChildren();
102 }
103
104 modelCDMFolder::~modelCDMFolder()
105 {
106   for (int i = 0; i < this->children.size(); i++)
107     {
108       if(this->children[i] != NULL)
109         {
110           delete this->children[i];
111           this->children[i] = NULL;
112         }
113     }
114 }
115
116 bool modelCDMFolder::CreateFolder(const std::string& name, std::string*& result,
117     const std::string& path)
118 {
119   //TODO: implement method
120   return true;
121 }
122
123 bool modelCDMFolder::OpenCMakeListsFile(std::string*& result)
124 {
125   //TODO: implement method
126   return true;
127 }
128
129 const bool modelCDMFolder::Refresh(std::string*& result)
130 {
131   //TODO: implement method
132   return true;
133 }