X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDebug.cxx;h=82ced4141d27c695ad8e4630adafaa88f2ddc7ca;hb=95dcce2c32665bcba9aa2d20c13390271a204e23;hp=6868b8a4598104d6022ce2219635fc0b6b272e7a;hpb=2012716d624d631dcdb825fdd4470908e115a717;p=gdcm.git diff --git a/src/gdcmDebug.cxx b/src/gdcmDebug.cxx index 6868b8a4..82ced414 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/06/20 18:08:47 $ - Version: $Revision: 1.2 $ + 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 - 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,92 +16,106 @@ =========================================================================*/ -#include #include "gdcmDebug.h" +#include -/** - * \ingroup Globals - * \brief Instance of debugging utility. - */ -gdcmDebug dbg; +namespace gdcm +{ -/** - * \brief constructor - * @param level debug level - */ -gdcmDebug::gdcmDebug(int level) { - DebugLevel = level; +/// warning message level to be displayed +static bool DebugFlag = false; +static bool DebugToFile = false; +static std::ofstream DebugFile; + + +//----------------------------------------------------------------------------- +// Constructor / Destructor + +Debug::Debug() +{ + +} + +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 gdcmDebug::SetDebug(int level) { - DebugLevel = level; +void Debug::SetDebugFlag (bool flag) +{ + 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) { - if (Level > DebugLevel) - return ; - std::cerr << Msg1 << ' ' << Msg2 << std::endl; + * \brief Accessor + * @param level Get the debug flag + */ +bool Debug::GetDebugFlag () +{ + 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) { - if (!Test) - return; - std::cerr << Msg1 << ' ' << Msg2 << std::endl; - Exit(1); + * \brief Accessor + * @param flag Set the debug flag to redirect to file + */ +void Debug::SetDebugToFile (bool flag) +{ + 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) { - std::cerr << Msg1 << ' ' << Msg2 << ' ' << Msg3 << std::endl; - Exit(1); + * \brief Accessor + * @param level Get the debug flag to redirect to file + */ +bool Debug::GetDebugToFile () +{ + 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) { - if (Level > DebugLevel) - return ; - if (!Test) - std::cerr << Msg1 << ' ' << Msg2 << std::endl; + * \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) +{ + 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 gdcmDebug::Exit(int a) { -#ifdef __GNUC__ - std::exit(a); -#endif -#ifdef _MSC_VER - exit(a); // Found in #include -#endif +std::ofstream &Debug::GetDebugFile () +{ + return DebugFile; } + +//----------------------------------------------------------------------------- +// Protected + +//----------------------------------------------------------------------------- +// Private + +//----------------------------------------------------------------------------- +} // end namespace gdcm + +