ut0dbg.h 3.93 KB
Newer Older
Vadim Tkachenko's avatar
Vadim Tkachenko committed
1 2
/*****************************************************************************

3
Copyright (c) 1994, 2009, Oracle and/or its affiliates. All Rights Reserved.
Vadim Tkachenko's avatar
Vadim Tkachenko committed
4 5 6 7 8 9 10 11 12 13

This program is free software; you can redistribute it and/or modify it under
the terms of the GNU General Public License as published by the Free Software
Foundation; version 2 of the License.

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 GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with
14 15
this program; if not, write to the Free Software Foundation, Inc.,
51 Franklin Street, Suite 500, Boston, MA 02110-1335 USA
Vadim Tkachenko's avatar
Vadim Tkachenko committed
16 17 18

*****************************************************************************/

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
19 20
/*****************************************************************//**
@file include/ut0dbg.h
21 22 23 24 25 26 27 28
Debug utilities for Innobase

Created 1/30/1994 Heikki Tuuri
**********************************************************************/

#ifndef ut0dbg_h
#define ut0dbg_h

29 30 31 32 33 34
#ifdef UNIV_INNOCHECKSUM
#define ut_a		assert
#define ut_ad		assert
#define ut_error	assert(0)
#else /* !UNIV_INNOCHECKSUM */

35 36 37 38 39
#include "univ.i"
#include <stdlib.h>
#include "os0thread.h"

#if defined(__GNUC__) && (__GNUC__ > 2)
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
40 41 42
/** Test if an assertion fails.
@param EXPR	assertion expression
@return		nonzero if EXPR holds, zero if not */
43 44
# define UT_DBG_FAIL(EXPR) UNIV_UNLIKELY(!((ulint)(EXPR)))
#else
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
45 46 47 48 49
/** This is used to eliminate compiler warnings */
extern ulint	ut_dbg_zero;
/** Test if an assertion fails.
@param EXPR	assertion expression
@return		nonzero if EXPR holds, zero if not */
50 51 52
# define UT_DBG_FAIL(EXPR) !((ulint)(EXPR) + ut_dbg_zero)
#endif

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
53
/*************************************************************//**
54 55 56 57 58
Report a failed assertion. */
UNIV_INTERN
void
ut_dbg_assertion_failed(
/*====================*/
Sergei Golubchik's avatar
Sergei Golubchik committed
59 60 61 62 63
	const char*	expr,	/*!< in: the failed assertion */
	const char*	file,	/*!< in: source file containing the assertion */
	ulint		line)	/*!< in: line number of the assertion */
	UNIV_COLD __attribute__((nonnull(2)));

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
64
/** Abort the execution. */
Sergei Golubchik's avatar
Sergei Golubchik committed
65
# define UT_DBG_PANIC abort()
66

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
67 68
/** Abort execution if EXPR does not evaluate to nonzero.
@param EXPR	assertion expression that should hold */
69 70 71 72 73 74 75 76
#define ut_a(EXPR) do {						\
	if (UT_DBG_FAIL(EXPR)) {				\
		ut_dbg_assertion_failed(#EXPR,			\
				__FILE__, (ulint) __LINE__);	\
		UT_DBG_PANIC;					\
	}							\
} while (0)

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
77
/** Abort execution. */
78 79 80 81 82 83
#define ut_error do {						\
	ut_dbg_assertion_failed(0, __FILE__, (ulint) __LINE__);	\
	UT_DBG_PANIC;						\
} while (0)

#ifdef UNIV_DEBUG
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
84
/** Debug assertion. Does nothing unless UNIV_DEBUG is defined. */
85
#define ut_ad(EXPR)	ut_a(EXPR)
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
86
/** Debug statement. Does nothing unless UNIV_DEBUG is defined. */
87 88
#define ut_d(EXPR)	do {EXPR;} while (0)
#else
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
89
/** Debug assertion. Does nothing unless UNIV_DEBUG is defined. */
90
#define ut_ad(EXPR)
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
91
/** Debug statement. Does nothing unless UNIV_DEBUG is defined. */
92 93 94
#define ut_d(EXPR)
#endif

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
95 96
/** Silence warnings about an unused variable by doing a null assignment.
@param A	the unused variable */
97 98 99 100 101 102 103 104
#define UT_NOT_USED(A)	A = A

#ifdef UNIV_COMPILE_TEST_FUNCS

#include <sys/types.h>
#include <sys/time.h>
#include <sys/resource.h>

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
105
/** structure used for recording usage statistics */
106
struct speedo_t {
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
107 108
	struct rusage	ru;	/*!< getrusage() result */
	struct timeval	tv;	/*!< gettimeofday() result */
109
};
110

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
111
/*******************************************************************//**
112 113 114 115 116
Resets a speedo (records the current time in it). */
UNIV_INTERN
void
speedo_reset(
/*=========*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
117
	speedo_t*	speedo);	/*!< out: speedo */
118

Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
119
/*******************************************************************//**
120 121 122 123 124 125
Shows the time elapsed and usage statistics since the last reset of a
speedo. */
UNIV_INTERN
void
speedo_show(
/*========*/
Aleksandr Kuzminsky's avatar
Aleksandr Kuzminsky committed
126
	const speedo_t*	speedo);	/*!< in: speedo */
127 128 129

#endif /* UNIV_COMPILE_TEST_FUNCS */

130 131
#endif /* !UNIV_INNOCHECKSUM */

132
#endif