]> sigrok.org Git - libsigrok.git/blame - src/log.c
log: Output timestamps at level SR_LOG_DBG too
[libsigrok.git] / src / log.c
CommitLineData
b08024a8 1/*
50985c20 2 * This file is part of the libsigrok project.
b08024a8 3 *
0ae67ff7 4 * Copyright (C) 2011-2012 Uwe Hermann <uwe@hermann-uwe.de>
b08024a8
UH
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#include <stdarg.h>
22#include <stdio.h>
c1aae900 23#include <libsigrok/libsigrok.h>
45c59c8b 24#include "libsigrok-internal.h"
b08024a8 25
be92d5b4
DE
26#define LOG_PREFIX "log"
27
b4bd7088
UH
28/**
29 * @file
30 *
393fb9cb 31 * Controlling the libsigrok message logging functionality.
b4bd7088
UH
32 */
33
7b870c38
UH
34/**
35 * @defgroup grp_logging Logging
36 *
37 * Controlling the libsigrok message logging functionality.
38 *
39 * @{
40 */
41
0ae67ff7 42/* Currently selected libsigrok loglevel. Default: SR_LOG_WARN. */
f897acae 43static int cur_loglevel = SR_LOG_WARN; /* Show errors+warnings per default. */
1352eedd 44
0ae67ff7 45/* Function prototype. */
1f9813eb
UH
46static int sr_logv(void *cb_data, int loglevel, const char *format,
47 va_list args);
0ae67ff7 48
b5118d6c 49/* Pointer to the currently selected log callback. Default: sr_logv(). */
144f6660 50static sr_log_callback sr_log_cb = sr_logv;
0ae67ff7
UH
51
52/*
b5118d6c 53 * Pointer to private data that can be passed to the log callback.
0ae67ff7
UH
54 * This can be used (for example) by C++ GUIs to pass a "this" pointer.
55 */
144f6660 56static void *sr_log_cb_data = NULL;
0ae67ff7
UH
57
58/* Log domain (a short string that is used as prefix for all messages). */
b4bd7088 59/** @cond PRIVATE */
0ae67ff7
UH
60#define LOGDOMAIN_MAXLEN 30
61#define LOGDOMAIN_DEFAULT "sr: "
b4bd7088 62/** @endcond */
0ae67ff7
UH
63static char sr_log_domain[LOGDOMAIN_MAXLEN + 1] = LOGDOMAIN_DEFAULT;
64
6d9da8ef
DE
65/** @cond PRIVATE */
66#define LOGLEVEL_TIMESTAMP SR_LOG_DBG
67/** @endcond */
15408b51
DE
68static int64_t sr_log_start_time = 0;
69
1352eedd
UH
70/**
71 * Set the libsigrok loglevel.
72 *
73 * This influences the amount of log messages (debug messages, error messages,
74 * and so on) libsigrok will output. Using SR_LOG_NONE disables all messages.
75 *
0ae67ff7
UH
76 * Note that this function itself will also output log messages. After the
77 * loglevel has changed, it will output a debug message with SR_LOG_DBG for
78 * example. Whether this message is shown depends on the (new) loglevel.
79 *
1352eedd 80 * @param loglevel The loglevel to set (SR_LOG_NONE, SR_LOG_ERR, SR_LOG_WARN,
06dd80d4 81 * SR_LOG_INFO, SR_LOG_DBG, or SR_LOG_SPEW).
44dae539 82 *
1352eedd 83 * @return SR_OK upon success, SR_ERR_ARG upon invalid loglevel.
9fb5f2df
UH
84 *
85 * @since 0.1.0
1352eedd 86 */
0ae67ff7 87SR_API int sr_log_loglevel_set(int loglevel)
1352eedd 88{
06dd80d4 89 if (loglevel < SR_LOG_NONE || loglevel > SR_LOG_SPEW) {
0ae67ff7 90 sr_err("Invalid loglevel %d.", loglevel);
1352eedd
UH
91 return SR_ERR_ARG;
92 }
15408b51 93 /* Output time stamps relative to time at startup */
6d9da8ef 94 if (loglevel >= LOGLEVEL_TIMESTAMP && sr_log_start_time == 0)
15408b51 95 sr_log_start_time = g_get_monotonic_time();
1352eedd 96
f897acae 97 cur_loglevel = loglevel;
1352eedd 98
0ae67ff7 99 sr_dbg("libsigrok loglevel set to %d.", loglevel);
1352eedd
UH
100
101 return SR_OK;
102}
103
104/**
105 * Get the libsigrok loglevel.
106 *
107 * @return The currently configured libsigrok loglevel.
9fb5f2df
UH
108 *
109 * @since 0.1.0
1352eedd 110 */
0ae67ff7 111SR_API int sr_log_loglevel_get(void)
1352eedd 112{
f897acae 113 return cur_loglevel;
1352eedd
UH
114}
115
0ae67ff7
UH
116/**
117 * Set the libsigrok logdomain string.
118 *
119 * @param logdomain The string to use as logdomain for libsigrok log
120 * messages from now on. Must not be NULL. The maximum
121 * length of the string is 30 characters (this does not
122 * include the trailing NUL-byte). Longer strings are
be92d5b4 123 * truncated.
0ae67ff7
UH
124 * In order to not use a logdomain, pass an empty string.
125 * The function makes its own copy of the input string, i.e.
126 * the caller does not need to keep it around.
44dae539 127 *
be92d5b4
DE
128 * @retval SR_OK upon success.
129 * @retval SR_ERR_ARG @a logdomain was NULL.
130 * @retval SR_ERR @a logdomain was truncated.
9fb5f2df
UH
131 *
132 * @since 0.1.0
0ae67ff7
UH
133 */
134SR_API int sr_log_logdomain_set(const char *logdomain)
135{
be92d5b4
DE
136 size_t len;
137
0ae67ff7 138 if (!logdomain) {
be92d5b4 139 sr_err("%s: logdomain was NULL", __func__);
0ae67ff7
UH
140 return SR_ERR_ARG;
141 }
142
be92d5b4 143 len = g_strlcpy(sr_log_domain, logdomain, sizeof sr_log_domain);
0ae67ff7 144
15408b51 145 sr_dbg("Log domain set to '%s'.", sr_log_domain);
0ae67ff7 146
be92d5b4 147 return (len < sizeof sr_log_domain) ? SR_OK : SR_ERR;
0ae67ff7
UH
148}
149
150/**
151 * Get the currently configured libsigrok logdomain.
152 *
153 * @return A copy of the currently configured libsigrok logdomain
154 * string. The caller is responsible for g_free()ing the string when
155 * it is no longer needed.
9fb5f2df
UH
156 *
157 * @since 0.1.0
0ae67ff7
UH
158 */
159SR_API char *sr_log_logdomain_get(void)
160{
15408b51 161 return g_strdup(sr_log_domain);
0ae67ff7
UH
162}
163
164/**
b5118d6c 165 * Set the libsigrok log callback to the specified function.
0ae67ff7 166 *
b5118d6c
UH
167 * @param cb Function pointer to the log callback function to use.
168 * Must not be NULL.
1f9813eb
UH
169 * @param cb_data Pointer to private data to be passed on. This can be used by
170 * the caller to pass arbitrary data to the log functions. This
171 * pointer is only stored or passed on by libsigrok, and is
172 * never used or interpreted in any way. The pointer is allowed
173 * to be NULL if the caller doesn't need/want to pass any data.
44dae539 174 *
0ae67ff7 175 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments.
9fb5f2df 176 *
47117241 177 * @since 0.3.0
0ae67ff7 178 */
144f6660 179SR_API int sr_log_callback_set(sr_log_callback cb, void *cb_data)
0ae67ff7 180{
b5118d6c 181 if (!cb) {
be92d5b4 182 sr_err("%s: cb was NULL", __func__);
0ae67ff7
UH
183 return SR_ERR_ARG;
184 }
185
1f9813eb 186 /* Note: 'cb_data' is allowed to be NULL. */
0ae67ff7 187
144f6660
UH
188 sr_log_cb = cb;
189 sr_log_cb_data = cb_data;
0ae67ff7
UH
190
191 return SR_OK;
192}
193
194/**
b5118d6c 195 * Set the libsigrok log callback to the default built-in one.
0ae67ff7 196 *
144f6660 197 * Additionally, the internal 'sr_log_cb_data' pointer is set to NULL.
0ae67ff7
UH
198 *
199 * @return SR_OK upon success, a negative error code otherwise.
9fb5f2df
UH
200 *
201 * @since 0.1.0
0ae67ff7 202 */
b5118d6c 203SR_API int sr_log_callback_set_default(void)
0ae67ff7
UH
204{
205 /*
206 * Note: No log output in this function, as it should safely work
b5118d6c 207 * even if the currently set log callback is buggy/broken.
0ae67ff7 208 */
144f6660
UH
209 sr_log_cb = sr_logv;
210 sr_log_cb_data = NULL;
0ae67ff7
UH
211
212 return SR_OK;
213}
214
1f9813eb 215static int sr_logv(void *cb_data, int loglevel, const char *format, va_list args)
b08024a8 216{
6d9da8ef
DE
217 uint64_t elapsed_us, minutes;
218 unsigned int rest_us, seconds, microseconds;
b08024a8 219
b5118d6c 220 /* This specific log callback doesn't need the void pointer data. */
1f9813eb 221 (void)cb_data;
0ae67ff7 222
1352eedd 223 /* Only output messages of at least the selected loglevel(s). */
f897acae 224 if (loglevel > cur_loglevel)
15408b51 225 return SR_OK;
b08024a8 226
6d9da8ef
DE
227 if (cur_loglevel >= LOGLEVEL_TIMESTAMP) {
228 elapsed_us = g_get_monotonic_time() - sr_log_start_time;
229
230 minutes = elapsed_us / G_TIME_SPAN_MINUTE;
231 rest_us = elapsed_us % G_TIME_SPAN_MINUTE;
232 seconds = rest_us / G_TIME_SPAN_SECOND;
233 microseconds = rest_us % G_TIME_SPAN_SECOND;
b08024a8 234
6d9da8ef
DE
235 if (fprintf(stderr, "[%.2" PRIu64 ":%.2u.%.6u] ",
236 minutes, seconds, microseconds) < 0)
15408b51
DE
237 return SR_ERR;
238 }
239 if (sr_log_domain[0] != '\0' && fputs(sr_log_domain, stderr) < 0)
240 return SR_ERR;
241 if (vfprintf(stderr, format, args) < 0)
242 return SR_ERR;
243 if (putc('\n', stderr) < 0)
244 return SR_ERR;
245
246 return SR_OK;
b08024a8
UH
247}
248
b4bd7088 249/** @private */
1a081ca6 250SR_PRIV int sr_log(int loglevel, const char *format, ...)
b08024a8
UH
251{
252 int ret;
253 va_list args;
254
255 va_start(args, format);
144f6660 256 ret = sr_log_cb(sr_log_cb_data, loglevel, format, args);
b08024a8
UH
257 va_end(args);
258
259 return ret;
260}
261
7b870c38 262/** @} */