Uwe Hermann | 063e7ae | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 1 | /* |
Uwe Hermann | 50985c2 | 2013-04-23 22:24:30 +0200 | [diff] [blame] | 2 | * This file is part of the libsigrok project. |
Uwe Hermann | 063e7ae | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 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 | |
Matthias Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 21 | /** \file |
| 22 | * Standard API helper functions. |
| 23 | * @internal |
| 24 | */ |
| 25 | |
Uwe Hermann | 063e7ae | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 26 | #include <glib.h> |
| 27 | #include "libsigrok.h" |
| 28 | #include "libsigrok-internal.h" |
| 29 | |
| 30 | /** |
| 31 | * Standard sr_driver_init() API helper. |
| 32 | * |
Uwe Hermann | 6078d2c | 2013-05-10 19:37:54 +0200 | [diff] [blame] | 33 | * This function can be used to simplify most driver's init() API callback. |
Uwe Hermann | 063e7ae | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 34 | * |
| 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 Heidbrink | 04cb915 | 2013-11-22 20:40:52 +0100 | [diff] [blame] | 40 | * @param[in] prefix A driver-specific prefix string used for log messages. |
Uwe Hermann | 063e7ae | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 41 | * |
| 42 | * @return SR_OK upon success, SR_ERR_ARG upon invalid arguments, or |
| 43 | * SR_ERR_MALLOC upon memory allocation errors. |
| 44 | */ |
Uwe Hermann | f6beaac | 2013-05-31 15:46:57 +0200 | [diff] [blame] | 45 | SR_PRIV int std_init(struct sr_context *sr_ctx, struct sr_dev_driver *di, |
| 46 | const char *prefix) |
Uwe Hermann | 063e7ae | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 47 | { |
| 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 Vermeulen | c2523f2 | 2013-04-27 18:24:50 +0200 | [diff] [blame] | 55 | if (!(drvc = g_try_malloc(sizeof(struct drv_context)))) { |
Uwe Hermann | 063e7ae | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 56 | sr_err("%sDriver context malloc failed.", prefix); |
| 57 | return SR_ERR_MALLOC; |
| 58 | } |
| 59 | |
| 60 | drvc->sr_ctx = sr_ctx; |
Bert Vermeulen | c2523f2 | 2013-04-27 18:24:50 +0200 | [diff] [blame] | 61 | drvc->instances = NULL; |
Uwe Hermann | 063e7ae | 2013-01-29 12:55:00 +0100 | [diff] [blame] | 62 | di->priv = drvc; |
| 63 | |
| 64 | return SR_OK; |
| 65 | } |
Uwe Hermann | 4afdfd4 | 2013-02-06 19:57:32 +0100 | [diff] [blame] | 66 | |
| 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 Hermann | 6078d2c | 2013-05-10 19:37:54 +0200 | [diff] [blame] | 71 | * dev_acquisition_start() API callback. |
Uwe Hermann | 4afdfd4 | 2013-02-06 19:57:32 +0100 | [diff] [blame] | 72 | * |
| 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 | */ |
| 80 | SR_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 Hermann | cd2f0fe | 2013-02-01 23:45:32 +0100 | [diff] [blame] | 108 | |
Uwe Hermann | c4f2dfd | 2013-11-13 19:56:13 +0100 | [diff] [blame] | 109 | #ifdef HAVE_LIBSERIALPORT |
| 110 | |
Uwe Hermann | cd2f0fe | 2013-02-01 23:45:32 +0100 | [diff] [blame] | 111 | /* |
Bert Vermeulen | 23dc666 | 2013-12-07 20:26:15 +0100 | [diff] [blame] | 112 | * 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 | */ |
| 124 | SR_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 | /* |
Uwe Hermann | cd2f0fe | 2013-02-01 23:45:32 +0100 | [diff] [blame] | 138 | * Standard sr_session_stop() API helper. |
| 139 | * |
| 140 | * This function can be used to simplify most (serial port based) driver's |
Uwe Hermann | 6078d2c | 2013-05-10 19:37:54 +0200 | [diff] [blame] | 141 | * dev_acquisition_stop() API callback. |
Uwe Hermann | cd2f0fe | 2013-02-01 23:45:32 +0100 | [diff] [blame] | 142 | * |
| 143 | * @param sdi The device instance for which acquisition should stop. |
| 144 | * Must not be NULL. |
| 145 | * @param cb_data Opaque 'cb_data' pointer. Must not be NULL. |
Uwe Hermann | 6078d2c | 2013-05-10 19:37:54 +0200 | [diff] [blame] | 146 | * @param dev_close_fn Function pointer to the driver's dev_close(). |
Uwe Hermann | cd2f0fe | 2013-02-01 23:45:32 +0100 | [diff] [blame] | 147 | * Must not be NULL. |
| 148 | * @param serial The serial device instance (struct serial_dev_inst *). |
| 149 | * Must not be NULL. |
| 150 | * @param prefix A driver-specific prefix string used for log messages. |
| 151 | * Must not be NULL. An empty string is allowed. |
| 152 | * |
Matthias Heidbrink | 1477a9a | 2013-10-17 10:57:16 +0200 | [diff] [blame] | 153 | * @retval SR_OK Success. |
| 154 | * @retval SR_ERR_ARG Invalid arguments. |
| 155 | * @retval SR_ERR_DEV_CLOSED Device is closed. |
| 156 | * @retval SR_ERR Other errors. |
Uwe Hermann | cd2f0fe | 2013-02-01 23:45:32 +0100 | [diff] [blame] | 157 | */ |
Bert Vermeulen | d43b090 | 2013-12-07 20:39:55 +0100 | [diff] [blame] | 158 | SR_PRIV int std_serial_dev_acquisition_stop(struct sr_dev_inst *sdi, |
Uwe Hermann | 6078d2c | 2013-05-10 19:37:54 +0200 | [diff] [blame] | 159 | void *cb_data, dev_close_t dev_close_fn, |
Uwe Hermann | cd2f0fe | 2013-02-01 23:45:32 +0100 | [diff] [blame] | 160 | struct sr_serial_dev_inst *serial, const char *prefix) |
| 161 | { |
| 162 | int ret; |
| 163 | struct sr_datafeed_packet packet; |
| 164 | |
| 165 | if (!prefix) { |
| 166 | sr_err("Invalid prefix."); |
| 167 | return SR_ERR_ARG; |
| 168 | } |
| 169 | |
| 170 | if (sdi->status != SR_ST_ACTIVE) { |
| 171 | sr_err("%sDevice inactive, can't stop acquisition.", prefix); |
Matthias Heidbrink | 1477a9a | 2013-10-17 10:57:16 +0200 | [diff] [blame] | 172 | return SR_ERR_DEV_CLOSED; |
Uwe Hermann | cd2f0fe | 2013-02-01 23:45:32 +0100 | [diff] [blame] | 173 | } |
| 174 | |
| 175 | sr_dbg("%sStopping acquisition.", prefix); |
| 176 | |
Martin Ling | 7faa3e8 | 2013-12-02 13:06:08 +0000 | [diff] [blame] | 177 | if ((ret = serial_source_remove(serial)) < 0) { |
Uwe Hermann | cd2f0fe | 2013-02-01 23:45:32 +0100 | [diff] [blame] | 178 | sr_err("%sFailed to remove source: %d.", prefix, ret); |
| 179 | return ret; |
| 180 | } |
| 181 | |
Uwe Hermann | 6078d2c | 2013-05-10 19:37:54 +0200 | [diff] [blame] | 182 | if ((ret = dev_close_fn(sdi)) < 0) { |
Uwe Hermann | cd2f0fe | 2013-02-01 23:45:32 +0100 | [diff] [blame] | 183 | sr_err("%sFailed to close device: %d.", prefix, ret); |
| 184 | return ret; |
| 185 | } |
| 186 | |
| 187 | /* Send SR_DF_END packet to the session bus. */ |
| 188 | sr_dbg("%sSending SR_DF_END packet.", prefix); |
| 189 | packet.type = SR_DF_END; |
| 190 | packet.payload = NULL; |
| 191 | if ((ret = sr_session_send(cb_data, &packet)) < 0) { |
| 192 | sr_err("%sFailed to send SR_DF_END packet: %d.", prefix, ret); |
| 193 | return ret; |
| 194 | } |
| 195 | |
| 196 | return SR_OK; |
| 197 | } |
Bert Vermeulen | 49f00e1 | 2013-04-16 17:53:21 +0200 | [diff] [blame] | 198 | |
Uwe Hermann | c4f2dfd | 2013-11-13 19:56:13 +0100 | [diff] [blame] | 199 | #endif |
| 200 | |
Bert Vermeulen | 49f00e1 | 2013-04-16 17:53:21 +0200 | [diff] [blame] | 201 | /* |
| 202 | * Standard driver dev_clear() helper. |
| 203 | * |
| 204 | * This function can be used to implement the dev_clear() driver API |
| 205 | * callback. dev_close() is called before every sr_dev_inst is cleared. |
| 206 | * |
| 207 | * The only limitation is driver-specific device contexts (sdi->priv). |
| 208 | * These are freed, but any dynamic allocation within structs stored |
| 209 | * there cannot be freed. |
| 210 | * |
| 211 | * @param driver The driver which will have its instances released. |
Bert Vermeulen | 12a3356 | 2013-05-06 00:36:50 +0200 | [diff] [blame] | 212 | * @param clear_private If not NULL, this points to a function called |
| 213 | * with sdi->priv as argument. The function can then clear any device |
| 214 | * instance-specific resources kept there. It must also clear the struct |
| 215 | * pointed to by sdi->priv. |
Bert Vermeulen | 49f00e1 | 2013-04-16 17:53:21 +0200 | [diff] [blame] | 216 | * |
| 217 | * @return SR_OK on success. |
| 218 | */ |
Bert Vermeulen | ae5859f | 2013-04-17 00:41:01 +0200 | [diff] [blame] | 219 | SR_PRIV int std_dev_clear(const struct sr_dev_driver *driver, |
| 220 | std_dev_clear_t clear_private) |
Bert Vermeulen | 49f00e1 | 2013-04-16 17:53:21 +0200 | [diff] [blame] | 221 | { |
Bert Vermeulen | 49f00e1 | 2013-04-16 17:53:21 +0200 | [diff] [blame] | 222 | struct drv_context *drvc; |
Bert Vermeulen | 12a3356 | 2013-05-06 00:36:50 +0200 | [diff] [blame] | 223 | struct sr_dev_inst *sdi; |
Bert Vermeulen | 49f00e1 | 2013-04-16 17:53:21 +0200 | [diff] [blame] | 224 | GSList *l; |
| 225 | int ret; |
| 226 | |
Bert Vermeulen | 3a277f3 | 2013-05-01 14:54:44 +0200 | [diff] [blame] | 227 | if (!(drvc = driver->priv)) |
| 228 | /* Driver was never initialized, nothing to do. */ |
| 229 | return SR_OK; |
| 230 | |
Bert Vermeulen | 49f00e1 | 2013-04-16 17:53:21 +0200 | [diff] [blame] | 231 | ret = SR_OK; |
| 232 | for (l = drvc->instances; l; l = l->next) { |
Bert Vermeulen | 49f00e1 | 2013-04-16 17:53:21 +0200 | [diff] [blame] | 233 | if (!(sdi = l->data)) { |
| 234 | ret = SR_ERR_BUG; |
| 235 | continue; |
| 236 | } |
Bert Vermeulen | 49f00e1 | 2013-04-16 17:53:21 +0200 | [diff] [blame] | 237 | if (driver->dev_close) |
| 238 | driver->dev_close(sdi); |
| 239 | |
| 240 | if (sdi->conn) { |
Uwe Hermann | c4f2dfd | 2013-11-13 19:56:13 +0100 | [diff] [blame] | 241 | #if HAVE_LIBSERIALPORT |
| 242 | if (sdi->inst_type == SR_INST_SERIAL) |
Bert Vermeulen | 49f00e1 | 2013-04-16 17:53:21 +0200 | [diff] [blame] | 243 | sr_serial_dev_inst_free(sdi->conn); |
Uwe Hermann | c4f2dfd | 2013-11-13 19:56:13 +0100 | [diff] [blame] | 244 | #endif |
Bert Vermeulen | 12a3356 | 2013-05-06 00:36:50 +0200 | [diff] [blame] | 245 | #if HAVE_LIBUSB_1_0 |
Uwe Hermann | c4f2dfd | 2013-11-13 19:56:13 +0100 | [diff] [blame] | 246 | if (sdi->inst_type == SR_INST_USB) |
Bert Vermeulen | 12a3356 | 2013-05-06 00:36:50 +0200 | [diff] [blame] | 247 | sr_usb_dev_inst_free(sdi->conn); |
| 248 | #endif |
Martin Ling | 23f43df | 2013-12-03 20:40:19 +0000 | [diff] [blame] | 249 | if (sdi->inst_type == SR_INST_SCPI) |
| 250 | sr_scpi_free(sdi->conn); |
Bert Vermeulen | 49f00e1 | 2013-04-16 17:53:21 +0200 | [diff] [blame] | 251 | } |
Bert Vermeulen | ae5859f | 2013-04-17 00:41:01 +0200 | [diff] [blame] | 252 | if (clear_private) |
| 253 | clear_private(sdi->priv); |
Bert Vermeulen | 12a3356 | 2013-05-06 00:36:50 +0200 | [diff] [blame] | 254 | else |
| 255 | g_free(sdi->priv); |
Bert Vermeulen | 49f00e1 | 2013-04-16 17:53:21 +0200 | [diff] [blame] | 256 | sr_dev_inst_free(sdi); |
| 257 | } |
| 258 | |
| 259 | g_slist_free(drvc->instances); |
| 260 | drvc->instances = NULL; |
| 261 | |
| 262 | return ret; |
| 263 | } |
Martin Ling | 043e899 | 2013-12-07 18:41:09 +0000 | [diff] [blame] | 264 | |
Martin Ling | bf2c987 | 2013-12-07 18:47:43 +0000 | [diff] [blame] | 265 | SR_PRIV int std_serial_dev_close(struct sr_dev_inst *sdi) |
Martin Ling | 043e899 | 2013-12-07 18:41:09 +0000 | [diff] [blame] | 266 | { |
| 267 | struct sr_serial_dev_inst *serial; |
| 268 | |
| 269 | serial = sdi->conn; |
Martin Ling | 6936af3 | 2013-12-07 19:16:30 +0000 | [diff] [blame] | 270 | if (serial && sdi->status == SR_ST_ACTIVE) { |
Martin Ling | 043e899 | 2013-12-07 18:41:09 +0000 | [diff] [blame] | 271 | serial_close(serial); |
| 272 | sdi->status = SR_ST_INACTIVE; |
| 273 | } |
| 274 | |
| 275 | return SR_OK; |
| 276 | } |