Small debug helpers.
More...
Go to the source code of this file.
|
#define | DEBUG_CHAR_STORAGE_SIZE (1024) |
|
#define | DEBUG_GET_ONCE_OPTION(suffix, name, _default) |
|
#define | DEBUG_GET_ONCE_TRISTATE_OPTION(suffix, name) |
|
#define | DEBUG_GET_ONCE_BOOL_OPTION(suffix, name, _default) |
|
#define | DEBUG_GET_ONCE_NUM_OPTION(suffix, name, _default) |
|
#define | DEBUG_GET_ONCE_FLOAT_OPTION(suffix, name, _default) |
|
#define | DEBUG_GET_ONCE_LOG_OPTION(suffix, name, _default) |
|
|
enum | debug_tristate_option { DEBUG_TRISTATE_OFF
, DEBUG_TRISTATE_AUTO
, DEBUG_TRISTATE_ON
} |
|
|
bool | debug_string_to_bool (const char *string) |
|
enum debug_tristate_option | debug_string_to_tristate (const char *string) |
|
long | debug_string_to_num (const char *string, long _default) |
|
float | debug_string_to_float (const char *string, float _default) |
|
enum u_logging_level | debug_string_to_log_level (const char *string, enum u_logging_level _default) |
|
const char * | debug_get_option (char *chars, size_t char_count, const char *name, const char *_default) |
|
bool | debug_get_bool_option (const char *name, bool _default) |
|
enum debug_tristate_option | debug_get_tristate_option (const char *name) |
|
long | debug_get_num_option (const char *name, long _default) |
|
float | debug_get_float_option (const char *name, float _default) |
|
enum u_logging_level | debug_get_log_option (const char *name, enum u_logging_level _default) |
|
Small debug helpers.
- Author
- Jakob Bornecrantz jakob.nosp@m.@col.nosp@m.labor.nosp@m.a.co.nosp@m.m
Debug get option helpers heavily inspired from mesa ones.
◆ DEBUG_GET_ONCE_BOOL_OPTION
#define DEBUG_GET_ONCE_BOOL_OPTION |
( |
|
suffix, |
|
|
|
name, |
|
|
|
_default |
|
) |
| |
Value: static bool debug_get_bool_option_##suffix(void) \
{ \
static bool gotten = false; \
static bool stored; \
if (!gotten) { \
gotten = true; \
stored = debug_get_bool_option(name, _default); \
} \
return stored; \
}
◆ DEBUG_GET_ONCE_FLOAT_OPTION
#define DEBUG_GET_ONCE_FLOAT_OPTION |
( |
|
suffix, |
|
|
|
name, |
|
|
|
_default |
|
) |
| |
Value: static float debug_get_float_option_##suffix(void) \
{ \
static long gotten = false; \
static float stored; \
if (!gotten) { \
gotten = true; \
stored = debug_get_float_option(name, _default); \
} \
return stored; \
}
◆ DEBUG_GET_ONCE_LOG_OPTION
#define DEBUG_GET_ONCE_LOG_OPTION |
( |
|
suffix, |
|
|
|
name, |
|
|
|
_default |
|
) |
| |
Value:
{ \
static long gotten = false; \
if (!gotten) { \
gotten = true; \
stored = debug_get_log_option(name, _default); \
} \
return stored; \
}
u_logging_level
Logging level enum.
Definition: u_logging.h:43
◆ DEBUG_GET_ONCE_NUM_OPTION
#define DEBUG_GET_ONCE_NUM_OPTION |
( |
|
suffix, |
|
|
|
name, |
|
|
|
_default |
|
) |
| |
Value: static long debug_get_num_option_##suffix(void) \
{ \
static long gotten = false; \
static long stored; \
if (!gotten) { \
gotten = true; \
stored = debug_get_num_option(name, _default); \
} \
return stored; \
}
◆ DEBUG_GET_ONCE_OPTION
#define DEBUG_GET_ONCE_OPTION |
( |
|
suffix, |
|
|
|
name, |
|
|
|
_default |
|
) |
| |
Value: static const char *debug_get_option_##suffix(void) \
{ \
static char storage[DEBUG_CHAR_STORAGE_SIZE]; \
static bool gotten = false; \
static const char *stored; \
if (!gotten) { \
gotten = true; \
stored = debug_get_option(storage,
ARRAY_SIZE(storage), name, _default); \
} \
return stored; \
}
#define ARRAY_SIZE(a)
Array size helper.
Definition: xrt_compiler.h:30
◆ DEBUG_GET_ONCE_TRISTATE_OPTION
#define DEBUG_GET_ONCE_TRISTATE_OPTION |
( |
|
suffix, |
|
|
|
name |
|
) |
| |
Value: static enum debug_tristate_option debug_get_tristate_option_##suffix(void) \
{ \
static bool gotten = false; \
static enum debug_tristate_option stored; \
if (!gotten) { \
gotten = true; \
stored = debug_get_tristate_option(name); \
} \
return stored; \
}