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