]> Creatis software - creaMaracasVisu.git/blob - lib/maracasVisuLib/src/interface/wxWindows/widgets/imageUndoRedo/image3DDequeUR.cxx
a9bc413c4316e51546da57dc58c730845cd2238a
[creaMaracasVisu.git] / lib / maracasVisuLib / src / interface / wxWindows / widgets / imageUndoRedo / image3DDequeUR.cxx
1 /*# ---------------------------------------------------------------------
2 #
3 # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image
4 #                        pour la Sant�)
5 # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton
6 # Previous Authors : Laurent Guigues, Jean-Pierre Roux
7 # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil
8 #
9 #  This software is governed by the CeCILL-B license under French law and
10 #  abiding by the rules of distribution of free software. You can  use,
11 #  modify and/ or redistribute the software under the terms of the CeCILL-B
12 #  license as circulated by CEA, CNRS and INRIA at the following URL
13 #  http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
14 #  or in the file LICENSE.txt.
15 #
16 #  As a counterpart to the access to the source code and  rights to copy,
17 #  modify and redistribute granted by the license, users are provided only
18 #  with a limited warranty  and the software's author,  the holder of the
19 #  economic rights,  and the successive licensors  have only  limited
20 #  liability.
21 #
22 #  The fact that you are presently reading this means that you have had
23 #  knowledge of the CeCILL-B license and that you accept its terms.
24 # ------------------------------------------------------------------------ */
25
26 /*!
27  * @file        image3DDequeUR.cxx
28  * @brief       This file contains the implementation of the Image3DDequeUR class.
29  * @author      Info-Dev
30  * @author      Diego CACERES (diego.caceres[AT]creatis.insa-lyon.fr)
31  * @date        2011-11-15
32  */
33
34 #include "image3DDequeUR.h"
35 #include <iostream>
36 #include <sstream>
37 #include <ctime>
38
39 // ----------------------------------------------------------------------------------
40 Image3DDequeUR::Image3DDequeUR( )
41 {
42         const void * address = static_cast<const void*>(this);
43         std::stringstream ss;
44         ss << address;  
45         m_PrivateID = ss.str(); 
46
47 #ifdef _WIN32
48         this->m_GlobalPath = std::getenv("TEMP");
49 #endif
50 #ifdef _WIN64
51         this->m_GlobalPath = std::getenv("TEMP");
52 #endif
53 #ifdef LINUX
54         this->m_GlobalPath = "/tmp/";
55 #endif // MACOSX
56         this->m_CurrentURPos = -1;
57 }
58
59 // ----------------------------------------------------------------------------------
60 //virtual
61 Image3DDequeUR::~Image3DDequeUR( )
62 {
63         this->CleanHardDisk( );
64 }
65
66 // ----------------------------------------------------------------------------------
67 //virtual
68 void Image3DDequeUR::AddImagesToURContainer( VTKImageDataPointerType imgUndo,
69         VTKImageDataPointerType imgRedo, ImageMManager* imMManager )
70 {
71         this->CleanURContainerFromIndex( this->m_CurrentURPos + 1 );
72         //Adding image
73         ImageInfoUR* imageInfo = new ImageInfoUR( );
74         imageInfo->SetImageName( this->GetImageName( this->m_ImgURDeque.size( ) ) );
75         imageInfo->SetImages( imgUndo, imgRedo );
76         imageInfo->SetImageMManager( imMManager );
77         
78         //Adding to deque
79         this->m_ImgURDeque.push_back( imageInfo );
80         this->m_CurrentURPos = this->m_ImgURDeque.size( ) - 1;
81         //Managing memory
82         this->ManageMemory( );
83 }
84
85 // ----------------------------------------------------------------------------------
86 //virtual
87 ImageInfoUR* Image3DDequeUR::Undo( )
88 {
89         ImageInfoUR* imgRet = NULL;
90         int imgURDequeSize = this->m_ImgURDeque.size( );
91         if( ( this->m_ImgURDeque.size( ) > 0 ) && ( this->m_CurrentURPos != -1 )
92                 && ( this->m_CurrentURPos < imgURDequeSize ) )
93         {
94                 imgRet = this->m_ImgURDeque[ m_CurrentURPos ];
95                 this->m_CurrentURPos--;
96         } //fi
97         return ( imgRet );
98 }
99
100 // ----------------------------------------------------------------------------------
101 //virtual
102 ImageInfoUR* Image3DDequeUR::Redo( )
103 {
104         ImageInfoUR* imgRet = NULL;
105         this->m_CurrentURPos++;
106         int imgURDequeSize = this->m_ImgURDeque.size( );
107         if( ( this->m_ImgURDeque.size( ) > 0 ) && ( this->m_CurrentURPos != -1 )
108                 && ( this->m_CurrentURPos < imgURDequeSize ) )
109         {
110                 imgRet = this->m_ImgURDeque[ m_CurrentURPos ];
111         } else {
112                 this->m_CurrentURPos--;
113         }
114         return ( imgRet );
115 }
116
117 // ----------------------------------------------------------------------------------
118 //virtual
119 void Image3DDequeUR::CleanURContainerFromIndex( const int& index )
120 {
121         int count = 0;
122         for( unsigned int i = index; i < this->m_ImgURDeque.size( ); i++ )
123         {
124                 this->m_ImgURDeque[ i ]->RemoveImagesFromMemory( this->m_GlobalPath );
125                 this->m_ImgURDeque[ i ]->RemoveImagesFromDisk( this->m_GlobalPath );
126                 count++;
127         }
128         for( int i = 0; i < count; i++ )
129         {
130                 this->m_ImgURDeque.pop_back( );
131         } //rof
132 }
133
134 // ----------------------------------------------------------------------------------
135 //virtual
136 void Image3DDequeUR::ManageMemory( )
137 {
138         int imgURDequeSize = this->m_ImgURDeque.size( );
139         int i;
140         for( i = 0; i < imgURDequeSize; i++ )
141         {
142                 if( this->m_ImgURDeque[ i ]->GetStatus( ) )
143                 {
144                         this->m_ImgURDeque[ i ]->RemoveImagesFromMemory( this->m_GlobalPath );
145                 } // if Status
146         } // for i
147           //Adding CurrentUndoPos to memory
148         if( ( this->m_CurrentURPos != -1 ) && !( this->m_ImgURDeque[ this->m_CurrentURPos ]->GetStatus( ) ) )
149         {
150                 this->m_ImgURDeque[ this->m_CurrentURPos ]->LoadImagesToMemory( this->m_GlobalPath );
151         }
152         int currentRedoPos = this->m_CurrentURPos + 1;
153         if( ( currentRedoPos < imgURDequeSize ) && !( this->m_ImgURDeque[ currentRedoPos ]->GetStatus( ) ) )
154         {
155                 this->m_ImgURDeque[ currentRedoPos ]->LoadImagesToMemory( this->m_GlobalPath );
156         }
157 }
158
159 // ----------------------------------------------------------------------------------
160 void Image3DDequeUR::SetGlobalPath( const StringType& globalPath )
161 {
162         this->m_GlobalPath = globalPath;
163 }
164
165 // ----------------------------------------------------------------------------------
166 void Image3DDequeUR::CleanHardDisk( )
167 {
168         for( unsigned int i = 0; i < this->m_ImgURDeque.size( ); i++ )
169         {
170                 this->m_ImgURDeque[ i ]->RemoveImagesFromDisk( this->m_GlobalPath );
171         }
172 }
173
174 // ----------------------------------------------------------------------------------
175 Image3DDequeUR::StringType Image3DDequeUR::GetGlobalPath( )
176 {
177         return ( this->m_GlobalPath );
178 }
179
180 // ----------------------------------------------------------------------------------
181 Image3DDequeUR::StringType Image3DDequeUR::GetImageName( const int & pos )
182 {
183 //Giving a name to an image using the date and time
184         if( this->m_IDImages.empty( ) )
185         {
186                 time_t          rawtime;
187                 struct tm       *timeinfo;
188                 char            buffer[ 80 ];
189                 time( &rawtime );
190                 timeinfo = localtime( &rawtime );
191                 strftime( buffer, 80, "%H%M%S_%a_%d_%b_%y_", timeinfo );
192                 StringType date( buffer );
193                 StringType aux( buffer );
194                 this->m_IDImages = "img_" + aux;
195         }
196         std::stringstream ss; //create a stringstream
197         ss << pos; //add number to the stream
198         StringType imageName = this->m_IDImages + ss.str( )+ "_"+m_PrivateID;
199         return ( imageName );
200 }
201
202 // ----------------------------------------------------------------------------------