]> Creatis software - gdcm.git/blobdiff - src/gdcmDebug.cxx
Fix mistypings
[gdcm.git] / src / gdcmDebug.cxx
index ebcc95c2fca9198e711e2f47de5ac7c9ec18819e..3c712e7a0f2f1324db0339d15bc2d5b705ed086a 100644 (file)
@@ -3,8 +3,8 @@
   Program:   gdcm
   Module:    $RCSfile: gdcmDebug.cxx,v $
   Language:  C++
-  Date:      $Date: 2004/09/27 08:39:05 $
-  Version:   $Revision: 1.7 $
+  Date:      $Date: 2007/05/23 14:18:08 $
+  Version:   $Revision: 1.31 $
                                                                                 
   Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de
   l'Image). All rights reserved. See Doc/License.txt or
                                                                                 
 =========================================================================*/
 
-#include <iostream>
 #include "gdcmDebug.h"
+#include "gdcmCommandManager.h"
+
+#include <iostream>
 
+namespace GDCM_NAME_SPACE 
+{
 //-----------------------------------------------------------------------------
+// Warning message level to be displayed
+const int Debug::LINE_LENGTH = 79;
+
+bool Debug::DebugFlag     = false;
+bool Debug::LogFlag       = false;
+bool Debug::WarningFlag   = false;
+bool Debug::OutputToFile  = false;
+
+std::ofstream Debug::OutputFileStream;
+std::ostream &Debug::StandardStream = std::cerr;
+
+//-----------------------------------------------------------------------------
+// Constructor / Destructor
+Debug::Debug()
+{
+}
+
+Debug::~Debug()
+{
+  if ( OutputFileStream.is_open() )
+      OutputFileStream.close();     
+}
+
+//-----------------------------------------------------------------------------
+// Public
 /**
- * \brief   constructor
- * @param level debug level
+ * \brief   Sets both the debug flag and warning flag
+ *          (both used for debugging purpose)
+ * @param   flag Set the debug flag and warning flag
  */ 
-gdcmDebug::gdcmDebug(int level
+void Debug::SetDebugFlag (bool flag
 {
-   DebugLevel = level;
+   // To help tracking a bug, both flags are necessary
+   DebugFlag   = flag;
+   WarningFlag = flag;
 }
 
 /**
- * \brief   Accessor
- * @param   level Set the debug level
+ * \brief   Sets the warning flag
+ * @param   flag Set the warning flag
  */ 
-void gdcmDebug::SetDebug(int level
+void Debug::SetWarningFlag (bool flag
 {
-   DebugLevel = level;
+   // Cannot unset Warning flag if Debug flag is on or if LogFlag is on.
+   if (flag == false)
+   { 
+      if (DebugFlag == true)
+         return;
+      if (LogFlag == true)
+         return;
+   }
+   WarningFlag = flag;
 }
 
 /**
- * \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   Sets the log flag
+ * @param   flag Set the log flag
+ */ 
+void Debug::SetLogFlag (bool flag) 
 {
-   if (level > DebugLevel)
-   {
-      return ;
-   }
-   std::cerr << msg1 << ' ' << msg2 << std::endl;
+   // To log oddities, both flags are necessary      
+   WarningFlag = flag;   
+   LogFlag = 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   Accessor
+ * @param   flag whether we want to redirect to file
+ */ 
+void Debug::SetOutputToFile (bool flag) 
 {
-   if (!test)
-   {
-      return;
-   }
-   std::cerr << msg1 << ' ' << msg2 << std::endl;
-   Exit(1);
+   OutputToFile = flag;
 }
 
 /**
- * \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 to know whether debug info are redirected to file
+ */ 
+bool Debug::GetOutputToFile ()
 {
-   std::cerr << msg1 << ' ' << msg2 << ' ' << msg3 << std::endl;
-   Exit(1);
+   return OutputToFile;
 }
 
 /**
- * \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 Set the filename the debug stream should be redirect to
+ *        Settting a filename also sets DebugToFile to true
+ * @param   filename  File to redirect debug info
+ *          Absolutely nothing is check. You have to pass in
+ *          a correct filename
+ */ 
+void Debug::SetOutputFileName (std::string const &filename)
 {
-   if (level > DebugLevel)
-   {
-      return ;
-   }
-   if (!test)
-   {
-      std::cerr << msg1 << ' ' << msg2 << std::endl;
-   }
+   OutputToFile = true;  // Just in case ... 
+   DebugFlag   = true;  // Just in case ...
+   if ( OutputFileStream.is_open() )
+      OutputFileStream.close();
+   OutputFileStream.open( filename.c_str() );
 }
 
 /**
- * \brief   Exit 
- * @param a return code 
+ * \brief Internal use only. Allow us to retrieve the static from anywhere
+ *        in gdcm code
+ * @return Debug file
  */
-void gdcmDebug::Exit(int a) 
+std::ostream &Debug::GetOutput ()
+{
+   if(OutputToFile)
+      return OutputFileStream;
+   else
+      return StandardStream;
+}
+
+void Debug::SendToOutput(unsigned int type,std::string const &msg,const Base *object)
 {
-#ifdef __GNUC__
-   std::exit(a);
-#endif
-#ifdef _MSC_VER
-   exit(a);    // Found in #include <stdlib.h>
-#endif
+   bool executed=false;
+   if( type != CMD_DEBUG && type != CMD_ASSERT )
+      executed=CommandManager::ExecuteCommandConst(object,type,msg);
+
+   if(!executed)
+      GetOutput() << Command::GetCommandAsString(type) << ": " << msg;
 }
+
+//-----------------------------------------------------------------------------
+// Protected
+
+//-----------------------------------------------------------------------------
+// Private
+   
+//-----------------------------------------------------------------------------
+// Print
+
+//-----------------------------------------------------------------------------
+} // end namespace gdcm