2007-08-20 06:58:56 +02:00
|
|
|
/*
|
|
|
|
|
2016-01-18 00:57:46 +01:00
|
|
|
Copyright (c) 2007-2016, Arvid Norberg
|
2007-08-20 06:58:56 +02:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions
|
|
|
|
are met:
|
|
|
|
|
|
|
|
* Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
* Redistributions in binary form must reproduce the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer in
|
|
|
|
the documentation and/or other materials provided with the distribution.
|
|
|
|
* Neither the name of the author nor the names of its
|
|
|
|
contributors may be used to endorse or promote products derived
|
|
|
|
from this software without specific prior written permission.
|
|
|
|
|
|
|
|
THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
|
|
|
|
AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
|
|
|
|
IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
|
|
|
|
ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
|
|
|
|
LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
|
|
|
|
CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
|
|
|
|
SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
|
|
|
|
INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
|
|
|
|
CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
|
|
|
|
ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
|
|
|
|
POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
|
|
|
|
*/
|
|
|
|
|
2007-10-05 02:30:00 +02:00
|
|
|
#ifndef TORRENT_ASSERT
|
2007-08-20 06:58:56 +02:00
|
|
|
|
2007-09-17 20:19:08 +02:00
|
|
|
#include "libtorrent/config.hpp"
|
2008-11-30 05:50:52 +01:00
|
|
|
|
2015-04-18 04:33:39 +02:00
|
|
|
#if (defined TORRENT_DEBUG && TORRENT_USE_ASSERTS) \
|
2014-11-30 11:07:19 +01:00
|
|
|
|| defined TORRENT_ASIO_DEBUGGING \
|
|
|
|
|| defined TORRENT_PROFILE_CALLS \
|
2015-04-19 15:18:54 +02:00
|
|
|
|| defined TORRENT_RELEASE_ASSERTS \
|
2014-11-30 11:07:19 +01:00
|
|
|
|| defined TORRENT_DEBUG_BUFFERS
|
|
|
|
|
2013-03-10 21:41:26 +01:00
|
|
|
#include <string>
|
|
|
|
std::string demangle(char const* name);
|
2016-08-21 07:07:02 +02:00
|
|
|
TORRENT_EXPORT void print_backtrace(char* out, int len, int max_depth = 0
|
|
|
|
, void* ctx = NULL);
|
2013-03-10 21:41:26 +01:00
|
|
|
#endif
|
|
|
|
|
2015-04-27 04:21:12 +02:00
|
|
|
// this is to disable the warning of conditional expressions
|
|
|
|
// being constant in msvc
|
|
|
|
#ifdef _MSC_VER
|
|
|
|
#define TORRENT_WHILE_0 \
|
|
|
|
__pragma( warning(push) ) \
|
|
|
|
__pragma( warning(disable:4127) ) \
|
|
|
|
while (0) \
|
|
|
|
__pragma( warning(pop) )
|
|
|
|
#else
|
|
|
|
#define TORRENT_WHILE_0 while (0)
|
|
|
|
#endif
|
|
|
|
|
2007-08-20 06:58:56 +02:00
|
|
|
|
2015-09-02 07:30:40 +02:00
|
|
|
// declarations of the two functions
|
2010-10-10 04:22:57 +02:00
|
|
|
|
2015-09-07 23:00:27 +02:00
|
|
|
// internal
|
2015-05-10 07:11:51 +02:00
|
|
|
TORRENT_EXPORT void assert_print(char const* fmt, ...) TORRENT_FORMAT(1,2);
|
2014-07-06 21:18:00 +02:00
|
|
|
|
2015-09-07 23:00:27 +02:00
|
|
|
// internal
|
2015-04-22 02:59:35 +02:00
|
|
|
TORRENT_EXPORT void assert_fail(const char* expr, int line
|
2015-04-18 04:33:39 +02:00
|
|
|
, char const* file, char const* function, char const* val, int kind = 0);
|
2014-03-23 08:40:43 +01:00
|
|
|
|
2015-09-02 07:30:40 +02:00
|
|
|
|
|
|
|
|
|
|
|
#if TORRENT_USE_ASSERTS
|
|
|
|
|
|
|
|
#ifdef TORRENT_PRODUCTION_ASSERTS
|
|
|
|
extern char const* libtorrent_assert_log;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#if TORRENT_USE_IOSTREAM
|
|
|
|
#include <sstream>
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifndef TORRENT_USE_SYSTEM_ASSERTS
|
|
|
|
|
2014-03-23 08:40:43 +01:00
|
|
|
#define TORRENT_ASSERT_PRECOND(x) \
|
2015-04-27 04:21:12 +02:00
|
|
|
do { if (x) {} else assert_fail(#x, __LINE__, __FILE__, TORRENT_FUNCTION, 0, 1); } TORRENT_WHILE_0
|
2014-03-23 08:40:43 +01:00
|
|
|
|
|
|
|
#define TORRENT_ASSERT(x) \
|
2015-04-27 04:21:12 +02:00
|
|
|
do { if (x) {} else assert_fail(#x, __LINE__, __FILE__, TORRENT_FUNCTION, 0, 0); } TORRENT_WHILE_0
|
2011-08-15 01:55:41 +02:00
|
|
|
|
2010-11-29 02:33:05 +01:00
|
|
|
#if TORRENT_USE_IOSTREAM
|
2014-03-23 08:40:43 +01:00
|
|
|
#define TORRENT_ASSERT_VAL(x, y) \
|
|
|
|
do { if (x) {} else { std::stringstream __s__; __s__ << #y ": " << y; \
|
2015-04-27 04:21:12 +02:00
|
|
|
assert_fail(#x, __LINE__, __FILE__, TORRENT_FUNCTION, __s__.str().c_str(), 0); } } TORRENT_WHILE_0
|
2010-11-29 02:33:05 +01:00
|
|
|
#else
|
|
|
|
#define TORRENT_ASSERT_VAL(x, y) TORRENT_ASSERT(x)
|
|
|
|
#endif
|
2007-08-20 06:58:56 +02:00
|
|
|
|
|
|
|
#else
|
2007-12-27 11:50:12 +01:00
|
|
|
#include <cassert>
|
2014-03-23 08:40:43 +01:00
|
|
|
#define TORRENT_ASSERT_PRECOND(x) assert(x)
|
2007-10-05 02:30:00 +02:00
|
|
|
#define TORRENT_ASSERT(x) assert(x)
|
2010-09-25 19:46:13 +02:00
|
|
|
#define TORRENT_ASSERT_VAL(x, y) assert(x)
|
2007-08-20 06:58:56 +02:00
|
|
|
#endif
|
2007-10-05 02:30:00 +02:00
|
|
|
|
2014-01-19 20:45:50 +01:00
|
|
|
#else // TORRENT_USE_ASSERTS
|
2013-07-19 18:30:26 +02:00
|
|
|
|
2015-04-27 04:21:12 +02:00
|
|
|
#define TORRENT_ASSERT_PRECOND(a) do {} TORRENT_WHILE_0
|
|
|
|
#define TORRENT_ASSERT(a) do {} TORRENT_WHILE_0
|
|
|
|
#define TORRENT_ASSERT_VAL(a, b) do {} TORRENT_WHILE_0
|
2013-07-19 18:30:26 +02:00
|
|
|
|
2014-01-19 20:45:50 +01:00
|
|
|
#endif // TORRENT_USE_ASSERTS
|
2007-08-20 06:58:56 +02:00
|
|
|
|
2008-11-30 05:50:52 +01:00
|
|
|
#endif
|
|
|
|
|