X-Git-Url: https://git.creatis.insa-lyon.fr/pubgit/?a=blobdiff_plain;f=src%2FgdcmDebug.cxx;h=81c5c819f61207754ff265523b1f8632df048080;hb=fc71b6d6df72ee061f0a88e3de407a83511f8ed2;hp=ee7216641d0ae583c9742a2a6f49da76c793c88f;hpb=abd6bfcc2b10b5f7447d1758938d7c15c31240af;p=gdcm.git diff --git a/src/gdcmDebug.cxx b/src/gdcmDebug.cxx index ee721664..81c5c819 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/07 19:20:38 $ - Version: $Revision: 1.15 $ + Date: $Date: 2006/01/03 14:28:53 $ + Version: $Revision: 1.30 $ Copyright (c) CREATIS (Centre de Recherche et d'Applications en Traitement de l'Image). All rights reserved. See Doc/License.txt or @@ -16,33 +16,143 @@ =========================================================================*/ -#include #include "gdcmDebug.h" +#include "gdcmCommandManager.h" + +#include namespace gdcm { +//----------------------------------------------------------------------------- +// Warning message level to be displayed +const int Debug::LINE_LENGTH = 79; + +bool Debug::DebugFlag = false; +bool Debug::LogFlag = false; +bool Debug::WarningFlag = false; +bool Debug::OutputToFile = false; + +std::ofstream Debug::OutputFileStream; +std::ostream &Debug::StandardStream = std::cerr; + +//----------------------------------------------------------------------------- +// Constructor / Destructor +Debug::Debug() +{ +} + +Debug::~Debug() +{ + if ( OutputFileStream.is_open() ) + OutputFileStream.close(); +} -/// warning message level to be displayed -static int DebugFlag = 0; //----------------------------------------------------------------------------- +// Public /** - * \brief Accessor - * @param level Set the debug level + * \brief Sets both the debug flag and warning flag + * (both used for debugging purpose) + * @param flag Set the debug flag and warning flag + */ +void Debug::SetDebugFlag (bool flag) +{ + // To help tracking a bug, both flags are necessary + DebugFlag = flag; + WarningFlag = flag; +} + +/** + * \brief Sets the warning flag + * @param flag Set the warning flag + */ +void Debug::SetWarningFlag (bool flag) +{ + // Cannot unset Warning flag if Debug flag is on or if LogFlag is on. + if (flag == false) + { + if (DebugFlag == true) + return; + if (LogFlag == true) + return; + } + WarningFlag = flag; +} + +/** + * \brief Sets the log flag + * @param flag Set the log flag */ -void Debug::SetDebugFlag (int flag) +void Debug::SetLogFlag (bool flag) { - DebugFlag = flag; + // To log oddities, both flags are necessary + WarningFlag = flag; + LogFlag = flag; } /** * \brief Accessor - * @param level Get the debug level + * @param flag whether we want to redirect to file */ -int Debug::GetDebugFlag () +void Debug::SetOutputToFile (bool flag) { - return DebugFlag; + OutputToFile = flag; } -} // end namespace gdcm +/** + * \brief Accessor to know whether debug info are redirected to file + */ +bool Debug::GetOutputToFile () +{ + return OutputToFile; +} + +/** + * \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::SetOutputFileName (std::string const &filename) +{ + OutputToFile = true; // Just in case ... + DebugFlag = true; // Just in case ... + if ( OutputFileStream.is_open() ) + OutputFileStream.close(); + OutputFileStream.open( filename.c_str() ); +} + +/** + * \brief Internal use only. Allow us to retrieve the static from anywhere + * in gdcm code + * @return Debug file + */ +std::ostream &Debug::GetOutput () +{ + if(OutputToFile) + return OutputFileStream; + else + return StandardStream; +} + +void Debug::SendToOutput(unsigned int type,std::string const &msg,const Base *object) +{ + bool executed=false; + if( type != CMD_DEBUG && type != CMD_ASSERT ) + executed=CommandManager::ExecuteCommandConst(object,type,msg); + + if(!executed) + GetOutput() << Command::GetCommandAsString(type) << ": " << msg; +} +//----------------------------------------------------------------------------- +// Protected + +//----------------------------------------------------------------------------- +// Private + +//----------------------------------------------------------------------------- +// Print +//----------------------------------------------------------------------------- +} // end namespace gdcm