X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDebug.cxx;h=82c4ee96a91e1fbb45b22ed59bc42e5092fcef4c;hb=d5e16925a7d3c8dbd0e71b1989629ca0f619b119;hp=d301a9bf69297b1e0129ffb682fcdc4e54f7ee2f;hpb=327dfe7647e3720b0f3125f9b19397cb9afc0ed3;p=gdcm.git diff --git a/src/gdcmDebug.cxx b/src/gdcmDebug.cxx index d301a9bf..82c4ee96 100644 --- a/src/gdcmDebug.cxx +++ b/src/gdcmDebug.cxx @@ -3,8 +3,8 @@ Program: gdcm Module: $RCSfile: gdcmDebug.cxx,v $ Language: C++ - Date: $Date: 2005/01/06 20:03:26 $ - Version: $Revision: 1.13 $ + Date: $Date: 2005/01/13 22:30:11 $ + Version: $Revision: 1.17 $ 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,71 @@ =========================================================================*/ -#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 + * \brief Accessor + * @param flag Set the debug flag */ -Debug::Debug(int level) +void Debug::SetDebugFlag (bool flag) { - DebugLevel = level; + DebugFlag = flag; } /** * \brief Accessor - * @param level Set the debug level + * @param level Get the debug flag */ -void Debug::SetDebug(int level) -{ - DebugLevel = level; -} - -/** - * \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) +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 Set the debug flag 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 + * @param level Get the debug flag to redirect 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 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 << std::flush; - } + DebugToFile = true; // Just in case ... + DebugFlag = true; // Just in case ... + DebugFile.open( filename.c_str() ); } -/** - * \brief Exit - * @param a return code - */ -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; } } // end namespace gdcm + +