premiere-libtorrent/include/libtorrent/invariant_check.hpp

82 lines
1.5 KiB
C++
Raw Normal View History

// Copyright Daniel Wallin 2004. Use, modification and distribution is
// subject to the Boost Software License, Version 1.0. (See accompanying
// file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
#ifndef TORRENT_INVARIANT_ACCESS_HPP_INCLUDED
#define TORRENT_INVARIANT_ACCESS_HPP_INCLUDED
2014-01-19 21:19:15 +01:00
#include "libtorrent/config.hpp"
2007-09-01 06:08:39 +02:00
#include "libtorrent/assert.hpp"
2014-08-16 09:46:06 +02:00
#include "libtorrent/config.hpp"
2014-01-21 20:26:09 +01:00
#if TORRENT_USE_INVARIANT_CHECKS
namespace libtorrent
{
class invariant_access
{
public:
template<class T>
static void check_invariant(T const& self)
{
self.check_invariant();
}
};
template<class T>
void check_invariant(T const& x)
{
invariant_access::check_invariant(x);
}
struct invariant_checker {};
template<class T>
struct invariant_checker_impl : invariant_checker
{
invariant_checker_impl(T const& self_)
: self(self_)
{
2014-08-16 09:46:06 +02:00
TORRENT_TRY
{
check_invariant(self);
}
2014-08-16 09:46:06 +02:00
TORRENT_CATCH_ALL
{
TORRENT_ASSERT(false);
}
}
~invariant_checker_impl()
{
2014-08-16 09:46:06 +02:00
TORRENT_TRY
{
check_invariant(self);
}
2014-08-16 09:46:06 +02:00
TORRENT_CATCH_ALL
{
TORRENT_ASSERT(false);
}
}
T const& self;
};
template<class T>
invariant_checker_impl<T> make_invariant_checker(T const& x)
{
return invariant_checker_impl<T>(x);
}
}
#define INVARIANT_CHECK \
2004-04-17 14:29:35 +02:00
invariant_checker const& _invariant_check = make_invariant_checker(*this); \
(void)_invariant_check; \
do {} while (false)
#else
#define INVARIANT_CHECK do {} while (false)
#endif
#endif // TORRENT_INVARIANT_ACCESS_HPP_INCLUDED