1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
|
/*
* This file is part of the sigrok project.
*
* Copyright (C) 2011-2012 Uwe Hermann <uwe@hermann-uwe.de>
*
* 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
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* 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
*/
#include "sigrokdecode.h" /* First, so we avoid a _POSIX_C_SOURCE warning. */
#include "sigrokdecode-internal.h"
#include <stdarg.h>
#include <stdio.h>
/* Currently selected libsigrokdecode loglevel. Default: SRD_LOG_WARN. */
static int srd_loglevel = SRD_LOG_WARN; /* Show errors+warnings per default. */
/* Function prototype. */
static int srd_logv(void *data, int loglevel, const char *format, va_list args);
/* Pointer to the currently selected log handler. Default: srd_logv(). */
static srd_log_handler_t srd_log_handler = srd_logv;
/*
* Pointer to private data that can be passed to the log handler.
* This can be used (for example) by C++ GUIs to pass a "this" pointer.
*/
static void *srd_log_handler_data = NULL;
/* Log domain (a short string that is used as prefix for all messages). */
#define LOGDOMAIN_MAXLEN 30
#define LOGDOMAIN_DEFAULT "srd: "
static char srd_log_domain[LOGDOMAIN_MAXLEN + 1] = LOGDOMAIN_DEFAULT;
/**
* Set the libsigrokdecode loglevel.
*
* This influences the amount of log messages (debug messages, error messages,
* 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.
*/
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;
srd_dbg("libsigrokdecode loglevel set to %d.", loglevel);
return SRD_OK;
}
/**
* Get the libsigrokdecode loglevel.
*
* @return The currently configured libsigrokdecode loglevel.
*/
int srd_log_loglevel_get(void)
{
return srd_loglevel;
}
/**
* Set the libsigrokdecode logdomain string.
*
* @param logdomain The string to use as logdomain for libsigrokdecode log
* messages from now on. Must not be NULL. The maximum
* length of the string is 30 characters (this does not
* include the trailing NUL-byte). Longer strings are
* silently truncated.
* In order to not use a logdomain, pass an empty string.
* The function makes its own copy of the input string, i.e.
* the caller does not need to keep it around.
* @return SRD_OK upon success, SRD_ERR_ARG upon invalid logdomain.
*/
int srd_log_logdomain_set(const char *logdomain)
{
if (!logdomain) {
srd_err("log: %s: logdomain was NULL", __func__);
return SRD_ERR_ARG;
}
/* TODO: Error handling. */
snprintf((char *)&srd_log_domain, LOGDOMAIN_MAXLEN, "%s", logdomain);
srd_dbg("Log domain set to '%s'.", (const char *)&srd_log_domain);
return SRD_OK;
}
/**
* Get the currently configured libsigrokdecode logdomain.
*
* @return A copy of the currently configured libsigrokdecode logdomain
* string. The caller is responsible for g_free()ing the string when
* it is no longer needed.
*/
char *srd_log_logdomain_get(void)
{
return g_strdup((const char *)&srd_log_domain);
}
/**
* Set the libsigrokdecode log handler to the specified function.
*
* @param handler Function pointer to the log handler function to use.
* Must not be NULL.
* @param 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.
*/
int srd_log_handler_set(srd_log_handler_t handler, void *data)
{
if (!handler) {
srd_err("log: %s: handler was NULL", __func__);
return SRD_ERR_ARG;
}
/* Note: 'data' is allowed to be NULL. */
srd_log_handler = handler;
srd_log_handler_data = data;
return SRD_OK;
}
/**
* Set the libsigrokdecode log handler to the default built-in one.
*
* Additionally, the internal 'srd_log_handler_data' pointer is set to NULL.
*
* @return SRD_OK upon success, a negative error code otherwise.
*/
int srd_log_handler_set_default(void)
{
/*
* Note: No log output in this function, as it should safely work
* even if the currently set log handler is buggy/broken.
*/
srd_log_handler = srd_logv;
srd_log_handler_data = NULL;
return SRD_OK;
}
static int srd_logv(void *data, int loglevel, const char *format, va_list args)
{
int ret;
/* This specific log handler doesn't need the void pointer data. */
(void)data;
/* Only output messages of at least the selected loglevel(s). */
if (loglevel > srd_loglevel)
return SRD_OK; /* TODO? */
if (srd_log_domain[0] != '\0')
fprintf(stderr, "%s", srd_log_domain);
ret = vfprintf(stderr, format, args);
fprintf(stderr, "\n");
return ret;
}
int srd_log(int loglevel, const char *format, ...)
{
int ret;
va_list args;
va_start(args, format);
ret = srd_log_handler(srd_log_handler_data, loglevel, format, args);
va_end(args);
return ret;
}
int srd_spew(const char *format, ...)
{
int ret;
va_list args;
va_start(args, format);
ret = srd_log_handler(srd_log_handler_data, SRD_LOG_SPEW, format, args);
va_end(args);
return ret;
}
int srd_dbg(const char *format, ...)
{
int ret;
va_list args;
va_start(args, format);
ret = srd_log_handler(srd_log_handler_data, SRD_LOG_DBG, format, args);
va_end(args);
return ret;
}
int srd_info(const char *format, ...)
{
int ret;
va_list args;
va_start(args, format);
ret = srd_log_handler(srd_log_handler_data, SRD_LOG_INFO, format, args);
va_end(args);
return ret;
}
int srd_warn(const char *format, ...)
{
int ret;
va_list args;
va_start(args, format);
ret = srd_log_handler(srd_log_handler_data, SRD_LOG_WARN, format, args);
va_end(args);
return ret;
}
int srd_err(const char *format, ...)
{
int ret;
va_list args;
va_start(args, format);
ret = srd_log_handler(srd_log_handler_data, SRD_LOG_ERR, format, args);
va_end(args);
return ret;
}
|