mirror of
https://github.com/nasa/trick.git
synced 2024-12-26 08:11:07 +00:00
102 lines
2.6 KiB
C++
102 lines
2.6 KiB
C++
|
/**
|
||
|
* @if Er7UtilsUseGroups
|
||
|
* @addtogroup Er7Utils
|
||
|
* @{
|
||
|
* @addtogroup Interface
|
||
|
* @{
|
||
|
* @endif
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
* @file
|
||
|
* Defines message handling functions.
|
||
|
*/
|
||
|
|
||
|
/*
|
||
|
Purpose: ()
|
||
|
*/
|
||
|
|
||
|
|
||
|
#ifndef ER7_UTILS_MESSAGE_HANDLER_HH
|
||
|
#define ER7_UTILS_MESSAGE_HANDLER_HH
|
||
|
|
||
|
// System includes
|
||
|
#include <cstdarg>
|
||
|
|
||
|
|
||
|
namespace er7_utils {
|
||
|
|
||
|
/**
|
||
|
* Contains free functions pertaining to handling messages of
|
||
|
* various levels of severity.
|
||
|
*/
|
||
|
namespace MessageHandler {
|
||
|
|
||
|
/**
|
||
|
* Terminate the simulation due to some fatal error.
|
||
|
* Note that this is a variable arguments function ala printf.
|
||
|
* The format parameter specifies the format. Subsequent arguments
|
||
|
* specify the content.
|
||
|
* @param file The source file in which the error occurred,
|
||
|
* typically \_\_FILE\_\_
|
||
|
* @param line The line number at which the error occurred,
|
||
|
* typically \_\_LINE\_\_
|
||
|
* @param msg_code Message ID
|
||
|
* @param format Message format
|
||
|
*/
|
||
|
void fail (
|
||
|
const char * file,
|
||
|
unsigned int line,
|
||
|
const char * msg_code,
|
||
|
const char * format,
|
||
|
...);
|
||
|
|
||
|
/**
|
||
|
* Indicate that a serious but non-fatal error has occurred.
|
||
|
* Note that this is a variable arguments function ala printf.
|
||
|
* The format parameter specifies the format. Subsequent arguments
|
||
|
* specify the content.
|
||
|
* @param file The source file in which the error occurred,
|
||
|
* typically \_\_FILE\_\_
|
||
|
* @param line The line number at which the error occurred,
|
||
|
* typically \_\_LINE\_\_
|
||
|
* @param msg_code Message ID
|
||
|
* @param format Message format
|
||
|
*/
|
||
|
void error (
|
||
|
const char * file,
|
||
|
unsigned int line,
|
||
|
const char * msg_code,
|
||
|
const char * format,
|
||
|
...);
|
||
|
|
||
|
/**
|
||
|
* Indicate that a lesser problem has occurred.
|
||
|
* Note that this is a variable arguments function ala printf.
|
||
|
* The format parameter specifies the format. Subsequent arguments
|
||
|
* specify the content.
|
||
|
* @param file The source file in which the error occurred,
|
||
|
* typically \_\_FILE\_\_
|
||
|
* @param line The line number at which the error occurred,
|
||
|
* typically \_\_LINE\_\_
|
||
|
* @param msg_code Message ID
|
||
|
* @param format Message format
|
||
|
*/
|
||
|
void warn (
|
||
|
const char * file,
|
||
|
unsigned int line,
|
||
|
const char * msg_code,
|
||
|
const char * format,
|
||
|
...);
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|
||
|
/**
|
||
|
* @if Er7UtilsUseGroups
|
||
|
* @}
|
||
|
* @}
|
||
|
* @endif
|
||
|
*/
|