]> Creatis software - gdcm.git/blob - src/gdcmDebug.cxx
Normalization
[gdcm.git] / src / gdcmDebug.cxx
1 /*=========================================================================
2                                                                                 
3   Program:   gdcm
4   Module:    $RCSfile: gdcmDebug.cxx,v $
5   Language:  C++
6   Date:      $Date: 2005/02/02 10:02:16 $
7   Version:   $Revision: 1.22 $
8                                                                                 
9   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
10   l'Image). All rights reserved. See Doc/License.txt or
11   http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
12                                                                                 
13      This software is distributed WITHOUT ANY WARRANTY; without even
14      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
15      PURPOSE.  See the above copyright notices for more information.
16                                                                                 
17 =========================================================================*/
18
19 #include "gdcmDebug.h"
20 #include <iostream>
21
22 namespace gdcm 
23 {
24 //-----------------------------------------------------------------------------
25 // Warning message level to be displayed
26 static bool DebugFlag   = false;
27 static bool DebugToFile = false;
28 static std::ofstream DebugFile;
29
30 //-----------------------------------------------------------------------------
31 // Constructor / Destructor
32 Debug::Debug()
33 {
34
35 }
36
37 Debug::~Debug()
38 {
39   if ( DebugFile.is_open() )
40       DebugFile.close();     
41 }
42
43 //-----------------------------------------------------------------------------
44 // Print
45
46
47 //-----------------------------------------------------------------------------
48 // Public
49 /**
50  * \brief   Accessor
51  * @param   flag Set the debug flag
52  */ 
53 void Debug::SetDebugFlag (bool flag) 
54 {
55    DebugFlag = flag;
56 }
57
58 /**
59  * \brief   Gets the debug flag value
60  * @return debug flag value
61  */ 
62 bool Debug::GetDebugFlag ()
63 {
64    return DebugFlag;
65 }
66
67 /**
68  * \brief   Accessor
69  * @param   flag whether we want to redirect to file
70  */ 
71 void Debug::SetDebugToFile (bool flag) 
72 {
73    DebugToFile = flag;
74 }
75
76 /**
77  * \brief   Accessor to know if debug info are redirected to file
78  */ 
79 bool Debug::GetDebugToFile ()
80 {
81    return DebugToFile;
82 }
83
84 /**
85  * \brief   Set Accessor
86  * @param   filename  File to redirect debug info
87  *          Absolutely nothing is check. You have to pass in
88  *          a correct filename
89  */ 
90 void Debug::SetDebugFilename (std::string const &filename)
91 {
92    DebugToFile = true;  // Just in case ... 
93    DebugFlag = true;    // Just in case ...
94    if( DebugFile.is_open() )
95       DebugFile.close();
96    DebugFile.open( filename.c_str() );
97 }
98
99 /**
100  * \brief   Get Accessor
101  * @return Debug file
102  */
103 std::ofstream &Debug::GetDebugFile ()
104 {
105   return DebugFile;
106 }
107
108 //-----------------------------------------------------------------------------
109 // Protected
110
111 //-----------------------------------------------------------------------------
112 // Private
113    
114 //-----------------------------------------------------------------------------
115 } // end namespace gdcm
116
117