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;
56 static int sigrok_log_callback(void *cb_data __attribute__((unused)),
57 int msg_loglevel, const char *format,
61 if (msg_loglevel <= loglevel) {
62 vsnprintf(s, 512, format, args);
63 plugin_log(LOG_INFO, "sigrok plugin: %s", s);
69 static int sigrok_config_device(oconfig_item_t *ci) {
70 struct config_device *cfdev;
72 if (!(cfdev = calloc(1, sizeof(*cfdev)))) {
73 ERROR("sigrok plugin: calloc failed.");
76 if (cf_util_get_string(ci, &cfdev->name)) {
78 WARNING("sigrok plugin: Invalid device name.");
81 cfdev->min_dispatch_interval = DEFAULT_MIN_DISPATCH_INTERVAL;
83 for (int i = 0; i < ci->children_num; i++) {
84 oconfig_item_t *item = ci->children + i;
85 if (!strcasecmp(item->key, "driver"))
86 cf_util_get_string(item, &cfdev->driver);
87 else if (!strcasecmp(item->key, "conn"))
88 cf_util_get_string(item, &cfdev->conn);
89 else if (!strcasecmp(item->key, "serialcomm"))
90 cf_util_get_string(item, &cfdev->serialcomm);
91 else if (!strcasecmp(item->key, "minimuminterval"))
92 cf_util_get_cdtime(item, &cfdev->min_dispatch_interval);
94 WARNING("sigrok plugin: Invalid keyword \"%s\".", item->key);
97 config_devices = g_slist_append(config_devices, cfdev);
102 static int sigrok_config(oconfig_item_t *ci) {
103 for (int i = 0; i < ci->children_num; i++) {
104 oconfig_item_t *item = ci->children + i;
105 if (strcasecmp("LogLevel", item->key) == 0) {
109 status = cf_util_get_int(item, &tmp);
112 else if ((tmp < 0) || (tmp > 5)) {
113 ERROR("sigrok plugin: The \"LogLevel\" "
114 "configuration option expects "
115 "an integer between 0 and 5 "
116 "(inclusive); you provided %i.",
121 } else if (!strcasecmp(item->key, "Device"))
122 sigrok_config_device(item);
124 WARNING("sigrok plugin: Invalid keyword \"%s\".", item->key);
130 static const char *sigrok_value_type(const struct sr_datafeed_analog *analog) {
133 if (analog->mq == SR_MQ_VOLTAGE)
135 else if (analog->mq == SR_MQ_CURRENT)
137 else if (analog->mq == SR_MQ_FREQUENCY)
139 else if (analog->mq == SR_MQ_POWER)
141 else if (analog->mq == SR_MQ_TEMPERATURE)
143 else if (analog->mq == SR_MQ_RELATIVE_HUMIDITY)
145 else if (analog->mq == SR_MQ_SOUND_PRESSURE_LEVEL)
153 static void sigrok_feed_callback(const struct sr_dev_inst *sdi,
154 const struct sr_datafeed_packet *packet,
156 const struct sr_datafeed_analog *analog;
157 struct config_device *cfdev;
158 value_list_t vl = VALUE_LIST_INIT;
160 /* Find this device's configuration. */
162 for (GSList *l = config_devices; l; l = l->next) {
164 if (cfdev->sdi == sdi) {
172 ERROR("sigrok plugin: Received data from driver \"%s\" but "
173 "can't find a configuration / device matching "
179 if (packet->type == SR_DF_END) {
180 /* TODO: try to restart acquisition after a delay? */
181 WARNING("sigrok plugin: acquisition for \"%s\" ended.", cfdev->name);
185 if (packet->type != SR_DF_ANALOG)
188 if ((cfdev->min_dispatch_interval != 0) &&
189 ((cdtime() - cfdev->last_dispatch) < cfdev->min_dispatch_interval))
192 /* Ignore all but the first sample on the first probe. */
193 analog = packet->payload;
194 vl.values = &(value_t){.gauge = analog->data[0]};
196 sstrncpy(vl.plugin, "sigrok", sizeof(vl.plugin));
197 sstrncpy(vl.plugin_instance, cfdev->name, sizeof(vl.plugin_instance));
198 sstrncpy(vl.type, sigrok_value_type(analog), sizeof(vl.type));
200 plugin_dispatch_values(&vl);
201 cfdev->last_dispatch = cdtime();
204 static void sigrok_free_drvopts(struct sr_config *src) {
205 g_variant_unref(src->data);
209 static int sigrok_init_driver(struct config_device *cfdev,
210 struct sr_dev_driver *drv) {
211 struct sr_config *src;
212 GSList *devlist, *drvopts;
215 if (sr_driver_init(sr_ctx, drv) != SR_OK)
216 /* Error was logged by libsigrok. */
221 if (!(src = malloc(sizeof(*src))))
223 src->key = SR_CONF_CONN;
224 src->data = g_variant_new_string(cfdev->conn);
225 drvopts = g_slist_append(drvopts, src);
227 if (cfdev->serialcomm) {
228 if (!(src = malloc(sizeof(*src))))
230 src->key = SR_CONF_SERIALCOMM;
231 src->data = g_variant_new_string(cfdev->serialcomm);
232 drvopts = g_slist_append(drvopts, src);
234 devlist = sr_driver_scan(drv, drvopts);
235 g_slist_free_full(drvopts, (GDestroyNotify)sigrok_free_drvopts);
237 /* Not an error, but the user should know about it. */
238 WARNING("sigrok plugin: No device found for \"%s\".", cfdev->name);
242 if (g_slist_length(devlist) > 1) {
243 INFO("sigrok plugin: %d sigrok devices for device entry "
244 "\"%s\": must be 1.",
245 g_slist_length(devlist), cfdev->name);
248 cfdev->sdi = devlist->data;
249 g_slist_free(devlist);
250 snprintf(hwident, sizeof(hwident), "%s %s %s",
251 cfdev->sdi->vendor ? cfdev->sdi->vendor : "",
252 cfdev->sdi->model ? cfdev->sdi->model : "",
253 cfdev->sdi->version ? cfdev->sdi->version : "");
254 INFO("sigrok plugin: Device \"%s\" is a %s", cfdev->name, hwident);
256 if (sr_dev_open(cfdev->sdi) != SR_OK)
259 if (sr_session_dev_add(cfdev->sdi) != SR_OK)
265 static void *sigrok_read_thread(void *arg __attribute__((unused))) {
266 struct sr_dev_driver *drv, **drvlist;
268 struct config_device *cfdev;
271 sr_log_callback_set(sigrok_log_callback, NULL);
272 sr_log_loglevel_set(loglevel);
274 if ((ret = sr_init(&sr_ctx)) != SR_OK) {
275 ERROR("sigrok plugin: Failed to initialize libsigrok: %s.",
280 if (!sr_session_new())
284 drvlist = sr_driver_list();
285 for (l = config_devices; l; l = l->next) {
288 for (i = 0; drvlist[i]; i++) {
289 if (!strcmp(drvlist[i]->name, cfdev->driver)) {
295 ERROR("sigrok plugin: Unknown driver \"%s\".", cfdev->driver);
299 if ((ret = sigrok_init_driver(cfdev, drv)) < 0)
300 /* Error was already logged. */
306 if (num_devices > 0) {
307 /* Do this only when we're sure there's hardware to talk to. */
308 if (sr_session_datafeed_callback_add(sigrok_feed_callback, NULL) != SR_OK)
311 /* Start acquisition on all devices. */
312 if (sr_session_start() != SR_OK)
315 /* Main loop, runs forever. */
319 sr_session_dev_remove_all();
322 sr_session_destroy();
327 sr_thread_running = FALSE;
332 static int sigrok_init(void) {
335 if (sr_thread_running) {
336 ERROR("sigrok plugin: Thread already running.");
340 status = plugin_thread_create(&sr_thread, NULL, sigrok_read_thread, NULL,
343 ERROR("sigrok plugin: Failed to create thread: %s.", STRERRNO);
346 sr_thread_running = TRUE;
351 static int sigrok_shutdown(void) {
352 struct config_device *cfdev;
355 if (sr_thread_running) {
356 pthread_cancel(sr_thread);
357 pthread_join(sr_thread, NULL);
360 for (l = config_devices; l; l = l->next) {
365 free(cfdev->serialcomm);
368 g_slist_free(config_devices);
373 void module_register(void) {
374 plugin_register_complex_config("sigrok", sigrok_config);
375 plugin_register_init("sigrok", sigrok_init);
376 plugin_register_shutdown("sigrok", sigrok_shutdown);