]> sigrok.org Git - libsigrok.git/blame - src/std.c
sr_dev_close(): Set status to SR_ST_INACTIVE.
[libsigrok.git] / src / std.c
CommitLineData
063e7aef 1/*
50985c20 2 * This file is part of the libsigrok project.
063e7aef
UH
3 *
4 * Copyright (C) 2013 Uwe Hermann <uwe@hermann-uwe.de>
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 2 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
2ea1fdf1 17 * along with this program; if not, see <http://www.gnu.org/licenses/>.
063e7aef
UH
18 */
19
d9251a2c
UH
20/**
21 * @file
22 *
23 * Standard API helper functions.
24 *
25 * @internal
26 */
04cb9157 27
6ec6c43b 28#include <config.h>
063e7aef 29#include <glib.h>
c1aae900 30#include <libsigrok/libsigrok.h>
063e7aef 31#include "libsigrok-internal.h"
5a1afc09 32#include "scpi.h"
063e7aef 33
3544f848
ML
34#define LOG_PREFIX "std"
35
063e7aef
UH
36/**
37 * Standard sr_driver_init() API helper.
38 *
6078d2c9 39 * This function can be used to simplify most driver's init() API callback.
063e7aef
UH
40 *
41 * It creates a new 'struct drv_context' (drvc), assigns sr_ctx to it, and
42 * then 'drvc' is assigned to the 'struct sr_dev_driver' (di) that is passed.
43 *
063e7aef 44 * @param di The driver instance to use.
1f8f5bc0 45 * @param sr_ctx The libsigrok context to assign.
063e7aef 46 *
91219afc 47 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments.
063e7aef 48 */
c45c32ce 49SR_PRIV int std_init(struct sr_dev_driver *di, struct sr_context *sr_ctx)
063e7aef
UH
50{
51 struct drv_context *drvc;
52
91219afc 53 drvc = g_malloc0(sizeof(struct drv_context));
063e7aef 54 drvc->sr_ctx = sr_ctx;
c2523f22 55 drvc->instances = NULL;
41812aca 56 di->context = drvc;
063e7aef
UH
57
58 return SR_OK;
59}
4afdfd46 60
700d6b64
LPC
61/**
62 * Standard driver cleanup() callback API helper
63 *
64 * @param di The driver instance to use.
65 *
66 * Frees all device instances by calling sr_dev_clear() and then releases any
67 * resources allocated by std_init().
68 *
69 * @retval SR_OK Success
70 * @retval SR_ERR_ARG Invalid driver
71 *
72*/
73SR_PRIV int std_cleanup(const struct sr_dev_driver *di)
74{
75 int ret;
76
77 ret = sr_dev_clear(di);
78 g_free(di->context);
79
80 return ret;
81}
82
4afdfd46
UH
83/**
84 * Standard API helper for sending an SR_DF_HEADER packet.
85 *
86 * This function can be used to simplify most driver's
6078d2c9 87 * dev_acquisition_start() API callback.
4afdfd46
UH
88 *
89 * @param sdi The device instance to use.
4afdfd46
UH
90 *
91 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
92 * SR_ERR upon other errors.
93 */
bee2b016 94SR_PRIV int std_session_send_df_header(const struct sr_dev_inst *sdi)
4afdfd46 95{
23630316 96 const char *prefix = (sdi->driver) ? sdi->driver->name : "unknown";
4afdfd46
UH
97 int ret;
98 struct sr_datafeed_packet packet;
99 struct sr_datafeed_header header;
100
4afdfd46 101 /* Send header packet to the session bus. */
ac2926b3 102 sr_dbg("%s: Sending SR_DF_HEADER packet.", prefix);
4afdfd46
UH
103 packet.type = SR_DF_HEADER;
104 packet.payload = (uint8_t *)&header;
105 header.feed_version = 1;
106 gettimeofday(&header.starttime, NULL);
107
108 if ((ret = sr_session_send(sdi, &packet)) < 0) {
ac2926b3 109 sr_err("%s: Failed to send header packet: %d.", prefix, ret);
4afdfd46
UH
110 return ret;
111 }
112
113 return SR_OK;
114}
cd2f0fe2 115
3be42bc2
UH
116/**
117 * Standard API helper for sending an SR_DF_END packet.
118 *
119 * @param sdi The device instance to use. Must not be NULL.
3be42bc2
UH
120 *
121 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
122 * SR_ERR upon other errors.
123 */
bee2b016 124SR_PRIV int std_session_send_df_end(const struct sr_dev_inst *sdi)
3be42bc2 125{
23630316 126 const char *prefix = (sdi->driver) ? sdi->driver->name : "unknown";
3be42bc2
UH
127 int ret;
128 struct sr_datafeed_packet packet;
129
bee2b016 130 if (!sdi)
3be42bc2
UH
131 return SR_ERR_ARG;
132
133 sr_dbg("%s: Sending SR_DF_END packet.", prefix);
134
135 packet.type = SR_DF_END;
136 packet.payload = NULL;
137
138 if ((ret = sr_session_send(sdi, &packet)) < 0) {
139 sr_err("%s: Failed to send SR_DF_END packet: %d.", prefix, ret);
140 return ret;
141 }
142
143 return SR_OK;
144}
145
c4f2dfd0
UH
146#ifdef HAVE_LIBSERIALPORT
147
813aab69 148/**
23dc6661
BV
149 * Standard serial driver dev_open() helper.
150 *
151 * This function can be used to implement the dev_open() driver API
152 * callback in drivers that use a serial port. The port is opened
6c592ece 153 * with the SERIAL_RDWR flag.
23dc6661 154 *
23dc6661 155 * @retval SR_OK Success.
7e463623 156 * @retval SR_ERR_ARG Invalid arguments.
23dc6661
BV
157 * @retval SR_ERR Serial port open failed.
158 */
159SR_PRIV int std_serial_dev_open(struct sr_dev_inst *sdi)
160{
161 struct sr_serial_dev_inst *serial;
162
7e463623
UH
163 if (!sdi || !sdi->conn)
164 return SR_ERR_ARG;
23dc6661 165
7e463623 166 serial = sdi->conn;
23dc6661 167
7e463623 168 return serial_open(serial, SERIAL_RDWR);
23dc6661
BV
169}
170
813aab69 171/**
1e7134dc
BV
172 * Standard serial driver dev_close() helper.
173 *
174 * This function can be used to implement the dev_close() driver API
175 * callback in drivers that use a serial port.
176 *
1e7134dc 177 * @retval SR_OK Success.
093e1cba 178 * @retval SR_ERR_ARG Invalid arguments.
f1ba6b4b 179 * @retval SR_ERR Serial port close failed.
1e7134dc
BV
180 */
181SR_PRIV int std_serial_dev_close(struct sr_dev_inst *sdi)
182{
183 struct sr_serial_dev_inst *serial;
184
f1ba6b4b 185 if (!sdi || !sdi->conn)
093e1cba 186 return SR_ERR_ARG;
1e7134dc 187
f1ba6b4b 188 serial = sdi->conn;
093e1cba 189
f1ba6b4b 190 return serial_close(serial);
1e7134dc
BV
191}
192
813aab69 193/**
cd2f0fe2
UH
194 * Standard sr_session_stop() API helper.
195 *
196 * This function can be used to simplify most (serial port based) driver's
6078d2c9 197 * dev_acquisition_stop() API callback.
cd2f0fe2
UH
198 *
199 * @param sdi The device instance for which acquisition should stop.
200 * Must not be NULL.
cd2f0fe2 201 *
1477a9a6
MH
202 * @retval SR_OK Success.
203 * @retval SR_ERR_ARG Invalid arguments.
204 * @retval SR_ERR_DEV_CLOSED Device is closed.
205 * @retval SR_ERR Other errors.
cd2f0fe2 206 */
1b38775b 207SR_PRIV int std_serial_dev_acquisition_stop(struct sr_dev_inst *sdi)
cd2f0fe2 208{
15f96409 209 struct sr_serial_dev_inst *serial = sdi->conn;
bee2b016 210 const char *prefix = sdi->driver->name;
cd2f0fe2 211 int ret;
cd2f0fe2 212
102f1239 213 if ((ret = serial_source_remove(sdi->session, serial)) < 0) {
ac2926b3 214 sr_err("%s: Failed to remove source: %d.", prefix, ret);
cd2f0fe2
UH
215 return ret;
216 }
217
093e1cba 218 if ((ret = sr_dev_close(sdi)) < 0) {
ac2926b3 219 sr_err("%s: Failed to close device: %d.", prefix, ret);
cd2f0fe2
UH
220 return ret;
221 }
222
bee2b016 223 std_session_send_df_end(sdi);
cd2f0fe2
UH
224
225 return SR_OK;
226}
49f00e13 227
c4f2dfd0
UH
228#endif
229
813aab69 230/**
49f00e13
BV
231 * Standard driver dev_clear() helper.
232 *
813aab69
MH
233 * Clear driver, this means, close all instances.
234 *
49f00e13
BV
235 * This function can be used to implement the dev_clear() driver API
236 * callback. dev_close() is called before every sr_dev_inst is cleared.
237 *
238 * The only limitation is driver-specific device contexts (sdi->priv).
239 * These are freed, but any dynamic allocation within structs stored
240 * there cannot be freed.
241 *
242 * @param driver The driver which will have its instances released.
12a33563
BV
243 * @param clear_private If not NULL, this points to a function called
244 * with sdi->priv as argument. The function can then clear any device
245 * instance-specific resources kept there. It must also clear the struct
246 * pointed to by sdi->priv.
49f00e13
BV
247 *
248 * @return SR_OK on success.
249 */
ae5859ff 250SR_PRIV int std_dev_clear(const struct sr_dev_driver *driver,
144f6660 251 std_dev_clear_callback clear_private)
49f00e13 252{
49f00e13 253 struct drv_context *drvc;
12a33563 254 struct sr_dev_inst *sdi;
7aebe22d 255 GSList *l;
49f00e13
BV
256 int ret;
257
41812aca 258 if (!(drvc = driver->context))
3a277f3b
BV
259 /* Driver was never initialized, nothing to do. */
260 return SR_OK;
261
49f00e13
BV
262 ret = SR_OK;
263 for (l = drvc->instances; l; l = l->next) {
49f00e13
BV
264 if (!(sdi = l->data)) {
265 ret = SR_ERR_BUG;
266 continue;
267 }
49f00e13
BV
268 if (driver->dev_close)
269 driver->dev_close(sdi);
270
271 if (sdi->conn) {
45357ce6 272#ifdef HAVE_LIBSERIALPORT
c4f2dfd0 273 if (sdi->inst_type == SR_INST_SERIAL)
12a33563 274 sr_serial_dev_inst_free(sdi->conn);
c4f2dfd0 275#endif
45357ce6 276#ifdef HAVE_LIBUSB_1_0
c4f2dfd0 277 if (sdi->inst_type == SR_INST_USB)
49f00e13 278 sr_usb_dev_inst_free(sdi->conn);
a0c7e23a 279#endif
23f43dff
ML
280 if (sdi->inst_type == SR_INST_SCPI)
281 sr_scpi_free(sdi->conn);
daa39012
AJ
282 if (sdi->inst_type == SR_INST_MODBUS)
283 sr_modbus_free(sdi->conn);
49f00e13 284 }
ae5859ff 285 if (clear_private)
886413b6
BV
286 /* The helper function is responsible for freeing
287 * its own sdi->priv! */
ae5859ff 288 clear_private(sdi->priv);
12a33563
BV
289 else
290 g_free(sdi->priv);
886413b6 291
49f00e13
BV
292 sr_dev_inst_free(sdi);
293 }
294
295 g_slist_free(drvc->instances);
296 drvc->instances = NULL;
297
298 return ret;
299}
c01bf34c
LPC
300
301/**
302 * Standard implementation for the driver dev_list() callback
303 *
304 * This function can be used as the dev_list callback by most drivers that use
305 * the standard helper functions. It returns the devices contained in the driver
306 * context instances list.
307 *
308 * @param di The driver instance to use.
309 *
310 * @return The list of devices/instances of this driver, or NULL upon errors
311 * or if the list is empty.
312 */
313SR_PRIV GSList *std_dev_list(const struct sr_dev_driver *di)
314{
315 struct drv_context *drvc = di->context;
316
317 return drvc->instances;
318}
15a5bfe4
LPC
319
320/**
321 * Standard scan() callback API helper.
322 *
323 * This function can be used to perform common tasks required by a driver's
324 * scan() callback. It will initialize the driver for each device on the list
325 * and add the devices on the list to the driver's device instance list.
326 * Usually it should be used as the last step in the scan() callback, right
327 * before returning.
328 *
329 * Note: This function can only be used if std_init() has been called
330 * previously by the driver.
331 *
332 * Example:
333 * @code{c}
334 * static GSList *scan(struct sr_dev_driver *di, GSList *options)
335 * {
336 * struct GSList *device;
337 * struct sr_dev_inst *sdi;
338 *
339 * sdi = g_new0(sr_dev_inst, 1);
340 * sdi->vendor = ...;
341 * ...
342 * devices = g_slist_append(devices, sdi);
343 * ...
344 * return std_scan_complete(di, devices);
345 * }
346 * @endcode
347 *
39fcfdc9 348 * @param di The driver instance to use. Must not be NULL.
15a5bfe4
LPC
349 * @param devices List of newly discovered devices (struct sr_dev_inst).
350 *
351 * @return The @p devices list.
352 */
353SR_PRIV GSList *std_scan_complete(struct sr_dev_driver *di, GSList *devices)
354{
39fcfdc9 355 struct drv_context *drvc;
15a5bfe4
LPC
356 GSList *l;
357
39fcfdc9
UH
358 if (!di) {
359 sr_err("Invalid driver instance (di), cannot complete scan.");
360 return NULL;
361 }
362
363 drvc = di->context;
364
15a5bfe4
LPC
365 for (l = devices; l; l = l->next) {
366 struct sr_dev_inst *sdi = l->data;
39fcfdc9
UH
367 if (!sdi) {
368 sr_err("Invalid driver instance, cannot complete scan.");
369 return NULL;
370 }
15a5bfe4
LPC
371 sdi->driver = di;
372 }
373
374 drvc->instances = g_slist_concat(drvc->instances, g_slist_copy(devices));
375
376 return devices;
377}