X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;ds=sidebyside;f=src%2FgdcmDebug.cxx;h=f5ffc7df456271af0a18a9bf08fadc5dea305f87;hb=5887c4beef24959af83e43efad0bb86acac9339e;hp=fcd16cffdab1aa753c3a43e3184dcd79dd109c9e;hpb=4b4569ba7d0829cf3782ff6b5bbe5ae1009466e6;p=gdcm.git diff --git a/src/gdcmDebug.cxx b/src/gdcmDebug.cxx index fcd16cff..f5ffc7df 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/08/01 02:39:09 $ - Version: $Revision: 1.4 $ + Date: $Date: 2005/01/10 17:17:52 $ + Version: $Revision: 1.16 $ 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 @@ -19,112 +19,30 @@ #include #include "gdcmDebug.h" -//----------------------------------------------------------------------------- -gdcmDebug gdcmDebug::debug; +namespace gdcm +{ +/// warning message level to be displayed +static int DebugFlag = 0; //----------------------------------------------------------------------------- /** - * \brief constructor - * @param level debug level + * \brief Accessor + * @param flag Set the debug flag */ -gdcmDebug::gdcmDebug(int level) +void Debug::SetDebugFlag (int flag) { - DebugLevel = level; + DebugFlag = flag; } /** * \brief Accessor - * @param level Set the debug level + * @param level Get the debug flag */ -void gdcmDebug::SetDebug(int level) +int Debug::GetDebugFlag () { - DebugLevel = level; + return DebugFlag; } -/** - * \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; -} +} // end namespace gdcm -/** - * \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 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 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 Exit - * @param a return code - */ -void gdcmDebug::Exit(int a) -{ -#ifdef __GNUC__ - std::exit(a); -#endif -#ifdef _MSC_VER - exit(a); // Found in #include -#endif -} - -/** - * \brief Get the debug instance - * \return Reference to the debug instance - */ -gdcmDebug &gdcmDebug::GetReference() -{ - return gdcmDebug::debug; -}