]> sigrok.org Git - sigrok-cli.git/blame - device.c
Clean up session file loading.
[sigrok-cli.git] / device.c
CommitLineData
2be182e6
BV
1/*
2 * This file is part of the sigrok-cli 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
20fb52e0 20#include "sigrok-cli.h"
2be182e6
BV
21#include "config.h"
22#include <glib.h>
55de58a2 23#include <string.h>
2be182e6
BV
24
25extern struct sr_context *sr_ctx;
2be182e6
BV
26
27/* Convert driver options hash to GSList of struct sr_config. */
28static GSList *hash_to_hwopt(GHashTable *hash)
29{
2be182e6
BV
30 struct sr_config *src;
31 GList *gl, *keys;
32 GSList *opts;
ad54a1a6 33 char *key;
2be182e6
BV
34
35 keys = g_hash_table_get_keys(hash);
36 opts = NULL;
37 for (gl = keys; gl; gl = gl->next) {
38 key = gl->data;
ad54a1a6
BV
39 src = g_malloc(sizeof(struct sr_config));
40 if (opt_to_gvar(key, g_hash_table_lookup(hash, key), src) != 0)
2be182e6 41 return NULL;
2be182e6
BV
42 opts = g_slist_append(opts, src);
43 }
44 g_list_free(keys);
45
46 return opts;
47}
48
49static void free_drvopts(struct sr_config *src)
50{
51 g_variant_unref(src->data);
52 g_free(src);
53}
54
55GSList *device_scan(void)
56{
57 struct sr_dev_driver **drivers, *driver;
58 GHashTable *drvargs;
59 GSList *drvopts, *devices, *tmpdevs, *l;
60 int i;
61 char *drvname;
62
63 if (opt_drv) {
64 drvargs = parse_generic_arg(opt_drv, TRUE);
65 drvname = g_strdup(g_hash_table_lookup(drvargs, "sigrok_key"));
66 g_hash_table_remove(drvargs, "sigrok_key");
67 driver = NULL;
68 drivers = sr_driver_list();
69 for (i = 0; drivers[i]; i++) {
70 if (strcmp(drivers[i]->name, drvname))
71 continue;
72 driver = drivers[i];
73 }
74 if (!driver) {
75 g_critical("Driver %s not found.", drvname);
76 g_hash_table_destroy(drvargs);
77 g_free(drvname);
78 return NULL;
79 }
80 g_free(drvname);
81 if (sr_driver_init(sr_ctx, driver) != SR_OK) {
82 g_critical("Failed to initialize driver.");
83 g_hash_table_destroy(drvargs);
84 return NULL;
85 }
86 drvopts = NULL;
87 if (g_hash_table_size(drvargs) > 0) {
88 if (!(drvopts = hash_to_hwopt(drvargs))) {
89 /* Unknown options, already logged. */
90 g_hash_table_destroy(drvargs);
91 return NULL;
92 }
93 }
94 g_hash_table_destroy(drvargs);
95 devices = sr_driver_scan(driver, drvopts);
96 g_slist_free_full(drvopts, (GDestroyNotify)free_drvopts);
97 } else {
98 /* No driver specified, let them all scan on their own. */
99 devices = NULL;
100 drivers = sr_driver_list();
101 for (i = 0; drivers[i]; i++) {
102 driver = drivers[i];
103 if (sr_driver_init(sr_ctx, driver) != SR_OK) {
104 g_critical("Failed to initialize driver.");
105 return NULL;
106 }
107 tmpdevs = sr_driver_scan(driver, NULL);
108 for (l = tmpdevs; l; l = l->next)
109 devices = g_slist_append(devices, l->data);
110 g_slist_free(tmpdevs);
111 }
112 }
113
114 return devices;
115}
116
ca50f4b3 117struct sr_channel_group *select_channel_group(struct sr_dev_inst *sdi)
2be182e6 118{
ca50f4b3 119 struct sr_channel_group *cg;
2be182e6
BV
120 GSList *l;
121
ca50f4b3 122 if (!opt_channel_group)
2be182e6
BV
123 return NULL;
124
ca50f4b3
UH
125 if (!sdi->channel_groups) {
126 g_critical("This device does not have any channel groups.");
2be182e6
BV
127 return NULL;
128 }
129
ca50f4b3
UH
130 for (l = sdi->channel_groups; l; l = l->next) {
131 cg = l->data;
132 if (!strcasecmp(opt_channel_group, cg->name)) {
133 return cg;
2be182e6
BV
134 }
135 }
ac1e997d 136 g_critical("Invalid channel group '%s'", opt_channel_group);
2be182e6
BV
137
138 return NULL;
139}
140