blob: ca9c25e1833e749f4405ade5cd430939f14171e1 [file] [log] [blame]
Uwe Hermann063e7ae2013-01-29 12:55:00 +01001/*
Uwe Hermann50985c22013-04-23 22:24:30 +02002 * This file is part of the libsigrok project.
Uwe Hermann063e7ae2013-01-29 12:55:00 +01003 *
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
Matthias Heidbrink04cb9152013-11-22 20:40:52 +010021/** \file
22 * Standard API helper functions.
23 * @internal
24 */
25
Uwe Hermann063e7ae2013-01-29 12:55:00 +010026#include <glib.h>
27#include "libsigrok.h"
28#include "libsigrok-internal.h"
29
30/**
31 * Standard sr_driver_init() API helper.
32 *
Uwe Hermann6078d2c2013-05-10 19:37:54 +020033 * This function can be used to simplify most driver's init() API callback.
Uwe Hermann063e7ae2013-01-29 12:55:00 +010034 *
35 * It creates a new 'struct drv_context' (drvc), assigns sr_ctx to it, and
36 * then 'drvc' is assigned to the 'struct sr_dev_driver' (di) that is passed.
37 *
38 * @param sr_ctx The libsigrok context to assign.
39 * @param di The driver instance to use.
Matthias Heidbrink04cb9152013-11-22 20:40:52 +010040 * @param[in] prefix A driver-specific prefix string used for log messages.
Uwe Hermann063e7ae2013-01-29 12:55:00 +010041 *
42 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
43 * SR_ERR_MALLOC upon memory allocation errors.
44 */
Uwe Hermannf6beaac2013-05-31 15:46:57 +020045SR_PRIV int std_init(struct sr_context *sr_ctx, struct sr_dev_driver *di,
46 const char *prefix)
Uwe Hermann063e7ae2013-01-29 12:55:00 +010047{
48 struct drv_context *drvc;
49
50 if (!di) {
51 sr_err("%sInvalid driver, cannot initialize.", prefix);
52 return SR_ERR_ARG;
53 }
54
Bert Vermeulenc2523f22013-04-27 18:24:50 +020055 if (!(drvc = g_try_malloc(sizeof(struct drv_context)))) {
Uwe Hermann063e7ae2013-01-29 12:55:00 +010056 sr_err("%sDriver context malloc failed.", prefix);
57 return SR_ERR_MALLOC;
58 }
59
60 drvc->sr_ctx = sr_ctx;
Bert Vermeulenc2523f22013-04-27 18:24:50 +020061 drvc->instances = NULL;
Uwe Hermann063e7ae2013-01-29 12:55:00 +010062 di->priv = drvc;
63
64 return SR_OK;
65}
Uwe Hermann4afdfd42013-02-06 19:57:32 +010066
67/**
68 * Standard API helper for sending an SR_DF_HEADER packet.
69 *
70 * This function can be used to simplify most driver's
Uwe Hermann6078d2c2013-05-10 19:37:54 +020071 * dev_acquisition_start() API callback.
Uwe Hermann4afdfd42013-02-06 19:57:32 +010072 *
73 * @param sdi The device instance to use.
74 * @param prefix A driver-specific prefix string used for log messages.
75 * Must not be NULL. An empty string is allowed.
76 *
77 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
78 * SR_ERR upon other errors.
79 */
80SR_PRIV int std_session_send_df_header(const struct sr_dev_inst *sdi,
81 const char *prefix)
82{
83 int ret;
84 struct sr_datafeed_packet packet;
85 struct sr_datafeed_header header;
86
87 if (!prefix) {
88 sr_err("Invalid prefix.");
89 return SR_ERR_ARG;
90 }
91
92 sr_dbg("%sStarting acquisition.", prefix);
93
94 /* Send header packet to the session bus. */
95 sr_dbg("%sSending SR_DF_HEADER packet.", prefix);
96 packet.type = SR_DF_HEADER;
97 packet.payload = (uint8_t *)&header;
98 header.feed_version = 1;
99 gettimeofday(&header.starttime, NULL);
100
101 if ((ret = sr_session_send(sdi, &packet)) < 0) {
102 sr_err("%sFailed to send header packet: %d.", prefix, ret);
103 return ret;
104 }
105
106 return SR_OK;
107}
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100108
Uwe Hermannc4f2dfd2013-11-13 19:56:13 +0100109#ifdef HAVE_LIBSERIALPORT
110
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100111/*
Bert Vermeulen23dc6662013-12-07 20:26:15 +0100112 * Standard serial driver dev_open() helper.
113 *
114 * This function can be used to implement the dev_open() driver API
115 * callback in drivers that use a serial port. The port is opened
116 * with the SERIAL_RDWR and SERIAL_NONBLOCK flags.
117 *
118 * If the open succeeded, the status field of the given sdi is set
119 * to SR_ST_ACTIVE.
120 *
121 * @retval SR_OK Success.
122 * @retval SR_ERR Serial port open failed.
123 */
124SR_PRIV int std_serial_dev_open(struct sr_dev_inst *sdi)
125{
126 struct sr_serial_dev_inst *serial;
127
128 serial = sdi->conn;
129 if (serial_open(serial, SERIAL_RDWR | SERIAL_NONBLOCK) != SR_OK)
130 return SR_ERR;
131
132 sdi->status = SR_ST_ACTIVE;
133
134 return SR_OK;
135}
136
137/*
Bert Vermeulen1e7134d2013-12-11 00:33:11 +0100138 * Standard serial driver dev_close() helper.
139 *
140 * This function can be used to implement the dev_close() driver API
141 * callback in drivers that use a serial port.
142 *
143 * After closing the port, the status field of the given sdi is set
144 * to SR_ST_INACTIVE.
145 *
146 * @retval SR_OK Success.
147 */
148SR_PRIV int std_serial_dev_close(struct sr_dev_inst *sdi)
149{
150 struct sr_serial_dev_inst *serial;
151
152 serial = sdi->conn;
153 if (serial && sdi->status == SR_ST_ACTIVE) {
154 serial_close(serial);
155 sdi->status = SR_ST_INACTIVE;
156 }
157
158 return SR_OK;
159}
160
161/*
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100162 * Standard sr_session_stop() API helper.
163 *
164 * This function can be used to simplify most (serial port based) driver's
Uwe Hermann6078d2c2013-05-10 19:37:54 +0200165 * dev_acquisition_stop() API callback.
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100166 *
167 * @param sdi The device instance for which acquisition should stop.
168 * Must not be NULL.
169 * @param cb_data Opaque 'cb_data' pointer. Must not be NULL.
Uwe Hermann6078d2c2013-05-10 19:37:54 +0200170 * @param dev_close_fn Function pointer to the driver's dev_close().
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100171 * Must not be NULL.
172 * @param serial The serial device instance (struct serial_dev_inst *).
173 * Must not be NULL.
174 * @param prefix A driver-specific prefix string used for log messages.
175 * Must not be NULL. An empty string is allowed.
176 *
Matthias Heidbrink1477a9a2013-10-17 10:57:16 +0200177 * @retval SR_OK Success.
178 * @retval SR_ERR_ARG Invalid arguments.
179 * @retval SR_ERR_DEV_CLOSED Device is closed.
180 * @retval SR_ERR Other errors.
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100181 */
Bert Vermeulend43b0902013-12-07 20:39:55 +0100182SR_PRIV int std_serial_dev_acquisition_stop(struct sr_dev_inst *sdi,
Uwe Hermann6078d2c2013-05-10 19:37:54 +0200183 void *cb_data, dev_close_t dev_close_fn,
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100184 struct sr_serial_dev_inst *serial, const char *prefix)
185{
186 int ret;
187 struct sr_datafeed_packet packet;
188
189 if (!prefix) {
190 sr_err("Invalid prefix.");
191 return SR_ERR_ARG;
192 }
193
194 if (sdi->status != SR_ST_ACTIVE) {
195 sr_err("%sDevice inactive, can't stop acquisition.", prefix);
Matthias Heidbrink1477a9a2013-10-17 10:57:16 +0200196 return SR_ERR_DEV_CLOSED;
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100197 }
198
199 sr_dbg("%sStopping acquisition.", prefix);
200
Martin Ling7faa3e82013-12-02 13:06:08 +0000201 if ((ret = serial_source_remove(serial)) < 0) {
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100202 sr_err("%sFailed to remove source: %d.", prefix, ret);
203 return ret;
204 }
205
Uwe Hermann6078d2c2013-05-10 19:37:54 +0200206 if ((ret = dev_close_fn(sdi)) < 0) {
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100207 sr_err("%sFailed to close device: %d.", prefix, ret);
208 return ret;
209 }
210
211 /* Send SR_DF_END packet to the session bus. */
212 sr_dbg("%sSending SR_DF_END packet.", prefix);
213 packet.type = SR_DF_END;
214 packet.payload = NULL;
215 if ((ret = sr_session_send(cb_data, &packet)) < 0) {
216 sr_err("%sFailed to send SR_DF_END packet: %d.", prefix, ret);
217 return ret;
218 }
219
220 return SR_OK;
221}
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200222
Uwe Hermannc4f2dfd2013-11-13 19:56:13 +0100223#endif
224
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200225/*
226 * Standard driver dev_clear() helper.
227 *
228 * This function can be used to implement the dev_clear() driver API
229 * callback. dev_close() is called before every sr_dev_inst is cleared.
230 *
231 * The only limitation is driver-specific device contexts (sdi->priv).
232 * These are freed, but any dynamic allocation within structs stored
233 * there cannot be freed.
234 *
235 * @param driver The driver which will have its instances released.
Bert Vermeulen12a33562013-05-06 00:36:50 +0200236 * @param clear_private If not NULL, this points to a function called
237 * with sdi->priv as argument. The function can then clear any device
238 * instance-specific resources kept there. It must also clear the struct
239 * pointed to by sdi->priv.
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200240 *
241 * @return SR_OK on success.
242 */
Bert Vermeulenae5859f2013-04-17 00:41:01 +0200243SR_PRIV int std_dev_clear(const struct sr_dev_driver *driver,
244 std_dev_clear_t clear_private)
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200245{
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200246 struct drv_context *drvc;
Bert Vermeulen12a33562013-05-06 00:36:50 +0200247 struct sr_dev_inst *sdi;
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200248 GSList *l;
249 int ret;
250
Bert Vermeulen3a277f32013-05-01 14:54:44 +0200251 if (!(drvc = driver->priv))
252 /* Driver was never initialized, nothing to do. */
253 return SR_OK;
254
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200255 ret = SR_OK;
256 for (l = drvc->instances; l; l = l->next) {
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200257 if (!(sdi = l->data)) {
258 ret = SR_ERR_BUG;
259 continue;
260 }
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200261 if (driver->dev_close)
262 driver->dev_close(sdi);
263
264 if (sdi->conn) {
Uwe Hermannc4f2dfd2013-11-13 19:56:13 +0100265#if HAVE_LIBSERIALPORT
266 if (sdi->inst_type == SR_INST_SERIAL)
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200267 sr_serial_dev_inst_free(sdi->conn);
Uwe Hermannc4f2dfd2013-11-13 19:56:13 +0100268#endif
Bert Vermeulen12a33562013-05-06 00:36:50 +0200269#if HAVE_LIBUSB_1_0
Uwe Hermannc4f2dfd2013-11-13 19:56:13 +0100270 if (sdi->inst_type == SR_INST_USB)
Bert Vermeulen12a33562013-05-06 00:36:50 +0200271 sr_usb_dev_inst_free(sdi->conn);
272#endif
Martin Ling23f43df2013-12-03 20:40:19 +0000273 if (sdi->inst_type == SR_INST_SCPI)
274 sr_scpi_free(sdi->conn);
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200275 }
Bert Vermeulenae5859f2013-04-17 00:41:01 +0200276 if (clear_private)
277 clear_private(sdi->priv);
Bert Vermeulen12a33562013-05-06 00:36:50 +0200278 else
279 g_free(sdi->priv);
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200280 sr_dev_inst_free(sdi);
281 }
282
283 g_slist_free(drvc->instances);
284 drvc->instances = NULL;
285
286 return ret;
287}
Martin Ling043e8992013-12-07 18:41:09 +0000288