]> sigrok.org Git - libsigrok.git/blob - device.c
Doxygen: Fix a bunch of warnings and outdated docs.
[libsigrok.git] / device.c
1 /*
2  * This file is part of the sigrok project.
3  *
4  * Copyright (C) 2010-2012 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 "libsigrok.h"
23 #include "libsigrok-internal.h"
24
25 /**
26  * @defgroup grp_devices Devices
27  *
28  * Device handling in libsigrok.
29  *
30  * @{
31  */
32
33 /** @private */
34 SR_PRIV struct sr_probe *sr_probe_new(int index, int type,
35                 gboolean enabled, const char *name)
36 {
37         struct sr_probe *probe;
38
39         if (!(probe = g_try_malloc0(sizeof(struct sr_probe)))) {
40                 sr_err("hwdriver: probe malloc failed");
41                 return NULL;
42         }
43
44         probe->index = index;
45         probe->type = type;
46         probe->enabled = enabled;
47         if (name)
48                 probe->name = g_strdup(name);
49
50         return probe;
51 }
52
53 /**
54  * Set the name of the specified probe in the specified device.
55  *
56  * If the probe already has a different name assigned to it, it will be
57  * removed, and the new name will be saved instead.
58  *
59  * @param sdi The device instance the probe is connected to.
60  * @param probenum The number of the probe whose name to set.
61  *                 Note that the probe numbers start at 0.
62  * @param name The new name that the specified probe should get. A copy
63  *             of the string is made.
64  *
65  * @return SR_OK on success, or SR_ERR_ARG on invalid arguments.
66  */
67 SR_API int sr_dev_probe_name_set(const struct sr_dev_inst *sdi,
68                 int probenum, const char *name)
69 {
70         GSList *l;
71         struct sr_probe *probe;
72         int ret;
73
74         if (!sdi) {
75                 sr_err("%s: sdi was NULL", __func__);
76                 return SR_ERR_ARG;
77         }
78
79         ret = SR_ERR_ARG;
80         for (l = sdi->probes; l; l = l->next) {
81                 probe = l->data;
82                 if (probe->index == probenum) {
83                         g_free(probe->name);
84                         probe->name = g_strdup(name);
85                         ret = SR_OK;
86                         break;
87                 }
88         }
89
90         return ret;
91 }
92
93 /**
94  * Enable or disable a probe on the specified device.
95  *
96  * @param sdi The device instance the probe is connected to.
97  * @param probenum The probe number, starting from 0.
98  * @param state TRUE to enable the probe, FALSE to disable.
99  *
100  * @return SR_OK on success, or SR_ERR_ARG on invalid arguments.
101  */
102 SR_API int sr_dev_probe_enable(const struct sr_dev_inst *sdi, int probenum,
103                 gboolean state)
104 {
105         GSList *l;
106         struct sr_probe *probe;
107         int ret;
108
109         if (!sdi)
110                 return SR_ERR_ARG;
111
112         ret = SR_ERR_ARG;
113         for (l = sdi->probes; l; l = l->next) {
114                 probe = l->data;
115                 if (probe->index == probenum) {
116                         probe->enabled = state;
117                         ret = SR_OK;
118                         break;
119                 }
120         }
121
122         return ret;
123 }
124
125 /**
126  * Add a trigger to the specified device (and the specified probe).
127  *
128  * If the specified probe of this device already has a trigger, it will
129  * be silently replaced.
130  *
131  * @param sdi Must not be NULL.
132  * @param probenum The probe number, starting from 0.
133  * @param trigger Trigger string, in the format used by sigrok-cli
134  *
135  * @return SR_OK on success, or SR_ERR_ARG on invalid arguments.
136  */
137 SR_API int sr_dev_trigger_set(const struct sr_dev_inst *sdi, int probenum,
138                 const char *trigger)
139 {
140         GSList *l;
141         struct sr_probe *probe;
142         int ret;
143
144         if (!sdi)
145                 return SR_ERR_ARG;
146
147         ret = SR_ERR_ARG;
148         for (l = sdi->probes; l; l = l->next) {
149                 probe = l->data;
150                 if (probe->index == probenum) {
151                         /* If the probe already has a trigger, kill it first. */
152                         g_free(probe->trigger);
153                         probe->trigger = g_strdup(trigger);
154                         ret = SR_OK;
155                         break;
156                 }
157         }
158
159         return ret;
160 }
161
162 /**
163  * Determine whether the specified device instance has the specified
164  * capability.
165  *
166  * @param sdi Pointer to the device instance to be checked. Must not be NULL.
167  *            If the device's 'driver' field is NULL (virtual device), this
168  *            function will always return FALSE (virtual devices don't have
169  *            a hardware capabilities list).
170  * @param hwcap The capability that should be checked (whether it's supported
171  *              by the specified device).
172  *
173  * @return TRUE if the device has the specified capability, FALSE otherwise.
174  *         FALSE is also returned upon invalid input parameters or other
175  *         error conditions.
176  */
177 SR_API gboolean sr_dev_has_hwcap(const struct sr_dev_inst *sdi, int hwcap)
178 {
179         const int *hwcaps;
180         int i;
181
182         if (!sdi || !sdi->driver)
183                 return FALSE;
184
185         if (sdi->driver->info_get(SR_DI_HWCAPS,
186                         (const void **)&hwcaps, NULL) != SR_OK)
187                 return FALSE;
188
189         for (i = 0; hwcaps[i]; i++) {
190                 if (hwcaps[i] == hwcap)
191                         return TRUE;
192         }
193
194         return FALSE;
195 }
196
197 /** @private */
198 SR_PRIV struct sr_dev_inst *sr_dev_inst_new(int index, int status,
199                 const char *vendor, const char *model, const char *version)
200 {
201         struct sr_dev_inst *sdi;
202
203         if (!(sdi = g_try_malloc(sizeof(struct sr_dev_inst)))) {
204                 sr_err("hwdriver: %s: sdi malloc failed", __func__);
205                 return NULL;
206         }
207
208         sdi->driver = NULL;
209         sdi->index = index;
210         sdi->status = status;
211         sdi->inst_type = -1;
212         sdi->vendor = vendor ? g_strdup(vendor) : NULL;
213         sdi->model = model ? g_strdup(model) : NULL;
214         sdi->version = version ? g_strdup(version) : NULL;
215         sdi->probes = NULL;
216         sdi->priv = NULL;
217
218         return sdi;
219 }
220
221 /** @private */
222 SR_PRIV void sr_dev_inst_free(struct sr_dev_inst *sdi)
223 {
224         struct sr_probe *probe;
225         GSList *l;
226
227         for (l = sdi->probes; l; l = l->next) {
228                 probe = l->data;
229                 g_free(probe->name);
230                 g_free(probe);
231         }
232
233         g_free(sdi->priv);
234         g_free(sdi->vendor);
235         g_free(sdi->model);
236         g_free(sdi->version);
237         g_free(sdi);
238
239 }
240
241 #ifdef HAVE_LIBUSB_1_0
242
243 /** @private */
244 SR_PRIV struct sr_usb_dev_inst *sr_usb_dev_inst_new(uint8_t bus,
245                         uint8_t address, struct libusb_device_handle *hdl)
246 {
247         struct sr_usb_dev_inst *udi;
248
249         if (!(udi = g_try_malloc(sizeof(struct sr_usb_dev_inst)))) {
250                 sr_err("hwdriver: %s: udi malloc failed", __func__);
251                 return NULL;
252         }
253
254         udi->bus = bus;
255         udi->address = address;
256         udi->devhdl = hdl;
257
258         return udi;
259 }
260
261 /** @private */
262 SR_PRIV void sr_usb_dev_inst_free(struct sr_usb_dev_inst *usb)
263 {
264         /* Avoid compiler warnings. */
265         (void)usb;
266
267         /* Nothing to do for this device instance type. */
268 }
269
270 #endif
271
272 /** @private */
273 SR_PRIV struct sr_serial_dev_inst *sr_serial_dev_inst_new(const char *port,
274                                                           int fd)
275 {
276         struct sr_serial_dev_inst *serial;
277
278         if (!(serial = g_try_malloc(sizeof(struct sr_serial_dev_inst)))) {
279                 sr_err("hwdriver: %s: serial malloc failed", __func__);
280                 return NULL;
281         }
282
283         serial->port = g_strdup(port);
284         serial->fd = fd;
285
286         return serial;
287 }
288
289 /** @private */
290 SR_PRIV void sr_serial_dev_inst_free(struct sr_serial_dev_inst *serial)
291 {
292         g_free(serial->port);
293 }
294
295 SR_API int sr_dev_config_set(const struct sr_dev_inst *sdi, int hwcap,
296                 const void *value)
297 {
298         int ret;
299
300         if (!sdi || !sdi->driver || !sdi->driver->dev_config_set) {
301                 sr_err("hwdriver: unable to set config option");
302                 return SR_ERR;
303         }
304
305         ret = sdi->driver->dev_config_set(sdi, hwcap, value);
306
307         return ret;
308 }
309
310 SR_API GSList *sr_dev_inst_list(const struct sr_dev_driver *driver)
311 {
312
313         if (driver && driver->dev_list)
314                 return driver->dev_list();
315         else
316                 return NULL;
317 }
318
319 SR_API int sr_dev_inst_clear(const struct sr_dev_driver *driver)
320 {
321
322         if (driver && driver->dev_clear)
323                 return driver->dev_clear();
324         else
325                 return SR_OK;
326 }
327
328 /** @} */