Chaste Commit::ca8ccdedf819b6e02855bc0e8e6f50bdecbc5208
|
#include <Warnings.hpp>
Public Member Functions | |
void | AddWarning (const std::string &rMessage, const std::string &rFilename, unsigned lineNumber, bool onlyOnce=false) |
std::string | PopWarning () const |
unsigned | GetNumWarnings () |
std::string | GetNextWarningMessage () |
Static Public Member Functions | |
static void | NoisyDestroy () |
static void | QuietDestroy () |
static void | PrintWarnings () |
static Warnings * | Instance () |
Protected Member Functions | |
Warnings () | |
Private Types | |
typedef std::deque< std::pair< std::string, std::string > > | WarningsContainerType |
Private Attributes | |
WarningsContainerType | mWarningMessages |
Static Private Attributes | |
static Warnings * | mpInstance = nullptr |
The Warnings singleton class collects warnings via the AddWarning() method or the WARNING macro. This is to provide a mechanism for informing the user of error which are less severe than those demanding exceptions or assertions. (Errors which can be repaired immediately.)
Warnings can be polled with GetNumWarnings() and GetNextWarningMessage(). Warnings can be ignored and destroyed with QuietDestroy(). All warnings left at the close of the test suite (not the individual test), or the close of the executable, will be printed to the screen.
Definition at line 54 of file Warnings.hpp.
|
private |
Container type for warnings
Definition at line 61 of file Warnings.hpp.
|
protected |
Protected constructor. Use Instance() to access the Warnings singleton.
Definition at line 50 of file Warnings.cpp.
Referenced by Instance().
void Warnings::AddWarning | ( | const std::string & | rMessage, |
const std::string & | rFilename, | ||
unsigned | lineNumber, | ||
bool | onlyOnce = false |
||
) |
Make a warning with a message string and add it to the list.
rMessage | the message |
rFilename | which source file threw the exception |
lineNumber | which line number of the source file threw the exception |
onlyOnce | whether to only log the first warning thrown from this location |
Definition at line 97 of file Warnings.cpp.
References mWarningMessages, and ChastePosixPathFixer::ToPosix().
std::string Warnings::GetNextWarningMessage | ( | ) |
Definition at line 123 of file Warnings.cpp.
References EXCEPTION, and mWarningMessages.
unsigned Warnings::GetNumWarnings | ( | ) |
Definition at line 118 of file Warnings.cpp.
References mWarningMessages.
|
static |
Definition at line 87 of file Warnings.cpp.
References Warnings(), mpInstance, and NoisyDestroy().
|
static |
Default destroyer (takes the place of a destructor, using the std::atexit directive). Prints all warning messages to stdout.
Definition at line 54 of file Warnings.cpp.
References PrintWarnings(), and QuietDestroy().
Referenced by Instance().
std::string Warnings::PopWarning | ( | ) | const |
Get the message associated with the exception with file and line number.
|
static |
Prints all warning messages to stdout without changing the state of the Warnings.
Definition at line 69 of file Warnings.cpp.
References mpInstance, and mWarningMessages.
Referenced by NoisyDestroy().
|
static |
Public destroyer (takes the place of a destructor but is called by the user to make sure that no warnings appear).
Definition at line 60 of file Warnings.cpp.
References mpInstance.
Referenced by NoisyDestroy().
|
staticprivate |
Pointer to the single instance. For use as singleton
Definition at line 58 of file Warnings.hpp.
Referenced by Instance(), PrintWarnings(), and QuietDestroy().
|
private |
Warnings messages. First in pair is the context (line number etc.). Second in pair is the actual warning,
Definition at line 63 of file Warnings.hpp.
Referenced by AddWarning(), GetNextWarningMessage(), GetNumWarnings(), and PrintWarnings().