Clarify sp_list_ports() code.
[libserialport/gsi.git] / serialport.c
blobb8ddffe870e1e1fa4c2269471d78a6cbfb185195
1 /*
2 * This file is part of the libserialport project.
4 * Copyright (C) 2010-2012 Bert Vermeulen <bert@biot.com>
5 * Copyright (C) 2010-2012 Uwe Hermann <uwe@hermann-uwe.de>
6 * Copyright (C) 2013 Martin Ling <martin-libserialport@earth.li>
7 * Copyright (C) 2013 Matthias Heidbrink <m-sigrok@heidbrink.biz>
8 * Copyright (C) 2014 Aurelien Jacobs <aurel@gnuage.org>
10 * This program is free software: you can redistribute it and/or modify
11 * it under the terms of the GNU Lesser General Public License as
12 * published by the Free Software Foundation, either version 3 of the
13 * License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU Lesser General Public License
21 * along with this program. If not, see <http://www.gnu.org/licenses/>.
24 #include "libserialport.h"
25 #include "libserialport_internal.h"
27 static const struct std_baudrate std_baudrates[] = {
28 #ifdef _WIN32
30 * The baudrates 50/75/134/150/200/1800/230400/460800 do not seem to
31 * have documented CBR_* macros.
33 BAUD(110), BAUD(300), BAUD(600), BAUD(1200), BAUD(2400), BAUD(4800),
34 BAUD(9600), BAUD(14400), BAUD(19200), BAUD(38400), BAUD(57600),
35 BAUD(115200), BAUD(128000), BAUD(256000),
36 #else
37 BAUD(50), BAUD(75), BAUD(110), BAUD(134), BAUD(150), BAUD(200),
38 BAUD(300), BAUD(600), BAUD(1200), BAUD(1800), BAUD(2400), BAUD(4800),
39 BAUD(9600), BAUD(19200), BAUD(38400), BAUD(57600), BAUD(115200),
40 BAUD(230400),
41 #if !defined(__APPLE__) && !defined(__OpenBSD__)
42 BAUD(460800),
43 #endif
44 #endif
47 #define NUM_STD_BAUDRATES ARRAY_SIZE(std_baudrates)
49 void (*sp_debug_handler)(const char *format, ...) = sp_default_debug_handler;
51 static enum sp_return get_config(struct sp_port *port, struct port_data *data,
52 struct sp_port_config *config);
54 static enum sp_return set_config(struct sp_port *port, struct port_data *data,
55 const struct sp_port_config *config);
57 SP_API enum sp_return sp_get_port_by_name(const char *portname, struct sp_port **port_ptr)
59 struct sp_port *port;
60 #ifndef NO_PORT_METADATA
61 enum sp_return ret;
62 #endif
63 int len;
65 TRACE("%s, %p", portname, port_ptr);
67 if (!port_ptr)
68 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
70 *port_ptr = NULL;
72 if (!portname)
73 RETURN_ERROR(SP_ERR_ARG, "Null port name");
75 DEBUG_FMT("Building structure for port %s", portname);
77 if (!(port = malloc(sizeof(struct sp_port))))
78 RETURN_ERROR(SP_ERR_MEM, "Port structure malloc failed");
80 len = strlen(portname) + 1;
82 if (!(port->name = malloc(len))) {
83 free(port);
84 RETURN_ERROR(SP_ERR_MEM, "Port name malloc failed");
87 memcpy(port->name, portname, len);
89 #ifdef _WIN32
90 port->usb_path = NULL;
91 port->hdl = INVALID_HANDLE_VALUE;
92 #else
93 port->fd = -1;
94 #endif
96 port->description = NULL;
97 port->transport = SP_TRANSPORT_NATIVE;
98 port->usb_bus = -1;
99 port->usb_address = -1;
100 port->usb_vid = -1;
101 port->usb_pid = -1;
102 port->usb_manufacturer = NULL;
103 port->usb_product = NULL;
104 port->usb_serial = NULL;
105 port->bluetooth_address = NULL;
107 #ifndef NO_PORT_METADATA
108 if ((ret = get_port_details(port)) != SP_OK) {
109 sp_free_port(port);
110 return ret;
112 #endif
114 *port_ptr = port;
116 RETURN_OK();
119 SP_API char *sp_get_port_name(const struct sp_port *port)
121 TRACE("%p", port);
123 if (!port)
124 return NULL;
126 RETURN_STRING(port->name);
129 SP_API char *sp_get_port_description(struct sp_port *port)
131 TRACE("%p", port);
133 if (!port || !port->description)
134 return NULL;
136 RETURN_STRING(port->description);
139 SP_API enum sp_transport sp_get_port_transport(struct sp_port *port)
141 TRACE("%p", port);
143 if (!port)
144 RETURN_ERROR(SP_ERR_ARG, "Null port");
146 RETURN_INT(port->transport);
149 SP_API enum sp_return sp_get_port_usb_bus_address(const struct sp_port *port,
150 int *usb_bus,int *usb_address)
152 TRACE("%p", port);
154 if (!port)
155 RETURN_ERROR(SP_ERR_ARG, "Null port");
156 if (port->transport != SP_TRANSPORT_USB)
157 RETURN_ERROR(SP_ERR_ARG, "Port does not use USB transport");
158 if (port->usb_bus < 0 || port->usb_address < 0)
159 RETURN_ERROR(SP_ERR_SUPP, "Bus and address values are not available");
161 if (usb_bus)
162 *usb_bus = port->usb_bus;
163 if (usb_address)
164 *usb_address = port->usb_address;
166 RETURN_OK();
169 SP_API enum sp_return sp_get_port_usb_vid_pid(const struct sp_port *port,
170 int *usb_vid, int *usb_pid)
172 TRACE("%p", port);
174 if (!port)
175 RETURN_ERROR(SP_ERR_ARG, "Null port");
176 if (port->transport != SP_TRANSPORT_USB)
177 RETURN_ERROR(SP_ERR_ARG, "Port does not use USB transport");
178 if (port->usb_vid < 0 || port->usb_pid < 0)
179 RETURN_ERROR(SP_ERR_SUPP, "VID:PID values are not available");
181 if (usb_vid)
182 *usb_vid = port->usb_vid;
183 if (usb_pid)
184 *usb_pid = port->usb_pid;
186 RETURN_OK();
189 SP_API char *sp_get_port_usb_manufacturer(const struct sp_port *port)
191 TRACE("%p", port);
193 if (!port || port->transport != SP_TRANSPORT_USB || !port->usb_manufacturer)
194 return NULL;
196 RETURN_STRING(port->usb_manufacturer);
199 SP_API char *sp_get_port_usb_product(const struct sp_port *port)
201 TRACE("%p", port);
203 if (!port || port->transport != SP_TRANSPORT_USB || !port->usb_product)
204 return NULL;
206 RETURN_STRING(port->usb_product);
209 SP_API char *sp_get_port_usb_serial(const struct sp_port *port)
211 TRACE("%p", port);
213 if (!port || port->transport != SP_TRANSPORT_USB || !port->usb_serial)
214 return NULL;
216 RETURN_STRING(port->usb_serial);
219 SP_API char *sp_get_port_bluetooth_address(const struct sp_port *port)
221 TRACE("%p", port);
223 if (!port || port->transport != SP_TRANSPORT_BLUETOOTH
224 || !port->bluetooth_address)
225 return NULL;
227 RETURN_STRING(port->bluetooth_address);
230 SP_API enum sp_return sp_get_port_handle(const struct sp_port *port,
231 void *result_ptr)
233 TRACE("%p, %p", port, result_ptr);
235 if (!port)
236 RETURN_ERROR(SP_ERR_ARG, "Null port");
238 #ifdef _WIN32
239 HANDLE *handle_ptr = result_ptr;
240 *handle_ptr = port->hdl;
241 #else
242 int *fd_ptr = result_ptr;
243 *fd_ptr = port->fd;
244 #endif
246 RETURN_OK();
249 SP_API enum sp_return sp_copy_port(const struct sp_port *port,
250 struct sp_port **copy_ptr)
252 TRACE("%p, %p", port, copy_ptr);
254 if (!copy_ptr)
255 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
257 *copy_ptr = NULL;
259 if (!port)
260 RETURN_ERROR(SP_ERR_ARG, "Null port");
262 if (!port->name)
263 RETURN_ERROR(SP_ERR_ARG, "Null port name");
265 DEBUG("Copying port structure");
267 RETURN_INT(sp_get_port_by_name(port->name, copy_ptr));
270 SP_API void sp_free_port(struct sp_port *port)
272 TRACE("%p", port);
274 if (!port) {
275 DEBUG("Null port");
276 RETURN();
279 DEBUG("Freeing port structure");
281 if (port->name)
282 free(port->name);
283 if (port->description)
284 free(port->description);
285 if (port->usb_manufacturer)
286 free(port->usb_manufacturer);
287 if (port->usb_product)
288 free(port->usb_product);
289 if (port->usb_serial)
290 free(port->usb_serial);
291 if (port->bluetooth_address)
292 free(port->bluetooth_address);
293 #ifdef _WIN32
294 if (port->usb_path)
295 free(port->usb_path);
296 #endif
298 free(port);
300 RETURN();
303 SP_PRIV struct sp_port **list_append(struct sp_port **list,
304 const char *portname)
306 void *tmp;
307 unsigned int count;
309 for (count = 0; list[count]; count++);
310 if (!(tmp = realloc(list, sizeof(struct sp_port *) * (count + 2))))
311 goto fail;
312 list = tmp;
313 if (sp_get_port_by_name(portname, &list[count]) != SP_OK)
314 goto fail;
315 list[count + 1] = NULL;
316 return list;
318 fail:
319 sp_free_port_list(list);
320 return NULL;
323 SP_API enum sp_return sp_list_ports(struct sp_port ***list_ptr)
325 struct sp_port **list;
326 int ret;
328 TRACE("%p", list_ptr);
330 if (!list_ptr)
331 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
333 #ifdef NO_ENUMERATION
334 RETURN_ERROR(SP_ERR_SUPP, "Enumeration not supported on this platform");
335 #else
336 DEBUG("Enumerating ports");
338 if (!(list = malloc(sizeof(struct sp_port *))))
339 RETURN_ERROR(SP_ERR_MEM, "Port list malloc failed");
341 list[0] = NULL;
343 ret = list_ports(&list);
345 if (ret == SP_OK) {
346 *list_ptr = list;
347 } else {
348 sp_free_port_list(list);
349 *list_ptr = NULL;
352 RETURN_CODEVAL(ret);
353 #endif
356 SP_API void sp_free_port_list(struct sp_port **list)
358 unsigned int i;
360 TRACE("%p", list);
362 if (!list) {
363 DEBUG("Null list");
364 RETURN();
367 DEBUG("Freeing port list");
369 for (i = 0; list[i]; i++)
370 sp_free_port(list[i]);
371 free(list);
373 RETURN();
376 #define CHECK_PORT() do { \
377 if (!port) \
378 RETURN_ERROR(SP_ERR_ARG, "Null port"); \
379 if (!port->name) \
380 RETURN_ERROR(SP_ERR_ARG, "Null port name"); \
381 } while (0)
382 #ifdef _WIN32
383 #define CHECK_PORT_HANDLE() do { \
384 if (port->hdl == INVALID_HANDLE_VALUE) \
385 RETURN_ERROR(SP_ERR_ARG, "Invalid port handle"); \
386 } while (0)
387 #else
388 #define CHECK_PORT_HANDLE() do { \
389 if (port->fd < 0) \
390 RETURN_ERROR(SP_ERR_ARG, "Invalid port fd"); \
391 } while (0)
392 #endif
393 #define CHECK_OPEN_PORT() do { \
394 CHECK_PORT(); \
395 CHECK_PORT_HANDLE(); \
396 } while (0)
398 #ifdef WIN32
399 /** To be called after port receive buffer is emptied. */
400 static enum sp_return restart_wait(struct sp_port *port)
402 DWORD wait_result;
404 if (port->wait_running) {
405 /* Check status of running wait operation. */
406 if (GetOverlappedResult(port->hdl, &port->wait_ovl,
407 &wait_result, FALSE)) {
408 DEBUG("Previous wait completed");
409 port->wait_running = FALSE;
410 } else if (GetLastError() == ERROR_IO_INCOMPLETE) {
411 DEBUG("Previous wait still running");
412 RETURN_OK();
413 } else {
414 RETURN_FAIL("GetOverlappedResult() failed");
418 if (!port->wait_running) {
419 /* Start new wait operation. */
420 if (WaitCommEvent(port->hdl, &port->events,
421 &port->wait_ovl)) {
422 DEBUG("New wait returned, events already pending");
423 } else if (GetLastError() == ERROR_IO_PENDING) {
424 DEBUG("New wait running in background");
425 port->wait_running = TRUE;
426 } else {
427 RETURN_FAIL("WaitCommEvent() failed");
431 RETURN_OK();
433 #endif
435 SP_API enum sp_return sp_open(struct sp_port *port, enum sp_mode flags)
437 struct port_data data;
438 struct sp_port_config config;
439 enum sp_return ret;
441 TRACE("%p, 0x%x", port, flags);
443 CHECK_PORT();
445 if (flags > SP_MODE_READ_WRITE)
446 RETURN_ERROR(SP_ERR_ARG, "Invalid flags");
448 DEBUG_FMT("Opening port %s", port->name);
450 #ifdef _WIN32
451 DWORD desired_access = 0, flags_and_attributes = 0, errors;
452 char *escaped_port_name;
453 COMSTAT status;
455 /* Prefix port name with '\\.\' to work with ports above COM9. */
456 if (!(escaped_port_name = malloc(strlen(port->name) + 5)))
457 RETURN_ERROR(SP_ERR_MEM, "Escaped port name malloc failed");
458 sprintf(escaped_port_name, "\\\\.\\%s", port->name);
460 /* Map 'flags' to the OS-specific settings. */
461 flags_and_attributes = FILE_ATTRIBUTE_NORMAL | FILE_FLAG_OVERLAPPED;
462 if (flags & SP_MODE_READ)
463 desired_access |= GENERIC_READ;
464 if (flags & SP_MODE_WRITE)
465 desired_access |= GENERIC_WRITE;
467 port->hdl = CreateFile(escaped_port_name, desired_access, 0, 0,
468 OPEN_EXISTING, flags_and_attributes, 0);
470 free(escaped_port_name);
472 if (port->hdl == INVALID_HANDLE_VALUE)
473 RETURN_FAIL("Port CreateFile() failed");
475 /* All timeouts initially disabled. */
476 port->timeouts.ReadIntervalTimeout = 0;
477 port->timeouts.ReadTotalTimeoutMultiplier = 0;
478 port->timeouts.ReadTotalTimeoutConstant = 0;
479 port->timeouts.WriteTotalTimeoutMultiplier = 0;
480 port->timeouts.WriteTotalTimeoutConstant = 0;
482 if (SetCommTimeouts(port->hdl, &port->timeouts) == 0) {
483 sp_close(port);
484 RETURN_FAIL("SetCommTimeouts() failed");
487 /* Prepare OVERLAPPED structures. */
488 #define INIT_OVERLAPPED(ovl) do { \
489 memset(&port->ovl, 0, sizeof(port->ovl)); \
490 port->ovl.hEvent = INVALID_HANDLE_VALUE; \
491 if ((port->ovl.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL)) \
492 == INVALID_HANDLE_VALUE) { \
493 sp_close(port); \
494 RETURN_FAIL(#ovl "CreateEvent() failed"); \
496 } while (0)
498 INIT_OVERLAPPED(read_ovl);
499 INIT_OVERLAPPED(write_ovl);
500 INIT_OVERLAPPED(wait_ovl);
502 /* Set event mask for RX and error events. */
503 if (SetCommMask(port->hdl, EV_RXCHAR | EV_ERR) == 0) {
504 sp_close(port);
505 RETURN_FAIL("SetCommMask() failed");
508 port->writing = FALSE;
509 port->wait_running = FALSE;
511 ret = restart_wait(port);
513 if (ret < 0) {
514 sp_close(port);
515 RETURN_CODEVAL(ret);
517 #else
518 int flags_local = O_NONBLOCK | O_NOCTTY;
520 /* Map 'flags' to the OS-specific settings. */
521 if ((flags & SP_MODE_READ_WRITE) == SP_MODE_READ_WRITE)
522 flags_local |= O_RDWR;
523 else if (flags & SP_MODE_READ)
524 flags_local |= O_RDONLY;
525 else if (flags & SP_MODE_WRITE)
526 flags_local |= O_WRONLY;
528 if ((port->fd = open(port->name, flags_local)) < 0)
529 RETURN_FAIL("open() failed");
530 #endif
532 ret = get_config(port, &data, &config);
534 if (ret < 0) {
535 sp_close(port);
536 RETURN_CODEVAL(ret);
539 /* Set sane port settings. */
540 #ifdef _WIN32
541 data.dcb.fBinary = TRUE;
542 data.dcb.fDsrSensitivity = FALSE;
543 data.dcb.fErrorChar = FALSE;
544 data.dcb.fNull = FALSE;
545 data.dcb.fAbortOnError = FALSE;
546 #else
547 /* Turn off all fancy termios tricks, give us a raw channel. */
548 data.term.c_iflag &= ~(IGNBRK | BRKINT | PARMRK | ISTRIP | INLCR | IGNCR | ICRNL | IMAXBEL);
549 #ifdef IUCLC
550 data.term.c_iflag &= ~IUCLC;
551 #endif
552 data.term.c_oflag &= ~(OPOST | ONLCR | OCRNL | ONOCR | ONLRET);
553 #ifdef OLCUC
554 data.term.c_oflag &= ~OLCUC;
555 #endif
556 #ifdef NLDLY
557 data.term.c_oflag &= ~NLDLY;
558 #endif
559 #ifdef CRDLY
560 data.term.c_oflag &= ~CRDLY;
561 #endif
562 #ifdef TABDLY
563 data.term.c_oflag &= ~TABDLY;
564 #endif
565 #ifdef BSDLY
566 data.term.c_oflag &= ~BSDLY;
567 #endif
568 #ifdef VTDLY
569 data.term.c_oflag &= ~VTDLY;
570 #endif
571 #ifdef FFDLY
572 data.term.c_oflag &= ~FFDLY;
573 #endif
574 #ifdef OFILL
575 data.term.c_oflag &= ~OFILL;
576 #endif
577 data.term.c_lflag &= ~(ISIG | ICANON | ECHO | IEXTEN);
578 data.term.c_cc[VMIN] = 0;
579 data.term.c_cc[VTIME] = 0;
581 /* Ignore modem status lines; enable receiver; leave control lines alone on close. */
582 data.term.c_cflag |= (CLOCAL | CREAD | HUPCL);
583 #endif
585 #ifdef _WIN32
586 if (ClearCommError(port->hdl, &errors, &status) == 0)
587 RETURN_FAIL("ClearCommError() failed");
588 #endif
590 ret = set_config(port, &data, &config);
592 if (ret < 0) {
593 sp_close(port);
594 RETURN_CODEVAL(ret);
597 RETURN_OK();
600 SP_API enum sp_return sp_close(struct sp_port *port)
602 TRACE("%p", port);
604 CHECK_OPEN_PORT();
606 DEBUG_FMT("Closing port %s", port->name);
608 #ifdef _WIN32
609 /* Returns non-zero upon success, 0 upon failure. */
610 if (CloseHandle(port->hdl) == 0)
611 RETURN_FAIL("Port CloseHandle() failed");
612 port->hdl = INVALID_HANDLE_VALUE;
614 /* Close event handles for overlapped structures. */
615 #define CLOSE_OVERLAPPED(ovl) do { \
616 if (port->ovl.hEvent != INVALID_HANDLE_VALUE && \
617 CloseHandle(port->ovl.hEvent) == 0) \
618 RETURN_FAIL(# ovl "event CloseHandle() failed"); \
619 } while (0)
620 CLOSE_OVERLAPPED(read_ovl);
621 CLOSE_OVERLAPPED(write_ovl);
622 CLOSE_OVERLAPPED(wait_ovl);
624 #else
625 /* Returns 0 upon success, -1 upon failure. */
626 if (close(port->fd) == -1)
627 RETURN_FAIL("close() failed");
628 port->fd = -1;
629 #endif
631 RETURN_OK();
634 SP_API enum sp_return sp_flush(struct sp_port *port, enum sp_buffer buffers)
636 TRACE("%p, 0x%x", port, buffers);
638 CHECK_OPEN_PORT();
640 if (buffers > SP_BUF_BOTH)
641 RETURN_ERROR(SP_ERR_ARG, "Invalid buffer selection");
643 const char *buffer_names[] = {"no", "input", "output", "both"};
645 DEBUG_FMT("Flushing %s buffers on port %s",
646 buffer_names[buffers], port->name);
648 #ifdef _WIN32
649 DWORD flags = 0;
650 if (buffers & SP_BUF_INPUT)
651 flags |= PURGE_RXCLEAR;
652 if (buffers & SP_BUF_OUTPUT)
653 flags |= PURGE_TXCLEAR;
655 /* Returns non-zero upon success, 0 upon failure. */
656 if (PurgeComm(port->hdl, flags) == 0)
657 RETURN_FAIL("PurgeComm() failed");
659 if (buffers & SP_BUF_INPUT)
660 TRY(restart_wait(port));
661 #else
662 int flags = 0;
663 if (buffers == SP_BUF_BOTH)
664 flags = TCIOFLUSH;
665 else if (buffers == SP_BUF_INPUT)
666 flags = TCIFLUSH;
667 else if (buffers == SP_BUF_OUTPUT)
668 flags = TCOFLUSH;
670 /* Returns 0 upon success, -1 upon failure. */
671 if (tcflush(port->fd, flags) < 0)
672 RETURN_FAIL("tcflush() failed");
673 #endif
674 RETURN_OK();
677 SP_API enum sp_return sp_drain(struct sp_port *port)
679 TRACE("%p", port);
681 CHECK_OPEN_PORT();
683 DEBUG_FMT("Draining port %s", port->name);
685 #ifdef _WIN32
686 /* Returns non-zero upon success, 0 upon failure. */
687 if (FlushFileBuffers(port->hdl) == 0)
688 RETURN_FAIL("FlushFileBuffers() failed");
689 RETURN_OK();
690 #else
691 int result;
692 while (1) {
693 #ifdef __ANDROID__
694 int arg = 1;
695 result = ioctl(port->fd, TCSBRK, &arg);
696 #else
697 result = tcdrain(port->fd);
698 #endif
699 if (result < 0) {
700 if (errno == EINTR) {
701 DEBUG("tcdrain() was interrupted");
702 continue;
703 } else {
704 RETURN_FAIL("tcdrain() failed");
706 } else {
707 RETURN_OK();
710 #endif
713 SP_API enum sp_return sp_blocking_write(struct sp_port *port, const void *buf,
714 size_t count, unsigned int timeout)
716 TRACE("%p, %p, %d, %d", port, buf, count, timeout);
718 CHECK_OPEN_PORT();
720 if (!buf)
721 RETURN_ERROR(SP_ERR_ARG, "Null buffer");
723 if (timeout)
724 DEBUG_FMT("Writing %d bytes to port %s, timeout %d ms",
725 count, port->name, timeout);
726 else
727 DEBUG_FMT("Writing %d bytes to port %s, no timeout",
728 count, port->name);
730 if (count == 0)
731 RETURN_INT(0);
733 #ifdef _WIN32
734 DWORD bytes_written = 0;
735 BOOL result;
737 /* Wait for previous non-blocking write to complete, if any. */
738 if (port->writing) {
739 DEBUG("Waiting for previous write to complete");
740 result = GetOverlappedResult(port->hdl, &port->write_ovl, &bytes_written, TRUE);
741 port->writing = 0;
742 if (!result)
743 RETURN_FAIL("Previous write failed to complete");
744 DEBUG("Previous write completed");
747 /* Set timeout. */
748 port->timeouts.WriteTotalTimeoutConstant = timeout;
749 if (SetCommTimeouts(port->hdl, &port->timeouts) == 0)
750 RETURN_FAIL("SetCommTimeouts() failed");
752 /* Start write. */
753 if (WriteFile(port->hdl, buf, count, NULL, &port->write_ovl) == 0) {
754 if (GetLastError() == ERROR_IO_PENDING) {
755 DEBUG("Waiting for write to complete");
756 GetOverlappedResult(port->hdl, &port->write_ovl, &bytes_written, TRUE);
757 DEBUG_FMT("Write completed, %d/%d bytes written", bytes_written, count);
758 RETURN_INT(bytes_written);
759 } else {
760 RETURN_FAIL("WriteFile() failed");
762 } else {
763 DEBUG("Write completed immediately");
764 RETURN_INT(count);
766 #else
767 size_t bytes_written = 0;
768 unsigned char *ptr = (unsigned char *) buf;
769 struct timeval start, delta, now, end = {0, 0};
770 fd_set fds;
771 int result;
773 if (timeout) {
774 /* Get time at start of operation. */
775 gettimeofday(&start, NULL);
776 /* Define duration of timeout. */
777 delta.tv_sec = timeout / 1000;
778 delta.tv_usec = (timeout % 1000) * 1000;
779 /* Calculate time at which we should give up. */
780 timeradd(&start, &delta, &end);
783 /* Loop until we have written the requested number of bytes. */
784 while (bytes_written < count) {
785 /* Wait until space is available. */
786 FD_ZERO(&fds);
787 FD_SET(port->fd, &fds);
788 if (timeout) {
789 gettimeofday(&now, NULL);
790 if (timercmp(&now, &end, >)) {
791 DEBUG("Write timed out");
792 RETURN_INT(bytes_written);
794 timersub(&end, &now, &delta);
796 result = select(port->fd + 1, NULL, &fds, NULL, timeout ? &delta : NULL);
797 if (result < 0) {
798 if (errno == EINTR) {
799 DEBUG("select() call was interrupted, repeating");
800 continue;
801 } else {
802 RETURN_FAIL("select() failed");
804 } else if (result == 0) {
805 DEBUG("Write timed out");
806 RETURN_INT(bytes_written);
809 /* Do write. */
810 result = write(port->fd, ptr, count - bytes_written);
812 if (result < 0) {
813 if (errno == EAGAIN)
814 /* This shouldn't happen because we did a select() first, but handle anyway. */
815 continue;
816 else
817 /* This is an actual failure. */
818 RETURN_FAIL("write() failed");
821 bytes_written += result;
822 ptr += result;
825 RETURN_INT(bytes_written);
826 #endif
829 SP_API enum sp_return sp_nonblocking_write(struct sp_port *port,
830 const void *buf, size_t count)
832 TRACE("%p, %p, %d", port, buf, count);
834 CHECK_OPEN_PORT();
836 if (!buf)
837 RETURN_ERROR(SP_ERR_ARG, "Null buffer");
839 DEBUG_FMT("Writing up to %d bytes to port %s", count, port->name);
841 if (count == 0)
842 RETURN_INT(0);
844 #ifdef _WIN32
845 DWORD written = 0;
846 BYTE *ptr = (BYTE *) buf;
848 /* Check whether previous write is complete. */
849 if (port->writing) {
850 if (HasOverlappedIoCompleted(&port->write_ovl)) {
851 DEBUG("Previous write completed");
852 port->writing = 0;
853 } else {
854 DEBUG("Previous write not complete");
855 /* Can't take a new write until the previous one finishes. */
856 RETURN_INT(0);
860 /* Set timeout. */
861 port->timeouts.WriteTotalTimeoutConstant = 0;
862 if (SetCommTimeouts(port->hdl, &port->timeouts) == 0)
863 RETURN_FAIL("SetCommTimeouts() failed");
866 * Keep writing data until the OS has to actually start an async IO
867 * for it. At that point we know the buffer is full.
869 while (written < count) {
870 /* Copy first byte of user buffer. */
871 port->pending_byte = *ptr++;
873 /* Start asynchronous write. */
874 if (WriteFile(port->hdl, &port->pending_byte, 1, NULL, &port->write_ovl) == 0) {
875 if (GetLastError() == ERROR_IO_PENDING) {
876 if (HasOverlappedIoCompleted(&port->write_ovl)) {
877 DEBUG("Asynchronous write completed immediately");
878 port->writing = 0;
879 written++;
880 continue;
881 } else {
882 DEBUG("Asynchronous write running");
883 port->writing = 1;
884 RETURN_INT(++written);
886 } else {
887 /* Actual failure of some kind. */
888 RETURN_FAIL("WriteFile() failed");
890 } else {
891 DEBUG("Single byte written immediately");
892 written++;
896 DEBUG("All bytes written immediately");
898 RETURN_INT(written);
899 #else
900 /* Returns the number of bytes written, or -1 upon failure. */
901 ssize_t written = write(port->fd, buf, count);
903 if (written < 0)
904 RETURN_FAIL("write() failed");
905 else
906 RETURN_INT(written);
907 #endif
910 SP_API enum sp_return sp_blocking_read(struct sp_port *port, void *buf,
911 size_t count, unsigned int timeout)
913 TRACE("%p, %p, %d, %d", port, buf, count, timeout);
915 CHECK_OPEN_PORT();
917 if (!buf)
918 RETURN_ERROR(SP_ERR_ARG, "Null buffer");
920 if (timeout)
921 DEBUG_FMT("Reading %d bytes from port %s, timeout %d ms",
922 count, port->name, timeout);
923 else
924 DEBUG_FMT("Reading %d bytes from port %s, no timeout",
925 count, port->name);
927 if (count == 0)
928 RETURN_INT(0);
930 #ifdef _WIN32
931 DWORD bytes_read = 0;
932 DWORD bytes_remaining;
933 int ret;
935 /* Set timeout. */
936 port->timeouts.ReadIntervalTimeout = 0;
937 port->timeouts.ReadTotalTimeoutConstant = timeout;
938 if (SetCommTimeouts(port->hdl, &port->timeouts) == 0)
939 RETURN_FAIL("SetCommTimeouts() failed");
941 /* Start read. */
942 if (ReadFile(port->hdl, buf, count, NULL, &port->read_ovl) == 0) {
943 if (GetLastError() == ERROR_IO_PENDING) {
944 DEBUG("Waiting for read to complete");
945 GetOverlappedResult(port->hdl, &port->read_ovl, &bytes_read, TRUE);
946 DEBUG_FMT("Read completed, %d/%d bytes read", bytes_read, count);
947 } else {
948 RETURN_FAIL("ReadFile() failed");
950 } else {
951 DEBUG("Read completed immediately");
952 bytes_read = count;
955 ret = sp_input_waiting(port);
957 if (ret < 0)
958 RETURN_CODEVAL(ret);
960 bytes_remaining = ret;
962 /* Restart wait operation if buffer was emptied. */
963 if (bytes_read > 0 && bytes_remaining == 0)
964 TRY(restart_wait(port));
966 RETURN_INT(bytes_read);
968 #else
969 size_t bytes_read = 0;
970 unsigned char *ptr = (unsigned char *) buf;
971 struct timeval start, delta, now, end = {0, 0};
972 fd_set fds;
973 int result;
975 if (timeout) {
976 /* Get time at start of operation. */
977 gettimeofday(&start, NULL);
978 /* Define duration of timeout. */
979 delta.tv_sec = timeout / 1000;
980 delta.tv_usec = (timeout % 1000) * 1000;
981 /* Calculate time at which we should give up. */
982 timeradd(&start, &delta, &end);
985 /* Loop until we have the requested number of bytes. */
986 while (bytes_read < count) {
987 /* Wait until data is available. */
988 FD_ZERO(&fds);
989 FD_SET(port->fd, &fds);
990 if (timeout) {
991 gettimeofday(&now, NULL);
992 if (timercmp(&now, &end, >))
993 /* Timeout has expired. */
994 RETURN_INT(bytes_read);
995 timersub(&end, &now, &delta);
997 result = select(port->fd + 1, &fds, NULL, NULL, timeout ? &delta : NULL);
998 if (result < 0) {
999 if (errno == EINTR) {
1000 DEBUG("select() call was interrupted, repeating");
1001 continue;
1002 } else {
1003 RETURN_FAIL("select() failed");
1005 } else if (result == 0) {
1006 DEBUG("Read timed out");
1007 RETURN_INT(bytes_read);
1010 /* Do read. */
1011 result = read(port->fd, ptr, count - bytes_read);
1013 if (result < 0) {
1014 if (errno == EAGAIN)
1015 /* This shouldn't happen because we did a select() first, but handle anyway. */
1016 continue;
1017 else
1018 /* This is an actual failure. */
1019 RETURN_FAIL("read() failed");
1022 bytes_read += result;
1023 ptr += result;
1026 RETURN_INT(bytes_read);
1027 #endif
1030 SP_API enum sp_return sp_nonblocking_read(struct sp_port *port, void *buf,
1031 size_t count)
1033 TRACE("%p, %p, %d", port, buf, count);
1035 CHECK_OPEN_PORT();
1037 if (!buf)
1038 RETURN_ERROR(SP_ERR_ARG, "Null buffer");
1040 DEBUG_FMT("Reading up to %d bytes from port %s", count, port->name);
1042 #ifdef _WIN32
1043 DWORD bytes_read;
1044 DWORD bytes_remaining;
1045 int ret;
1047 /* Set timeout. */
1048 port->timeouts.ReadIntervalTimeout = MAXDWORD;
1049 port->timeouts.ReadTotalTimeoutConstant = 0;
1050 if (SetCommTimeouts(port->hdl, &port->timeouts) == 0)
1051 RETURN_FAIL("SetCommTimeouts() failed");
1053 /* Do read. */
1054 if (ReadFile(port->hdl, buf, count, NULL, &port->read_ovl) == 0)
1055 RETURN_FAIL("ReadFile() failed");
1057 /* Get number of bytes read. */
1058 if (GetOverlappedResult(port->hdl, &port->read_ovl, &bytes_read, TRUE) == 0)
1059 RETURN_FAIL("GetOverlappedResult() failed");
1061 ret = sp_input_waiting(port);
1063 if (ret < 0)
1064 RETURN_CODEVAL(ret);
1066 bytes_remaining = ret;
1068 /* Restart wait operation if buffer was emptied. */
1069 if (bytes_read > 0 && bytes_remaining == 0)
1070 TRY(restart_wait(port));
1072 RETURN_INT(bytes_read);
1073 #else
1074 ssize_t bytes_read;
1076 /* Returns the number of bytes read, or -1 upon failure. */
1077 if ((bytes_read = read(port->fd, buf, count)) < 0) {
1078 if (errno == EAGAIN)
1079 /* No bytes available. */
1080 bytes_read = 0;
1081 else
1082 /* This is an actual failure. */
1083 RETURN_FAIL("read() failed");
1085 RETURN_INT(bytes_read);
1086 #endif
1089 SP_API enum sp_return sp_input_waiting(struct sp_port *port)
1091 TRACE("%p", port);
1093 CHECK_OPEN_PORT();
1095 DEBUG_FMT("Checking input bytes waiting on port %s", port->name);
1097 #ifdef _WIN32
1098 DWORD errors;
1099 COMSTAT comstat;
1101 if (ClearCommError(port->hdl, &errors, &comstat) == 0)
1102 RETURN_FAIL("ClearCommError() failed");
1103 RETURN_INT(comstat.cbInQue);
1104 #else
1105 int bytes_waiting;
1106 if (ioctl(port->fd, TIOCINQ, &bytes_waiting) < 0)
1107 RETURN_FAIL("TIOCINQ ioctl failed");
1108 RETURN_INT(bytes_waiting);
1109 #endif
1112 SP_API enum sp_return sp_output_waiting(struct sp_port *port)
1114 TRACE("%p", port);
1116 CHECK_OPEN_PORT();
1118 DEBUG_FMT("Checking output bytes waiting on port %s", port->name);
1120 #ifdef _WIN32
1121 DWORD errors;
1122 COMSTAT comstat;
1124 if (ClearCommError(port->hdl, &errors, &comstat) == 0)
1125 RETURN_FAIL("ClearCommError() failed");
1126 RETURN_INT(comstat.cbOutQue);
1127 #else
1128 int bytes_waiting;
1129 if (ioctl(port->fd, TIOCOUTQ, &bytes_waiting) < 0)
1130 RETURN_FAIL("TIOCOUTQ ioctl failed");
1131 RETURN_INT(bytes_waiting);
1132 #endif
1135 SP_API enum sp_return sp_new_event_set(struct sp_event_set **result_ptr)
1137 struct sp_event_set *result;
1139 TRACE("%p", result_ptr);
1141 if (!result_ptr)
1142 RETURN_ERROR(SP_ERR_ARG, "Null result");
1144 *result_ptr = NULL;
1146 if (!(result = malloc(sizeof(struct sp_event_set))))
1147 RETURN_ERROR(SP_ERR_MEM, "sp_event_set malloc() failed");
1149 memset(result, 0, sizeof(struct sp_event_set));
1151 *result_ptr = result;
1153 RETURN_OK();
1156 static enum sp_return add_handle(struct sp_event_set *event_set,
1157 event_handle handle, enum sp_event mask)
1159 void *new_handles;
1160 enum sp_event *new_masks;
1162 TRACE("%p, %d, %d", event_set, handle, mask);
1164 if (!(new_handles = realloc(event_set->handles,
1165 sizeof(event_handle) * (event_set->count + 1))))
1166 RETURN_ERROR(SP_ERR_MEM, "Handle array realloc() failed");
1168 if (!(new_masks = realloc(event_set->masks,
1169 sizeof(enum sp_event) * (event_set->count + 1))))
1170 RETURN_ERROR(SP_ERR_MEM, "Mask array realloc() failed");
1172 event_set->handles = new_handles;
1173 event_set->masks = new_masks;
1175 ((event_handle *) event_set->handles)[event_set->count] = handle;
1176 event_set->masks[event_set->count] = mask;
1178 event_set->count++;
1180 RETURN_OK();
1183 SP_API enum sp_return sp_add_port_events(struct sp_event_set *event_set,
1184 const struct sp_port *port, enum sp_event mask)
1186 TRACE("%p, %p, %d", event_set, port, mask);
1188 if (!event_set)
1189 RETURN_ERROR(SP_ERR_ARG, "Null event set");
1191 if (!port)
1192 RETURN_ERROR(SP_ERR_ARG, "Null port");
1194 if (mask > (SP_EVENT_RX_READY | SP_EVENT_TX_READY | SP_EVENT_ERROR))
1195 RETURN_ERROR(SP_ERR_ARG, "Invalid event mask");
1197 if (!mask)
1198 RETURN_OK();
1200 #ifdef _WIN32
1201 enum sp_event handle_mask;
1202 if ((handle_mask = mask & SP_EVENT_TX_READY))
1203 TRY(add_handle(event_set, port->write_ovl.hEvent, handle_mask));
1204 if ((handle_mask = mask & (SP_EVENT_RX_READY | SP_EVENT_ERROR)))
1205 TRY(add_handle(event_set, port->wait_ovl.hEvent, handle_mask));
1206 #else
1207 TRY(add_handle(event_set, port->fd, mask));
1208 #endif
1210 RETURN_OK();
1213 SP_API void sp_free_event_set(struct sp_event_set *event_set)
1215 TRACE("%p", event_set);
1217 if (!event_set) {
1218 DEBUG("Null event set");
1219 RETURN();
1222 DEBUG("Freeing event set");
1224 if (event_set->handles)
1225 free(event_set->handles);
1226 if (event_set->masks)
1227 free(event_set->masks);
1229 free(event_set);
1231 RETURN();
1234 SP_API enum sp_return sp_wait(struct sp_event_set *event_set,
1235 unsigned int timeout)
1237 TRACE("%p, %d", event_set, timeout);
1239 if (!event_set)
1240 RETURN_ERROR(SP_ERR_ARG, "Null event set");
1242 #ifdef _WIN32
1243 if (WaitForMultipleObjects(event_set->count, event_set->handles, FALSE,
1244 timeout ? timeout : INFINITE) == WAIT_FAILED)
1245 RETURN_FAIL("WaitForMultipleObjects() failed");
1247 RETURN_OK();
1248 #else
1249 struct timeval start, delta, now, end = {0, 0};
1250 int result, timeout_remaining;
1251 struct pollfd *pollfds;
1252 unsigned int i;
1254 if (!(pollfds = malloc(sizeof(struct pollfd) * event_set->count)))
1255 RETURN_ERROR(SP_ERR_MEM, "pollfds malloc() failed");
1257 for (i = 0; i < event_set->count; i++) {
1258 pollfds[i].fd = ((int *) event_set->handles)[i];
1259 pollfds[i].events = 0;
1260 pollfds[i].revents = 0;
1261 if (event_set->masks[i] & SP_EVENT_RX_READY)
1262 pollfds[i].events |= POLLIN;
1263 if (event_set->masks[i] & SP_EVENT_TX_READY)
1264 pollfds[i].events |= POLLOUT;
1265 if (event_set->masks[i] & SP_EVENT_ERROR)
1266 pollfds[i].events |= POLLERR;
1269 if (timeout) {
1270 /* Get time at start of operation. */
1271 gettimeofday(&start, NULL);
1272 /* Define duration of timeout. */
1273 delta.tv_sec = timeout / 1000;
1274 delta.tv_usec = (timeout % 1000) * 1000;
1275 /* Calculate time at which we should give up. */
1276 timeradd(&start, &delta, &end);
1279 /* Loop until an event occurs. */
1280 while (1) {
1281 if (timeout) {
1282 gettimeofday(&now, NULL);
1283 if (timercmp(&now, &end, >)) {
1284 DEBUG("Wait timed out");
1285 break;
1287 timersub(&end, &now, &delta);
1288 timeout_remaining = delta.tv_sec * 1000 + delta.tv_usec / 1000;
1291 result = poll(pollfds, event_set->count, timeout ? timeout_remaining : -1);
1293 if (result < 0) {
1294 if (errno == EINTR) {
1295 DEBUG("poll() call was interrupted, repeating");
1296 continue;
1297 } else {
1298 free(pollfds);
1299 RETURN_FAIL("poll() failed");
1301 } else if (result == 0) {
1302 DEBUG("poll() timed out");
1303 break;
1304 } else {
1305 DEBUG("poll() completed");
1306 break;
1310 free(pollfds);
1311 RETURN_OK();
1312 #endif
1315 #ifdef USE_TERMIOS_SPEED
1316 static enum sp_return get_baudrate(int fd, int *baudrate)
1318 void *data;
1320 TRACE("%d, %p", fd, baudrate);
1322 DEBUG("Getting baud rate");
1324 if (!(data = malloc(get_termios_size())))
1325 RETURN_ERROR(SP_ERR_MEM, "termios malloc failed");
1327 if (ioctl(fd, get_termios_get_ioctl(), data) < 0) {
1328 free(data);
1329 RETURN_FAIL("Getting termios failed");
1332 *baudrate = get_termios_speed(data);
1334 free(data);
1336 RETURN_OK();
1339 static enum sp_return set_baudrate(int fd, int baudrate)
1341 void *data;
1343 TRACE("%d, %d", fd, baudrate);
1345 DEBUG("Getting baud rate");
1347 if (!(data = malloc(get_termios_size())))
1348 RETURN_ERROR(SP_ERR_MEM, "termios malloc failed");
1350 if (ioctl(fd, get_termios_get_ioctl(), data) < 0) {
1351 free(data);
1352 RETURN_FAIL("Getting termios failed");
1355 DEBUG("Setting baud rate");
1357 set_termios_speed(data, baudrate);
1359 if (ioctl(fd, get_termios_set_ioctl(), data) < 0) {
1360 free(data);
1361 RETURN_FAIL("Setting termios failed");
1364 free(data);
1366 RETURN_OK();
1368 #endif /* USE_TERMIOS_SPEED */
1370 #ifdef USE_TERMIOX
1371 static enum sp_return get_flow(int fd, struct port_data *data)
1373 void *termx;
1375 TRACE("%d, %p", fd, data);
1377 DEBUG("Getting advanced flow control");
1379 if (!(termx = malloc(get_termiox_size())))
1380 RETURN_ERROR(SP_ERR_MEM, "termiox malloc failed");
1382 if (ioctl(fd, TCGETX, termx) < 0) {
1383 free(termx);
1384 RETURN_FAIL("Getting termiox failed");
1387 get_termiox_flow(termx, &data->rts_flow, &data->cts_flow,
1388 &data->dtr_flow, &data->dsr_flow);
1390 free(termx);
1392 RETURN_OK();
1395 static enum sp_return set_flow(int fd, struct port_data *data)
1397 void *termx;
1399 TRACE("%d, %p", fd, data);
1401 DEBUG("Getting advanced flow control");
1403 if (!(termx = malloc(get_termiox_size())))
1404 RETURN_ERROR(SP_ERR_MEM, "termiox malloc failed");
1406 if (ioctl(fd, TCGETX, termx) < 0) {
1407 free(termx);
1408 RETURN_FAIL("Getting termiox failed");
1411 DEBUG("Setting advanced flow control");
1413 set_termiox_flow(termx, data->rts_flow, data->cts_flow,
1414 data->dtr_flow, data->dsr_flow);
1416 if (ioctl(fd, TCSETX, termx) < 0) {
1417 free(termx);
1418 RETURN_FAIL("Setting termiox failed");
1421 free(termx);
1423 RETURN_OK();
1425 #endif /* USE_TERMIOX */
1427 static enum sp_return get_config(struct sp_port *port, struct port_data *data,
1428 struct sp_port_config *config)
1430 unsigned int i;
1432 TRACE("%p, %p, %p", port, data, config);
1434 DEBUG_FMT("Getting configuration for port %s", port->name);
1436 #ifdef _WIN32
1437 if (!GetCommState(port->hdl, &data->dcb))
1438 RETURN_FAIL("GetCommState() failed");
1440 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
1441 if (data->dcb.BaudRate == std_baudrates[i].index) {
1442 config->baudrate = std_baudrates[i].value;
1443 break;
1447 if (i == NUM_STD_BAUDRATES)
1448 /* BaudRate field can be either an index or a custom baud rate. */
1449 config->baudrate = data->dcb.BaudRate;
1451 config->bits = data->dcb.ByteSize;
1453 if (data->dcb.fParity)
1454 switch (data->dcb.Parity) {
1455 case NOPARITY:
1456 config->parity = SP_PARITY_NONE;
1457 break;
1458 case ODDPARITY:
1459 config->parity = SP_PARITY_ODD;
1460 break;
1461 case EVENPARITY:
1462 config->parity = SP_PARITY_EVEN;
1463 break;
1464 case MARKPARITY:
1465 config->parity = SP_PARITY_MARK;
1466 break;
1467 case SPACEPARITY:
1468 config->parity = SP_PARITY_SPACE;
1469 break;
1470 default:
1471 config->parity = -1;
1473 else
1474 config->parity = SP_PARITY_NONE;
1476 switch (data->dcb.StopBits) {
1477 case ONESTOPBIT:
1478 config->stopbits = 1;
1479 break;
1480 case TWOSTOPBITS:
1481 config->stopbits = 2;
1482 break;
1483 default:
1484 config->stopbits = -1;
1487 switch (data->dcb.fRtsControl) {
1488 case RTS_CONTROL_DISABLE:
1489 config->rts = SP_RTS_OFF;
1490 break;
1491 case RTS_CONTROL_ENABLE:
1492 config->rts = SP_RTS_ON;
1493 break;
1494 case RTS_CONTROL_HANDSHAKE:
1495 config->rts = SP_RTS_FLOW_CONTROL;
1496 break;
1497 default:
1498 config->rts = -1;
1501 config->cts = data->dcb.fOutxCtsFlow ? SP_CTS_FLOW_CONTROL : SP_CTS_IGNORE;
1503 switch (data->dcb.fDtrControl) {
1504 case DTR_CONTROL_DISABLE:
1505 config->dtr = SP_DTR_OFF;
1506 break;
1507 case DTR_CONTROL_ENABLE:
1508 config->dtr = SP_DTR_ON;
1509 break;
1510 case DTR_CONTROL_HANDSHAKE:
1511 config->dtr = SP_DTR_FLOW_CONTROL;
1512 break;
1513 default:
1514 config->dtr = -1;
1517 config->dsr = data->dcb.fOutxDsrFlow ? SP_DSR_FLOW_CONTROL : SP_DSR_IGNORE;
1519 if (data->dcb.fInX) {
1520 if (data->dcb.fOutX)
1521 config->xon_xoff = SP_XONXOFF_INOUT;
1522 else
1523 config->xon_xoff = SP_XONXOFF_IN;
1524 } else {
1525 if (data->dcb.fOutX)
1526 config->xon_xoff = SP_XONXOFF_OUT;
1527 else
1528 config->xon_xoff = SP_XONXOFF_DISABLED;
1531 #else // !_WIN32
1533 if (tcgetattr(port->fd, &data->term) < 0)
1534 RETURN_FAIL("tcgetattr() failed");
1536 if (ioctl(port->fd, TIOCMGET, &data->controlbits) < 0)
1537 RETURN_FAIL("TIOCMGET ioctl failed");
1539 #ifdef USE_TERMIOX
1540 int ret = get_flow(port->fd, data);
1542 if (ret == SP_ERR_FAIL && errno == EINVAL)
1543 data->termiox_supported = 0;
1544 else if (ret < 0)
1545 RETURN_CODEVAL(ret);
1546 else
1547 data->termiox_supported = 1;
1548 #else
1549 data->termiox_supported = 0;
1550 #endif
1552 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
1553 if (cfgetispeed(&data->term) == std_baudrates[i].index) {
1554 config->baudrate = std_baudrates[i].value;
1555 break;
1559 if (i == NUM_STD_BAUDRATES) {
1560 #ifdef __APPLE__
1561 config->baudrate = (int)data->term.c_ispeed;
1562 #elif defined(USE_TERMIOS_SPEED)
1563 TRY(get_baudrate(port->fd, &config->baudrate));
1564 #else
1565 config->baudrate = -1;
1566 #endif
1569 switch (data->term.c_cflag & CSIZE) {
1570 case CS8:
1571 config->bits = 8;
1572 break;
1573 case CS7:
1574 config->bits = 7;
1575 break;
1576 case CS6:
1577 config->bits = 6;
1578 break;
1579 case CS5:
1580 config->bits = 5;
1581 break;
1582 default:
1583 config->bits = -1;
1586 if (!(data->term.c_cflag & PARENB) && (data->term.c_iflag & IGNPAR))
1587 config->parity = SP_PARITY_NONE;
1588 else if (!(data->term.c_cflag & PARENB) || (data->term.c_iflag & IGNPAR))
1589 config->parity = -1;
1590 #ifdef CMSPAR
1591 else if (data->term.c_cflag & CMSPAR)
1592 config->parity = (data->term.c_cflag & PARODD) ? SP_PARITY_MARK : SP_PARITY_SPACE;
1593 #endif
1594 else
1595 config->parity = (data->term.c_cflag & PARODD) ? SP_PARITY_ODD : SP_PARITY_EVEN;
1597 config->stopbits = (data->term.c_cflag & CSTOPB) ? 2 : 1;
1599 if (data->term.c_cflag & CRTSCTS) {
1600 config->rts = SP_RTS_FLOW_CONTROL;
1601 config->cts = SP_CTS_FLOW_CONTROL;
1602 } else {
1603 if (data->termiox_supported && data->rts_flow)
1604 config->rts = SP_RTS_FLOW_CONTROL;
1605 else
1606 config->rts = (data->controlbits & TIOCM_RTS) ? SP_RTS_ON : SP_RTS_OFF;
1608 config->cts = (data->termiox_supported && data->cts_flow) ?
1609 SP_CTS_FLOW_CONTROL : SP_CTS_IGNORE;
1612 if (data->termiox_supported && data->dtr_flow)
1613 config->dtr = SP_DTR_FLOW_CONTROL;
1614 else
1615 config->dtr = (data->controlbits & TIOCM_DTR) ? SP_DTR_ON : SP_DTR_OFF;
1617 config->dsr = (data->termiox_supported && data->dsr_flow) ?
1618 SP_DSR_FLOW_CONTROL : SP_DSR_IGNORE;
1620 if (data->term.c_iflag & IXOFF) {
1621 if (data->term.c_iflag & IXON)
1622 config->xon_xoff = SP_XONXOFF_INOUT;
1623 else
1624 config->xon_xoff = SP_XONXOFF_IN;
1625 } else {
1626 if (data->term.c_iflag & IXON)
1627 config->xon_xoff = SP_XONXOFF_OUT;
1628 else
1629 config->xon_xoff = SP_XONXOFF_DISABLED;
1631 #endif
1633 RETURN_OK();
1636 static enum sp_return set_config(struct sp_port *port, struct port_data *data,
1637 const struct sp_port_config *config)
1639 unsigned int i;
1640 #ifdef __APPLE__
1641 BAUD_TYPE baud_nonstd;
1643 baud_nonstd = B0;
1644 #endif
1645 #ifdef USE_TERMIOS_SPEED
1646 int baud_nonstd = 0;
1647 #endif
1649 TRACE("%p, %p, %p", port, data, config);
1651 DEBUG_FMT("Setting configuration for port %s", port->name);
1653 #ifdef _WIN32
1654 if (config->baudrate >= 0) {
1655 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
1656 if (config->baudrate == std_baudrates[i].value) {
1657 data->dcb.BaudRate = std_baudrates[i].index;
1658 break;
1662 if (i == NUM_STD_BAUDRATES)
1663 data->dcb.BaudRate = config->baudrate;
1666 if (config->bits >= 0)
1667 data->dcb.ByteSize = config->bits;
1669 if (config->parity >= 0) {
1670 switch (config->parity) {
1671 case SP_PARITY_NONE:
1672 data->dcb.Parity = NOPARITY;
1673 break;
1674 case SP_PARITY_ODD:
1675 data->dcb.Parity = ODDPARITY;
1676 break;
1677 case SP_PARITY_EVEN:
1678 data->dcb.Parity = EVENPARITY;
1679 break;
1680 case SP_PARITY_MARK:
1681 data->dcb.Parity = MARKPARITY;
1682 break;
1683 case SP_PARITY_SPACE:
1684 data->dcb.Parity = SPACEPARITY;
1685 break;
1686 default:
1687 RETURN_ERROR(SP_ERR_ARG, "Invalid parity setting");
1691 if (config->stopbits >= 0) {
1692 switch (config->stopbits) {
1693 /* Note: There's also ONE5STOPBITS == 1.5 (unneeded so far). */
1694 case 1:
1695 data->dcb.StopBits = ONESTOPBIT;
1696 break;
1697 case 2:
1698 data->dcb.StopBits = TWOSTOPBITS;
1699 break;
1700 default:
1701 RETURN_ERROR(SP_ERR_ARG, "Invalid stop bit setting");
1705 if (config->rts >= 0) {
1706 switch (config->rts) {
1707 case SP_RTS_OFF:
1708 data->dcb.fRtsControl = RTS_CONTROL_DISABLE;
1709 break;
1710 case SP_RTS_ON:
1711 data->dcb.fRtsControl = RTS_CONTROL_ENABLE;
1712 break;
1713 case SP_RTS_FLOW_CONTROL:
1714 data->dcb.fRtsControl = RTS_CONTROL_HANDSHAKE;
1715 break;
1716 default:
1717 RETURN_ERROR(SP_ERR_ARG, "Invalid RTS setting");
1721 if (config->cts >= 0) {
1722 switch (config->cts) {
1723 case SP_CTS_IGNORE:
1724 data->dcb.fOutxCtsFlow = FALSE;
1725 break;
1726 case SP_CTS_FLOW_CONTROL:
1727 data->dcb.fOutxCtsFlow = TRUE;
1728 break;
1729 default:
1730 RETURN_ERROR(SP_ERR_ARG, "Invalid CTS setting");
1734 if (config->dtr >= 0) {
1735 switch (config->dtr) {
1736 case SP_DTR_OFF:
1737 data->dcb.fDtrControl = DTR_CONTROL_DISABLE;
1738 break;
1739 case SP_DTR_ON:
1740 data->dcb.fDtrControl = DTR_CONTROL_ENABLE;
1741 break;
1742 case SP_DTR_FLOW_CONTROL:
1743 data->dcb.fDtrControl = DTR_CONTROL_HANDSHAKE;
1744 break;
1745 default:
1746 RETURN_ERROR(SP_ERR_ARG, "Invalid DTR setting");
1750 if (config->dsr >= 0) {
1751 switch (config->dsr) {
1752 case SP_DSR_IGNORE:
1753 data->dcb.fOutxDsrFlow = FALSE;
1754 break;
1755 case SP_DSR_FLOW_CONTROL:
1756 data->dcb.fOutxDsrFlow = TRUE;
1757 break;
1758 default:
1759 RETURN_ERROR(SP_ERR_ARG, "Invalid DSR setting");
1763 if (config->xon_xoff >= 0) {
1764 switch (config->xon_xoff) {
1765 case SP_XONXOFF_DISABLED:
1766 data->dcb.fInX = FALSE;
1767 data->dcb.fOutX = FALSE;
1768 break;
1769 case SP_XONXOFF_IN:
1770 data->dcb.fInX = TRUE;
1771 data->dcb.fOutX = FALSE;
1772 break;
1773 case SP_XONXOFF_OUT:
1774 data->dcb.fInX = FALSE;
1775 data->dcb.fOutX = TRUE;
1776 break;
1777 case SP_XONXOFF_INOUT:
1778 data->dcb.fInX = TRUE;
1779 data->dcb.fOutX = TRUE;
1780 break;
1781 default:
1782 RETURN_ERROR(SP_ERR_ARG, "Invalid XON/XOFF setting");
1786 if (!SetCommState(port->hdl, &data->dcb))
1787 RETURN_FAIL("SetCommState() failed");
1789 #else /* !_WIN32 */
1791 int controlbits;
1793 if (config->baudrate >= 0) {
1794 for (i = 0; i < NUM_STD_BAUDRATES; i++) {
1795 if (config->baudrate == std_baudrates[i].value) {
1796 if (cfsetospeed(&data->term, std_baudrates[i].index) < 0)
1797 RETURN_FAIL("cfsetospeed() failed");
1799 if (cfsetispeed(&data->term, std_baudrates[i].index) < 0)
1800 RETURN_FAIL("cfsetispeed() failed");
1801 break;
1805 /* Non-standard baud rate */
1806 if (i == NUM_STD_BAUDRATES) {
1807 #ifdef __APPLE__
1808 /* Set "dummy" baud rate. */
1809 if (cfsetspeed(&data->term, B9600) < 0)
1810 RETURN_FAIL("cfsetspeed() failed");
1811 baud_nonstd = config->baudrate;
1812 #elif defined(USE_TERMIOS_SPEED)
1813 baud_nonstd = 1;
1814 #else
1815 RETURN_ERROR(SP_ERR_SUPP, "Non-standard baudrate not supported");
1816 #endif
1820 if (config->bits >= 0) {
1821 data->term.c_cflag &= ~CSIZE;
1822 switch (config->bits) {
1823 case 8:
1824 data->term.c_cflag |= CS8;
1825 break;
1826 case 7:
1827 data->term.c_cflag |= CS7;
1828 break;
1829 case 6:
1830 data->term.c_cflag |= CS6;
1831 break;
1832 case 5:
1833 data->term.c_cflag |= CS5;
1834 break;
1835 default:
1836 RETURN_ERROR(SP_ERR_ARG, "Invalid data bits setting");
1840 if (config->parity >= 0) {
1841 data->term.c_iflag &= ~IGNPAR;
1842 data->term.c_cflag &= ~(PARENB | PARODD);
1843 #ifdef CMSPAR
1844 data->term.c_cflag &= ~CMSPAR;
1845 #endif
1846 switch (config->parity) {
1847 case SP_PARITY_NONE:
1848 data->term.c_iflag |= IGNPAR;
1849 break;
1850 case SP_PARITY_EVEN:
1851 data->term.c_cflag |= PARENB;
1852 break;
1853 case SP_PARITY_ODD:
1854 data->term.c_cflag |= PARENB | PARODD;
1855 break;
1856 #ifdef CMSPAR
1857 case SP_PARITY_MARK:
1858 data->term.c_cflag |= PARENB | PARODD;
1859 data->term.c_cflag |= CMSPAR;
1860 break;
1861 case SP_PARITY_SPACE:
1862 data->term.c_cflag |= PARENB;
1863 data->term.c_cflag |= CMSPAR;
1864 break;
1865 #else
1866 case SP_PARITY_MARK:
1867 case SP_PARITY_SPACE:
1868 RETURN_ERROR(SP_ERR_SUPP, "Mark/space parity not supported");
1869 #endif
1870 default:
1871 RETURN_ERROR(SP_ERR_ARG, "Invalid parity setting");
1875 if (config->stopbits >= 0) {
1876 data->term.c_cflag &= ~CSTOPB;
1877 switch (config->stopbits) {
1878 case 1:
1879 data->term.c_cflag &= ~CSTOPB;
1880 break;
1881 case 2:
1882 data->term.c_cflag |= CSTOPB;
1883 break;
1884 default:
1885 RETURN_ERROR(SP_ERR_ARG, "Invalid stop bits setting");
1889 if (config->rts >= 0 || config->cts >= 0) {
1890 if (data->termiox_supported) {
1891 data->rts_flow = data->cts_flow = 0;
1892 switch (config->rts) {
1893 case SP_RTS_OFF:
1894 case SP_RTS_ON:
1895 controlbits = TIOCM_RTS;
1896 if (ioctl(port->fd, config->rts == SP_RTS_ON ? TIOCMBIS : TIOCMBIC, &controlbits) < 0)
1897 RETURN_FAIL("Setting RTS signal level failed");
1898 break;
1899 case SP_RTS_FLOW_CONTROL:
1900 data->rts_flow = 1;
1901 break;
1902 default:
1903 break;
1905 if (config->cts == SP_CTS_FLOW_CONTROL)
1906 data->cts_flow = 1;
1908 if (data->rts_flow && data->cts_flow)
1909 data->term.c_iflag |= CRTSCTS;
1910 else
1911 data->term.c_iflag &= ~CRTSCTS;
1912 } else {
1913 /* Asymmetric use of RTS/CTS not supported. */
1914 if (data->term.c_iflag & CRTSCTS) {
1915 /* Flow control can only be disabled for both RTS & CTS together. */
1916 if (config->rts >= 0 && config->rts != SP_RTS_FLOW_CONTROL) {
1917 if (config->cts != SP_CTS_IGNORE)
1918 RETURN_ERROR(SP_ERR_SUPP, "RTS & CTS flow control must be disabled together");
1920 if (config->cts >= 0 && config->cts != SP_CTS_FLOW_CONTROL) {
1921 if (config->rts <= 0 || config->rts == SP_RTS_FLOW_CONTROL)
1922 RETURN_ERROR(SP_ERR_SUPP, "RTS & CTS flow control must be disabled together");
1924 } else {
1925 /* Flow control can only be enabled for both RTS & CTS together. */
1926 if (((config->rts == SP_RTS_FLOW_CONTROL) && (config->cts != SP_CTS_FLOW_CONTROL)) ||
1927 ((config->cts == SP_CTS_FLOW_CONTROL) && (config->rts != SP_RTS_FLOW_CONTROL)))
1928 RETURN_ERROR(SP_ERR_SUPP, "RTS & CTS flow control must be enabled together");
1931 if (config->rts >= 0) {
1932 if (config->rts == SP_RTS_FLOW_CONTROL) {
1933 data->term.c_iflag |= CRTSCTS;
1934 } else {
1935 controlbits = TIOCM_RTS;
1936 if (ioctl(port->fd, config->rts == SP_RTS_ON ? TIOCMBIS : TIOCMBIC,
1937 &controlbits) < 0)
1938 RETURN_FAIL("Setting RTS signal level failed");
1944 if (config->dtr >= 0 || config->dsr >= 0) {
1945 if (data->termiox_supported) {
1946 data->dtr_flow = data->dsr_flow = 0;
1947 switch (config->dtr) {
1948 case SP_DTR_OFF:
1949 case SP_DTR_ON:
1950 controlbits = TIOCM_DTR;
1951 if (ioctl(port->fd, config->dtr == SP_DTR_ON ? TIOCMBIS : TIOCMBIC, &controlbits) < 0)
1952 RETURN_FAIL("Setting DTR signal level failed");
1953 break;
1954 case SP_DTR_FLOW_CONTROL:
1955 data->dtr_flow = 1;
1956 break;
1957 default:
1958 break;
1960 if (config->dsr == SP_DSR_FLOW_CONTROL)
1961 data->dsr_flow = 1;
1962 } else {
1963 /* DTR/DSR flow control not supported. */
1964 if (config->dtr == SP_DTR_FLOW_CONTROL || config->dsr == SP_DSR_FLOW_CONTROL)
1965 RETURN_ERROR(SP_ERR_SUPP, "DTR/DSR flow control not supported");
1967 if (config->dtr >= 0) {
1968 controlbits = TIOCM_DTR;
1969 if (ioctl(port->fd, config->dtr == SP_DTR_ON ? TIOCMBIS : TIOCMBIC,
1970 &controlbits) < 0)
1971 RETURN_FAIL("Setting DTR signal level failed");
1976 if (config->xon_xoff >= 0) {
1977 data->term.c_iflag &= ~(IXON | IXOFF | IXANY);
1978 switch (config->xon_xoff) {
1979 case SP_XONXOFF_DISABLED:
1980 break;
1981 case SP_XONXOFF_IN:
1982 data->term.c_iflag |= IXOFF;
1983 break;
1984 case SP_XONXOFF_OUT:
1985 data->term.c_iflag |= IXON | IXANY;
1986 break;
1987 case SP_XONXOFF_INOUT:
1988 data->term.c_iflag |= IXON | IXOFF | IXANY;
1989 break;
1990 default:
1991 RETURN_ERROR(SP_ERR_ARG, "Invalid XON/XOFF setting");
1995 if (tcsetattr(port->fd, TCSANOW, &data->term) < 0)
1996 RETURN_FAIL("tcsetattr() failed");
1998 #ifdef __APPLE__
1999 if (baud_nonstd != B0) {
2000 if (ioctl(port->fd, IOSSIOSPEED, &baud_nonstd) == -1)
2001 RETURN_FAIL("IOSSIOSPEED ioctl failed");
2003 * Set baud rates in data->term to correct, but incompatible
2004 * with tcsetattr() value, same as delivered by tcgetattr().
2006 if (cfsetspeed(&data->term, baud_nonstd) < 0)
2007 RETURN_FAIL("cfsetspeed() failed");
2009 #elif defined(__linux__)
2010 #ifdef USE_TERMIOS_SPEED
2011 if (baud_nonstd)
2012 TRY(set_baudrate(port->fd, config->baudrate));
2013 #endif
2014 #ifdef USE_TERMIOX
2015 if (data->termiox_supported)
2016 TRY(set_flow(port->fd, data));
2017 #endif
2018 #endif
2020 #endif /* !_WIN32 */
2022 RETURN_OK();
2025 SP_API enum sp_return sp_new_config(struct sp_port_config **config_ptr)
2027 struct sp_port_config *config;
2029 TRACE("%p", config_ptr);
2031 if (!config_ptr)
2032 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
2034 *config_ptr = NULL;
2036 if (!(config = malloc(sizeof(struct sp_port_config))))
2037 RETURN_ERROR(SP_ERR_MEM, "Config malloc failed");
2039 config->baudrate = -1;
2040 config->bits = -1;
2041 config->parity = -1;
2042 config->stopbits = -1;
2043 config->rts = -1;
2044 config->cts = -1;
2045 config->dtr = -1;
2046 config->dsr = -1;
2048 *config_ptr = config;
2050 RETURN_OK();
2053 SP_API void sp_free_config(struct sp_port_config *config)
2055 TRACE("%p", config);
2057 if (!config)
2058 DEBUG("Null config");
2059 else
2060 free(config);
2062 RETURN();
2065 SP_API enum sp_return sp_get_config(struct sp_port *port,
2066 struct sp_port_config *config)
2068 struct port_data data;
2070 TRACE("%p, %p", port, config);
2072 CHECK_OPEN_PORT();
2074 if (!config)
2075 RETURN_ERROR(SP_ERR_ARG, "Null config");
2077 TRY(get_config(port, &data, config));
2079 RETURN_OK();
2082 SP_API enum sp_return sp_set_config(struct sp_port *port,
2083 const struct sp_port_config *config)
2085 struct port_data data;
2086 struct sp_port_config prev_config;
2088 TRACE("%p, %p", port, config);
2090 CHECK_OPEN_PORT();
2092 if (!config)
2093 RETURN_ERROR(SP_ERR_ARG, "Null config");
2095 TRY(get_config(port, &data, &prev_config));
2096 TRY(set_config(port, &data, config));
2098 RETURN_OK();
2101 #define CREATE_ACCESSORS(x, type) \
2102 SP_API enum sp_return sp_set_##x(struct sp_port *port, type x) { \
2103 struct port_data data; \
2104 struct sp_port_config config; \
2105 TRACE("%p, %d", port, x); \
2106 CHECK_OPEN_PORT(); \
2107 TRY(get_config(port, &data, &config)); \
2108 config.x = x; \
2109 TRY(set_config(port, &data, &config)); \
2110 RETURN_OK(); \
2112 SP_API enum sp_return sp_get_config_##x(const struct sp_port_config *config, \
2113 type *x) { \
2114 TRACE("%p, %p", config, x); \
2115 if (!config) \
2116 RETURN_ERROR(SP_ERR_ARG, "Null config"); \
2117 *x = config->x; \
2118 RETURN_OK(); \
2120 SP_API enum sp_return sp_set_config_##x(struct sp_port_config *config, \
2121 type x) { \
2122 TRACE("%p, %d", config, x); \
2123 if (!config) \
2124 RETURN_ERROR(SP_ERR_ARG, "Null config"); \
2125 config->x = x; \
2126 RETURN_OK(); \
2129 CREATE_ACCESSORS(baudrate, int)
2130 CREATE_ACCESSORS(bits, int)
2131 CREATE_ACCESSORS(parity, enum sp_parity)
2132 CREATE_ACCESSORS(stopbits, int)
2133 CREATE_ACCESSORS(rts, enum sp_rts)
2134 CREATE_ACCESSORS(cts, enum sp_cts)
2135 CREATE_ACCESSORS(dtr, enum sp_dtr)
2136 CREATE_ACCESSORS(dsr, enum sp_dsr)
2137 CREATE_ACCESSORS(xon_xoff, enum sp_xonxoff)
2139 SP_API enum sp_return sp_set_config_flowcontrol(struct sp_port_config *config,
2140 enum sp_flowcontrol flowcontrol)
2142 if (!config)
2143 RETURN_ERROR(SP_ERR_ARG, "Null configuration");
2145 if (flowcontrol > SP_FLOWCONTROL_DTRDSR)
2146 RETURN_ERROR(SP_ERR_ARG, "Invalid flow control setting");
2148 if (flowcontrol == SP_FLOWCONTROL_XONXOFF)
2149 config->xon_xoff = SP_XONXOFF_INOUT;
2150 else
2151 config->xon_xoff = SP_XONXOFF_DISABLED;
2153 if (flowcontrol == SP_FLOWCONTROL_RTSCTS) {
2154 config->rts = SP_RTS_FLOW_CONTROL;
2155 config->cts = SP_CTS_FLOW_CONTROL;
2156 } else {
2157 if (config->rts == SP_RTS_FLOW_CONTROL)
2158 config->rts = SP_RTS_ON;
2159 config->cts = SP_CTS_IGNORE;
2162 if (flowcontrol == SP_FLOWCONTROL_DTRDSR) {
2163 config->dtr = SP_DTR_FLOW_CONTROL;
2164 config->dsr = SP_DSR_FLOW_CONTROL;
2165 } else {
2166 if (config->dtr == SP_DTR_FLOW_CONTROL)
2167 config->dtr = SP_DTR_ON;
2168 config->dsr = SP_DSR_IGNORE;
2171 RETURN_OK();
2174 SP_API enum sp_return sp_set_flowcontrol(struct sp_port *port,
2175 enum sp_flowcontrol flowcontrol)
2177 struct port_data data;
2178 struct sp_port_config config;
2180 TRACE("%p, %d", port, flowcontrol);
2182 CHECK_OPEN_PORT();
2184 TRY(get_config(port, &data, &config));
2186 TRY(sp_set_config_flowcontrol(&config, flowcontrol));
2188 TRY(set_config(port, &data, &config));
2190 RETURN_OK();
2193 SP_API enum sp_return sp_get_signals(struct sp_port *port,
2194 enum sp_signal *signals)
2196 TRACE("%p, %p", port, signals);
2198 CHECK_OPEN_PORT();
2200 if (!signals)
2201 RETURN_ERROR(SP_ERR_ARG, "Null result pointer");
2203 DEBUG_FMT("Getting control signals for port %s", port->name);
2205 *signals = 0;
2206 #ifdef _WIN32
2207 DWORD bits;
2208 if (GetCommModemStatus(port->hdl, &bits) == 0)
2209 RETURN_FAIL("GetCommModemStatus() failed");
2210 if (bits & MS_CTS_ON)
2211 *signals |= SP_SIG_CTS;
2212 if (bits & MS_DSR_ON)
2213 *signals |= SP_SIG_DSR;
2214 if (bits & MS_RLSD_ON)
2215 *signals |= SP_SIG_DCD;
2216 if (bits & MS_RING_ON)
2217 *signals |= SP_SIG_RI;
2218 #else
2219 int bits;
2220 if (ioctl(port->fd, TIOCMGET, &bits) < 0)
2221 RETURN_FAIL("TIOCMGET ioctl failed");
2222 if (bits & TIOCM_CTS)
2223 *signals |= SP_SIG_CTS;
2224 if (bits & TIOCM_DSR)
2225 *signals |= SP_SIG_DSR;
2226 if (bits & TIOCM_CAR)
2227 *signals |= SP_SIG_DCD;
2228 if (bits & TIOCM_RNG)
2229 *signals |= SP_SIG_RI;
2230 #endif
2231 RETURN_OK();
2234 SP_API enum sp_return sp_start_break(struct sp_port *port)
2236 TRACE("%p", port);
2238 CHECK_OPEN_PORT();
2239 #ifdef _WIN32
2240 if (SetCommBreak(port->hdl) == 0)
2241 RETURN_FAIL("SetCommBreak() failed");
2242 #else
2243 if (ioctl(port->fd, TIOCSBRK, 1) < 0)
2244 RETURN_FAIL("TIOCSBRK ioctl failed");
2245 #endif
2247 RETURN_OK();
2250 SP_API enum sp_return sp_end_break(struct sp_port *port)
2252 TRACE("%p", port);
2254 CHECK_OPEN_PORT();
2255 #ifdef _WIN32
2256 if (ClearCommBreak(port->hdl) == 0)
2257 RETURN_FAIL("ClearCommBreak() failed");
2258 #else
2259 if (ioctl(port->fd, TIOCCBRK, 1) < 0)
2260 RETURN_FAIL("TIOCCBRK ioctl failed");
2261 #endif
2263 RETURN_OK();
2266 SP_API int sp_last_error_code(void)
2268 TRACE_VOID();
2269 #ifdef _WIN32
2270 RETURN_INT(GetLastError());
2271 #else
2272 RETURN_INT(errno);
2273 #endif
2276 SP_API char *sp_last_error_message(void)
2278 TRACE_VOID();
2280 #ifdef _WIN32
2281 LPVOID message;
2282 DWORD error = GetLastError();
2284 FormatMessage(
2285 FORMAT_MESSAGE_ALLOCATE_BUFFER |
2286 FORMAT_MESSAGE_FROM_SYSTEM |
2287 FORMAT_MESSAGE_IGNORE_INSERTS,
2288 NULL,
2289 error,
2290 MAKELANGID(LANG_NEUTRAL, SUBLANG_DEFAULT),
2291 (LPTSTR) &message,
2292 0, NULL );
2294 RETURN_STRING(message);
2295 #else
2296 RETURN_STRING(strerror(errno));
2297 #endif
2300 SP_API void sp_free_error_message(char *message)
2302 TRACE("%s", message);
2304 #ifdef _WIN32
2305 LocalFree(message);
2306 #else
2307 (void)message;
2308 #endif
2310 RETURN();
2313 SP_API void sp_set_debug_handler(void (*handler)(const char *format, ...))
2315 TRACE("%p", handler);
2317 sp_debug_handler = handler;
2319 RETURN();
2322 SP_API void sp_default_debug_handler(const char *format, ...)
2324 va_list args;
2325 va_start(args, format);
2326 if (getenv("LIBSERIALPORT_DEBUG")) {
2327 fputs("sp: ", stderr);
2328 vfprintf(stderr, format, args);
2330 va_end(args);
2333 SP_API int sp_get_major_package_version(void)
2335 return SP_PACKAGE_VERSION_MAJOR;
2338 SP_API int sp_get_minor_package_version(void)
2340 return SP_PACKAGE_VERSION_MINOR;
2343 SP_API int sp_get_micro_package_version(void)
2345 return SP_PACKAGE_VERSION_MICRO;
2348 SP_API const char *sp_get_package_version_string(void)
2350 return SP_PACKAGE_VERSION_STRING;
2353 SP_API int sp_get_current_lib_version(void)
2355 return SP_LIB_VERSION_CURRENT;
2358 SP_API int sp_get_revision_lib_version(void)
2360 return SP_LIB_VERSION_REVISION;
2363 SP_API int sp_get_age_lib_version(void)
2365 return SP_LIB_VERSION_AGE;
2368 SP_API const char *sp_get_lib_version_string(void)
2370 return SP_LIB_VERSION_STRING;
2373 /** @} */