monado/src/xrt/auxiliary/util/u_pretty_print.h

115 lines
2.4 KiB
C
Raw Normal View History

2022-04-09 20:46:59 +00:00
// Copyright 2022, Collabora, Ltd.
// SPDX-License-Identifier: BSL-1.0
/*!
* @file
* @brief Pretty printing various Monado things.
* @author Jakob Bornecrantz <jakob@collabora.com>
* @ingroup aux_pretty
*/
#include "xrt/xrt_defines.h"
#ifdef __cplusplus
extern "C" {
#endif
/*!
2022-05-18 15:31:57 +00:00
* @defgroup aux_pretty Pretty printing functions and helpers
* @ingroup aux_util
2022-04-09 20:46:59 +00:00
*
2022-05-18 15:31:57 +00:00
* This is common functionality used directly and shared by additional pretty
* printing functions implemented in multiple modules, such as @ref oxr_api.
2022-04-09 20:46:59 +00:00
*
* Some functions have a `_indented` suffix added to them, this means that what
* they print starts indented, but also they start with a newline. This is so
* they can easily be chained together to form a debug message printing out
* various information. Most of the final logging functions in Monado inserts a
2022-04-09 20:46:59 +00:00
* newline at the end of the message and we don't want two to be inserted.
*/
/*!
2022-05-18 15:31:57 +00:00
* Function prototype for receiving pretty printed strings.
*
* @note Do not keep a reference to the pointer as it's often allocated on the
* stack for speed.
2022-04-09 20:46:59 +00:00
*
* @ingroup aux_pretty
*/
typedef void (*u_pp_delegate_func_t)(void *ptr, const char *str, size_t length);
/*!
* Helper struct to hold a function pointer and data pointer.
*
* @ingroup aux_pretty
*/
struct u_pp_delegate
{
//! Userdata pointer, placed first to match D/Volt delegates.
void *ptr;
//! String receiving function.
u_pp_delegate_func_t func;
};
/*!
* Helper typedef for delegate struct, less typing.
*
* @ingroup aux_pretty
*/
typedef struct u_pp_delegate u_pp_delegate_t;
/*!
* Formats a string and sends to the delegate.
*
* @ingroup aux_pretty
*/
void
u_pp(struct u_pp_delegate dg, const char *fmt, ...) XRT_PRINTF_FORMAT(2, 3);
/*!
* Pretty prints the @ref xrt_input_name.
*
* @ingroup aux_pretty
*/
void
u_pp_xrt_input_name(struct u_pp_delegate dg, enum xrt_input_name name);
2022-05-15 13:43:08 +00:00
/*!
* Pretty prints the @ref xrt_result_t.
*
* @ingroup aux_pretty
*/
void
u_pp_xrt_result(struct u_pp_delegate dg, xrt_result_t xret);
2022-04-09 20:46:59 +00:00
/*
*
* Sinks.
*
*/
/*!
* Stack only pretty printer sink, no need to free, must be inited before use.
*
* @ingroup aux_pretty
*/
struct u_pp_sink_stack_only
{
//! How much of the buffer is used.
size_t used;
//! Storage for the sink.
char buffer[1024 * 8];
};
u_pp_delegate_t
u_pp_sink_stack_only_init(struct u_pp_sink_stack_only *sink);
2022-04-09 20:46:59 +00:00
#ifdef __cplusplus
}
#endif