2 * collectd - src/sigrok.c
3 * Copyright (C) 2013 Bert Vermeulen
5 * This program is free software: you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation, either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
19 * Bert Vermeulen <bert at biot.com>
33 #include <libsigrok/libsigrok.h>
35 /* Minimum interval between dispatches coming from this plugin. The RRD
36 * plugin, at least, complains when written to with sub-second intervals.*/
37 #define DEFAULT_MIN_DISPATCH_INTERVAL TIME_T_TO_CDTIME_T(0)
39 static pthread_t sr_thread;
40 static int sr_thread_running = FALSE;
41 GSList *config_devices;
42 static int num_devices;
43 static int loglevel = SR_LOG_WARN;
44 static struct sr_context *sr_ctx;
46 struct config_device {
51 struct sr_dev_inst *sdi;
52 cdtime_t min_dispatch_interval;
53 cdtime_t last_dispatch;
57 static int sigrok_log_callback(void*cb_data __attribute__((unused)),
58 int msg_loglevel, const char *format, va_list args)
62 if (msg_loglevel <= loglevel) {
63 vsnprintf(s, 512, format, args);
64 plugin_log(LOG_INFO, "sigrok plugin: %s", s);
70 static int sigrok_config_device(oconfig_item_t *ci)
72 struct config_device *cfdev;
75 if (!(cfdev = malloc(sizeof(struct config_device)))) {
76 ERROR("sigrok plugin: malloc() failed.");
79 memset(cfdev, 0, sizeof(*cfdev));
80 if (cf_util_get_string(ci, &cfdev->name)) {
82 WARNING("sigrok plugin: Invalid device name.");
85 cfdev->min_dispatch_interval = DEFAULT_MIN_DISPATCH_INTERVAL;
87 for (i = 0; i < ci->children_num; i++) {
88 oconfig_item_t *item = ci->children + i;
89 if (!strcasecmp(item->key, "driver"))
90 cf_util_get_string(item, &cfdev->driver);
91 else if (!strcasecmp(item->key, "conn"))
92 cf_util_get_string(item, &cfdev->conn);
93 else if (!strcasecmp(item->key, "serialcomm"))
94 cf_util_get_string(item, &cfdev->serialcomm);
95 else if (!strcasecmp(item->key, "minimuminterval"))
96 cf_util_get_cdtime(item, &cfdev->min_dispatch_interval);
98 WARNING("sigrok plugin: Invalid keyword \"%s\".",
102 config_devices = g_slist_append(config_devices, cfdev);
107 static int sigrok_config(oconfig_item_t *ci)
111 for (i = 0; i < ci->children_num; i++) {
112 oconfig_item_t *item = ci->children + i;
113 if (strcasecmp("LogLevel", item->key) == 0) {
117 status = cf_util_get_int (item, &tmp);
120 else if ((tmp < 0) || (tmp > 5)) {
121 ERROR ("sigrok plugin: The \"LogLevel\" "
122 "configuration option expects "
123 "an integer between 0 and 5 "
124 "(inclusive); you provided %i.",
129 } else if (!strcasecmp(item->key, "Device"))
130 sigrok_config_device(item);
132 WARNING("sigrok plugin: Invalid keyword \"%s\".",
139 static char *sigrok_value_type(const struct sr_datafeed_analog *analog)
143 if (analog->mq == SR_MQ_VOLTAGE)
145 else if (analog->mq == SR_MQ_CURRENT)
147 else if (analog->mq == SR_MQ_FREQUENCY)
149 else if (analog->mq == SR_MQ_POWER)
151 else if (analog->mq == SR_MQ_TEMPERATURE)
153 else if (analog->mq == SR_MQ_RELATIVE_HUMIDITY)
155 else if (analog->mq == SR_MQ_SOUND_PRESSURE_LEVEL)
163 static void sigrok_feed_callback(const struct sr_dev_inst *sdi,
164 const struct sr_datafeed_packet *packet, void *cb_data)
166 const struct sr_datafeed_analog *analog;
167 struct config_device *cfdev;
170 value_list_t vl = VALUE_LIST_INIT;
172 /* Find this device's configuration. */
174 for (l = config_devices; l; l = l->next) {
176 if (cfdev->sdi == sdi) {
184 ERROR("sigrok plugin: Received data from driver \"%s\" but "
185 "can't find a configuration / device matching "
186 "it.", sdi->driver->name);
190 if (packet->type == SR_DF_END) {
191 /* TODO: try to restart acquisition after a delay? */
192 WARNING("sigrok plugin: acquisition for \"%s\" ended.",
197 if (packet->type != SR_DF_ANALOG)
200 if ((cfdev->min_dispatch_interval != 0)
201 && ((cdtime() - cfdev->last_dispatch)
202 < cfdev->min_dispatch_interval))
205 /* Ignore all but the first sample on the first probe. */
206 analog = packet->payload;
207 value.gauge = analog->data[0];
210 sstrncpy(vl.host, hostname_g, sizeof(vl.host));
211 sstrncpy(vl.plugin, "sigrok", sizeof(vl.plugin));
212 ssnprintf(vl.plugin_instance, sizeof(vl.plugin_instance),
214 sstrncpy(vl.type, sigrok_value_type(analog), sizeof(vl.type));
216 plugin_dispatch_values(&vl);
217 cfdev->last_dispatch = cdtime();
220 static void sigrok_free_drvopts(struct sr_config *src)
222 g_variant_unref(src->data);
226 static int sigrok_init_driver(struct config_device *cfdev,
227 struct sr_dev_driver *drv)
229 struct sr_config *src;
230 GSList *devlist, *drvopts;
233 if (sr_driver_init(sr_ctx, drv) != SR_OK)
234 /* Error was logged by libsigrok. */
239 if (!(src = malloc(sizeof(struct sr_config))))
241 src->key = SR_CONF_CONN;
242 src->data = g_variant_new_string(cfdev->conn);
243 drvopts = g_slist_append(drvopts, src);
245 if (cfdev->serialcomm) {
246 if (!(src = malloc(sizeof(struct sr_config))))
248 src->key = SR_CONF_SERIALCOMM;
249 src->data = g_variant_new_string(cfdev->serialcomm);
250 drvopts = g_slist_append(drvopts, src);
252 devlist = sr_driver_scan(drv, drvopts);
253 g_slist_free_full(drvopts, (GDestroyNotify)sigrok_free_drvopts);
255 /* Not an error, but the user should know about it. */
256 WARNING("sigrok plugin: No device found for \"%s\".",
261 if (g_slist_length(devlist) > 1) {
262 INFO("sigrok plugin: %d sigrok devices for device entry "
263 "\"%s\": must be 1.",
264 g_slist_length(devlist), cfdev->name);
267 cfdev->sdi = devlist->data;
268 g_slist_free(devlist);
269 ssnprintf(hwident, sizeof(hwident), "%s %s %s",
270 cfdev->sdi->vendor ? cfdev->sdi->vendor : "",
271 cfdev->sdi->model ? cfdev->sdi->model : "",
272 cfdev->sdi->version ? cfdev->sdi->version : "");
273 INFO("sigrok plugin: Device \"%s\" is a %s", cfdev->name, hwident);
275 if (sr_dev_open(cfdev->sdi) != SR_OK)
278 if (sr_session_dev_add(cfdev->sdi) != SR_OK)
284 static void *sigrok_read_thread(void *arg __attribute__((unused)))
286 struct sr_dev_driver *drv, **drvlist;
288 struct config_device *cfdev;
291 sr_log_callback_set(sigrok_log_callback, NULL);
292 sr_log_loglevel_set(loglevel);
294 if ((ret = sr_init(&sr_ctx)) != SR_OK) {
295 ERROR("sigrok plugin: Failed to initialize libsigrok: %s.",
300 if (!sr_session_new())
304 drvlist = sr_driver_list();
305 for (l = config_devices; l; l = l->next) {
308 for (i = 0; drvlist[i]; i++) {
309 if (!strcmp(drvlist[i]->name, cfdev->driver)) {
315 ERROR("sigrok plugin: Unknown driver \"%s\".",
320 if ((ret = sigrok_init_driver(cfdev, drv)) < 0)
321 /* Error was already logged. */
327 if (num_devices > 0) {
328 /* Do this only when we're sure there's hardware to talk to. */
329 if (sr_session_datafeed_callback_add(sigrok_feed_callback, NULL)
333 /* Start acquisition on all devices. */
334 if (sr_session_start() != SR_OK)
337 /* Main loop, runs forever. */
341 sr_session_dev_remove_all();
344 sr_session_destroy();
349 sr_thread_running = FALSE;
354 static int sigrok_init(void)
358 if (sr_thread_running) {
359 ERROR("sigrok plugin: Thread already running.");
363 if ((status = plugin_thread_create(&sr_thread, NULL, sigrok_read_thread,
365 ERROR("sigrok plugin: Failed to create thread: %s.",
369 sr_thread_running = TRUE;
374 static int sigrok_shutdown(void)
376 struct config_device *cfdev;
379 if (sr_thread_running) {
380 pthread_cancel(sr_thread);
381 pthread_join(sr_thread, NULL);
384 for (l = config_devices; l; l = l->next) {
389 free(cfdev->serialcomm);
392 g_slist_free(config_devices);
397 void module_register(void)
399 plugin_register_complex_config("sigrok", sigrok_config);
400 plugin_register_init("sigrok", sigrok_init);
401 plugin_register_shutdown("sigrok", sigrok_shutdown);