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