X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDebug.cxx;h=d9a56182e30bb7fcb0ff5bb45e77f96f129570ae;hb=6a7c2fbcb5bfc240a3b9875ad4836f5dc058e069;hp=6bff5c2b828c18efcd3f26921f22fa9b9b119367;hpb=e8cd982edb78da16b0ca42d09a5a7943e48587ef;p=gdcm.git diff --git a/src/gdcmDebug.cxx b/src/gdcmDebug.cxx index 6bff5c2b..d9a56182 100644 --- a/src/gdcmDebug.cxx +++ b/src/gdcmDebug.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDebug.cxx,v $ Language: C++ - Date: $Date: 2004/11/09 22:30:43 $ - Version: $Revision: 1.12 $ + Date: $Date: 2005/06/24 10:55:58 $ + Version: $Revision: 1.25 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -16,109 +16,101 @@ =========================================================================*/ -#include #include "gdcmDebug.h" +#include namespace gdcm { +//----------------------------------------------------------------------------- +// Warning message level to be displayed +static bool DebugFlag = false; +static bool DebugToFile = false; +static std::ofstream DebugFile; //----------------------------------------------------------------------------- -/** - * \brief constructor - * @param level debug level - */ -Debug::Debug(int level) +// Constructor / Destructor +Debug::Debug() { - DebugLevel = level; + } +Debug::~Debug() +{ + if ( DebugFile.is_open() ) + DebugFile.close(); +} + +//----------------------------------------------------------------------------- +// Public /** - * \brief Accessor - * @param level Set the debug level + * \brief Sets the debug flag + * @param flag Set the debug flag */ -void Debug::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 Debug::Verbose(int level, const char * msg1, const char * msg2) + * \brief Gets the debug flag value + * @return debug flag value + */ +bool Debug::GetDebugFlag () { - if (level > DebugLevel) - { - return ; - } - std::cerr << "gdcm::" << msg1 << ' ' << msg2 << std::endl << std::flush; + return DebugFlag; } /** - * \brief Error - * @param test test - * @param msg1 first message part - * @param msg2 second message part - */ -void Debug::Error(bool test, const char * msg1, const char * msg2) + * \brief Accessor + * @param flag whether we want to redirect to file + */ +void Debug::SetDebugToFile (bool flag) { - if (!test) - { - return; - } - std::cerr << "gdcm::" << msg1 << ' ' << msg2 << std::endl << std::flush; - Exit(1); + DebugToFile = flag; } /** - * \brief Error - * @param msg1 first message part - * @param msg2 second message part - * @param msg3 Third message part - */ -void Debug::Error(const char* msg1, const char* msg2, - const char* msg3) + * \brief Accessor to know whether debug info are redirected to file + */ +bool Debug::GetDebugToFile () { - std::cerr << "gdcm::" << msg1 << ' ' << msg2 << ' ' << msg3 - << std::endl << std::flush; - Exit(1); + return DebugToFile; } /** - * \brief Assert - * @param level level - * @param test test - * @param msg1 first message part - * @param msg2 second message part - */ -void Debug::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::SetDebugFilename (std::string const &filename) { - if (level > DebugLevel) - { - return ; - } - if (!test) - { - std::cerr << "gdcm::" << msg1 << ' ' << msg2 - << std::endl << std::flush; - } + 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 + * \brief Internal use only. Allow us to retrieve the static from anywhere + * in gdcm code + * @return Debug file */ -void Debug::Exit(int a) +std::ofstream &Debug::GetDebugFile () { -#ifdef __GNUC__ - std::exit(a); -#endif -#if defined(_MSC_VER) || defined(__BORLANDC__) - exit(a); // Found in #include -#endif + return DebugFile; } +//----------------------------------------------------------------------------- +// Protected + +//----------------------------------------------------------------------------- +// Private + +//----------------------------------------------------------------------------- +// Print + +//----------------------------------------------------------------------------- } // end namespace gdcm