]> sigrok.org Git - libsigrok.git/blame - src/serial.c
serial: introduce "has receive data" query
[libsigrok.git] / src / serial.c
CommitLineData
a1bb33af 1/*
50985c20 2 * This file is part of the libsigrok project.
a1bb33af 3 *
c73d2ea4 4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
b19f4622 5 * Copyright (C) 2010-2012 Uwe Hermann <uwe@hermann-uwe.de>
766456be 6 * Copyright (C) 2012 Alexandru Gagniuc <mr.nuke.me@gmail.com>
bce75f94 7 * Copyright (C) 2014 Uffe Jakobsen <uffe@uffe.org>
a1bb33af
UH
8 *
9 * This program is free software: you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation, either version 3 of the License, or
12 * (at your option) any later version.
13 *
14 * This program is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17 * GNU General Public License for more details.
18 *
19 * You should have received a copy of the GNU General Public License
20 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 */
22
6ec6c43b 23#include <config.h>
54b38f64 24#include <string.h>
d02a535e 25#include <stdlib.h>
a1bb33af 26#include <glib.h>
b541f837 27#include <glib/gstdio.h>
0d4405ce 28#include <libserialport.h>
c1aae900 29#include <libsigrok/libsigrok.h>
45c59c8b 30#include "libsigrok-internal.h"
00f0016c 31#ifdef _WIN32
041b579d
DE
32#include <windows.h> /* for HANDLE */
33#endif
a1bb33af 34
e00b3f58 35/** @cond PRIVATE */
3544f848 36#define LOG_PREFIX "serial"
e00b3f58
UH
37/** @endcond */
38
39/**
40 * @file
41 *
42 * Serial port handling.
43 */
44
45/**
46 * @defgroup grp_serial Serial port handling
47 *
48 * Serial port handling functions.
49 *
50 * @{
51 */
b19f4622 52
b19f4622
UH
53/**
54 * Open the specified serial port.
55 *
299bdb24 56 * @param serial Previously initialized serial port structure.
a9cf2035 57 * @param[in] flags Flags to use when opening the serial port. Possible flags
d9251a2c 58 * include SERIAL_RDWR, SERIAL_RDONLY.
b19f4622 59 *
299bdb24
BV
60 * If the serial structure contains a serialcomm string, it will be
61 * passed to serial_set_paramstr() after the port is opened.
62 *
d0a92abd
MH
63 * @retval SR_OK Success.
64 * @retval SR_ERR Failure.
e00b3f58
UH
65 *
66 * @private
b19f4622 67 */
299bdb24 68SR_PRIV int serial_open(struct sr_serial_dev_inst *serial, int flags)
d02a535e 69{
a9bce5a5 70 int ret;
b19f4622 71
299bdb24
BV
72 if (!serial) {
73 sr_dbg("Invalid serial port.");
74 return SR_ERR;
75 }
76
77 sr_spew("Opening serial port '%s' (flags %d).", serial->port, flags);
b19f4622 78
ae4c1fb6
GS
79 ret = sr_ser_libsp_open(serial, flags);
80 if (ret != SR_OK)
81 return ret;
a54dd31e 82
299bdb24
BV
83 if (serial->serialcomm)
84 return serial_set_paramstr(serial, serial->serialcomm);
85 else
86 return SR_OK;
d02a535e
BV
87}
88
b19f4622
UH
89/**
90 * Close the specified serial port.
91 *
299bdb24 92 * @param serial Previously initialized serial port structure.
b19f4622 93 *
d0a92abd
MH
94 * @retval SR_OK Success.
95 * @retval SR_ERR Failure.
e00b3f58
UH
96 *
97 * @private
2119ab03 98 */
299bdb24 99SR_PRIV int serial_close(struct sr_serial_dev_inst *serial)
d02a535e 100{
299bdb24
BV
101 if (!serial) {
102 sr_dbg("Invalid serial port.");
103 return SR_ERR;
104 }
105
64ecf7ee 106 sr_spew("Closing serial port %s.", serial->port);
b19f4622 107
ae4c1fb6 108 return sr_ser_libsp_close(serial);
d02a535e
BV
109}
110
b19f4622 111/**
6213c38e 112 * Flush serial port buffers. Empty buffers, discard pending RX and TX data.
b19f4622 113 *
299bdb24 114 * @param serial Previously initialized serial port structure.
b19f4622 115 *
d0a92abd
MH
116 * @retval SR_OK Success.
117 * @retval SR_ERR Failure.
e00b3f58
UH
118 *
119 * @private
1fdb75e1 120 */
299bdb24 121SR_PRIV int serial_flush(struct sr_serial_dev_inst *serial)
06d64eb8 122{
299bdb24
BV
123 if (!serial) {
124 sr_dbg("Invalid serial port.");
125 return SR_ERR;
126 }
127
64ecf7ee 128 sr_spew("Flushing serial port %s.", serial->port);
b19f4622 129
ae4c1fb6 130 return sr_ser_libsp_flush(serial);
06d64eb8
BV
131}
132
bce75f94 133/**
6213c38e 134 * Drain serial port buffers. Wait for pending TX data to be sent.
bce75f94
UJ
135 *
136 * @param serial Previously initialized serial port structure.
137 *
138 * @retval SR_OK Success.
139 * @retval SR_ERR Failure.
e00b3f58
UH
140 *
141 * @private
bce75f94
UJ
142 */
143SR_PRIV int serial_drain(struct sr_serial_dev_inst *serial)
144{
bce75f94
UJ
145 if (!serial) {
146 sr_dbg("Invalid serial port.");
147 return SR_ERR;
148 }
149
bce75f94
UJ
150 sr_spew("Draining serial port %s.", serial->port);
151
ae4c1fb6 152 return sr_ser_libsp_drain(serial);
bce75f94
UJ
153}
154
8c3df6e5
GS
155/**
156 * Check for available receive data.
157 *
158 * @param[in] serial Previously opened serial port instance.
159 *
160 * @returns The number of (known) available RX data bytes.
161 *
162 * Returns 0 if no receive data is available, or if the amount of
163 * available receive data cannot get determined.
164 */
165SR_PRIV size_t serial_has_receive_data(struct sr_serial_dev_inst *serial)
166{
167 return sr_ser_libsp_get_rx_avail(serial);
168}
169
9a474211 170static int _serial_write(struct sr_serial_dev_inst *serial,
ae4c1fb6
GS
171 const void *buf, size_t count,
172 int nonblocking, unsigned int timeout_ms)
2119ab03 173{
299bdb24
BV
174 ssize_t ret;
175
176 if (!serial) {
177 sr_dbg("Invalid serial port.");
6a76efeb 178 return SR_ERR;
299bdb24
BV
179 }
180
ae4c1fb6 181 ret = sr_ser_libsp_write(serial, buf, count, nonblocking, timeout_ms);
6433156c 182 sr_spew("Wrote %zd/%zu bytes.", ret, count);
b19f4622
UH
183
184 return ret;
2119ab03
UH
185}
186
b19f4622 187/**
98edee79 188 * Write a number of bytes to the specified serial port, blocking until finished.
b19f4622 189 *
299bdb24 190 * @param serial Previously initialized serial port structure.
a9cf2035
MH
191 * @param[in] buf Buffer containing the bytes to write.
192 * @param[in] count Number of bytes to write.
eead2782 193 * @param[in] timeout_ms Timeout in ms, or 0 for no timeout.
b19f4622 194 *
a9cf2035
MH
195 * @retval SR_ERR_ARG Invalid argument.
196 * @retval SR_ERR Other error.
eead2782
ML
197 * @retval other The number of bytes written. If this is less than the number
198 * specified in the call, the timeout was reached.
e00b3f58
UH
199 *
200 * @private
2119ab03 201 */
9a474211 202SR_PRIV int serial_write_blocking(struct sr_serial_dev_inst *serial,
ae4c1fb6 203 const void *buf, size_t count, unsigned int timeout_ms)
9a474211 204{
eead2782 205 return _serial_write(serial, buf, count, 0, timeout_ms);
9a474211
ML
206}
207
a9cf2035
MH
208/**
209 * Write a number of bytes to the specified serial port, return immediately.
98edee79
ML
210 *
211 * @param serial Previously initialized serial port structure.
212 * @param[in] buf Buffer containing the bytes to write.
213 * @param[in] count Number of bytes to write.
214 *
215 * @retval SR_ERR_ARG Invalid argument.
216 * @retval SR_ERR Other error.
217 * @retval other The number of bytes written.
e00b3f58
UH
218 *
219 * @private
220 */
9a474211 221SR_PRIV int serial_write_nonblocking(struct sr_serial_dev_inst *serial,
ae4c1fb6 222 const void *buf, size_t count)
9a474211 223{
eead2782 224 return _serial_write(serial, buf, count, 1, 0);
9a474211
ML
225}
226
ae4c1fb6
GS
227static int _serial_read(struct sr_serial_dev_inst *serial,
228 void *buf, size_t count, int nonblocking, unsigned int timeout_ms)
2119ab03 229{
299bdb24
BV
230 ssize_t ret;
231
232 if (!serial) {
233 sr_dbg("Invalid serial port.");
6a76efeb 234 return SR_ERR;
299bdb24
BV
235 }
236
ae4c1fb6 237 ret = sr_ser_libsp_read(serial, buf, count, nonblocking, timeout_ms);
c4d85a40 238 if (ret > 0)
6433156c 239 sr_spew("Read %zd/%zu bytes.", ret, count);
b19f4622
UH
240
241 return ret;
2119ab03
UH
242}
243
9a474211 244/**
98edee79 245 * Read a number of bytes from the specified serial port, block until finished.
9a474211
ML
246 *
247 * @param serial Previously initialized serial port structure.
248 * @param buf Buffer where to store the bytes that are read.
a9cf2035 249 * @param[in] count The number of bytes to read.
eead2782 250 * @param[in] timeout_ms Timeout in ms, or 0 for no timeout.
9a474211 251 *
a9cf2035 252 * @retval SR_ERR_ARG Invalid argument.
d9251a2c
UH
253 * @retval SR_ERR Other error.
254 * @retval other The number of bytes read. If this is less than the number
eead2782 255 * requested, the timeout was reached.
e00b3f58
UH
256 *
257 * @private
9a474211 258 */
ae4c1fb6
GS
259SR_PRIV int serial_read_blocking(struct sr_serial_dev_inst *serial,
260 void *buf, size_t count, unsigned int timeout_ms)
9a474211 261{
eead2782 262 return _serial_read(serial, buf, count, 0, timeout_ms);
9a474211
ML
263}
264
a9cf2035
MH
265/**
266 * Try to read up to @a count bytes from the specified serial port, return
267 * immediately with what's available.
98edee79
ML
268 *
269 * @param serial Previously initialized serial port structure.
270 * @param buf Buffer where to store the bytes that are read.
271 * @param[in] count The number of bytes to read.
272 *
273 * @retval SR_ERR_ARG Invalid argument.
d9251a2c
UH
274 * @retval SR_ERR Other error.
275 * @retval other The number of bytes read.
e00b3f58
UH
276 *
277 * @private
a9cf2035 278 */
ae4c1fb6
GS
279SR_PRIV int serial_read_nonblocking(struct sr_serial_dev_inst *serial,
280 void *buf, size_t count)
9a474211 281{
eead2782 282 return _serial_read(serial, buf, count, 1, 0);
9a474211
ML
283}
284
b19f4622
UH
285/**
286 * Set serial parameters for the specified serial port.
287 *
299bdb24 288 * @param serial Previously initialized serial port structure.
04cb9157
MH
289 * @param[in] baudrate The baudrate to set.
290 * @param[in] bits The number of data bits to use (5, 6, 7 or 8).
291 * @param[in] parity The parity setting to use (0 = none, 1 = even, 2 = odd).
292 * @param[in] stopbits The number of stop bits to use (1 or 2).
293 * @param[in] flowcontrol The flow control settings to use (0 = none,
d9251a2c 294 * 1 = RTS/CTS, 2 = XON/XOFF).
04cb9157
MH
295 * @param[in] rts Status of RTS line (0 or 1; required by some interfaces).
296 * @param[in] dtr Status of DTR line (0 or 1; required by some interfaces).
2119ab03 297 *
d0a92abd 298 * @retval SR_OK Success.
04cb9157 299 * @retval SR_ERR Failure.
e00b3f58
UH
300 *
301 * @private
1ff7712c 302 */
ae4c1fb6
GS
303SR_PRIV int serial_set_params(struct sr_serial_dev_inst *serial,
304 int baudrate, int bits, int parity, int stopbits,
305 int flowcontrol, int rts, int dtr)
d02a535e 306{
a9bce5a5 307 int ret;
a9bce5a5 308
299bdb24
BV
309 if (!serial) {
310 sr_dbg("Invalid serial port.");
311 return SR_ERR;
312 }
313
64ecf7ee 314 sr_spew("Setting serial parameters on port %s.", serial->port);
b19f4622 315
ae4c1fb6
GS
316 ret = sr_ser_libsp_set_params(serial,
317 baudrate, bits, parity, stopbits, flowcontrol, rts, dtr);
318 if (ret == SR_OK) {
319 serial->comm_params.bit_rate = baudrate;
320 serial->comm_params.data_bits = bits;
321 serial->comm_params.parity_bits = parity ? 1 : 0;
322 serial->comm_params.stop_bits = stopbits;
323 sr_dbg("DBG: %s() rate %d, %d%s%d", __func__,
324 baudrate, bits,
325 (parity == 0) ? "n" : "x",
326 stopbits);
13cd8197 327 }
639c6f61 328
ae4c1fb6 329 return ret;
d02a535e 330}
792fc686 331
299bdb24 332/**
48d3238e 333 * Set serial parameters for the specified serial port from parameter string.
299bdb24
BV
334 *
335 * @param serial Previously initialized serial port structure.
48d3238e
MH
336 * @param[in] paramstr A serial communication parameters string of the form
337 * "<baudrate>/<bits><parity><stopbits>{/<option>}".\n
d9251a2c 338 * Examples: "9600/8n1", "600/7o2/dtr=1/rts=0" or "460800/8n1/flow=2".\n
48d3238e
MH
339 * \<baudrate\>=integer Baud rate.\n
340 * \<bits\>=5|6|7|8 Number of data bits.\n
341 * \<parity\>=n|e|o None, even, odd.\n
342 * \<stopbits\>=1|2 One or two stop bits.\n
343 * Options:\n
344 * dtr=0|1 Set DTR off resp. on.\n
345 * flow=0|1|2 Flow control. 0 for none, 1 for RTS/CTS, 2 for XON/XOFF.\n
346 * rts=0|1 Set RTS off resp. on.\n
347 * Please note that values and combinations of these parameters must be
348 * supported by the concrete serial interface hardware and the drivers for it.
e00b3f58 349 *
04cb9157
MH
350 * @retval SR_OK Success.
351 * @retval SR_ERR Failure.
e00b3f58
UH
352 *
353 * @private
299bdb24 354 */
299bdb24 355SR_PRIV int serial_set_paramstr(struct sr_serial_dev_inst *serial,
ae4c1fb6 356 const char *paramstr)
792fc686 357{
e00b3f58 358/** @cond PRIVATE */
48d3238e 359#define SERIAL_COMM_SPEC "^(\\d+)/([5678])([neo])([12])(.*)$"
e00b3f58 360/** @endcond */
48d3238e 361
792fc686
BV
362 GRegex *reg;
363 GMatchInfo *match;
26ddb5ba 364 int speed, databits, parity, stopbits, flow, rts, dtr, i;
71caaad4 365 char *mstr, **opts, **kv;
792fc686 366
26ddb5ba 367 speed = databits = parity = stopbits = flow = 0;
71caaad4 368 rts = dtr = -1;
ea088bb6 369 sr_spew("Parsing parameters from \"%s\".", paramstr);
792fc686
BV
370 reg = g_regex_new(SERIAL_COMM_SPEC, 0, 0, NULL);
371 if (g_regex_match(reg, paramstr, 0, &match)) {
372 if ((mstr = g_match_info_fetch(match, 1)))
373 speed = strtoul(mstr, NULL, 10);
374 g_free(mstr);
375 if ((mstr = g_match_info_fetch(match, 2)))
376 databits = strtoul(mstr, NULL, 10);
377 g_free(mstr);
378 if ((mstr = g_match_info_fetch(match, 3))) {
379 switch (mstr[0]) {
380 case 'n':
4d6a5008 381 parity = SP_PARITY_NONE;
792fc686
BV
382 break;
383 case 'e':
4d6a5008 384 parity = SP_PARITY_EVEN;
792fc686
BV
385 break;
386 case 'o':
4d6a5008 387 parity = SP_PARITY_ODD;
792fc686
BV
388 break;
389 }
390 }
391 g_free(mstr);
392 if ((mstr = g_match_info_fetch(match, 4)))
393 stopbits = strtoul(mstr, NULL, 10);
394 g_free(mstr);
71caaad4
BV
395 if ((mstr = g_match_info_fetch(match, 5)) && mstr[0] != '\0') {
396 if (mstr[0] != '/') {
397 sr_dbg("missing separator before extra options");
398 speed = 0;
399 } else {
400 /* A set of "key=value" options separated by / */
401 opts = g_strsplit(mstr + 1, "/", 0);
402 for (i = 0; opts[i]; i++) {
403 kv = g_strsplit(opts[i], "=", 2);
404 if (!strncmp(kv[0], "rts", 3)) {
405 if (kv[1][0] == '1')
406 rts = 1;
407 else if (kv[1][0] == '0')
408 rts = 0;
409 else {
410 sr_dbg("invalid value for rts: %c", kv[1][0]);
411 speed = 0;
412 }
413 } else if (!strncmp(kv[0], "dtr", 3)) {
414 if (kv[1][0] == '1')
415 dtr = 1;
416 else if (kv[1][0] == '0')
417 dtr = 0;
418 else {
419 sr_dbg("invalid value for dtr: %c", kv[1][0]);
420 speed = 0;
421 }
26ddb5ba 422 } else if (!strncmp(kv[0], "flow", 4)) {
423 if (kv[1][0] == '0')
424 flow = 0;
425 else if (kv[1][0] == '1')
426 flow = 1;
427 else if (kv[1][0] == '2')
428 flow = 2;
429 else {
430 sr_dbg("invalid value for flow: %c", kv[1][0]);
431 speed = 0;
432 }
71caaad4
BV
433 }
434 g_strfreev(kv);
435 }
436 g_strfreev(opts);
437 }
438 }
439 g_free(mstr);
792fc686
BV
440 }
441 g_match_info_unref(match);
442 g_regex_unref(reg);
443
ea088bb6
AG
444 if (speed) {
445 return serial_set_params(serial, speed, databits, parity,
26ddb5ba 446 stopbits, flow, rts, dtr);
ea088bb6
AG
447 } else {
448 sr_dbg("Could not infer speed from parameter string.");
792fc686 449 return SR_ERR_ARG;
ea088bb6 450 }
792fc686
BV
451}
452
299bdb24
BV
453/**
454 * Read a line from the specified serial port.
455 *
6213c38e
GS
456 * @param[in] serial Previously initialized serial port structure.
457 * @param[out] buf Buffer where to store the bytes that are read.
458 * @param[in] buflen Size of the buffer.
04cb9157 459 * @param[in] timeout_ms How long to wait for a line to come in.
299bdb24 460 *
6213c38e 461 * Reading stops when CR or LF is found, which is stripped from the buffer.
299bdb24 462 *
04cb9157
MH
463 * @retval SR_OK Success.
464 * @retval SR_ERR Failure.
e00b3f58
UH
465 *
466 * @private
299bdb24 467 */
ae4c1fb6
GS
468SR_PRIV int serial_readline(struct sr_serial_dev_inst *serial,
469 char **buf, int *buflen, gint64 timeout_ms)
6f22a8ef 470{
bf505eed 471 gint64 start, remaining;
6f22a8ef
UH
472 int maxlen, len;
473
64ecf7ee 474 if (!serial) {
299bdb24
BV
475 sr_dbg("Invalid serial port.");
476 return SR_ERR;
477 }
478
271392d9 479 if (!serial->sp_data) {
64ecf7ee 480 sr_dbg("Cannot use unopened serial port %s.", serial->port);
299bdb24
BV
481 return -1;
482 }
483
6f22a8ef 484 start = g_get_monotonic_time();
bf505eed 485 remaining = timeout_ms;
6f22a8ef
UH
486
487 maxlen = *buflen;
488 *buflen = len = 0;
0c5f2abc 489 while (1) {
6f22a8ef
UH
490 len = maxlen - *buflen - 1;
491 if (len < 1)
492 break;
ae4c1fb6 493 len = serial_read_blocking(serial, *buf + *buflen, 1, remaining);
6f22a8ef
UH
494 if (len > 0) {
495 *buflen += len;
496 *(*buf + *buflen) = '\0';
318dd53c
BV
497 if (*buflen > 0 && (*(*buf + *buflen - 1) == '\r'
498 || *(*buf + *buflen - 1) == '\n')) {
499 /* Strip CR/LF and terminate. */
6f22a8ef
UH
500 *(*buf + --*buflen) = '\0';
501 break;
502 }
503 }
bf505eed
ML
504 /* Reduce timeout by time elapsed. */
505 remaining = timeout_ms - ((g_get_monotonic_time() - start) / 1000);
506 if (remaining <= 0)
6f22a8ef
UH
507 /* Timeout */
508 break;
5715e84f
DT
509 if (len < 1)
510 g_usleep(2000);
6f22a8ef 511 }
318dd53c
BV
512 if (*buflen)
513 sr_dbg("Received %d: '%s'.", *buflen, *buf);
6f22a8ef
UH
514
515 return SR_OK;
516}
766456be
UH
517
518/**
519 * Try to find a valid packet in a serial data stream.
520 *
521 * @param serial Previously initialized serial port structure.
522 * @param buf Buffer containing the bytes to write.
04cb9157
MH
523 * @param buflen Size of the buffer.
524 * @param[in] packet_size Size, in bytes, of a valid packet.
766456be 525 * @param is_valid Callback that assesses whether the packet is valid or not.
04cb9157 526 * @param[in] timeout_ms The timeout after which, if no packet is detected, to
d9251a2c 527 * abort scanning.
04cb9157 528 * @param[in] baudrate The baudrate of the serial port. This parameter is not
d9251a2c
UH
529 * critical, but it helps fine tune the serial port polling
530 * delay.
766456be 531 *
d0a92abd 532 * @retval SR_OK Valid packet was found within the given timeout.
04cb9157 533 * @retval SR_ERR Failure.
e00b3f58
UH
534 *
535 * @private
766456be
UH
536 */
537SR_PRIV int serial_stream_detect(struct sr_serial_dev_inst *serial,
ae4c1fb6
GS
538 uint8_t *buf, size_t *buflen,
539 size_t packet_size,
540 packet_valid_callback is_valid,
541 uint64_t timeout_ms, int baudrate)
766456be
UH
542{
543 uint64_t start, time, byte_delay_us;
544 size_t ibuf, i, maxlen;
6433156c 545 ssize_t len;
766456be
UH
546
547 maxlen = *buflen;
548
64ecf7ee
ML
549 sr_dbg("Detecting packets on %s (timeout = %" PRIu64
550 "ms, baudrate = %d).", serial->port, timeout_ms, baudrate);
766456be
UH
551
552 if (maxlen < (packet_size / 2) ) {
553 sr_err("Buffer size must be at least twice the packet size.");
554 return SR_ERR;
555 }
556
766456be 557 /* Assume 8n1 transmission. That is 10 bits for every byte. */
1a46cc62 558 byte_delay_us = 10 * ((1000 * 1000) / baudrate);
766456be
UH
559 start = g_get_monotonic_time();
560
561 i = ibuf = len = 0;
562 while (ibuf < maxlen) {
18e4d5bc 563 len = serial_read_nonblocking(serial, &buf[ibuf], 1);
766456be
UH
564 if (len > 0) {
565 ibuf += len;
566 } else if (len == 0) {
006dbe55 567 /* No logging, already done in serial_read(). */
766456be
UH
568 } else {
569 /* Error reading byte, but continuing anyway. */
570 }
551c3d8c
AG
571
572 time = g_get_monotonic_time() - start;
573 time /= 1000;
574
766456be 575 if ((ibuf - i) >= packet_size) {
e5fa47c1 576 GString *text;
766456be 577 /* We have at least a packet's worth of data. */
e5fa47c1 578 text = sr_hexdump_new(&buf[i], packet_size);
59cae77e 579 sr_spew("Trying packet: %s", text->str);
e5fa47c1 580 sr_hexdump_free(text);
766456be 581 if (is_valid(&buf[i])) {
6433156c 582 sr_spew("Found valid %zu-byte packet after "
766456be
UH
583 "%" PRIu64 "ms.", (ibuf - i), time);
584 *buflen = ibuf;
585 return SR_OK;
586 } else {
6433156c 587 sr_spew("Got %zu bytes, but not a valid "
766456be
UH
588 "packet.", (ibuf - i));
589 }
590 /* Not a valid packet. Continue searching. */
591 i++;
592 }
551c3d8c 593 if (time >= timeout_ms) {
766456be 594 /* Timeout */
6433156c 595 sr_dbg("Detection timed out after %" PRIu64 "ms.", time);
766456be
UH
596 break;
597 }
5715e84f
DT
598 if (len < 1)
599 g_usleep(byte_delay_us);
766456be
UH
600 }
601
602 *buflen = ibuf;
603
6433156c 604 sr_err("Didn't find a valid packet (read %zu bytes).", *buflen);
766456be
UH
605
606 return SR_ERR;
607}
1bd9e678
DJ
608
609/**
610 * Extract the serial device and options from the options linked list.
611 *
612 * @param options List of options passed from the command line.
f3f19d11 613 * @param serial_device Pointer where to store the extracted serial device.
1bd9e678
DJ
614 * @param serial_options Pointer where to store the optional extracted serial
615 * options.
616 *
617 * @return SR_OK if a serial_device is found, SR_ERR if no device is found. The
618 * returned string should not be freed by the caller.
e00b3f58
UH
619 *
620 * @private
1bd9e678 621 */
ae4c1fb6
GS
622SR_PRIV int sr_serial_extract_options(GSList *options,
623 const char **serial_device, const char **serial_options)
1bd9e678
DJ
624{
625 GSList *l;
626 struct sr_config *src;
627
628 *serial_device = NULL;
629
630 for (l = options; l; l = l->next) {
631 src = l->data;
632 switch (src->key) {
633 case SR_CONF_CONN:
634 *serial_device = g_variant_get_string(src->data, NULL);
b1a7ca3b 635 sr_dbg("Parsed serial device: %s.", *serial_device);
1bd9e678 636 break;
1bd9e678
DJ
637 case SR_CONF_SERIALCOMM:
638 *serial_options = g_variant_get_string(src->data, NULL);
b1a7ca3b 639 sr_dbg("Parsed serial options: %s.", *serial_options);
1bd9e678
DJ
640 break;
641 }
642 }
643
644 if (!*serial_device) {
b1a7ca3b 645 sr_dbg("No serial device specified.");
1bd9e678
DJ
646 return SR_ERR;
647 }
648
649 return SR_OK;
650}
abc4b335 651
e00b3f58 652/** @private */
102f1239 653SR_PRIV int serial_source_add(struct sr_session *session,
ae4c1fb6
GS
654 struct sr_serial_dev_inst *serial, int events, int timeout,
655 sr_receive_data_callback cb, void *cb_data)
ba1949f5 656{
ae4c1fb6 657 if ((events & (G_IO_IN | G_IO_ERR)) && (events & G_IO_OUT)) {
cbc1413f
DE
658 sr_err("Cannot poll input/error and output simultaneously.");
659 return SR_ERR_ARG;
660 }
661
ae4c1fb6
GS
662 if (!serial->sp_data) {
663 sr_err("Invalid serial port.");
664 return SR_ERR_ARG;
ba1949f5
ML
665 }
666
ae4c1fb6
GS
667 return sr_ser_libsp_source_add(session, serial,
668 events, timeout, cb, cb_data);
abc4b335 669}
7faa3e88 670
e00b3f58 671/** @private */
102f1239 672SR_PRIV int serial_source_remove(struct sr_session *session,
ae4c1fb6 673 struct sr_serial_dev_inst *serial)
7faa3e88 674{
ae4c1fb6
GS
675 if (!serial->sp_data) {
676 sr_err("Invalid serial port.");
677 return SR_ERR_ARG;
678 }
679
680 return sr_ser_libsp_source_remove(session, serial);
7faa3e88 681}
b541f837 682
b1a7ca3b
UH
683/**
684 * Create/allocate a new sr_serial_port structure.
685 *
686 * @param name The OS dependent name of the serial port. Must not be NULL.
687 * @param description An end user friendly description for the serial port.
688 * Can be NULL (in that case the empty string is used
689 * as description).
690 *
691 * @return The newly allocated sr_serial_port struct.
692 */
24287ea9 693static struct sr_serial_port *sr_serial_new(const char *name,
ae4c1fb6 694 const char *description)
24287ea9
AJ
695{
696 struct sr_serial_port *serial;
697
698 if (!name)
699 return NULL;
700
e47a9562 701 serial = g_malloc0(sizeof(*serial));
24287ea9
AJ
702 serial->name = g_strdup(name);
703 serial->description = g_strdup(description ? description : "");
b1a7ca3b 704
24287ea9
AJ
705 return serial;
706}
707
b1a7ca3b
UH
708/**
709 * Free a previously allocated sr_serial_port structure.
710 *
711 * @param serial The sr_serial_port struct to free. Must not be NULL.
712 */
24287ea9
AJ
713SR_API void sr_serial_free(struct sr_serial_port *serial)
714{
b1a7ca3b 715 if (!serial)
24287ea9
AJ
716 return;
717 g_free(serial->name);
718 g_free(serial->description);
719 g_free(serial);
720}
721
ae4c1fb6
GS
722static GSList *append_port_list(GSList *devs, const char *name, const char *desc)
723{
724 return g_slist_append(devs, sr_serial_new(name, desc));
725}
726
24287ea9
AJ
727/**
728 * List available serial devices.
729 *
730 * @return A GSList of strings containing the path of the serial devices or
731 * NULL if no serial device is found. The returned list must be freed
732 * by the caller.
733 */
734SR_API GSList *sr_serial_list(const struct sr_dev_driver *driver)
735{
ae4c1fb6 736 GSList *tty_devs;
24287ea9 737
b1a7ca3b 738 /* Currently unused, but will be used by some drivers later on. */
24287ea9
AJ
739 (void)driver;
740
ae4c1fb6
GS
741 tty_devs = NULL;
742 tty_devs = sr_ser_libsp_list(tty_devs, append_port_list);
24287ea9 743
ae4c1fb6
GS
744 return tty_devs;
745}
24287ea9 746
ae4c1fb6
GS
747static GSList *append_port_find(GSList *devs, const char *name)
748{
749 if (!name || !*name)
750 return devs;
b1a7ca3b 751
ae4c1fb6 752 return g_slist_append(devs, g_strdup(name));
24287ea9
AJ
753}
754
b541f837
AJ
755/**
756 * Find USB serial devices via the USB vendor ID and product ID.
757 *
d0a92abd
MH
758 * @param[in] vendor_id Vendor ID of the USB device.
759 * @param[in] product_id Product ID of the USB device.
b541f837
AJ
760 *
761 * @return A GSList of strings containing the path of the serial device or
762 * NULL if no serial device is found. The returned list must be freed
763 * by the caller.
e00b3f58
UH
764 *
765 * @private
b541f837
AJ
766 */
767SR_PRIV GSList *sr_serial_find_usb(uint16_t vendor_id, uint16_t product_id)
768{
ae4c1fb6 769 GSList *tty_devs;
b541f837 770
ae4c1fb6
GS
771 tty_devs = NULL;
772 tty_devs = sr_ser_libsp_find_usb(tty_devs, append_port_find,
773 vendor_id, product_id);
b1a7ca3b 774
b541f837 775 return tty_devs;
b541f837 776}
c5cfc735 777
e00b3f58 778/** @private */
c5cfc735
BV
779SR_PRIV int serial_timeout(struct sr_serial_dev_inst *port, int num_bytes)
780{
ae4c1fb6
GS
781 int bits, baud;
782 int ret;
783 int timeout_ms;
c5cfc735 784
639c6f61 785 /* Get the bitrate and frame length. */
c5cfc735 786 bits = baud = 0;
ae4c1fb6
GS
787 ret = sr_ser_libsp_get_frame_format(port, &baud, &bits);
788 if (ret != SR_OK)
789 bits = baud = 0;
639c6f61
GS
790 if (!bits || !baud) {
791 baud = port->comm_params.bit_rate;
792 bits = 1 + port->comm_params.data_bits +
793 port->comm_params.parity_bits +
794 port->comm_params.stop_bits;
795 }
c5cfc735 796
ae4c1fb6
GS
797 /* Derive the timeout. Default to 1s. */
798 timeout_ms = 1000;
c5cfc735
BV
799 if (bits && baud) {
800 /* Throw in 10ms for misc OS overhead. */
801 timeout_ms = 10;
802 timeout_ms += ((1000.0 / baud) * bits) * num_bytes;
803 }
804
c5cfc735
BV
805 return timeout_ms;
806}
e00b3f58
UH
807
808/** @} */