Kryptostack
dbc.h
Go to the documentation of this file.
1
17#pragma once
18
19#include <boost/assert.hpp>
20
21
25class DbC {
26
27#ifndef BOOST_ASSERT_IS_VOID
28
29protected:
32 virtual bool invariant() const noexcept { /* LCOV_EXCL_START */
33 return true;
34 } /* LCOV_EXCL_STOP */
35
36#endif
37
38};
39
40
43template <typename T>
46 using assert_t = bool (T::*)() const noexcept;
47
50
52 const T * obj_;
53
54public:
56 DbCRAIIassert( assert_t p_fun, T * p_obj ) : fun_(p_fun), obj_(p_obj) {}
57
62 BOOST_ASSERT_MSG( (obj_->*fun_)(), "invariant violated" );
63 }
64};
65
67#define DBC_IS_VOID
68
72#ifndef BOOST_ASSERT_IS_VOID
73# define DBC_INV_RAII(TT) const DbCRAIIassert<TT> _destructmeatreturn( &TT::invariant, this )
74# undef DBC_IS_VOID
75#else
76# define DBC_INV_RAII(TT) ((void)0)
77#endif
78
80#define DBC_PRE(XXX) BOOST_ASSERT(XXX)
81
83#define DBC_POST(XXX) BOOST_ASSERT(XXX)
84
86#define DBC_INV BOOST_ASSERT(invariant())
87
91#define DBC_INV_CTOR(T) BOOST_ASSERT(T::invariant())
Helper class to call a check always at function return.
Definition: dbc.h:44
~DbCRAIIassert()
Dtor.
Definition: dbc.h:61
bool(T::*)() const noexcept assert_t
A shortcut for the invariant() function pointers.
Definition: dbc.h:46
DbCRAIIassert(assert_t p_fun, T *p_obj)
Ctor.
Definition: dbc.h:56
const T * obj_
The this of the invariant function.
Definition: dbc.h:52
const assert_t fun_
The invariant() of the current class to be called at function return.
Definition: dbc.h:49
Design by contract interface class.
Definition: dbc.h:25
virtual bool invariant() const noexcept
Checks the invariants of the class in which it is defined.
Definition: dbc.h:32