]> Creatis software - gdcm.git/blobdiff - src/gdcmDebug.cxx
Normalization
[gdcm.git] / src / gdcmDebug.cxx
index fcd16cffdab1aa753c3a43e3184dcd79dd109c9e..3e9ca4e2797183ffa7284b210725365f4c7c5d74 100644 (file)
@@ -3,12 +3,12 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDebug.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/08/01 02:39:09 $
-  Version:   $Revision: 1.4 $
+  Date:      $Date: 2005/02/02 10:02:16 $
+  Version:   $Revision: 1.22 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
-  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.htm for details.
+  http://www.creatis.insa-lyon.fr/Public/Gdcm/License.html for details.
                                                                                 
      This software is distributed WITHOUT ANY WARRANTY; without even
      the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
                                                                                 
 =========================================================================*/
 
-#include <iostream>
 #include "gdcmDebug.h"
+#include <iostream>
 
+namespace gdcm 
+{
 //-----------------------------------------------------------------------------
-gdcmDebug gdcmDebug::debug;
+// Warning message level to be displayed
+static bool DebugFlag   = false;
+static bool DebugToFile = false;
+static std::ofstream DebugFile;
 
 //-----------------------------------------------------------------------------
-/**
- * \brief   constructor
- * @param level debug level
- */ 
-gdcmDebug::gdcmDebug(int level) 
+// Constructor / Destructor
+Debug::Debug()
 {
-   DebugLevel = level;
+
 }
 
-/**
- * \brief   Accessor
- * @param   level Set the debug level
- */ 
-void gdcmDebug::SetDebug(int level) 
+Debug::~Debug()
 {
-   DebugLevel = level;
+  if ( DebugFile.is_open() )
+      DebugFile.close();     
 }
 
+//-----------------------------------------------------------------------------
+// Print
+
+
+//-----------------------------------------------------------------------------
+// Public
 /**
- * \brief   Verbose 
- * @param Level level
- * @param Msg1 first message part
- * @param Msg2 second message part 
- */
-void gdcmDebug::Verbose(int level, const char * msg1, const char * msg2) 
+ * \brief   Accessor
+ * @param   flag Set the debug flag
+ */ 
+void Debug::SetDebugFlag (bool flag) 
 {
-   if (level > DebugLevel)
-   {
-      return ;
-   }
-   std::cerr << msg1 << ' ' << msg2 << std::endl;
+   DebugFlag = flag;
 }
 
 /**
- * \brief   Error 
- * @param Test test
- * @param Msg1 first message part
- * @param Msg2 second message part 
- */
-void gdcmDebug::Error(bool test, const char * msg1, const char * msg2) 
+ * \brief   Gets the debug flag value
+ * @return debug flag value
+ */ 
+bool Debug::GetDebugFlag ()
 {
-   if (!test)
-   {
-      return;
-   }
-   std::cerr << msg1 << ' ' << msg2 << std::endl;
-   Exit(1);
+   return DebugFlag;
 }
 
 /**
- * \brief   Error 
- * @param Msg1 first message part
- * @param Msg2 second message part
- * @param Msg3 Third message part  
- */
-void gdcmDebug::Error(const char* msg1, const char* msg2,
-                      const char* msg3) 
+ * \brief   Accessor
+ * @param   flag whether we want to redirect to file
+ */ 
+void Debug::SetDebugToFile (bool flag) 
 {
-   std::cerr << msg1 << ' ' << msg2 << ' ' << msg3 << std::endl;
-   Exit(1);
+   DebugToFile = flag;
 }
 
 /**
- * \brief   Assert 
- * @param Level level 
- * @param Test test
- * @param Msg1 first message part
- * @param Msg2 second message part
- */
-void gdcmDebug::Assert(int level, bool test, const char * msg1, 
-                       const char * msg2) 
+ * \brief   Accessor to know if debug info are redirected to file
+ */ 
+bool Debug::GetDebugToFile ()
 {
-   if (level > DebugLevel)
-   {
-      return ;
-   }
-   if (!test)
-   {
-      std::cerr << msg1 << ' ' << msg2 << std::endl;
-   }
+   return DebugToFile;
 }
 
 /**
- * \brief   Exit 
- * @param a return code 
- */
-void gdcmDebug::Exit(int a) 
+ * \brief   Set Accessor
+ * @param   filename  File to redirect debug info
+ *          Absolutely nothing is check. You have to pass in
+ *          a correct filename
+ */ 
+void Debug::SetDebugFilename (std::string const &filename)
 {
-#ifdef __GNUC__
-   std::exit(a);
-#endif
-#ifdef _MSC_VER
-   exit(a);    // Found in #include <stdlib.h>
-#endif
+   DebugToFile = true;  // Just in case ... 
+   DebugFlag = true;    // Just in case ...
+   if( DebugFile.is_open() )
+      DebugFile.close();
+   DebugFile.open( filename.c_str() );
 }
 
 /**
- * \brief  Get the debug instance 
- * \return Reference to the debug instance
+ * \brief   Get Accessor
+ * @return Debug file
  */
-gdcmDebug &gdcmDebug::GetReference()
+std::ofstream &Debug::GetDebugFile ()
 {
-   return gdcmDebug::debug;
+  return DebugFile;
 }
 
+//-----------------------------------------------------------------------------
+// Protected
+
+//-----------------------------------------------------------------------------
+// Private
+   
+//-----------------------------------------------------------------------------
+} // end namespace gdcm
+
+