]> sigrok.org Git - libsigrok.git/blame - src/std.c
Build: Set local include directories in Makefile.am
[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
2eb84c98 21/** @file
04cb9157
MH
22 * Standard API helper functions.
23 * @internal
24 */
25
063e7aef 26#include <glib.h>
c1aae900 27#include <libsigrok/libsigrok.h>
063e7aef
UH
28#include "libsigrok-internal.h"
29
3544f848
ML
30#define LOG_PREFIX "std"
31
063e7aef
UH
32/**
33 * Standard sr_driver_init() API helper.
34 *
6078d2c9 35 * This function can be used to simplify most driver's init() API callback.
063e7aef
UH
36 *
37 * It creates a new 'struct drv_context' (drvc), assigns sr_ctx to it, and
38 * then 'drvc' is assigned to the 'struct sr_dev_driver' (di) that is passed.
39 *
40 * @param sr_ctx The libsigrok context to assign.
41 * @param di The driver instance to use.
04cb9157 42 * @param[in] prefix A driver-specific prefix string used for log messages.
063e7aef 43 *
91219afc 44 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments.
063e7aef 45 */
f6beaac5
UH
46SR_PRIV int std_init(struct sr_context *sr_ctx, struct sr_dev_driver *di,
47 const char *prefix)
063e7aef
UH
48{
49 struct drv_context *drvc;
50
51 if (!di) {
ac2926b3 52 sr_err("%s: Invalid driver, cannot initialize.", prefix);
063e7aef
UH
53 return SR_ERR_ARG;
54 }
55
91219afc 56 drvc = g_malloc0(sizeof(struct drv_context));
063e7aef 57 drvc->sr_ctx = sr_ctx;
c2523f22 58 drvc->instances = NULL;
41812aca 59 di->context = drvc;
063e7aef
UH
60
61 return SR_OK;
62}
4afdfd46
UH
63
64/**
65 * Standard API helper for sending an SR_DF_HEADER packet.
66 *
67 * This function can be used to simplify most driver's
6078d2c9 68 * dev_acquisition_start() API callback.
4afdfd46
UH
69 *
70 * @param sdi The device instance to use.
71 * @param prefix A driver-specific prefix string used for log messages.
72 * Must not be NULL. An empty string is allowed.
73 *
74 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
75 * SR_ERR upon other errors.
76 */
77SR_PRIV int std_session_send_df_header(const struct sr_dev_inst *sdi,
78 const char *prefix)
79{
80 int ret;
81 struct sr_datafeed_packet packet;
82 struct sr_datafeed_header header;
83
84 if (!prefix) {
85 sr_err("Invalid prefix.");
86 return SR_ERR_ARG;
87 }
88
ac2926b3 89 sr_dbg("%s: Starting acquisition.", prefix);
4afdfd46
UH
90
91 /* Send header packet to the session bus. */
ac2926b3 92 sr_dbg("%s: Sending SR_DF_HEADER packet.", prefix);
4afdfd46
UH
93 packet.type = SR_DF_HEADER;
94 packet.payload = (uint8_t *)&header;
95 header.feed_version = 1;
96 gettimeofday(&header.starttime, NULL);
97
98 if ((ret = sr_session_send(sdi, &packet)) < 0) {
ac2926b3 99 sr_err("%s: Failed to send header packet: %d.", prefix, ret);
4afdfd46
UH
100 return ret;
101 }
102
103 return SR_OK;
104}
cd2f0fe2 105
c4f2dfd0
UH
106#ifdef HAVE_LIBSERIALPORT
107
813aab69 108/**
23dc6661
BV
109 * Standard serial driver dev_open() helper.
110 *
111 * This function can be used to implement the dev_open() driver API
112 * callback in drivers that use a serial port. The port is opened
6c592ece 113 * with the SERIAL_RDWR flag.
23dc6661
BV
114 *
115 * If the open succeeded, the status field of the given sdi is set
116 * to SR_ST_ACTIVE.
117 *
118 * @retval SR_OK Success.
119 * @retval SR_ERR Serial port open failed.
120 */
121SR_PRIV int std_serial_dev_open(struct sr_dev_inst *sdi)
122{
123 struct sr_serial_dev_inst *serial;
124
125 serial = sdi->conn;
6c592ece 126 if (serial_open(serial, SERIAL_RDWR) != SR_OK)
23dc6661
BV
127 return SR_ERR;
128
129 sdi->status = SR_ST_ACTIVE;
130
131 return SR_OK;
132}
133
813aab69 134/**
1e7134dc
BV
135 * Standard serial driver dev_close() helper.
136 *
137 * This function can be used to implement the dev_close() driver API
138 * callback in drivers that use a serial port.
139 *
140 * After closing the port, the status field of the given sdi is set
141 * to SR_ST_INACTIVE.
142 *
143 * @retval SR_OK Success.
144 */
145SR_PRIV int std_serial_dev_close(struct sr_dev_inst *sdi)
146{
147 struct sr_serial_dev_inst *serial;
148
149 serial = sdi->conn;
150 if (serial && sdi->status == SR_ST_ACTIVE) {
151 serial_close(serial);
152 sdi->status = SR_ST_INACTIVE;
153 }
154
155 return SR_OK;
156}
157
813aab69 158/**
cd2f0fe2
UH
159 * Standard sr_session_stop() API helper.
160 *
161 * This function can be used to simplify most (serial port based) driver's
6078d2c9 162 * dev_acquisition_stop() API callback.
cd2f0fe2
UH
163 *
164 * @param sdi The device instance for which acquisition should stop.
165 * Must not be NULL.
166 * @param cb_data Opaque 'cb_data' pointer. Must not be NULL.
6078d2c9 167 * @param dev_close_fn Function pointer to the driver's dev_close().
cd2f0fe2
UH
168 * Must not be NULL.
169 * @param serial The serial device instance (struct serial_dev_inst *).
170 * Must not be NULL.
813aab69 171 * @param[in] prefix A driver-specific prefix string used for log messages.
cd2f0fe2
UH
172 * Must not be NULL. An empty string is allowed.
173 *
1477a9a6
MH
174 * @retval SR_OK Success.
175 * @retval SR_ERR_ARG Invalid arguments.
176 * @retval SR_ERR_DEV_CLOSED Device is closed.
177 * @retval SR_ERR Other errors.
cd2f0fe2 178 */
d43b0908 179SR_PRIV int std_serial_dev_acquisition_stop(struct sr_dev_inst *sdi,
144f6660 180 void *cb_data, dev_close_callback dev_close_fn,
cd2f0fe2
UH
181 struct sr_serial_dev_inst *serial, const char *prefix)
182{
183 int ret;
184 struct sr_datafeed_packet packet;
185
186 if (!prefix) {
187 sr_err("Invalid prefix.");
188 return SR_ERR_ARG;
189 }
190
191 if (sdi->status != SR_ST_ACTIVE) {
ac2926b3 192 sr_err("%s: Device inactive, can't stop acquisition.", prefix);
1477a9a6 193 return SR_ERR_DEV_CLOSED;
cd2f0fe2
UH
194 }
195
ac2926b3 196 sr_dbg("%s: Stopping acquisition.", prefix);
cd2f0fe2 197
102f1239 198 if ((ret = serial_source_remove(sdi->session, serial)) < 0) {
ac2926b3 199 sr_err("%s: Failed to remove source: %d.", prefix, ret);
cd2f0fe2
UH
200 return ret;
201 }
202
6078d2c9 203 if ((ret = dev_close_fn(sdi)) < 0) {
ac2926b3 204 sr_err("%s: Failed to close device: %d.", prefix, ret);
cd2f0fe2
UH
205 return ret;
206 }
207
208 /* Send SR_DF_END packet to the session bus. */
ac2926b3 209 sr_dbg("%s: Sending SR_DF_END packet.", prefix);
cd2f0fe2
UH
210 packet.type = SR_DF_END;
211 packet.payload = NULL;
212 if ((ret = sr_session_send(cb_data, &packet)) < 0) {
ac2926b3 213 sr_err("%s: Failed to send SR_DF_END packet: %d.", prefix, ret);
cd2f0fe2
UH
214 return ret;
215 }
216
217 return SR_OK;
218}
49f00e13 219
c4f2dfd0
UH
220#endif
221
813aab69 222/**
49f00e13
BV
223 * Standard driver dev_clear() helper.
224 *
813aab69
MH
225 * Clear driver, this means, close all instances.
226 *
49f00e13
BV
227 * This function can be used to implement the dev_clear() driver API
228 * callback. dev_close() is called before every sr_dev_inst is cleared.
229 *
230 * The only limitation is driver-specific device contexts (sdi->priv).
231 * These are freed, but any dynamic allocation within structs stored
232 * there cannot be freed.
233 *
234 * @param driver The driver which will have its instances released.
12a33563
BV
235 * @param clear_private If not NULL, this points to a function called
236 * with sdi->priv as argument. The function can then clear any device
237 * instance-specific resources kept there. It must also clear the struct
238 * pointed to by sdi->priv.
49f00e13
BV
239 *
240 * @return SR_OK on success.
241 */
ae5859ff 242SR_PRIV int std_dev_clear(const struct sr_dev_driver *driver,
144f6660 243 std_dev_clear_callback clear_private)
49f00e13 244{
49f00e13 245 struct drv_context *drvc;
12a33563 246 struct sr_dev_inst *sdi;
7aebe22d 247 GSList *l;
49f00e13
BV
248 int ret;
249
41812aca 250 if (!(drvc = driver->context))
3a277f3b
BV
251 /* Driver was never initialized, nothing to do. */
252 return SR_OK;
253
49f00e13
BV
254 ret = SR_OK;
255 for (l = drvc->instances; l; l = l->next) {
49f00e13
BV
256 if (!(sdi = l->data)) {
257 ret = SR_ERR_BUG;
258 continue;
259 }
49f00e13
BV
260 if (driver->dev_close)
261 driver->dev_close(sdi);
262
263 if (sdi->conn) {
45357ce6 264#ifdef HAVE_LIBSERIALPORT
c4f2dfd0 265 if (sdi->inst_type == SR_INST_SERIAL)
12a33563 266 sr_serial_dev_inst_free(sdi->conn);
c4f2dfd0 267#endif
45357ce6 268#ifdef HAVE_LIBUSB_1_0
c4f2dfd0 269 if (sdi->inst_type == SR_INST_USB)
49f00e13 270 sr_usb_dev_inst_free(sdi->conn);
a0c7e23a 271#endif
23f43dff
ML
272 if (sdi->inst_type == SR_INST_SCPI)
273 sr_scpi_free(sdi->conn);
daa39012
AJ
274 if (sdi->inst_type == SR_INST_MODBUS)
275 sr_modbus_free(sdi->conn);
49f00e13 276 }
ae5859ff 277 if (clear_private)
886413b6
BV
278 /* The helper function is responsible for freeing
279 * its own sdi->priv! */
ae5859ff 280 clear_private(sdi->priv);
12a33563
BV
281 else
282 g_free(sdi->priv);
886413b6 283
49f00e13
BV
284 sr_dev_inst_free(sdi);
285 }
286
287 g_slist_free(drvc->instances);
288 drvc->instances = NULL;
289
290 return ret;
291}