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