X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDebug.cxx;h=82ced4141d27c695ad8e4630adafaa88f2ddc7ca;hb=95dcce2c32665bcba9aa2d20c13390271a204e23;hp=ffa95ed36fa67a413f54d4a6137146e02b2fe20f;hpb=4672e071f29ed17f7258b27e40d47642abfbb53f;p=gdcm.git diff --git a/src/gdcmDebug.cxx b/src/gdcmDebug.cxx index ffa95ed3..82ced414 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/10/13 14:15:29 $ - Version: $Revision: 1.9 $ + Date: $Date: 2005/01/30 17:30:57 $ + Version: $Revision: 1.19 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -16,107 +16,106 @@ =========================================================================*/ -#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(); +} + +//----------------------------------------------------------------------------- +// Print + + +//----------------------------------------------------------------------------- +// Public + /** * \brief Accessor - * @param level Set the debug level + * @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 Accessor + * @param level Get the debug flag + */ +bool Debug::GetDebugFlag () { - if (level > DebugLevel) - { - return ; - } - std::cerr << "gdcm::" << msg1 << ' ' << msg2 << std::endl; + 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 Set the debug flag to redirect to file + */ +void Debug::SetDebugToFile (bool flag) { - if (!test) - { - return; - } - std::cerr << "gdcm::" << 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 Debug::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 << "gdcm::" << 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 Debug::Assert(int level, bool test, const char * msg1, - const char * msg2) + * \brief Set 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 << "gdcm::" << 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 + * \brief Get Accessor + * @return Debug file */ -void Debug::Exit(int a) +std::ofstream &Debug::GetDebugFile () { -#ifdef __GNUC__ - std::exit(a); -#endif -#ifdef _MSC_VER - exit(a); // Found in #include -#endif + return DebugFile; } +//----------------------------------------------------------------------------- +// Protected + +//----------------------------------------------------------------------------- +// Private + +//----------------------------------------------------------------------------- } // end namespace gdcm + +