]> Creatis software - crea.git/blob - lib/creaDevManagerLib/modelCDMBBGFile.cpp
Feature #1711 CreaDevManager application implementation
[crea.git] / lib / creaDevManagerLib / modelCDMBBGFile.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  * modelCDMBBGFile.cpp
30  *
31  *  Created on: Jun 27, 2013
32  *      Author: Daniel Felipe Gonzalez Obando
33  */
34
35 #include "modelCDMBBGFile.h"
36
37 #include <fstream>
38
39 #include<creaWx.h>
40 #include<wx/dir.h>
41
42 #include "CDMUtilities.h"
43
44 modelCDMBBGFile::modelCDMBBGFile()
45 {
46 }
47
48 modelCDMBBGFile::modelCDMBBGFile(modelCDMIProjectTreeNode* parent, const std::string& path, const std::string& name, const int& level)
49 {
50   std::cout << "creating bbg file: " + path + "\n";
51   this->parent = parent;
52   this->children.clear();
53   this->level = level;
54   this->type = wxDIR_FILES;
55   this->name = name;
56   this->path = path;
57
58   std::ifstream in(path.c_str(), std::ifstream::in | std::ifstream::binary);
59   in.seekg(0, std::ifstream::end);
60   this->length = in.tellg();
61   in.close();
62 }
63
64 modelCDMBBGFile::~modelCDMBBGFile()
65 {
66 }
67
68 bool modelCDMBBGFile::OpenFile(std::string*& result)
69 {
70
71   if (!CDMUtilities::openTextEditor(this->path))
72     return true;
73   else
74     {
75       result = new std::string("Couldn't open bbg file in text editor.");
76       return false;
77     }
78 }
79
80 bool modelCDMBBGFile::EditFile(
81     std::string*& result,
82     const std::string& parameters)
83 {
84   if (!CDMUtilities::openFileWithCommand(this->path, "bbEditor", parameters))
85     return true;
86   else
87     {
88       result = new std::string("Couldn't open bbg file with bbEditor.");
89       return false;
90     }
91 }
92
93 const bool modelCDMBBGFile::Refresh(std::string*& result)
94 {
95   //std::cout << "refreshing bbg file" << std::endl;
96   std::ifstream in((this->path).c_str());
97   if(!in.is_open())
98     {
99       in.close();
100       return false;
101     }
102   std::ifstream in2(path.c_str(), std::ifstream::in | std::ifstream::binary);
103   in2.seekg(0, std::ifstream::end);
104   this->length = in2.tellg();
105   in2.close();
106   return true;
107 }