blob: 22123fc5d743dc527ca31af3e3cdca549cf8b31d [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
21#include <glib.h>
22#include "libsigrok.h"
23#include "libsigrok-internal.h"
24
25/**
26 * Standard sr_driver_init() API helper.
27 *
Uwe Hermann6078d2c2013-05-10 19:37:54 +020028 * This function can be used to simplify most driver's init() API callback.
Uwe Hermann063e7ae2013-01-29 12:55:00 +010029 *
30 * It creates a new 'struct drv_context' (drvc), assigns sr_ctx to it, and
31 * then 'drvc' is assigned to the 'struct sr_dev_driver' (di) that is passed.
32 *
33 * @param sr_ctx The libsigrok context to assign.
34 * @param di The driver instance to use.
35 * @param prefix A driver-specific prefix string used for log messages.
36 *
37 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
38 * SR_ERR_MALLOC upon memory allocation errors.
39 */
Uwe Hermannf6beaac2013-05-31 15:46:57 +020040SR_PRIV int std_init(struct sr_context *sr_ctx, struct sr_dev_driver *di,
41 const char *prefix)
Uwe Hermann063e7ae2013-01-29 12:55:00 +010042{
43 struct drv_context *drvc;
44
45 if (!di) {
46 sr_err("%sInvalid driver, cannot initialize.", prefix);
47 return SR_ERR_ARG;
48 }
49
Bert Vermeulenc2523f22013-04-27 18:24:50 +020050 if (!(drvc = g_try_malloc(sizeof(struct drv_context)))) {
Uwe Hermann063e7ae2013-01-29 12:55:00 +010051 sr_err("%sDriver context malloc failed.", prefix);
52 return SR_ERR_MALLOC;
53 }
54
55 drvc->sr_ctx = sr_ctx;
Bert Vermeulenc2523f22013-04-27 18:24:50 +020056 drvc->instances = NULL;
Uwe Hermann063e7ae2013-01-29 12:55:00 +010057 di->priv = drvc;
58
59 return SR_OK;
60}
Uwe Hermann4afdfd42013-02-06 19:57:32 +010061
62/**
63 * Standard API helper for sending an SR_DF_HEADER packet.
64 *
65 * This function can be used to simplify most driver's
Uwe Hermann6078d2c2013-05-10 19:37:54 +020066 * dev_acquisition_start() API callback.
Uwe Hermann4afdfd42013-02-06 19:57:32 +010067 *
68 * @param sdi The device instance to use.
69 * @param prefix A driver-specific prefix string used for log messages.
70 * Must not be NULL. An empty string is allowed.
71 *
72 * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or
73 * SR_ERR upon other errors.
74 */
75SR_PRIV int std_session_send_df_header(const struct sr_dev_inst *sdi,
76 const char *prefix)
77{
78 int ret;
79 struct sr_datafeed_packet packet;
80 struct sr_datafeed_header header;
81
82 if (!prefix) {
83 sr_err("Invalid prefix.");
84 return SR_ERR_ARG;
85 }
86
87 sr_dbg("%sStarting acquisition.", prefix);
88
89 /* Send header packet to the session bus. */
90 sr_dbg("%sSending SR_DF_HEADER packet.", prefix);
91 packet.type = SR_DF_HEADER;
92 packet.payload = (uint8_t *)&header;
93 header.feed_version = 1;
94 gettimeofday(&header.starttime, NULL);
95
96 if ((ret = sr_session_send(sdi, &packet)) < 0) {
97 sr_err("%sFailed to send header packet: %d.", prefix, ret);
98 return ret;
99 }
100
101 return SR_OK;
102}
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100103
104/*
105 * Standard sr_session_stop() API helper.
106 *
107 * This function can be used to simplify most (serial port based) driver's
Uwe Hermann6078d2c2013-05-10 19:37:54 +0200108 * dev_acquisition_stop() API callback.
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100109 *
110 * @param sdi The device instance for which acquisition should stop.
111 * Must not be NULL.
112 * @param cb_data Opaque 'cb_data' pointer. Must not be NULL.
Uwe Hermann6078d2c2013-05-10 19:37:54 +0200113 * @param dev_close_fn Function pointer to the driver's dev_close().
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100114 * Must not be NULL.
115 * @param serial The serial device instance (struct serial_dev_inst *).
116 * Must not be NULL.
117 * @param prefix A driver-specific prefix string used for log messages.
118 * Must not be NULL. An empty string is allowed.
119 *
Matthias Heidbrink1477a9a2013-10-17 10:57:16 +0200120 * @retval SR_OK Success.
121 * @retval SR_ERR_ARG Invalid arguments.
122 * @retval SR_ERR_DEV_CLOSED Device is closed.
123 * @retval SR_ERR Other errors.
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100124 */
Uwe Hermannf6beaac2013-05-31 15:46:57 +0200125SR_PRIV int std_dev_acquisition_stop_serial(struct sr_dev_inst *sdi,
Uwe Hermann6078d2c2013-05-10 19:37:54 +0200126 void *cb_data, dev_close_t dev_close_fn,
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100127 struct sr_serial_dev_inst *serial, const char *prefix)
128{
129 int ret;
130 struct sr_datafeed_packet packet;
131
132 if (!prefix) {
133 sr_err("Invalid prefix.");
134 return SR_ERR_ARG;
135 }
136
137 if (sdi->status != SR_ST_ACTIVE) {
138 sr_err("%sDevice inactive, can't stop acquisition.", prefix);
Matthias Heidbrink1477a9a2013-10-17 10:57:16 +0200139 return SR_ERR_DEV_CLOSED;
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100140 }
141
142 sr_dbg("%sStopping acquisition.", prefix);
143
144 if ((ret = sr_source_remove(serial->fd)) < 0) {
145 sr_err("%sFailed to remove source: %d.", prefix, ret);
146 return ret;
147 }
148
Uwe Hermann6078d2c2013-05-10 19:37:54 +0200149 if ((ret = dev_close_fn(sdi)) < 0) {
Uwe Hermanncd2f0fe2013-02-01 23:45:32 +0100150 sr_err("%sFailed to close device: %d.", prefix, ret);
151 return ret;
152 }
153
154 /* Send SR_DF_END packet to the session bus. */
155 sr_dbg("%sSending SR_DF_END packet.", prefix);
156 packet.type = SR_DF_END;
157 packet.payload = NULL;
158 if ((ret = sr_session_send(cb_data, &packet)) < 0) {
159 sr_err("%sFailed to send SR_DF_END packet: %d.", prefix, ret);
160 return ret;
161 }
162
163 return SR_OK;
164}
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200165
166/*
167 * Standard driver dev_clear() helper.
168 *
169 * This function can be used to implement the dev_clear() driver API
170 * callback. dev_close() is called before every sr_dev_inst is cleared.
171 *
172 * The only limitation is driver-specific device contexts (sdi->priv).
173 * These are freed, but any dynamic allocation within structs stored
174 * there cannot be freed.
175 *
176 * @param driver The driver which will have its instances released.
Bert Vermeulen12a33562013-05-06 00:36:50 +0200177 * @param clear_private If not NULL, this points to a function called
178 * with sdi->priv as argument. The function can then clear any device
179 * instance-specific resources kept there. It must also clear the struct
180 * pointed to by sdi->priv.
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200181 *
182 * @return SR_OK on success.
183 */
Bert Vermeulenae5859f2013-04-17 00:41:01 +0200184SR_PRIV int std_dev_clear(const struct sr_dev_driver *driver,
185 std_dev_clear_t clear_private)
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200186{
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200187 struct drv_context *drvc;
Bert Vermeulen12a33562013-05-06 00:36:50 +0200188 struct sr_dev_inst *sdi;
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200189 GSList *l;
190 int ret;
191
Bert Vermeulen3a277f32013-05-01 14:54:44 +0200192 if (!(drvc = driver->priv))
193 /* Driver was never initialized, nothing to do. */
194 return SR_OK;
195
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200196 ret = SR_OK;
197 for (l = drvc->instances; l; l = l->next) {
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200198 if (!(sdi = l->data)) {
199 ret = SR_ERR_BUG;
200 continue;
201 }
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200202 if (driver->dev_close)
203 driver->dev_close(sdi);
204
205 if (sdi->conn) {
Bert Vermeulen12a33562013-05-06 00:36:50 +0200206 if (sdi->inst_type == SR_INST_SERIAL)
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200207 sr_serial_dev_inst_free(sdi->conn);
Bert Vermeulen12a33562013-05-06 00:36:50 +0200208#if HAVE_LIBUSB_1_0
209 else if (sdi->inst_type == SR_INST_USB)
210 sr_usb_dev_inst_free(sdi->conn);
211#endif
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200212 }
Bert Vermeulenae5859f2013-04-17 00:41:01 +0200213 if (clear_private)
214 clear_private(sdi->priv);
Bert Vermeulen12a33562013-05-06 00:36:50 +0200215 else
216 g_free(sdi->priv);
Bert Vermeulen49f00e12013-04-16 17:53:21 +0200217 sr_dev_inst_free(sdi);
218 }
219
220 g_slist_free(drvc->instances);
221 drvc->instances = NULL;
222
223 return ret;
224}