2019-03-18 05:52:32 +00:00
|
|
|
// Copyright 2018-2019, Collabora, Ltd.
|
|
|
|
// SPDX-License-Identifier: BSL-1.0
|
|
|
|
/*!
|
|
|
|
* @file
|
|
|
|
* @brief Logging functions.
|
|
|
|
* @author Jakob Bornecrantz <jakob@collabora.com>
|
|
|
|
* @ingroup oxr_main
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdarg.h>
|
|
|
|
|
|
|
|
#include "xrt/xrt_compiler.h"
|
|
|
|
#include "util/u_debug.h"
|
|
|
|
|
|
|
|
#include "oxr_objects.h"
|
|
|
|
#include "oxr_logger.h"
|
|
|
|
|
2019-07-13 16:17:57 +00:00
|
|
|
#include "openxr_includes/openxr_reflection.h"
|
|
|
|
|
2019-03-18 05:52:32 +00:00
|
|
|
|
|
|
|
DEBUG_GET_ONCE_BOOL_OPTION(entrypoints, "OXR_DEBUG_ENTRYPOINTS", false)
|
2019-04-04 22:57:12 +00:00
|
|
|
DEBUG_GET_ONCE_BOOL_OPTION(break_on_error, "OXR_BREAK_ON_ERROR", false)
|
2019-03-18 05:52:32 +00:00
|
|
|
|
|
|
|
static const char *
|
|
|
|
oxr_result_to_string(XrResult result);
|
|
|
|
|
|
|
|
|
|
|
|
void
|
|
|
|
oxr_log_init(struct oxr_logger *logger, const char *api_func_name)
|
|
|
|
{
|
|
|
|
if (debug_get_bool_option_entrypoints()) {
|
|
|
|
fprintf(stderr, "%s\n", api_func_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
logger->inst = NULL;
|
|
|
|
logger->api_func_name = api_func_name;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oxr_log_set_instance(struct oxr_logger *logger, struct oxr_instance *inst)
|
|
|
|
{
|
|
|
|
logger->inst = inst;
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oxr_log(struct oxr_logger *logger, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
if (logger->api_func_name != NULL) {
|
|
|
|
fprintf(stderr, " in %s", logger->api_func_name);
|
|
|
|
}
|
|
|
|
|
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
|
|
vfprintf(stderr, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
void
|
|
|
|
oxr_warn(struct oxr_logger *logger, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
if (logger->api_func_name != NULL) {
|
|
|
|
fprintf(stderr, "%s WARNING: ", logger->api_func_name);
|
|
|
|
} else {
|
|
|
|
fprintf(stderr, "WARNING: ");
|
|
|
|
}
|
|
|
|
|
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
|
|
vfprintf(stderr, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
fprintf(stderr, "\n");
|
|
|
|
}
|
|
|
|
|
|
|
|
XrResult
|
|
|
|
oxr_error(struct oxr_logger *logger, XrResult result, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
if (debug_get_bool_option_entrypoints()) {
|
|
|
|
fprintf(stderr, "\t");
|
|
|
|
}
|
|
|
|
|
|
|
|
fprintf(stderr, "%s", oxr_result_to_string(result));
|
|
|
|
|
|
|
|
if (logger->api_func_name != NULL) {
|
|
|
|
fprintf(stderr, " in %s", logger->api_func_name);
|
|
|
|
}
|
|
|
|
|
2019-04-04 22:57:12 +00:00
|
|
|
fprintf(stderr, ": ");
|
2019-03-18 05:52:32 +00:00
|
|
|
va_list args;
|
|
|
|
va_start(args, fmt);
|
|
|
|
vfprintf(stderr, fmt, args);
|
|
|
|
va_end(args);
|
|
|
|
|
|
|
|
fprintf(stderr, "\n");
|
2019-06-05 19:13:47 +00:00
|
|
|
if (debug_get_bool_option_break_on_error() &&
|
|
|
|
result != XR_ERROR_FUNCTION_UNSUPPORTED) {
|
2019-04-08 19:19:02 +00:00
|
|
|
/// Trigger a debugger breakpoint.
|
|
|
|
XRT_DEBUGBREAK();
|
2019-04-04 22:57:12 +00:00
|
|
|
}
|
|
|
|
|
2019-03-18 05:52:32 +00:00
|
|
|
return result;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const char *
|
|
|
|
oxr_result_to_string(XrResult result)
|
|
|
|
{
|
|
|
|
// clang-format off
|
|
|
|
switch (result) {
|
2019-07-13 16:17:57 +00:00
|
|
|
|
|
|
|
#define ENTRY(NAME, VALUE) \
|
|
|
|
case VALUE: return #NAME;
|
|
|
|
XR_LIST_ENUM_XrResult(ENTRY)
|
|
|
|
#undef ENTRY
|
|
|
|
|
2019-03-18 05:52:32 +00:00
|
|
|
default: return "<UNKNOWN>";
|
|
|
|
}
|
|
|
|
// clang-format on
|
|
|
|
}
|