]> Creatis software - clitk.git/blob - common/clitkFilterBase.cxx
Added Varian OBI file format
[clitk.git] / common / clitkFilterBase.cxx
1 /*=========================================================================
2   Program:   vv                     http://www.creatis.insa-lyon.fr/rio/vv
3
4   Authors belong to: 
5   - University of LYON              http://www.universite-lyon.fr/
6   - Léon Bérard cancer center       http://oncora1.lyon.fnclcc.fr
7   - CREATIS CNRS laboratory         http://www.creatis.insa-lyon.fr
8
9   This software is distributed WITHOUT ANY WARRANTY; without even
10   the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
11   PURPOSE.  See the copyright notices for more information.
12
13   It is distributed under dual licence
14
15   - BSD        See included LICENSE.txt file
16   - CeCILL-B   http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html
17   ======================================================================-====*/
18
19 // clitk
20 #include "clitkFilterBase.h"
21
22 //--------------------------------------------------------------------
23 clitk::FilterBase::FilterBase() 
24 {
25   m_MustStop = false;
26   SetVerboseOption(false);
27   SetCurrentStepNumber(0);
28   SetCurrentStepBaseId("");
29   StopOnErrorOn();
30   ResetLastError();
31   VerboseWarningOffOn(); // OffOn, it's cool not ?
32   SetWarning("");
33 }
34 //--------------------------------------------------------------------
35
36
37 //--------------------------------------------------------------------
38 void clitk::FilterBase::ResetLastError()
39 {
40   m_LastError = "";
41 }
42 //--------------------------------------------------------------------
43
44
45 //--------------------------------------------------------------------
46 void clitk::FilterBase::SetLastError(std::string e)
47 {
48   m_LastError = e;
49   if (GetStopOnError()) {
50     std::cerr << GetLastError() << std::endl;
51     exit(0);
52   }
53 }
54 //--------------------------------------------------------------------
55
56
57 //--------------------------------------------------------------------
58 void clitk::FilterBase::SetWarning(std::string e)
59 {
60   m_Warning = e;
61   if (!GetVerboseWarningOff()) {
62     std::cout << GetWarning() << std::endl;
63   }
64 }
65 //--------------------------------------------------------------------
66
67
68 //--------------------------------------------------------------------
69 void clitk::FilterBase::StartNewStep(std::string s) 
70 {
71   m_CurrentStepNumber++;
72   if (GetCurrentStepBaseId() != "") {
73     std::ostringstream oss;
74     oss << GetCurrentStepBaseId() << "." << m_CurrentStepNumber;
75     SetCurrentStepId(oss.str());
76   }
77   else {
78     std::ostringstream oss;
79     oss << m_CurrentStepNumber;
80     SetCurrentStepId(oss.str());
81   }
82
83   m_CurrentStepName = "Step "+GetCurrentStepId()+" -- "+s;
84   if (m_VerboseStep) {
85     std::cout << m_CurrentStepName << std::endl;
86     //"Step " << GetCurrentStepId() << " -- " << s << std::endl;
87   }
88 }
89 //--------------------------------------------------------------------
90
91
92 //--------------------------------------------------------------------
93 void clitk::FilterBase::StopCurrentStep() 
94 {
95   
96 }
97 //--------------------------------------------------------------------
98
99
100 //--------------------------------------------------------------------
101 void clitk::FilterBase::MustStop()
102 {
103   m_MustStop = true;
104 }
105 //--------------------------------------------------------------------
106
107