Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/foonathan/debug_assert
Simple, flexible and modular assertion macro.
https://github.com/foonathan/debug_assert
assert c-plus-plus
Last synced: 3 months ago
JSON representation
Simple, flexible and modular assertion macro.
- Host: GitHub
- URL: https://github.com/foonathan/debug_assert
- Owner: foonathan
- License: zlib
- Created: 2016-09-15T19:33:01.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-04-22T20:12:23.000Z (7 months ago)
- Last Synced: 2024-05-02T16:37:12.507Z (6 months ago)
- Topics: assert, c-plus-plus
- Language: C++
- Homepage: http://foonathan.net/blog/2016/09/16/assertions.html
- Size: 52.7 KB
- Stars: 219
- Watchers: 13
- Forks: 23
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- AwesomeCppGameDev - debug_assert
README
# debug_assert
![Project Status](https://img.shields.io/endpoint?url=https%3A%2F%2Fwww.jonathanmueller.dev%2Fproject%2Fdebug_assert%2Findex.json)
[![Download](https://api.bintray.com/packages/manu343726/conan-packages/debug_assert%3AManu343726/images/download.svg) ](https://bintray.com/manu343726/conan-packages/debug_assert%3AManu343726/_latestVersion)debug_assert is a simple, C++11, header-only library that provides a very flexible `DEBUG_ASSERT()` macro.
How many times did you write an assertion macro yourself, because `assert()` is controlled globally and cannot be enabled for certain parts of the program only?
This library solves the problem by providing a flexible, modular assertion macro.## Features
* No dependencies. It only requires `std::abort()` and - unless `DEBUG_ASSERT_NO_STDIO` is defined - `std::fprintf()`.
* Single, small header file that just needs to be copied into your own project.
* Customizable assertion handling - assertion failure will call a user-defined function, with user-defined arguments.
* Modular - enable or disable assertions for different parts of the same program.
* Support for levels - give levels to your assertion macro and only enable certain levels of assertions.
* Little preprocessor use - just a single assertion macro which is needed to get the stringified expression and source location. Enabling/Disabling is controlled by compile time programming instead of preprocessor conditionals.
* Fast - even though a disabled assertion will still expand to something,
there is no overhead with even basic optimizations enabled and very little without optimization (just the code to read `__FILE__` and `__LINE__`). To be precise: It will only evaluate the assertion expression if the assertion is enabled!## Overview
The basic usage of the library is like so:
```cpp
DEBUG_ASSERT(1 + 1 == 2, my_module{}); // basic
DEBUG_ASSERT(1 + 1 == 2, my_module{}, debug_assert::level<2>{}); // with level
```Where `my_module` is a user-defined tag type that will both control the assertion level and the handler code.
It looks like this:```cpp
struct my_module
: debug_assert::default_handler, // use the default handler
debug_assert::set_level<-1> // level -1, i.e. all assertions, 0 would mean none, 1 would be level 1, 2 level 2 or lower,...
{};
```A module handler must have `static` function `handle()` that takes a `debug_assert::source_location`, the stringified expression and any additional arguments you pass to `DEBUG_ASSERT()` (besides the `debug_assert::level`).
See `example.cpp` for more information and [read the blogpost](https://foonathan.github.io/blog/2016/09/16/assertions.html).
### CMake
For convenience you can also use CMake to setup the include directory and have options that map to the customizable macros.
Simple call `add_subdirectory(path/to/debug_assert)` and then `target_link_libraries(my_target PUBLIC debug_assert)`.
It will not actually build something, only setup the flags.
Note that it will not enable C++11 support.
The options are named like the macros.## Documentation
> Generated by [standardese](https://github.com/foonathan/standardese).
# Header file `debug_assert.hpp`
#define DEBUG_ASSERT_MARK_UNREACHABLE
#define DEBUG_ASSERT_FORCE_INLINE
#define DEBUG_ASSERT_CUR_SOURCE_LOCATION
#define DEBUG_ASSERT(Expr, ...)
#define DEBUG_UNREACHABLE(...)
namespace debug_assert
{
struct source_location;template <unsigned Level>
struct level;template <unsigned Level>
struct set_level;struct allow_exception;
struct no_handler;
struct default_handler;
}## Macro `DEBUG_ASSERT_CUR_SOURCE_LOCATION`
#define DEBUG_ASSERT_CUR_SOURCE_LOCATION
Expands to the current [debug\_assert::source\_location](doc_debug_assert.md#debug_assert::source_location).
#define DEBUG_ASSERT(Expr, ...)
Usage: \`DEBUG\_ASSERT(\, \, \[\\], \[\\]. Where:
- `` - the expression to check for, the expression `!` must be well-formed and contextually convertible to `bool`.
- `` - an object of the module specific handler
- `` (optional, defaults to `1`) - the level of the assertion, must be an object of type [debug\_assert::level\](doc_debug_assert.md#debug_assert::level-Level-).
- `` (optional) - any additional arguments that are just forwarded to the handler function.It will only check the assertion if `` is less than or equal to `Handler::level`. A failed assertion will call: `Handler::handle(location, expression, args)`. `location` is the [debug\_assert::source\_location](doc_debug_assert.md#debug_assert::source_location) at the macro expansion, `expression` is the stringified expression and `args` are the `` as-is. If the handler function returns, it will call \[std::abort()\].
*Notes*: Define `DEBUG_ASSERT_DISABLE` to completely disable this macro, it will expand to nothing. This should not be necessary, the regular version is optimized away completely.
#define DEBUG_UNREACHABLE(...)
Marks a branch as unreachable.
Usage: `DEBUG_UNREACHABLE(, [], [])` Where:
- `` - an object of the module specific handler
- `` (optional, defaults to `1`) - the level of the assertion, must be an object of type [debug\_assert::level\](doc_debug_assert.md#debug_assert::level-Level-).
- `` (optional) - any additional arguments that are just forwarded to the handler function.It will only check the assertion if `` is less than or equal to `Handler::level`. A failed assertion will call: `Handler::handle(location, "", args)`. and `args` are the `` as-is. If the handler function returns, it will call \[std::abort()\].
*Notes*: Define `DEBUG_ASSERT_DISABLE` to completely disable this macro, it will expand to `DEBUG_ASSERT_MARK_UNREACHABLE`. This should not be necessary, the regular version is optimized away completely.
## Struct `debug_assert::source_location`
struct source_location
{
const char* file_name;unsigned line_number;
};Defines a location in the source code.
**Members:**
- `line_number` - \< The file name. \< The line number.
## Class template `debug_assert::level`
template <unsigned Level>
struct level
{
};Tag type to indicate the level of an assertion.
## Class template `debug_assert::set_level`
template <unsigned Level>
struct set_level
{
static const unsigned level = Level;
};Helper class that sets a certain level. Inherit from it in your module handler.
## Struct `debug_assert::allow_exception`
struct allow_exception
{
static const bool throwing_exception_is_allowed = true;
};Helper class that controls whether the handler can throw or not. Inherit from it in your module handler. If the module does not inherit from this class, it is assumed that the handle does not throw.
## Struct `debug_assert::no_handler`
struct no_handler
{
template <typename ... Args>
static void handle(const source_location&, const char*, Args&&...) noexcept;
};Does not do anything to handle a failed assertion (except calling [std::abort()](http://en.cppreference.com/mwiki/index.php?title=Special%3ASearch&search=std::abort())). Inherit from it in your module handler.
### Function template `debug_assert::no_handler::handle`
template <typename ... Args>
static void handle(const source_location&, const char*, Args&&...) noexcept;*Effects*: Does nothing.
*Notes*: Can take any additional arguments.
-----
## Struct `debug_assert::default_handler`
struct default_handler
{
static void handle(const source_location& loc, const char* expression, const char* message = nullptr) noexcept;
};The default handler that writes a message to `stderr`. Inherit from it in your module handler.
### Function `debug_assert::default_handler::handle`
static void handle(const source_location& loc, const char* expression, const char* message = nullptr) noexcept;
*Effects*: Prints a message to `stderr`.
*Notes*: It can optionally accept an additional message string.
*Notes*: If `DEBUG_ASSERT_NO_STDIO` is defined, it will do nothing.
-----
-----
## Acknowledgements
Thanks a lot to [@Manu343726](https://github.com/Manu343726), [@verri](https://github.com/verri) and [@pfultz2](https://github.com/pfultz2).