]> sigrok.org Git - libsigrok.git/blame - src/device.c
demo: Get/Set new config key offset.
[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
6ec6c43b 20#include <config.h>
a1bb33af 21#include <glib.h>
712f981d
GS
22#include <stdio.h>
23#include <string.h>
c1aae900 24#include <libsigrok/libsigrok.h>
45c59c8b 25#include "libsigrok-internal.h"
a1bb33af 26
2ad1deb8 27/** @cond PRIVATE */
3544f848 28#define LOG_PREFIX "device"
2ad1deb8 29/** @endcond */
a885ce3e 30
393fb9cb
UH
31/**
32 * @file
33 *
34 * Device handling in libsigrok.
35 */
36
7b870c38
UH
37/**
38 * @defgroup grp_devices Devices
39 *
40 * Device handling in libsigrok.
41 *
42 * @{
43 */
44
2ecc745c
UH
45/**
46 * Allocate and initialize a new struct sr_channel and add it to sdi.
47 *
48 * @param[in] sdi The device instance the channel is connected to.
49 * Must not be NULL.
50 * @param[in] index @copydoc sr_channel::index
51 * @param[in] type @copydoc sr_channel::type
52 * @param[in] enabled @copydoc sr_channel::enabled
53 * @param[in] name @copydoc sr_channel::name
54 *
55 * @return A new struct sr_channel*.
56 *
57 * @private
04cb9157 58 */
5e23fcab
ML
59SR_PRIV struct sr_channel *sr_channel_new(struct sr_dev_inst *sdi,
60 int index, int type, gboolean enabled, const char *name)
48a486cd 61{
ba7dd8bb 62 struct sr_channel *ch;
48a486cd 63
c368e6f3 64 ch = g_malloc0(sizeof(struct sr_channel));
837b0866 65 ch->sdi = sdi;
ba7dd8bb
UH
66 ch->index = index;
67 ch->type = type;
68 ch->enabled = enabled;
48a486cd 69 if (name)
ba7dd8bb 70 ch->name = g_strdup(name);
48a486cd 71
5e23fcab
ML
72 sdi->channels = g_slist_append(sdi->channels, ch);
73
ba7dd8bb 74 return ch;
48a486cd
BV
75}
76
fe71c7e4
GS
77/**
78 * Release a previously allocated struct sr_channel.
79 *
80 * @param[in] ch Pointer to struct sr_channel.
81 *
82 * @private
83 */
84SR_PRIV void sr_channel_free(struct sr_channel *ch)
85{
86 if (!ch)
87 return;
88 g_free(ch->name);
89 g_free(ch->priv);
90 g_free(ch);
91}
92
93/**
94 * Wrapper around @ref sr_channel_free(), suitable for glib iterators.
95 */
96SR_PRIV void sr_channel_free_cb(void *p)
97{
98 sr_channel_free(p);
99}
100
94799bc4 101/**
6f1346fb 102 * Set the name of the specified channel.
94799bc4 103 *
ba7dd8bb 104 * If the channel already has a different name assigned to it, it will be
94799bc4
UH
105 * removed, and the new name will be saved instead.
106 *
2ecc745c
UH
107 * @param[in] channel The channel whose name to set. Must not be NULL.
108 * @param[in] name The new name that the specified channel should get.
109 * A copy of the string is made.
0e3b1439 110 *
37e8b4c4 111 * @return SR_OK on success, or SR_ERR_ARG on invalid arguments.
9fb5f2df 112 *
47117241 113 * @since 0.3.0
94799bc4 114 */
6f1346fb
ML
115SR_API int sr_dev_channel_name_set(struct sr_channel *channel,
116 const char *name)
a1bb33af 117{
2ecc745c 118 if (!channel)
0e3b1439 119 return SR_ERR_ARG;
94799bc4 120
6f1346fb
ML
121 g_free(channel->name);
122 channel->name = g_strdup(name);
2ecc745c 123
6f1346fb 124 return SR_OK;
a1bb33af
UH
125}
126
be5bf44d 127/**
6f1346fb 128 * Enable or disable a channel.
be5bf44d 129 *
2ecc745c
UH
130 * @param[in] channel The channel to enable or disable. Must not be NULL.
131 * @param[in] state TRUE to enable the channel, FALSE to disable.
be5bf44d 132 *
2ecc745c 133 * @return SR_OK on success or SR_ERR on failure. In case of invalid
ba7dd8bb 134 * arguments, SR_ERR_ARG is returned and the channel enabled state
2a854d71 135 * remains unchanged.
9fb5f2df 136 *
47117241 137 * @since 0.3.0
be5bf44d 138 */
2ecc745c 139SR_API int sr_dev_channel_enable(struct sr_channel *channel, gboolean state)
be5bf44d 140{
be5bf44d 141 int ret;
2a854d71 142 gboolean was_enabled;
6f1346fb 143 struct sr_dev_inst *sdi;
be5bf44d 144
6f1346fb 145 if (!channel)
be5bf44d
BV
146 return SR_ERR_ARG;
147
6f1346fb
ML
148 sdi = channel->sdi;
149 was_enabled = channel->enabled;
150 channel->enabled = state;
151 if (!state != !was_enabled && sdi->driver
152 && sdi->driver->config_channel_set) {
153 ret = sdi->driver->config_channel_set(
154 sdi, channel, SR_CHANNEL_SET_ENABLED);
155 /* Roll back change if it wasn't applicable. */
156 if (ret != SR_OK)
157 return ret;
be5bf44d
BV
158 }
159
6f1346fb 160 return SR_OK;
be5bf44d
BV
161}
162
17a82e83
FS
163/**
164 * Returns the next enabled channel, wrapping around if necessary.
165 *
166 * @param[in] sdi The device instance the channel is connected to.
167 * Must not be NULL.
168 * @param[in] cur_channel The current channel.
169 *
170 * @return A pointer to the next enabled channel of this device.
171 *
172 * @private
173 */
9c24d16a
BV
174SR_PRIV struct sr_channel *sr_next_enabled_channel(const struct sr_dev_inst *sdi,
175 struct sr_channel *cur_channel)
176{
177 struct sr_channel *next_channel;
178 GSList *l;
179
180 next_channel = cur_channel;
181 do {
182 l = g_slist_find(sdi->channels, next_channel);
183 if (l && l->next)
184 next_channel = l->next->data;
185 else
186 next_channel = sdi->channels->data;
187 } while (!next_channel->enabled);
188
189 return next_channel;
190}
191
712f981d
GS
192/**
193 * Compare two channels, return whether they differ.
194 *
195 * The channels' names and types are checked. The enabled state is not
196 * considered a condition for difference. The test is motivated by the
197 * desire to detect changes in the configuration of acquisition setups
198 * between re-reads of an input file.
199 *
200 * @param[in] ch1 First channel.
201 * @param[in] ch2 Second channel.
202 *
203 * @return #TRUE upon differences or unexpected input, #FALSE otherwise.
204 *
205 * @internal
206 */
207SR_PRIV gboolean sr_channels_differ(struct sr_channel *ch1, struct sr_channel *ch2)
208{
209 if (!ch1 || !ch2)
210 return TRUE;
211
212 if (ch1->type != ch2->type)
213 return TRUE;
214 if (strcmp(ch1->name, ch2->name))
215 return TRUE;
216
217 return FALSE;
218}
219
220/**
221 * Compare two channel lists, return whether they differ.
222 *
223 * Listing the same set of channels but in a different order is considered
224 * a difference in the lists.
225 *
226 * @param[in] l1 First channel list.
227 * @param[in] l2 Second channel list.
228 *
229 * @return #TRUE upon differences or unexpected input, #FALSE otherwise.
230 *
231 * @internal
232 */
233SR_PRIV gboolean sr_channel_lists_differ(GSList *l1, GSList *l2)
234{
235 struct sr_channel *ch1, *ch2;
236
237 while (l1 && l2) {
238 ch1 = l1->data;
239 ch2 = l2->data;
240 l1 = l1->next;
241 l2 = l2->next;
242 if (!ch1 || !ch2)
243 return TRUE;
244 if (sr_channels_differ(ch1, ch2))
245 return TRUE;
246 if (ch1->index != ch2->index)
247 return TRUE;
248 }
249 if (l1 || l2)
250 return TRUE;
251
252 return FALSE;
253}
254
94799bc4 255/**
9c5332d2
UH
256 * Determine whether the specified device instance has the specified
257 * capability.
94799bc4 258 *
9c5332d2 259 * @param sdi Pointer to the device instance to be checked. Must not be NULL.
8ec95d22
UH
260 * If the device's 'driver' field is NULL (virtual device), this
261 * function will always return FALSE (virtual devices don't have
262 * a hardware capabilities list).
04cb9157 263 * @param[in] key The option that should be checked for is supported by the
4d15e5c9 264 * specified device.
94799bc4 265 *
2ecc745c 266 * @retval TRUE Device has the specified option.
04cb9157
MH
267 * @retval FALSE Device does not have the specified option, invalid input
268 * parameters or other error conditions.
9fb5f2df 269 *
53f05fa8 270 * @since 0.2.0
94799bc4 271 */
4d15e5c9 272SR_API gboolean sr_dev_has_option(const struct sr_dev_inst *sdi, int key)
7d658874 273{
003595ac 274 GVariant *gvar;
4d15e5c9 275 const int *devopts;
003595ac
BV
276 gsize num_opts, i;
277 int ret;
7d658874 278
003595ac 279 if (!sdi || !sdi->driver || !sdi->driver->config_list)
8ec95d22 280 return FALSE;
94799bc4 281
8f996b89 282 if (sdi->driver->config_list(SR_CONF_DEVICE_OPTIONS,
92b68bb5 283 &gvar, sdi, NULL) != SR_OK)
8ec95d22 284 return FALSE;
94799bc4 285
003595ac
BV
286 ret = FALSE;
287 devopts = g_variant_get_fixed_array(gvar, &num_opts, sizeof(int32_t));
288 for (i = 0; i < num_opts; i++) {
d099d880 289 if ((devopts[i] & SR_CONF_MASK) == key) {
003595ac
BV
290 ret = TRUE;
291 break;
292 }
94799bc4 293 }
003595ac 294 g_variant_unref(gvar);
218557b8 295
003595ac 296 return ret;
a1bb33af 297}
fd9836bf 298
e7136c62
ML
299/**
300 * Enumerate the configuration options of the specified item.
301 *
302 * @param driver Pointer to the driver to be checked. Must not be NULL.
303 * @param sdi Pointer to the device instance to be checked. May be NULL to
304 * check driver options.
2ecc745c
UH
305 * @param cg Pointer to a channel group, if a specific channel group is to
306 * be checked. Must be NULL to check device-wide options.
307 *
e7136c62
ML
308 * @return A GArray * of enum sr_configkey values, or NULL on invalid
309 * arguments. The array must be freed by the caller using
310 * g_array_free().
311 *
312 * @since 0.4.0
313 */
2ecc745c
UH
314SR_API GArray *sr_dev_options(const struct sr_dev_driver *driver,
315 const struct sr_dev_inst *sdi, const struct sr_channel_group *cg)
e7136c62
ML
316{
317 GVariant *gvar;
318 const uint32_t *opts;
319 uint32_t opt;
320 gsize num_opts, i;
321 GArray *result;
322
323 if (!driver || !driver->config_list)
324 return NULL;
325
326 if (sdi && sdi->driver != driver)
327 return NULL;
328
329 if (driver->config_list(SR_CONF_DEVICE_OPTIONS, &gvar, sdi, cg) != SR_OK)
330 return NULL;
331
332 opts = g_variant_get_fixed_array(gvar, &num_opts, sizeof(uint32_t));
333
334 result = g_array_sized_new(FALSE, FALSE, sizeof(uint32_t), num_opts);
335
336 for (i = 0; i < num_opts; i++) {
337 opt = opts[i] & SR_CONF_MASK;
338 g_array_insert_val(result, i, opt);
339 }
340
341 g_variant_unref(gvar);
342
343 return result;
344}
345
71e9c54d
ML
346/**
347 * Enumerate the configuration capabilities supported by a device instance
348 * for a given configuration key.
349 *
350 * @param sdi Pointer to the device instance to be checked. Must not be NULL.
351 * If the device's 'driver' field is NULL (virtual device), this
352 * function will always return FALSE (virtual devices don't have
353 * a hardware capabilities list).
2ecc745c
UH
354 * @param cg Pointer to a channel group, if a specific channel group is to
355 * be checked. Must be NULL to check device-wide options.
71e9c54d
ML
356 * @param[in] key The option that should be checked for is supported by the
357 * specified device.
358 *
359 * @retval A bitmask of enum sr_configcap values, which will be zero for
360 * invalid inputs or if the key is unsupported.
361 *
362 * @since 0.4.0
363 */
0c697a4b 364SR_API int sr_dev_config_capabilities_list(const struct sr_dev_inst *sdi,
71e9c54d
ML
365 const struct sr_channel_group *cg, const int key)
366{
367 GVariant *gvar;
368 const int *devopts;
369 gsize num_opts, i;
370 int ret;
371
372 if (!sdi || !sdi->driver || !sdi->driver->config_list)
373 return 0;
374
375 if (sdi->driver->config_list(SR_CONF_DEVICE_OPTIONS,
376 &gvar, sdi, cg) != SR_OK)
377 return 0;
378
379 ret = 0;
380 devopts = g_variant_get_fixed_array(gvar, &num_opts, sizeof(int32_t));
381 for (i = 0; i < num_opts; i++) {
382 if ((devopts[i] & SR_CONF_MASK) == key) {
383 ret = devopts[i] & ~SR_CONF_MASK;
384 break;
385 }
386 }
387 g_variant_unref(gvar);
388
389 return ret;
390}
391
e705ce3b
UH
392/**
393 * Allocate and init a new user-generated device instance.
aac29cc1 394 *
2ecc745c
UH
395 * @param vendor Device vendor.
396 * @param model Device model.
397 * @param version Device version.
aac29cc1
UH
398 *
399 * @retval struct sr_dev_inst *. Dynamically allocated, free using
400 * sr_dev_inst_free().
e705ce3b
UH
401 */
402SR_API struct sr_dev_inst *sr_dev_inst_user_new(const char *vendor,
403 const char *model, const char *version)
404{
405 struct sr_dev_inst *sdi;
406
aac29cc1
UH
407 sdi = g_malloc0(sizeof(struct sr_dev_inst));
408
0af636be
UH
409 sdi->vendor = g_strdup(vendor);
410 sdi->model = g_strdup(model);
411 sdi->version = g_strdup(version);
e705ce3b
UH
412 sdi->inst_type = SR_INST_USER;
413
414 return sdi;
415}
416
417/**
418 * Add a new channel to the specified device instance.
2ecc745c
UH
419 *
420 * @param[in] index @copydoc sr_channel::index
421 * @param[in] type @copydoc sr_channel::type
422 * @param[in] name @copydoc sr_channel::name
423 *
424 * @return SR_OK Success.
425 * @return SR_OK Invalid argument.
e705ce3b
UH
426 */
427SR_API int sr_dev_inst_channel_add(struct sr_dev_inst *sdi, int index, int type, const char *name)
428{
e705ce3b
UH
429 if (!sdi || sdi->inst_type != SR_INST_USER || index < 0)
430 return SR_ERR_ARG;
431
5e23fcab 432 sr_channel_new(sdi, index, type, TRUE, name);
e705ce3b
UH
433
434 return SR_OK;
435}
436
2ecc745c
UH
437/**
438 * Free device instance struct created by sr_dev_inst().
439 *
4bf93988 440 * @param sdi Device instance to free. If NULL, the function will do nothing.
2ecc745c
UH
441 *
442 * @private
04cb9157 443 */
48a486cd
BV
444SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi)
445{
ba7dd8bb 446 struct sr_channel *ch;
b1b1944e 447 struct sr_channel_group *cg;
d3cff734
BV
448 GSList *l;
449
4bf93988
UH
450 if (!sdi)
451 return;
452
ba7dd8bb
UH
453 for (l = sdi->channels; l; l = l->next) {
454 ch = l->data;
fe71c7e4 455 sr_channel_free(ch);
d3cff734 456 }
ba7dd8bb 457 g_slist_free(sdi->channels);
d3cff734 458
b1b1944e
BV
459 for (l = sdi->channel_groups; l; l = l->next) {
460 cg = l->data;
7aebe22d
BV
461 g_free(cg->name);
462 g_slist_free(cg->channels);
b1b1944e 463 g_free(cg->priv);
7aebe22d 464 g_free(cg);
b1b1944e
BV
465 }
466 g_slist_free(sdi->channel_groups);
90c7f4e9 467
fe7b8efc
SB
468 if (sdi->session)
469 sr_session_dev_remove(sdi->session, sdi);
470
48a486cd
BV
471 g_free(sdi->vendor);
472 g_free(sdi->model);
473 g_free(sdi->version);
2fe6210a
SA
474 g_free(sdi->serial_num);
475 g_free(sdi->connection_id);
48a486cd
BV
476 g_free(sdi);
477}
478
479#ifdef HAVE_LIBUSB_1_0
480
2ecc745c
UH
481/**
482 * Allocate and init a struct for a USB device instance.
483 *
484 * @param[in] bus @copydoc sr_usb_dev_inst::bus
485 * @param[in] address @copydoc sr_usb_dev_inst::address
486 * @param[in] hdl @copydoc sr_usb_dev_inst::devhdl
04cb9157 487 *
2ecc745c
UH
488 * @return The struct sr_usb_dev_inst * for USB device instance.
489 *
490 * @private
04cb9157 491 */
48a486cd
BV
492SR_PRIV struct sr_usb_dev_inst *sr_usb_dev_inst_new(uint8_t bus,
493 uint8_t address, struct libusb_device_handle *hdl)
494{
495 struct sr_usb_dev_inst *udi;
496
91219afc 497 udi = g_malloc0(sizeof(struct sr_usb_dev_inst));
48a486cd
BV
498 udi->bus = bus;
499 udi->address = address;
500 udi->devhdl = hdl;
501
502 return udi;
503}
504
2ecc745c
UH
505/**
506 * Free struct sr_usb_dev_inst * allocated by sr_usb_dev_inst().
507 *
5801ce78
UH
508 * @param usb The struct sr_usb_dev_inst * to free. If NULL, this
509 * function does nothing.
2ecc745c
UH
510 *
511 * @private
04cb9157 512 */
48a486cd
BV
513SR_PRIV void sr_usb_dev_inst_free(struct sr_usb_dev_inst *usb)
514{
a006798b 515 g_free(usb);
48a486cd
BV
516}
517
518#endif
519
c4f2dfd0
UH
520#ifdef HAVE_LIBSERIALPORT
521
9fb5f2df 522/**
2ecc745c 523 * Allocate and init a struct for a serial device instance.
299bdb24
BV
524 *
525 * Both parameters are copied to newly allocated strings, and freed
526 * automatically by sr_serial_dev_inst_free().
9fb5f2df 527 *
04cb9157 528 * @param[in] port OS-specific serial port specification. Examples:
9fb5f2df 529 * "/dev/ttyUSB0", "/dev/ttyACM1", "/dev/tty.Modem-0", "COM1".
91219afc 530 * Must not be NULL.
04cb9157
MH
531 * @param[in] serialcomm A serial communication parameters string, in the form
532 * of \<speed\>/\<data bits\>\<parity\>\<stopbits\>, for example
533 * "9600/8n1" or "600/7o2". This is an optional parameter;
91219afc 534 * it may be filled in later. Can be NULL.
9fb5f2df
UH
535 *
536 * @return A pointer to a newly initialized struct sr_serial_dev_inst,
537 * or NULL on error.
2ecc745c
UH
538 *
539 * @private
299bdb24 540 */
48a486cd 541SR_PRIV struct sr_serial_dev_inst *sr_serial_dev_inst_new(const char *port,
299bdb24 542 const char *serialcomm)
48a486cd
BV
543{
544 struct sr_serial_dev_inst *serial;
545
91219afc 546 serial = g_malloc0(sizeof(struct sr_serial_dev_inst));
48a486cd 547 serial->port = g_strdup(port);
299bdb24
BV
548 if (serialcomm)
549 serial->serialcomm = g_strdup(serialcomm);
48a486cd
BV
550
551 return serial;
552}
553
2ecc745c
UH
554/**
555 * Free struct sr_serial_dev_inst * allocated by sr_serial_dev_inst().
556 *
04891a99
UH
557 * @param serial The struct sr_serial_dev_inst * to free. If NULL, this
558 * function will do nothing.
2ecc745c
UH
559 *
560 * @private
04cb9157 561 */
48a486cd
BV
562SR_PRIV void sr_serial_dev_inst_free(struct sr_serial_dev_inst *serial)
563{
04891a99
UH
564 if (!serial)
565 return;
566
48a486cd 567 g_free(serial->port);
299bdb24 568 g_free(serial->serialcomm);
acac8fc3 569 g_free(serial);
48a486cd 570}
c4f2dfd0
UH
571#endif
572
df823ac4 573/** @private */
ae67644f
ML
574SR_PRIV struct sr_usbtmc_dev_inst *sr_usbtmc_dev_inst_new(const char *device)
575{
576 struct sr_usbtmc_dev_inst *usbtmc;
577
91219afc 578 usbtmc = g_malloc0(sizeof(struct sr_usbtmc_dev_inst));
ae67644f
ML
579 usbtmc->device = g_strdup(device);
580 usbtmc->fd = -1;
581
582 return usbtmc;
583}
584
df823ac4 585/** @private */
ae67644f
ML
586SR_PRIV void sr_usbtmc_dev_inst_free(struct sr_usbtmc_dev_inst *usbtmc)
587{
ce375f2a
UH
588 if (!usbtmc)
589 return;
590
ae67644f
ML
591 g_free(usbtmc->device);
592 g_free(usbtmc);
593}
594
576ff5b0
UH
595/**
596 * Get the list of devices/instances of the specified driver.
597 *
598 * @param driver The driver to use. Must not be NULL.
599 *
600 * @return The list of devices/instances of this driver, or NULL upon errors
601 * or if the list is empty.
602 *
53f05fa8 603 * @since 0.2.0
576ff5b0 604 */
f99e32af 605SR_API GSList *sr_dev_list(const struct sr_dev_driver *driver)
811deee4 606{
811deee4 607 if (driver && driver->dev_list)
4f840ce9 608 return driver->dev_list(driver);
811deee4
BV
609 else
610 return NULL;
611}
612
576ff5b0 613/**
8102cee4 614 * Clear the list of device instances a driver knows about.
576ff5b0 615 *
8102cee4
BV
616 * @param driver The driver to use. This must be a pointer to one of
617 * the entries returned by sr_driver_list(). Must not be NULL.
576ff5b0 618 *
2ecc745c
UH
619 * @retval SR_OK Success.
620 * @retval SR_ERR_ARG Invalid driver.
576ff5b0
UH
621 *
622 * @since 0.2.0
623 */
f99e32af 624SR_API int sr_dev_clear(const struct sr_dev_driver *driver)
811deee4 625{
8102cee4
BV
626 if (!driver) {
627 sr_err("Invalid driver.");
628 return SR_ERR_ARG;
629 }
630
12852b03
UH
631 if (!driver->context) {
632 /*
633 * Driver was never initialized, nothing to do.
634 *
635 * No log message since this usually gets called for all
636 * drivers, whether they were initialized or not.
637 */
638 return SR_OK;
639 }
640
91057d2f
UH
641 /* No log message here, too verbose and not very useful. */
642
f778bf02 643 return driver->dev_clear(driver);
811deee4
BV
644}
645
576ff5b0 646/**
7e463623
UH
647 * Open the specified device instance.
648 *
649 * If the device instance is already open (sdi->status == SR_ST_ACTIVE),
650 * SR_ERR will be returned and no re-opening of the device will be attempted.
651 *
652 * If opening was successful, sdi->status is set to SR_ST_ACTIVE, otherwise
653 * it will be left unchanged.
576ff5b0
UH
654 *
655 * @param sdi Device instance to use. Must not be NULL.
656 *
7e463623
UH
657 * @retval SR_OK Success.
658 * @retval SR_ERR_ARG Invalid arguments.
659 * @retval SR_ERR Device instance was already active, or other error.
576ff5b0
UH
660 *
661 * @since 0.2.0
662 */
efdecf4c
BV
663SR_API int sr_dev_open(struct sr_dev_inst *sdi)
664{
665 int ret;
666
667 if (!sdi || !sdi->driver || !sdi->driver->dev_open)
7e463623 668 return SR_ERR_ARG;
efdecf4c 669
6402c379
UH
670 if (sdi->status == SR_ST_ACTIVE) {
671 sr_err("%s: Device instance already active, can't re-open.",
672 sdi->driver->name);
673 return SR_ERR;
674 }
675
7e463623 676 sr_dbg("%s: Opening device instance.", sdi->driver->name);
6402c379 677
efdecf4c
BV
678 ret = sdi->driver->dev_open(sdi);
679
7e463623
UH
680 if (ret == SR_OK)
681 sdi->status = SR_ST_ACTIVE;
682
efdecf4c
BV
683 return ret;
684}
685
576ff5b0 686/**
f1ba6b4b
UH
687 * Close the specified device instance.
688 *
689 * If the device instance is not open (sdi->status != SR_ST_ACTIVE),
690 * SR_ERR_DEV_CLOSED will be returned and no closing will be attempted.
691 *
692 * Note: sdi->status will be set to SR_ST_INACTIVE, regardless of whether
693 * there are any errors during closing of the device instance (any errors
694 * will be reported via error code and log message, though).
576ff5b0
UH
695 *
696 * @param sdi Device instance to use. Must not be NULL.
697 *
f1ba6b4b
UH
698 * @retval SR_OK Success.
699 * @retval SR_ERR_ARG Invalid arguments.
700 * @retval SR_ERR_DEV_CLOSED Device instance was not active.
701 * @retval SR_ERR Other error.
576ff5b0
UH
702 *
703 * @since 0.2.0
704 */
efdecf4c
BV
705SR_API int sr_dev_close(struct sr_dev_inst *sdi)
706{
efdecf4c 707 if (!sdi || !sdi->driver || !sdi->driver->dev_close)
f1ba6b4b 708 return SR_ERR_ARG;
efdecf4c 709
093e1cba
UH
710 if (sdi->status != SR_ST_ACTIVE) {
711 sr_err("%s: Device instance not active, can't close.",
712 sdi->driver->name);
713 return SR_ERR_DEV_CLOSED;
714 }
715
f1ba6b4b
UH
716 sdi->status = SR_ST_INACTIVE;
717
718 sr_dbg("%s: Closing device instance.", sdi->driver->name);
093e1cba 719
56c8dd82 720 return sdi->driver->dev_close(sdi);
efdecf4c
BV
721}
722
0157fdce
SA
723/**
724 * Queries a device instances' driver.
725 *
726 * @param sdi Device instance to use. Must not be NULL.
727 *
728 * @return The driver instance or NULL on error.
729 */
2f5f9705 730SR_API struct sr_dev_driver *sr_dev_inst_driver_get(const struct sr_dev_inst *sdi)
0157fdce
SA
731{
732 if (!sdi || !sdi->driver)
733 return NULL;
734
735 return sdi->driver;
736}
737
738/**
739 * Queries a device instances' vendor.
740 *
741 * @param sdi Device instance to use. Must not be NULL.
742 *
743 * @return The vendor string or NULL.
744 */
2f5f9705 745SR_API const char *sr_dev_inst_vendor_get(const struct sr_dev_inst *sdi)
0157fdce
SA
746{
747 if (!sdi)
748 return NULL;
749
750 return sdi->vendor;
751}
752
753/**
754 * Queries a device instances' model.
755 *
756 * @param sdi Device instance to use. Must not be NULL.
757 *
758 * @return The model string or NULL.
759 */
2f5f9705 760SR_API const char *sr_dev_inst_model_get(const struct sr_dev_inst *sdi)
0157fdce
SA
761{
762 if (!sdi)
763 return NULL;
764
765 return sdi->model;
766}
767
768/**
769 * Queries a device instances' version.
770 *
771 * @param sdi Device instance to use. Must not be NULL.
772 *
773 * @return The version string or NULL.
774 */
2f5f9705 775SR_API const char *sr_dev_inst_version_get(const struct sr_dev_inst *sdi)
0157fdce
SA
776{
777 if (!sdi)
778 return NULL;
779
780 return sdi->version;
781}
782
783/**
784 * Queries a device instances' serial number.
785 *
786 * @param sdi Device instance to use. Must not be NULL.
787 *
788 * @return The serial number string or NULL.
789 */
2f5f9705 790SR_API const char *sr_dev_inst_sernum_get(const struct sr_dev_inst *sdi)
0157fdce
SA
791{
792 if (!sdi)
793 return NULL;
794
795 return sdi->serial_num;
796}
797
798/**
799 * Queries a device instances' connection identifier.
800 *
801 * @param sdi Device instance to use. Must not be NULL.
802 *
2ecc745c 803 * @return A copy of the connection ID string or NULL. The caller is responsible
0157fdce
SA
804 * for g_free()ing the string when it is no longer needed.
805 */
2f5f9705 806SR_API const char *sr_dev_inst_connid_get(const struct sr_dev_inst *sdi)
0157fdce 807{
468665df 808#ifdef HAVE_LIBUSB_1_0
0157fdce 809 struct drv_context *drvc;
8de8551b 810 int cnt, i, a, b;
9c6a2913 811 char connection_id[64];
0157fdce
SA
812 struct sr_usb_dev_inst *usb;
813 struct libusb_device **devlist;
9c6a2913 814#endif
0157fdce
SA
815
816 if (!sdi)
817 return NULL;
818
9c6a2913 819#ifdef HAVE_LIBSERIALPORT
e8cbb223
SA
820 struct sr_serial_dev_inst *serial;
821
822 if ((!sdi->connection_id) && (sdi->inst_type == SR_INST_SERIAL)) {
823 /* connection_id isn't populated, let's do that here. */
824
825 serial = sdi->conn;
2f5f9705 826 ((struct sr_dev_inst *)sdi)->connection_id = g_strdup(serial->port);
e8cbb223 827 }
9c6a2913 828#endif
e8cbb223 829
9c6a2913 830#ifdef HAVE_LIBUSB_1_0
0157fdce
SA
831 if ((!sdi->connection_id) && (sdi->inst_type == SR_INST_USB)) {
832 /* connection_id isn't populated, let's do that here. */
833
41812aca 834 drvc = sdi->driver->context;
0157fdce
SA
835 usb = sdi->conn;
836
837 if ((cnt = libusb_get_device_list(drvc->sr_ctx->libusb_ctx, &devlist)) < 0) {
838 sr_err("Failed to retrieve device list: %s.",
839 libusb_error_name(cnt));
840 return NULL;
841 }
842
843 for (i = 0; i < cnt; i++) {
0157fdce
SA
844 /* Find the USB device by the logical address we know. */
845 b = libusb_get_bus_number(devlist[i]);
846 a = libusb_get_device_address(devlist[i]);
847 if (b != usb->bus || a != usb->address)
848 continue;
849
6c1a76d1
RT
850 if (usb_get_port_path(devlist[i], connection_id, sizeof(connection_id)) < 0)
851 continue;
852
2f5f9705 853 ((struct sr_dev_inst *)sdi)->connection_id = g_strdup(connection_id);
0157fdce
SA
854 break;
855 }
856
857 libusb_free_device_list(devlist, 1);
858 }
9c6a2913 859#endif
0157fdce
SA
860
861 return sdi->connection_id;
862}
863
e437da2b
UH
864/**
865 * Queries a device instances' channel list.
866 *
867 * @param sdi Device instance to use. Must not be NULL.
868 *
869 * @return The GSList of channels or NULL.
870 */
2f5f9705 871SR_API GSList *sr_dev_inst_channels_get(const struct sr_dev_inst *sdi)
e437da2b
UH
872{
873 if (!sdi)
874 return NULL;
875
876 return sdi->channels;
877}
878
879/**
880 * Queries a device instances' channel groups list.
881 *
882 * @param sdi Device instance to use. Must not be NULL.
883 *
884 * @return The GSList of channel groups or NULL.
885 */
2f5f9705 886SR_API GSList *sr_dev_inst_channel_groups_get(const struct sr_dev_inst *sdi)
e437da2b
UH
887{
888 if (!sdi)
889 return NULL;
890
891 return sdi->channel_groups;
892}
893
7b870c38 894/** @} */