X-Git-Url: https://sigrok.org/gitweb/?p=libsigrokdecode.git;a=blobdiff_plain;f=log.c;h=459a5c10be9023ad2422a4c35a015abfd79f95ee;hp=6b9a20d81fd1d653b5fd6b759d97c7605afe70e7;hb=a27981c145cd9a3709673339dc455f3a0d5c3745;hpb=d906d3f978233458fc73b56fb232352affd1b433 diff --git a/log.c b/log.c index 6b9a20d..459a5c1 100644 --- a/log.c +++ b/log.c @@ -1,7 +1,7 @@ /* - * This file is part of the sigrok project. + * This file is part of the libsigrokdecode project. * - * Copyright (C) 2011 Uwe Hermann + * Copyright (C) 2011-2012 Uwe Hermann * * 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 @@ -14,16 +14,45 @@ * GNU General Public License for more details. * * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * along with this program; if not, see . */ -#include "sigrokdecode.h" -#include "sigrokdecode-internal.h" +#include +#include "libsigrokdecode-internal.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */ +#include "libsigrokdecode.h" #include #include +#include -static int srd_loglevel = SRD_LOG_WARN; /* Show errors+warnings per default. */ +/** + * @file + * + * Controlling the libsigrokdecode message logging functionality. + */ + +/** + * @defgroup grp_logging Logging + * + * Controlling the libsigrokdecode message logging functionality. + * + * @{ + */ + +/* Currently selected libsigrokdecode loglevel. Default: SRD_LOG_WARN. */ +static int cur_loglevel = SRD_LOG_WARN; /* Show errors+warnings per default. */ + +/* Function prototype. */ +static int srd_logv(void *cb_data, int loglevel, const char *format, + va_list args); + +/* Pointer to the currently selected log callback. Default: srd_logv(). */ +static srd_log_callback srd_log_cb = srd_logv; + +/* + * Pointer to private data that can be passed to the log callback. + * This can be used (for example) by C++ GUIs to pass a "this" pointer. + */ +static void *srd_log_cb_data = NULL; /** * Set the libsigrokdecode loglevel. @@ -32,20 +61,27 @@ static int srd_loglevel = SRD_LOG_WARN; /* Show errors+warnings per default. */ * and so on) libsigrokdecode will output. Using SRD_LOG_NONE disables all * messages. * + * Note that this function itself will also output log messages. After the + * loglevel has changed, it will output a debug message with SRD_LOG_DBG for + * example. Whether this message is shown depends on the (new) loglevel. + * * @param loglevel The loglevel to set (SRD_LOG_NONE, SRD_LOG_ERR, * SRD_LOG_WARN, SRD_LOG_INFO, SRD_LOG_DBG, or SRD_LOG_SPEW). + * * @return SRD_OK upon success, SRD_ERR_ARG upon invalid loglevel. + * + * @since 0.1.0 */ -int srd_set_loglevel(int loglevel) +SRD_API int srd_log_loglevel_set(int loglevel) { if (loglevel < SRD_LOG_NONE || loglevel > SRD_LOG_SPEW) { srd_err("Invalid loglevel %d.", loglevel); return SRD_ERR_ARG; } - srd_loglevel = loglevel; + cur_loglevel = loglevel; - srd_dbg("srd: loglevel set to %d", loglevel); + srd_dbg("libsigrokdecode loglevel set to %d.", loglevel); return SRD_OK; } @@ -54,94 +90,99 @@ int srd_set_loglevel(int loglevel) * Get the libsigrokdecode loglevel. * * @return The currently configured libsigrokdecode loglevel. + * + * @since 0.1.0 */ -int srd_get_loglevel(void) +SRD_API int srd_log_loglevel_get(void) { - return srd_loglevel; + return cur_loglevel; } -static int srd_logv(int loglevel, const char *format, va_list args) +/** + * Set the libsigrokdecode log callback to the specified function. + * + * @param cb Function pointer to the log callback function to use. + * Must not be NULL. + * @param cb_data Pointer to private data to be passed on. This can be used + * by the caller to pass arbitrary data to the log functions. + * This pointer is only stored or passed on by libsigrokdecode, + * and is never used or interpreted in any way. The pointer + * is allowed to be NULL if the caller doesn't need/want to + * pass any data. + * + * @return SRD_OK upon success, SRD_ERR_ARG upon invalid arguments. + * + * @since 0.3.0 + */ +SRD_API int srd_log_callback_set(srd_log_callback cb, void *cb_data) { - int ret; + if (!cb) { + srd_err("log: %s: cb was NULL", __func__); + return SRD_ERR_ARG; + } - /* Only output messages of at least the selected loglevel(s). */ - if (loglevel > srd_loglevel) - return SRD_OK; /* TODO? */ + /* Note: 'cb_data' is allowed to be NULL. */ - ret = vfprintf(stderr, format, args); - fprintf(stderr, "\n"); + srd_log_cb = cb; + srd_log_cb_data = cb_data; - return ret; + return SRD_OK; } -int srd_log(int loglevel, const char *format, ...) +/** + * Set the libsigrokdecode log callback to the default built-in one. + * + * Additionally, the internal 'srd_log_cb_data' pointer is set to NULL. + * + * @return SRD_OK upon success, a (negative) error code otherwise. + * + * @since 0.1.0 + */ +SRD_API int srd_log_callback_set_default(void) { - int ret; - va_list args; - - va_start(args, format); - ret = srd_logv(loglevel, format, args); - va_end(args); + /* + * Note: No log output in this function, as it should safely work + * even if the currently set log callback is buggy/broken. + */ + srd_log_cb = srd_logv; + srd_log_cb_data = NULL; - return ret; + return SRD_OK; } -int srd_spew(const char *format, ...) +static int srd_logv(void *cb_data, int loglevel, const char *format, + va_list args) { - int ret; - va_list args; + /* This specific log callback doesn't need the void pointer data. */ + (void)cb_data; - va_start(args, format); - ret = srd_logv(SRD_LOG_SPEW, format, args); - va_end(args); + (void)loglevel; - return ret; -} + if (fputs("srd: ", stderr) < 0 + || g_vfprintf(stderr, format, args) < 0 + || putc('\n', stderr) < 0) + return SRD_ERR; -int srd_dbg(const char *format, ...) -{ - int ret; - va_list args; + fflush(stderr); - va_start(args, format); - ret = srd_logv(SRD_LOG_DBG, format, args); - va_end(args); - - return ret; + return SRD_OK; } -int srd_info(const char *format, ...) +/** @private */ +SRD_PRIV int srd_log(int loglevel, const char *format, ...) { int ret; va_list args; - va_start(args, format); - ret = srd_logv(SRD_LOG_INFO, format, args); - va_end(args); - - return ret; -} - -int srd_warn(const char *format, ...) -{ - int ret; - va_list args; + /* Only output messages of at least the selected loglevel(s). */ + if (loglevel > cur_loglevel) + return SRD_OK; va_start(args, format); - ret = srd_logv(SRD_LOG_WARN, format, args); + ret = srd_log_cb(srd_log_cb_data, loglevel, format, args); va_end(args); return ret; } -int srd_err(const char *format, ...) -{ - int ret; - va_list args; - - va_start(args, format); - ret = srd_logv(SRD_LOG_ERR, format, args); - va_end(args); - - return ret; -} +/** @} */