]> sigrok.org Git - libsigrok.git/blame - src/device.c
Make 'struct sr_dev_inst' opaque.
[libsigrok.git] / src / device.c
CommitLineData
a1bb33af 1/*
50985c20 2 * This file is part of the libsigrok project.
a1bb33af 3 *
13d8e03c 4 * Copyright (C) 2013 Bert Vermeulen <bert@biot.com>
a1bb33af
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 3 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, see <http://www.gnu.org/licenses/>.
18 */
19
20#include <stdio.h>
21#include <glib.h>
545f9786 22#include "config.h" /* Needed for HAVE_LIBUSB_1_0 and others. */
45c59c8b
BV
23#include "libsigrok.h"
24#include "libsigrok-internal.h"
a1bb33af 25
2ad1deb8 26/** @cond PRIVATE */
3544f848 27#define LOG_PREFIX "device"
2ad1deb8 28/** @endcond */
a885ce3e 29
393fb9cb
UH
30/**
31 * @file
32 *
33 * Device handling in libsigrok.
34 */
35
7b870c38
UH
36/**
37 * @defgroup grp_devices Devices
38 *
39 * Device handling in libsigrok.
40 *
41 * @{
42 */
43
04cb9157 44/** @private
91aea754
UH
45 * Allocate and initialize new struct sr_channel
46 * @param[in] index @copydoc sr_channel::index
47 * @param[in] type @copydoc sr_channel::type
48 * @param[in] enabled @copydoc sr_channel::enabled
49 * @param[in] name @copydoc sr_channel::name
04cb9157 50 *
91aea754 51 * @return NULL (failure) or new struct sr_channel*.
04cb9157 52 */
56d0d245 53SR_PRIV struct sr_channel *sr_channel_new(int index, int type,
48a486cd
BV
54 gboolean enabled, const char *name)
55{
ba7dd8bb 56 struct sr_channel *ch;
48a486cd 57
ba7dd8bb
UH
58 if (!(ch = g_try_malloc0(sizeof(struct sr_channel)))) {
59 sr_err("Channel malloc failed.");
48a486cd
BV
60 return NULL;
61 }
62
ba7dd8bb
UH
63 ch->index = index;
64 ch->type = type;
65 ch->enabled = enabled;
48a486cd 66 if (name)
ba7dd8bb 67 ch->name = g_strdup(name);
48a486cd 68
ba7dd8bb 69 return ch;
48a486cd
BV
70}
71
94799bc4 72/**
ba7dd8bb 73 * Set the name of the specified channel in the specified device.
94799bc4 74 *
ba7dd8bb 75 * If the channel already has a different name assigned to it, it will be
94799bc4
UH
76 * removed, and the new name will be saved instead.
77 *
ba7dd8bb
UH
78 * @param sdi The device instance the channel is connected to.
79 * @param[in] channelnum The number of the channel whose name to set.
80 * Note that the channel numbers start at 0.
81 * @param[in] name The new name that the specified channel should get. A copy
37e8b4c4 82 * of the string is made.
0e3b1439 83 *
37e8b4c4 84 * @return SR_OK on success, or SR_ERR_ARG on invalid arguments.
9fb5f2df 85 *
47117241 86 * @since 0.3.0
94799bc4 87 */
f3ca73ed 88SR_API int sr_dev_channel_name_set(const struct sr_dev_inst *sdi,
ba7dd8bb 89 int channelnum, const char *name)
a1bb33af 90{
37e8b4c4 91 GSList *l;
ba7dd8bb 92 struct sr_channel *ch;
37e8b4c4 93 int ret;
a1bb33af 94
37e8b4c4
BV
95 if (!sdi) {
96 sr_err("%s: sdi was NULL", __func__);
0e3b1439 97 return SR_ERR_ARG;
94799bc4
UH
98 }
99
37e8b4c4 100 ret = SR_ERR_ARG;
ba7dd8bb
UH
101 for (l = sdi->channels; l; l = l->next) {
102 ch = l->data;
103 if (ch->index == channelnum) {
104 g_free(ch->name);
105 ch->name = g_strdup(name);
37e8b4c4
BV
106 ret = SR_OK;
107 break;
108 }
94799bc4
UH
109 }
110
37e8b4c4 111 return ret;
a1bb33af
UH
112}
113
be5bf44d 114/**
ba7dd8bb 115 * Enable or disable a channel on the specified device.
be5bf44d 116 *
ba7dd8bb
UH
117 * @param sdi The device instance the channel is connected to.
118 * @param channelnum The channel number, starting from 0.
119 * @param state TRUE to enable the channel, FALSE to disable.
be5bf44d 120 *
2a854d71 121 * @return SR_OK on success or SR_ERR on failure. In case of invalid
ba7dd8bb 122 * arguments, SR_ERR_ARG is returned and the channel enabled state
2a854d71 123 * remains unchanged.
9fb5f2df 124 *
47117241 125 * @since 0.3.0
be5bf44d 126 */
f3ca73ed 127SR_API int sr_dev_channel_enable(const struct sr_dev_inst *sdi, int channelnum,
be5bf44d
BV
128 gboolean state)
129{
130 GSList *l;
ba7dd8bb 131 struct sr_channel *ch;
be5bf44d 132 int ret;
2a854d71 133 gboolean was_enabled;
be5bf44d
BV
134
135 if (!sdi)
136 return SR_ERR_ARG;
137
138 ret = SR_ERR_ARG;
ba7dd8bb
UH
139 for (l = sdi->channels; l; l = l->next) {
140 ch = l->data;
141 if (ch->index == channelnum) {
142 was_enabled = ch->enabled;
143 ch->enabled = state;
be5bf44d 144 ret = SR_OK;
2a854d71 145 if (!state != !was_enabled && sdi->driver
f3ca73ed
UH
146 && sdi->driver->config_channel_set) {
147 ret = sdi->driver->config_channel_set(
3f239f08 148 sdi, ch, SR_CHANNEL_SET_ENABLED);
2a854d71
DE
149 /* Roll back change if it wasn't applicable. */
150 if (ret == SR_ERR_ARG)
ba7dd8bb 151 ch->enabled = was_enabled;
2a854d71 152 }
be5bf44d
BV
153 break;
154 }
155 }
156
157 return ret;
158}
159
94799bc4 160/**
9c5332d2
UH
161 * Determine whether the specified device instance has the specified
162 * capability.
94799bc4 163 *
9c5332d2 164 * @param sdi Pointer to the device instance to be checked. Must not be NULL.
8ec95d22
UH
165 * If the device's 'driver' field is NULL (virtual device), this
166 * function will always return FALSE (virtual devices don't have
167 * a hardware capabilities list).
04cb9157 168 * @param[in] key The option that should be checked for is supported by the
4d15e5c9 169 * specified device.
94799bc4 170 *
04cb9157
MH
171 * @retval TRUE Device has the specified option
172 * @retval FALSE Device does not have the specified option, invalid input
173 * parameters or other error conditions.
9fb5f2df 174 *
53f05fa8 175 * @since 0.2.0
94799bc4 176 */
4d15e5c9 177SR_API gboolean sr_dev_has_option(const struct sr_dev_inst *sdi, int key)
7d658874 178{
003595ac 179 GVariant *gvar;
4d15e5c9 180 const int *devopts;
003595ac
BV
181 gsize num_opts, i;
182 int ret;
7d658874 183
003595ac 184 if (!sdi || !sdi->driver || !sdi->driver->config_list)
8ec95d22 185 return FALSE;
94799bc4 186
8f996b89 187 if (sdi->driver->config_list(SR_CONF_DEVICE_OPTIONS,
92b68bb5 188 &gvar, sdi, NULL) != SR_OK)
8ec95d22 189 return FALSE;
94799bc4 190
003595ac
BV
191 ret = FALSE;
192 devopts = g_variant_get_fixed_array(gvar, &num_opts, sizeof(int32_t));
193 for (i = 0; i < num_opts; i++) {
d099d880 194 if ((devopts[i] & SR_CONF_MASK) == key) {
003595ac
BV
195 ret = TRUE;
196 break;
197 }
94799bc4 198 }
003595ac 199 g_variant_unref(gvar);
218557b8 200
003595ac 201 return ret;
a1bb33af 202}
fd9836bf 203
04cb9157
MH
204/** @private
205 * Allocate and init new device instance struct.
2eb84c98
UH
206 * @param[in] index @copydoc sr_dev_inst::index
207 * @param[in] status @copydoc sr_dev_inst::status
208 * @param[in] vendor @copydoc sr_dev_inst::vendor
209 * @param[in] model @copydoc sr_dev_inst::model
210 * @param[in] version @copydoc sr_dev_inst::version
04cb9157 211 *
2eb84c98
UH
212 * @retval NULL Error
213 * @retval struct sr_dev_inst *. Dynamically allocated, free using
04cb9157
MH
214 * sr_dev_inst_free().
215 */
1b9e567b 216SR_PRIV struct sr_dev_inst *sr_dev_inst_new(int status,
48a486cd
BV
217 const char *vendor, const char *model, const char *version)
218{
219 struct sr_dev_inst *sdi;
220
221 if (!(sdi = g_try_malloc(sizeof(struct sr_dev_inst)))) {
c4227fc6 222 sr_err("Device instance malloc failed.");
48a486cd
BV
223 return NULL;
224 }
225
e8d3d6c8 226 sdi->driver = NULL;
48a486cd
BV
227 sdi->status = status;
228 sdi->inst_type = -1;
229 sdi->vendor = vendor ? g_strdup(vendor) : NULL;
230 sdi->model = model ? g_strdup(model) : NULL;
231 sdi->version = version ? g_strdup(version) : NULL;
2fe6210a
SA
232 sdi->serial_num = NULL;
233 sdi->connection_id = NULL;
ba7dd8bb 234 sdi->channels = NULL;
660e398f 235 sdi->channel_groups = NULL;
0812c40e 236 sdi->session = NULL;
9e2e9864 237 sdi->conn = NULL;
48a486cd
BV
238 sdi->priv = NULL;
239
240 return sdi;
241}
242
04cb9157
MH
243/** @private
244 * Free device instance struct created by sr_dev_inst().
7aebe22d 245 * @param sdi device instance to free.
04cb9157 246 */
48a486cd
BV
247SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi)
248{
ba7dd8bb 249 struct sr_channel *ch;
b1b1944e 250 struct sr_channel_group *cg;
d3cff734
BV
251 GSList *l;
252
ba7dd8bb
UH
253 for (l = sdi->channels; l; l = l->next) {
254 ch = l->data;
255 g_free(ch->name);
379d2609 256 g_free(ch->priv);
ba7dd8bb 257 g_free(ch);
d3cff734 258 }
ba7dd8bb 259 g_slist_free(sdi->channels);
d3cff734 260
b1b1944e
BV
261 for (l = sdi->channel_groups; l; l = l->next) {
262 cg = l->data;
7aebe22d
BV
263 g_free(cg->name);
264 g_slist_free(cg->channels);
b1b1944e 265 g_free(cg->priv);
7aebe22d 266 g_free(cg);
b1b1944e
BV
267 }
268 g_slist_free(sdi->channel_groups);
90c7f4e9 269
48a486cd
BV
270 g_free(sdi->vendor);
271 g_free(sdi->model);
272 g_free(sdi->version);
2fe6210a
SA
273 g_free(sdi->serial_num);
274 g_free(sdi->connection_id);
48a486cd
BV
275 g_free(sdi);
276}
277
278#ifdef HAVE_LIBUSB_1_0
279
04cb9157
MH
280/** @private
281 * Allocate and init struct for USB device instance.
2eb84c98
UH
282 * @param[in] bus @copydoc sr_usb_dev_inst::bus
283 * @param[in] address @copydoc sr_usb_dev_inst::address
284 * @param[in] hdl @copydoc sr_usb_dev_inst::devhdl
04cb9157 285 *
2eb84c98
UH
286 * @retval NULL Error
287 * @retval other struct sr_usb_dev_inst * for USB device instance.
04cb9157 288 */
48a486cd
BV
289SR_PRIV struct sr_usb_dev_inst *sr_usb_dev_inst_new(uint8_t bus,
290 uint8_t address, struct libusb_device_handle *hdl)
291{
292 struct sr_usb_dev_inst *udi;
293
294 if (!(udi = g_try_malloc(sizeof(struct sr_usb_dev_inst)))) {
c4227fc6 295 sr_err("USB device instance malloc failed.");
48a486cd
BV
296 return NULL;
297 }
298
299 udi->bus = bus;
300 udi->address = address;
301 udi->devhdl = hdl;
302
303 return udi;
304}
305
04cb9157
MH
306/** @private
307 * Free struct * allocated by sr_usb_dev_inst().
2eb84c98 308 * @param usb struct* to free. Must not be NULL.
04cb9157 309 */
48a486cd
BV
310SR_PRIV void sr_usb_dev_inst_free(struct sr_usb_dev_inst *usb)
311{
a006798b 312 g_free(usb);
48a486cd
BV
313}
314
315#endif
316
c4f2dfd0
UH
317#ifdef HAVE_LIBSERIALPORT
318
9fb5f2df
UH
319/**
320 * @private
299bdb24
BV
321 *
322 * Both parameters are copied to newly allocated strings, and freed
323 * automatically by sr_serial_dev_inst_free().
9fb5f2df 324 *
04cb9157 325 * @param[in] port OS-specific serial port specification. Examples:
9fb5f2df 326 * "/dev/ttyUSB0", "/dev/ttyACM1", "/dev/tty.Modem-0", "COM1".
04cb9157
MH
327 * @param[in] serialcomm A serial communication parameters string, in the form
328 * of \<speed\>/\<data bits\>\<parity\>\<stopbits\>, for example
329 * "9600/8n1" or "600/7o2". This is an optional parameter;
330 * it may be filled in later.
9fb5f2df
UH
331 *
332 * @return A pointer to a newly initialized struct sr_serial_dev_inst,
333 * or NULL on error.
299bdb24 334 */
48a486cd 335SR_PRIV struct sr_serial_dev_inst *sr_serial_dev_inst_new(const char *port,
299bdb24 336 const char *serialcomm)
48a486cd
BV
337{
338 struct sr_serial_dev_inst *serial;
339
299bdb24 340 if (!port) {
c4227fc6 341 sr_err("Serial port required.");
299bdb24
BV
342 return NULL;
343 }
344
345 if (!(serial = g_try_malloc0(sizeof(struct sr_serial_dev_inst)))) {
c4227fc6 346 sr_err("Serial device instance malloc failed.");
48a486cd
BV
347 return NULL;
348 }
349
350 serial->port = g_strdup(port);
299bdb24
BV
351 if (serialcomm)
352 serial->serialcomm = g_strdup(serialcomm);
48a486cd
BV
353
354 return serial;
355}
356
04cb9157
MH
357/** @private
358 * Free struct sr_serial_dev_inst * allocated by sr_serial_dev_inst().
2eb84c98 359 * @param serial struct sr_serial_dev_inst * to free. Must not be NULL.
04cb9157 360 */
48a486cd
BV
361SR_PRIV void sr_serial_dev_inst_free(struct sr_serial_dev_inst *serial)
362{
363 g_free(serial->port);
299bdb24 364 g_free(serial->serialcomm);
acac8fc3 365 g_free(serial);
48a486cd 366}
c4f2dfd0
UH
367#endif
368
df823ac4 369/** @private */
ae67644f
ML
370SR_PRIV struct sr_usbtmc_dev_inst *sr_usbtmc_dev_inst_new(const char *device)
371{
372 struct sr_usbtmc_dev_inst *usbtmc;
373
374 if (!device) {
375 sr_err("Device name required.");
376 return NULL;
377 }
378
379 if (!(usbtmc = g_try_malloc0(sizeof(struct sr_usbtmc_dev_inst)))) {
380 sr_err("USBTMC device instance malloc failed.");
381 return NULL;
382 }
383
384 usbtmc->device = g_strdup(device);
385 usbtmc->fd = -1;
386
387 return usbtmc;
388}
389
df823ac4 390/** @private */
ae67644f
ML
391SR_PRIV void sr_usbtmc_dev_inst_free(struct sr_usbtmc_dev_inst *usbtmc)
392{
393 g_free(usbtmc->device);
394 g_free(usbtmc);
395}
396
576ff5b0
UH
397/**
398 * Get the list of devices/instances of the specified driver.
399 *
400 * @param driver The driver to use. Must not be NULL.
401 *
402 * @return The list of devices/instances of this driver, or NULL upon errors
403 * or if the list is empty.
404 *
53f05fa8 405 * @since 0.2.0
576ff5b0 406 */
f99e32af 407SR_API GSList *sr_dev_list(const struct sr_dev_driver *driver)
811deee4 408{
811deee4
BV
409 if (driver && driver->dev_list)
410 return driver->dev_list();
411 else
412 return NULL;
413}
414
576ff5b0 415/**
8102cee4 416 * Clear the list of device instances a driver knows about.
576ff5b0 417 *
8102cee4
BV
418 * @param driver The driver to use. This must be a pointer to one of
419 * the entries returned by sr_driver_list(). Must not be NULL.
576ff5b0 420 *
8102cee4
BV
421 * @retval SR_OK Success
422 * @retval SR_ERR_ARG Invalid driver
576ff5b0
UH
423 *
424 * @since 0.2.0
425 */
f99e32af 426SR_API int sr_dev_clear(const struct sr_dev_driver *driver)
811deee4 427{
8102cee4
BV
428 int ret;
429
430 if (!driver) {
431 sr_err("Invalid driver.");
432 return SR_ERR_ARG;
433 }
434
435 if (driver->dev_clear)
436 ret = driver->dev_clear();
811deee4 437 else
8102cee4
BV
438 ret = std_dev_clear(driver, NULL);
439
440 return ret;
811deee4
BV
441}
442
576ff5b0
UH
443/**
444 * Open the specified device.
445 *
446 * @param sdi Device instance to use. Must not be NULL.
447 *
448 * @return SR_OK upon success, a negative error code upon errors.
449 *
450 * @since 0.2.0
451 */
efdecf4c
BV
452SR_API int sr_dev_open(struct sr_dev_inst *sdi)
453{
454 int ret;
455
456 if (!sdi || !sdi->driver || !sdi->driver->dev_open)
457 return SR_ERR;
458
459 ret = sdi->driver->dev_open(sdi);
460
461 return ret;
462}
463
576ff5b0
UH
464/**
465 * Close the specified device.
466 *
467 * @param sdi Device instance to use. Must not be NULL.
468 *
469 * @return SR_OK upon success, a negative error code upon errors.
470 *
471 * @since 0.2.0
472 */
efdecf4c
BV
473SR_API int sr_dev_close(struct sr_dev_inst *sdi)
474{
475 int ret;
476
477 if (!sdi || !sdi->driver || !sdi->driver->dev_close)
478 return SR_ERR;
479
480 ret = sdi->driver->dev_close(sdi);
481
482 return ret;
483}
484
0157fdce
SA
485/**
486 * Queries a device instances' driver.
487 *
488 * @param sdi Device instance to use. Must not be NULL.
489 *
490 * @return The driver instance or NULL on error.
491 */
492SR_API struct sr_dev_driver *sr_dev_inst_driver_get(struct sr_dev_inst *sdi)
493{
494 if (!sdi || !sdi->driver)
495 return NULL;
496
497 return sdi->driver;
498}
499
500/**
501 * Queries a device instances' vendor.
502 *
503 * @param sdi Device instance to use. Must not be NULL.
504 *
505 * @return The vendor string or NULL.
506 */
507SR_API const char *sr_dev_inst_vendor_get(struct sr_dev_inst *sdi)
508{
509 if (!sdi)
510 return NULL;
511
512 return sdi->vendor;
513}
514
515/**
516 * Queries a device instances' model.
517 *
518 * @param sdi Device instance to use. Must not be NULL.
519 *
520 * @return The model string or NULL.
521 */
522SR_API const char *sr_dev_inst_model_get(struct sr_dev_inst *sdi)
523{
524 if (!sdi)
525 return NULL;
526
527 return sdi->model;
528}
529
530/**
531 * Queries a device instances' version.
532 *
533 * @param sdi Device instance to use. Must not be NULL.
534 *
535 * @return The version string or NULL.
536 */
537SR_API const char *sr_dev_inst_version_get(struct sr_dev_inst *sdi)
538{
539 if (!sdi)
540 return NULL;
541
542 return sdi->version;
543}
544
545/**
546 * Queries a device instances' serial number.
547 *
548 * @param sdi Device instance to use. Must not be NULL.
549 *
550 * @return The serial number string or NULL.
551 */
552SR_API const char *sr_dev_inst_sernum_get(struct sr_dev_inst *sdi)
553{
554 if (!sdi)
555 return NULL;
556
557 return sdi->serial_num;
558}
559
560/**
561 * Queries a device instances' connection identifier.
562 *
563 * @param sdi Device instance to use. Must not be NULL.
564 *
565 * @return A copy of the connection id string or NULL. The caller is responsible
566 * for g_free()ing the string when it is no longer needed.
567 */
568SR_API const char *sr_dev_inst_connid_get(struct sr_dev_inst *sdi)
569{
570 struct drv_context *drvc;
9c6a2913
SA
571 int r, cnt, i, a, b;
572 char connection_id[64];
573
574#ifdef HAVE_LIBUSB_1_0
0157fdce
SA
575 struct sr_usb_dev_inst *usb;
576 struct libusb_device **devlist;
577 struct libusb_device_descriptor des;
9c6a2913 578#endif
0157fdce
SA
579
580 if (!sdi)
581 return NULL;
582
9c6a2913 583#ifdef HAVE_LIBSERIALPORT
e8cbb223
SA
584 struct sr_serial_dev_inst *serial;
585
586 if ((!sdi->connection_id) && (sdi->inst_type == SR_INST_SERIAL)) {
587 /* connection_id isn't populated, let's do that here. */
588
589 serial = sdi->conn;
590 sdi->connection_id = g_strdup(serial->port);
591 }
9c6a2913 592#endif
e8cbb223
SA
593
594
9c6a2913 595#ifdef HAVE_LIBUSB_1_0
0157fdce
SA
596 if ((!sdi->connection_id) && (sdi->inst_type == SR_INST_USB)) {
597 /* connection_id isn't populated, let's do that here. */
598
599 drvc = sdi->driver->priv;
600 usb = sdi->conn;
601
602 if ((cnt = libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist)) < 0) {
603 sr_err("Failed to retrieve device list: %s.",
604 libusb_error_name(cnt));
605 return NULL;
606 }
607
608 for (i = 0; i < cnt; i++) {
609 if ((r = libusb_get_device_descriptor(devlist[i], &des)) < 0) {
610 sr_err("Failed to get device descriptor: %s.",
611 libusb_error_name(r));
612 continue;
613 }
614
615 /* Find the USB device by the logical address we know. */
616 b = libusb_get_bus_number(devlist[i]);
617 a = libusb_get_device_address(devlist[i]);
618 if (b != usb->bus || a != usb->address)
619 continue;
620
621 usb_get_port_path(devlist[i], connection_id, sizeof(connection_id));
622 sdi->connection_id = g_strdup(connection_id);
623 break;
624 }
625
626 libusb_free_device_list(devlist, 1);
627 }
9c6a2913 628#endif
0157fdce
SA
629
630 return sdi->connection_id;
631}
632
e437da2b
UH
633/**
634 * Queries a device instances' channel list.
635 *
636 * @param sdi Device instance to use. Must not be NULL.
637 *
638 * @return The GSList of channels or NULL.
639 */
640SR_API GSList *sr_dev_inst_channels_get(struct sr_dev_inst *sdi)
641{
642 if (!sdi)
643 return NULL;
644
645 return sdi->channels;
646}
647
648/**
649 * Queries a device instances' channel groups list.
650 *
651 * @param sdi Device instance to use. Must not be NULL.
652 *
653 * @return The GSList of channel groups or NULL.
654 */
655SR_API GSList *sr_dev_inst_channel_groups_get(struct sr_dev_inst *sdi)
656{
657 if (!sdi)
658 return NULL;
659
660 return sdi->channel_groups;
661}
662
7b870c38 663/** @} */