X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDebug.cxx;h=41f6f18cbb5a5301ecdc126b7ba39eefe9ce2f6b;hb=c67ffef593e7635d8dfa7d3fe63d702e5afafc3e;hp=baa6a433ed5cbbfd6485ee12c738db29327da39a;hpb=0328b825e66dd367845c51cb7aaf0e1d94607bdb;p=gdcm.git diff --git a/src/gdcmDebug.cxx b/src/gdcmDebug.cxx index baa6a433..41f6f18c 100644 --- a/src/gdcmDebug.cxx +++ b/src/gdcmDebug.cxx @@ -3,12 +3,12 @@ Program: gdcm Module: $RCSfile: gdcmDebug.cxx,v $ Language: C++ - Date: $Date: 2004/09/24 03:34:27 $ - Version: $Revision: 1.6 $ + Date: $Date: 2005/01/27 11:55:57 $ + Version: $Revision: 1.18 $ 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 @@ -16,102 +16,85 @@ =========================================================================*/ -#include #include "gdcmDebug.h" +#include -//----------------------------------------------------------------------------- -/** - * \brief constructor - * @param level debug level - */ -gdcmDebug::gdcmDebug(int level) +namespace gdcm { - DebugLevel = level; + +/// warning message level to be displayed +static bool DebugFlag = false; +static bool DebugToFile = false; +static std::ofstream DebugFile; + + +Debug::Debug() +{ + } +Debug::~Debug() +{ + if ( DebugFile.is_open() ) + DebugFile.close(); +} +//----------------------------------------------------------------------------- /** * \brief Accessor - * @param level Set the debug level + * @param flag Set the debug flag */ -void gdcmDebug::SetDebug(int level) +void Debug::SetDebugFlag (bool flag) { - DebugLevel = level; + DebugFlag = 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 Accessor + * @param level Get the debug flag + */ +bool Debug::GetDebugFlag () { - if (level > DebugLevel) - { - return ; - } - std::cerr << msg1 << ' ' << msg2 << std::endl; + return DebugFlag; } /** - * \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 Set the debug flag to redirect to file + */ +void Debug::SetDebugToFile (bool flag) { - if (!test) - { - return; - } - std::cerr << msg1 << ' ' << msg2 << std::endl; - Exit(1); + DebugToFile = 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 + * @param level Get the debug flag to redirect to file + */ +bool Debug::GetDebugToFile () { - std::cerr << msg1 << ' ' << msg2 << ' ' << msg3 << std::endl; - Exit(1); + return DebugToFile; } /** - * \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 + * @param flag Set the debug flag to redirect to file + * Absolutely nothing is check. You have to pass in + * a correct filename + */ +void Debug::SetDebugFilename (std::string const &filename) { - if (level > DebugLevel) - { - return ; - } - if (!test) - { - std::cerr << msg1 << ' ' << msg2 << std::endl; - } + DebugToFile = true; // Just in case ... + DebugFlag = true; // Just in case ... + if( DebugFile.is_open() ) + DebugFile.close(); + DebugFile.open( filename.c_str() ); } -/** - * \brief Exit - * @param a return code - */ -void gdcmDebug::Exit(int a) +std::ofstream &Debug::GetDebugFile () { -#ifdef __GNUC__ - std::exit(a); -#endif -#ifdef _MSC_VER - exit(a); // Found in #include -#endif + return DebugFile; } + +} // end namespace gdcm + +