]> Creatis software - crea.git/blob - lib/creaDevManagerLib/modelCDMIProjectTreeNode.cpp
e7edd2bcc80766b6e3fa01a1c529e55931074137
[crea.git] / lib / creaDevManagerLib / modelCDMIProjectTreeNode.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  * modelCDMIProjectTreeNode.cpp
30  *
31  *  Created on: Nov 26, 2012
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34 #include "modelCDMIProjectTreeNode.h"
35 #include <algorithm>
36
37 #include "CDMUtilities.h"
38
39 #include "wx/dir.h"
40
41 bool modelCDMIProjectTreeNode::CompareNodeItem(const modelCDMIProjectTreeNode* x, const modelCDMIProjectTreeNode* y)
42 {
43   bool returnValue;
44   bool noWinner = true;
45   unsigned int i = 0;
46   std::string xName = x->GetName();
47   std::string yName = y->GetName();
48   unsigned char xType = x->GetType();
49   unsigned char yType = y->GetType();
50
51   while ((i < xName.length()) && (i < yName.length()))
52     {
53       if (tolower (xName[i]) < tolower (yName[i]))
54         {
55           noWinner = false;
56           returnValue = true;
57           break;
58         }
59       else if (tolower (xName[i]) > tolower (yName[i]))
60         {
61           noWinner = false;
62           returnValue = false;
63           break;
64         }
65       i++;
66     }
67
68   if(noWinner)
69     {
70       if (xName.length() < yName.length())
71         returnValue = true;
72       else
73         returnValue = false;
74     }
75
76   if(xType != yType)
77     {
78       if(xType == wxDIR_DIRS)
79         returnValue = true;
80       else
81         returnValue = false;
82     }
83
84   return returnValue;
85 }
86
87 const wxTreeItemId& modelCDMIProjectTreeNode::GetId() const
88 {
89   return this->id;
90 }
91
92 const std::string& modelCDMIProjectTreeNode::GetPath() const
93 {
94   return this->path;
95 }
96
97 const std::string& modelCDMIProjectTreeNode::GetName() const
98 {
99   return this->name;
100 }
101
102 const unsigned char& modelCDMIProjectTreeNode::GetType() const
103 {
104   return this->type;
105 }
106
107 const int& modelCDMIProjectTreeNode::GetLevel() const
108 {
109   return this->level;
110 }
111
112 modelCDMIProjectTreeNode* modelCDMIProjectTreeNode::GetParent() const
113 {
114   return this->parent;
115 }
116
117 std::vector<modelCDMIProjectTreeNode*> modelCDMIProjectTreeNode::GetParents() const
118 {
119   std::vector<modelCDMIProjectTreeNode*> family;
120   modelCDMIProjectTreeNode* someFamily = this->parent;
121   while(someFamily != NULL)
122     {
123       family.push_back(someFamily);
124       someFamily = someFamily->GetParent();
125     }
126   return family;
127
128 }
129
130 const std::vector<modelCDMIProjectTreeNode*>& modelCDMIProjectTreeNode::GetChildren() const
131 {
132   return this->children;
133 }
134
135 void modelCDMIProjectTreeNode::SetId(const wxTreeItemId& id)
136 {
137   this->id = id;
138 }
139
140 void modelCDMIProjectTreeNode::SortChildren()
141 {
142   std::sort(this->children.begin(), this->children.end(), CompareNodeItem);
143 }
144
145 void modelCDMIProjectTreeNode::SetChildren(
146     const std::vector<modelCDMIProjectTreeNode*>& children)
147 {
148   this->children.clear();
149   this->children = children;
150 }
151
152 const bool modelCDMIProjectTreeNode::Refresh(std::string*& result)
153 {
154   //TODO: implement method
155   return false;
156 }
157
158 const int& modelCDMIProjectTreeNode::GetLength()
159 {
160   return this->length;
161 }
162
163 const bool modelCDMIProjectTreeNode::OpenInFileExplorer(std::string*& result) const
164 {
165   if (!CDMUtilities::openFileExplorer(this->GetPath()))
166     return true;
167   else
168     {
169       result = new std::string("Couldn't open file.");
170       return false;
171     }
172 }