2010-11-26 18:02:21 -05:00
|
|
|
/*
|
2013-02-24 12:40:43 -05:00
|
|
|
Minetest
|
2013-02-24 13:38:45 -05:00
|
|
|
Copyright (C) 2013 celeron55, Perttu Ahola <celeron55@gmail.com>
|
2010-11-29 13:05:30 -05:00
|
|
|
|
|
|
|
This program is free software; you can redistribute it and/or modify
|
2012-06-05 10:56:56 -04:00
|
|
|
it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
the Free Software Foundation; either version 2.1 of the License, or
|
2010-11-29 13:05:30 -05:00
|
|
|
(at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
2012-06-05 10:56:56 -04:00
|
|
|
GNU Lesser General Public License for more details.
|
2010-11-29 13:05:30 -05:00
|
|
|
|
2012-06-05 10:56:56 -04:00
|
|
|
You should have received a copy of the GNU Lesser General Public License along
|
2010-11-29 13:05:30 -05:00
|
|
|
with this program; if not, write to the Free Software Foundation, Inc.,
|
|
|
|
51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
|
2010-11-26 18:02:21 -05:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef DEBUG_HEADER
|
|
|
|
#define DEBUG_HEADER
|
|
|
|
|
|
|
|
#include <iostream>
|
2013-08-10 22:09:45 -04:00
|
|
|
#include <exception>
|
2015-03-06 05:21:51 -05:00
|
|
|
#include <assert.h>
|
2010-12-21 11:08:24 -05:00
|
|
|
#include "gettime.h"
|
2010-12-27 07:34:17 -05:00
|
|
|
|
2013-08-10 22:09:45 -04:00
|
|
|
#if (defined(WIN32) || defined(_WIN32_WCE))
|
2010-12-27 07:34:17 -05:00
|
|
|
#define WIN32_LEAN_AND_MEAN
|
2013-02-23 12:30:13 -05:00
|
|
|
#ifndef _WIN32_WINNT
|
2013-06-23 03:31:22 -04:00
|
|
|
#define _WIN32_WINNT 0x0501
|
2013-02-23 12:30:13 -05:00
|
|
|
#endif
|
2010-12-27 07:34:17 -05:00
|
|
|
#include <windows.h>
|
2011-02-11 09:43:26 -05:00
|
|
|
#ifdef _MSC_VER
|
|
|
|
#include <eh.h>
|
|
|
|
#endif
|
2013-08-10 22:09:45 -04:00
|
|
|
#define __NORETURN __declspec(noreturn)
|
|
|
|
#define __FUNCTION_NAME __FUNCTION__
|
2010-12-27 07:34:17 -05:00
|
|
|
#else
|
2013-08-10 22:09:45 -04:00
|
|
|
#define __NORETURN __attribute__ ((__noreturn__))
|
|
|
|
#define __FUNCTION_NAME __PRETTY_FUNCTION__
|
2010-12-27 07:34:17 -05:00
|
|
|
#endif
|
2010-11-26 18:02:21 -05:00
|
|
|
|
2012-06-16 18:29:13 -04:00
|
|
|
// Whether to catch all std::exceptions.
|
|
|
|
// Assert will be called on such an event.
|
|
|
|
// In debug mode, leave these for the debugger and don't catch them.
|
|
|
|
#ifdef NDEBUG
|
|
|
|
#define CATCH_UNHANDLED_EXCEPTIONS 1
|
|
|
|
#else
|
|
|
|
#define CATCH_UNHANDLED_EXCEPTIONS 0
|
|
|
|
#endif
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
/*
|
|
|
|
Debug output
|
|
|
|
*/
|
|
|
|
|
2010-12-21 11:08:24 -05:00
|
|
|
#define DTIME (getTimestamp()+": ")
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
extern void debugstreams_init(bool disable_stderr, const char *filename);
|
|
|
|
extern void debugstreams_deinit();
|
|
|
|
|
|
|
|
// This is used to redirect output to /dev/null
|
|
|
|
class Nullstream : public std::ostream {
|
|
|
|
public:
|
|
|
|
Nullstream():
|
|
|
|
std::ostream(0)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
private:
|
|
|
|
};
|
|
|
|
|
|
|
|
extern std::ostream dstream;
|
|
|
|
extern std::ostream dstream_no_stderr;
|
|
|
|
extern Nullstream dummyout;
|
|
|
|
|
2013-09-10 12:28:26 -04:00
|
|
|
|
2015-03-06 05:21:51 -05:00
|
|
|
/* Abort program execution immediately
|
|
|
|
*/
|
|
|
|
__NORETURN extern void fatal_error_fn(
|
|
|
|
const char *msg, const char *file,
|
|
|
|
unsigned int line, const char *function);
|
|
|
|
|
|
|
|
#define FATAL_ERROR(msg) \
|
|
|
|
fatal_error_fn((msg), __FILE__, __LINE__, __FUNCTION_NAME)
|
|
|
|
|
|
|
|
#define FATAL_ERROR_IF(expr, msg) \
|
|
|
|
((expr) \
|
|
|
|
? fatal_error_fn((msg), __FILE__, __LINE__, __FUNCTION_NAME) \
|
|
|
|
: (void)(0))
|
2013-09-10 12:28:26 -04:00
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
/*
|
2015-03-06 05:21:51 -05:00
|
|
|
sanity_check()
|
|
|
|
Equivalent to assert() but persists in Release builds (i.e. when NDEBUG is
|
|
|
|
defined)
|
2010-11-26 18:02:21 -05:00
|
|
|
*/
|
|
|
|
|
2015-03-06 05:21:51 -05:00
|
|
|
__NORETURN extern void sanity_check_fn(
|
2010-11-26 18:02:21 -05:00
|
|
|
const char *assertion, const char *file,
|
|
|
|
unsigned int line, const char *function);
|
|
|
|
|
2015-03-06 05:21:51 -05:00
|
|
|
#define SANITY_CHECK(expr) \
|
|
|
|
((expr) \
|
|
|
|
? (void)(0) \
|
|
|
|
: sanity_check_fn(#expr, __FILE__, __LINE__, __FUNCTION_NAME))
|
|
|
|
|
|
|
|
#define sanity_check(expr) SANITY_CHECK(expr)
|
2010-11-26 18:02:21 -05:00
|
|
|
|
|
|
|
|
2015-02-01 03:08:04 -05:00
|
|
|
void debug_set_exception_handler();
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
/*
|
|
|
|
DebugStack
|
|
|
|
*/
|
|
|
|
|
|
|
|
#define DEBUG_STACK_SIZE 50
|
|
|
|
#define DEBUG_STACK_TEXT_SIZE 300
|
|
|
|
|
|
|
|
extern void debug_stacks_init();
|
2011-11-25 10:42:12 -05:00
|
|
|
extern void debug_stacks_print_to(std::ostream &os);
|
2010-11-26 18:02:21 -05:00
|
|
|
extern void debug_stacks_print();
|
|
|
|
|
2013-08-10 22:09:45 -04:00
|
|
|
struct DebugStack;
|
2010-11-26 18:02:21 -05:00
|
|
|
class DebugStacker
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
DebugStacker(const char *text);
|
|
|
|
~DebugStacker();
|
|
|
|
|
|
|
|
private:
|
|
|
|
DebugStack *m_stack;
|
|
|
|
bool m_overflowed;
|
|
|
|
};
|
|
|
|
|
2015-02-01 03:08:04 -05:00
|
|
|
#define DSTACK(msg) \
|
2011-05-16 16:47:50 -04:00
|
|
|
DebugStacker __debug_stacker(msg);
|
|
|
|
|
2015-02-01 03:08:04 -05:00
|
|
|
#define DSTACKF(...) \
|
|
|
|
char __buf[DEBUG_STACK_TEXT_SIZE]; \
|
|
|
|
snprintf(__buf, DEBUG_STACK_TEXT_SIZE, __VA_ARGS__); \
|
2010-11-26 18:02:21 -05:00
|
|
|
DebugStacker __debug_stacker(__buf);
|
|
|
|
|
2010-12-27 07:34:17 -05:00
|
|
|
/*
|
|
|
|
These should be put into every thread
|
|
|
|
*/
|
|
|
|
|
|
|
|
#if CATCH_UNHANDLED_EXCEPTIONS == 1
|
2015-02-01 03:08:04 -05:00
|
|
|
#define BEGIN_DEBUG_EXCEPTION_HANDLER try {
|
|
|
|
#define END_DEBUG_EXCEPTION_HANDLER(logstream) \
|
|
|
|
} catch (std::exception &e) { \
|
|
|
|
logstream << "ERROR: An unhandled exception occurred: " \
|
|
|
|
<< e.what() << std::endl; \
|
|
|
|
assert(0); \
|
2010-12-27 07:34:17 -05:00
|
|
|
}
|
|
|
|
#else
|
|
|
|
// Dummy ones
|
|
|
|
#define BEGIN_DEBUG_EXCEPTION_HANDLER
|
2011-10-16 07:57:53 -04:00
|
|
|
#define END_DEBUG_EXCEPTION_HANDLER(logstream)
|
2010-12-27 07:34:17 -05:00
|
|
|
#endif
|
2010-11-27 10:18:34 -05:00
|
|
|
|
|
|
|
#endif // DEBUG_HEADER
|
|
|
|
|
2010-11-26 18:02:21 -05:00
|
|
|
|