/* # --------------------------------------------------------------------- # # Copyright (c) CREATIS (Centre de Recherche en Acquisition et Traitement de l'Image # pour la SantÈ) # Authors : Eduardo Davila, Frederic Cervenansky, Claire Mouton # Previous Authors : Laurent Guigues, Jean-Pierre Roux # CreaTools website : www.creatis.insa-lyon.fr/site/fr/creatools_accueil # # This software is governed by the CeCILL-B license under French law and # abiding by the rules of distribution of free software. You can use, # modify and/ or redistribute the software under the terms of the CeCILL-B # license as circulated by CEA, CNRS and INRIA at the following URL # http://www.cecill.info/licences/Licence_CeCILL-B_V1-en.html # or in the file LICENSE.txt. # # As a counterpart to the access to the source code and rights to copy, # modify and redistribute granted by the license, users are provided only # with a limited warranty and the software's author, the holder of the # economic rights, and the successive licensors have only limited # liability. # # The fact that you are presently reading this means that you have had # knowledge of the CeCILL-B license and that you accept its terms. # ------------------------------------------------------------------------ */ /*========================================================================= Program: bbtk Module: $RCSfile: bbtkMessageManager.h,v $ Language: C++ Date: $Date: 2012/11/16 08:49:01 $ Version: $Revision: 1.10 $ =========================================================================*/ /*! \file \brief Class bbtkMessageManager and Macros for outputing messages in bbtk There are 4 kinds of messages : - Messages (normal messages) - Debug messages (not compiled in release) - Warnings - Errors There are also "types" of messages which are strings which identify the nature of the message (for example : "Kernel" messages are generated by the core classes of the library, there can be a type of message for each type of Node, and so on...) A type of message must be declared by registering it into the MessageManager. This is done by a line like : bbtk::MessageManager::RegisterMessageType("Kernel","Messages generated by the core classes of the library",5); where : -The first string is the type of the message (the category which will be used to generate a message of this type) -The second string is help string -The integer is the initial level for the messages of this type (see below). To generate a message of a known type then use one of the macros : bbtkMessage, bbtkDebugMessage, bbtkWarning, bbtkError or their variants. example : bbtkMessage("Kernel",4,"problem with "< #include #include #include // Comment out these symbols to prevent compilation //#define BBTK_COMPILE_MESSAGES //#define BBTK_COMPILE_DEBUG_MESSAGES //#define BBTK_COMPILE_WARNING_MESSAGES //#define BBTK_COMPILE_ERROR_MESSAGES #define bbtkOnMessageLevel(key,value) \ int __bbtkOnMessageLevelVariable = \ bbtk::MessageManager::GetMessageLevel(key); \ if ( __bbtkOnMessageLevelVariable<0) \ { \ bbtkWarning("message type '"<0) \ { \ std::cerr << "!! WARNING !! " << MESSAGE << std::endl; \ if (lev >1) \ { \ std::cerr << "!! WARNING !! In file '"<<__FILE__ \ <<"' ; Line "<<__LINE__< mMessageLevel; std::map mMessageHelp; unsigned int mMaxMessageLength; }; //=========================================================== } #include "bbtkException.h" #endif