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
[] = {
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),
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),
41 #if !defined(__APPLE__) && !defined(__OpenBSD__)
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
)
60 #ifndef NO_PORT_METADATA
65 TRACE("%s, %p", portname
, port_ptr
);
68 RETURN_ERROR(SP_ERR_ARG
, "Null result pointer");
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
))) {
84 RETURN_ERROR(SP_ERR_MEM
, "Port name malloc failed");
87 memcpy(port
->name
, portname
, len
);
90 port
->usb_path
= NULL
;
91 port
->hdl
= INVALID_HANDLE_VALUE
;
96 port
->description
= NULL
;
97 port
->transport
= SP_TRANSPORT_NATIVE
;
99 port
->usb_address
= -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
) {
119 SP_API
char *sp_get_port_name(const struct sp_port
*port
)
126 RETURN_STRING(port
->name
);
129 SP_API
char *sp_get_port_description(const struct sp_port
*port
)
133 if (!port
|| !port
->description
)
136 RETURN_STRING(port
->description
);
139 SP_API
enum sp_transport
sp_get_port_transport(const struct sp_port
*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
)
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");
162 *usb_bus
= port
->usb_bus
;
164 *usb_address
= port
->usb_address
;
169 SP_API
enum sp_return
sp_get_port_usb_vid_pid(const struct sp_port
*port
,
170 int *usb_vid
, int *usb_pid
)
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");
182 *usb_vid
= port
->usb_vid
;
184 *usb_pid
= port
->usb_pid
;
189 SP_API
char *sp_get_port_usb_manufacturer(const struct sp_port
*port
)
193 if (!port
|| port
->transport
!= SP_TRANSPORT_USB
|| !port
->usb_manufacturer
)
196 RETURN_STRING(port
->usb_manufacturer
);
199 SP_API
char *sp_get_port_usb_product(const struct sp_port
*port
)
203 if (!port
|| port
->transport
!= SP_TRANSPORT_USB
|| !port
->usb_product
)
206 RETURN_STRING(port
->usb_product
);
209 SP_API
char *sp_get_port_usb_serial(const struct sp_port
*port
)
213 if (!port
|| port
->transport
!= SP_TRANSPORT_USB
|| !port
->usb_serial
)
216 RETURN_STRING(port
->usb_serial
);
219 SP_API
char *sp_get_port_bluetooth_address(const struct sp_port
*port
)
223 if (!port
|| port
->transport
!= SP_TRANSPORT_BLUETOOTH
224 || !port
->bluetooth_address
)
227 RETURN_STRING(port
->bluetooth_address
);
230 SP_API
enum sp_return
sp_get_port_handle(const struct sp_port
*port
,
233 TRACE("%p, %p", port
, result_ptr
);
236 RETURN_ERROR(SP_ERR_ARG
, "Null port");
238 RETURN_ERROR(SP_ERR_ARG
, "Null result pointer");
241 HANDLE
*handle_ptr
= result_ptr
;
242 *handle_ptr
= port
->hdl
;
244 int *fd_ptr
= result_ptr
;
251 SP_API
enum sp_return
sp_copy_port(const struct sp_port
*port
,
252 struct sp_port
**copy_ptr
)
254 TRACE("%p, %p", port
, copy_ptr
);
257 RETURN_ERROR(SP_ERR_ARG
, "Null result pointer");
262 RETURN_ERROR(SP_ERR_ARG
, "Null port");
265 RETURN_ERROR(SP_ERR_ARG
, "Null port name");
267 DEBUG("Copying port structure");
269 RETURN_INT(sp_get_port_by_name(port
->name
, copy_ptr
));
272 SP_API
void sp_free_port(struct sp_port
*port
)
281 DEBUG("Freeing port structure");
285 if (port
->description
)
286 free(port
->description
);
287 if (port
->usb_manufacturer
)
288 free(port
->usb_manufacturer
);
289 if (port
->usb_product
)
290 free(port
->usb_product
);
291 if (port
->usb_serial
)
292 free(port
->usb_serial
);
293 if (port
->bluetooth_address
)
294 free(port
->bluetooth_address
);
297 free(port
->usb_path
);
305 SP_PRIV
struct sp_port
**list_append(struct sp_port
**list
,
306 const char *portname
)
311 for (count
= 0; list
[count
]; count
++);
312 if (!(tmp
= realloc(list
, sizeof(struct sp_port
*) * (count
+ 2))))
315 if (sp_get_port_by_name(portname
, &list
[count
]) != SP_OK
)
317 list
[count
+ 1] = NULL
;
321 sp_free_port_list(list
);
325 SP_API
enum sp_return
sp_list_ports(struct sp_port
***list_ptr
)
327 #ifndef NO_ENUMERATION
328 struct sp_port
**list
;
332 TRACE("%p", list_ptr
);
335 RETURN_ERROR(SP_ERR_ARG
, "Null result pointer");
339 #ifdef NO_ENUMERATION
340 RETURN_ERROR(SP_ERR_SUPP
, "Enumeration not supported on this platform");
342 DEBUG("Enumerating ports");
344 if (!(list
= malloc(sizeof(struct sp_port
*))))
345 RETURN_ERROR(SP_ERR_MEM
, "Port list malloc failed");
349 ret
= list_ports(&list
);
354 sp_free_port_list(list
);
362 SP_API
void sp_free_port_list(struct sp_port
**list
)
373 DEBUG("Freeing port list");
375 for (i
= 0; list
[i
]; i
++)
376 sp_free_port(list
[i
]);
382 #define CHECK_PORT() do { \
384 RETURN_ERROR(SP_ERR_ARG, "Null port"); \
386 RETURN_ERROR(SP_ERR_ARG, "Null port name"); \
389 #define CHECK_PORT_HANDLE() do { \
390 if (port->hdl == INVALID_HANDLE_VALUE) \
391 RETURN_ERROR(SP_ERR_ARG, "Invalid port handle"); \
394 #define CHECK_PORT_HANDLE() do { \
396 RETURN_ERROR(SP_ERR_ARG, "Invalid port fd"); \
399 #define CHECK_OPEN_PORT() do { \
401 CHECK_PORT_HANDLE(); \
405 /** To be called after port receive buffer is emptied. */
406 static enum sp_return
restart_wait(struct sp_port
*port
)
410 if (port
->wait_running
) {
411 /* Check status of running wait operation. */
412 if (GetOverlappedResult(port
->hdl
, &port
->wait_ovl
,
413 &wait_result
, FALSE
)) {
414 DEBUG("Previous wait completed");
415 port
->wait_running
= FALSE
;
416 } else if (GetLastError() == ERROR_IO_INCOMPLETE
) {
417 DEBUG("Previous wait still running");
420 RETURN_FAIL("GetOverlappedResult() failed");
424 if (!port
->wait_running
) {
425 /* Start new wait operation. */
426 if (WaitCommEvent(port
->hdl
, &port
->events
,
428 DEBUG("New wait returned, events already pending");
429 } else if (GetLastError() == ERROR_IO_PENDING
) {
430 DEBUG("New wait running in background");
431 port
->wait_running
= TRUE
;
433 RETURN_FAIL("WaitCommEvent() failed");
441 SP_API
enum sp_return
sp_open(struct sp_port
*port
, enum sp_mode flags
)
443 struct port_data data
;
444 struct sp_port_config config
;
447 TRACE("%p, 0x%x", port
, flags
);
451 if (flags
> SP_MODE_READ_WRITE
)
452 RETURN_ERROR(SP_ERR_ARG
, "Invalid flags");
454 DEBUG_FMT("Opening port %s", port
->name
);
457 DWORD desired_access
= 0, flags_and_attributes
= 0, errors
;
458 char *escaped_port_name
;
461 /* Prefix port name with '\\.\' to work with ports above COM9. */
462 if (!(escaped_port_name
= malloc(strlen(port
->name
) + 5)))
463 RETURN_ERROR(SP_ERR_MEM
, "Escaped port name malloc failed");
464 sprintf(escaped_port_name
, "\\\\.\\%s", port
->name
);
466 /* Map 'flags' to the OS-specific settings. */
467 flags_and_attributes
= FILE_ATTRIBUTE_NORMAL
| FILE_FLAG_OVERLAPPED
;
468 if (flags
& SP_MODE_READ
)
469 desired_access
|= GENERIC_READ
;
470 if (flags
& SP_MODE_WRITE
)
471 desired_access
|= GENERIC_WRITE
;
473 port
->hdl
= CreateFile(escaped_port_name
, desired_access
, 0, 0,
474 OPEN_EXISTING
, flags_and_attributes
, 0);
476 free(escaped_port_name
);
478 if (port
->hdl
== INVALID_HANDLE_VALUE
)
479 RETURN_FAIL("Port CreateFile() failed");
481 /* All timeouts initially disabled. */
482 port
->timeouts
.ReadIntervalTimeout
= 0;
483 port
->timeouts
.ReadTotalTimeoutMultiplier
= 0;
484 port
->timeouts
.ReadTotalTimeoutConstant
= 0;
485 port
->timeouts
.WriteTotalTimeoutMultiplier
= 0;
486 port
->timeouts
.WriteTotalTimeoutConstant
= 0;
488 if (SetCommTimeouts(port
->hdl
, &port
->timeouts
) == 0) {
490 RETURN_FAIL("SetCommTimeouts() failed");
493 /* Prepare OVERLAPPED structures. */
494 #define INIT_OVERLAPPED(ovl) do { \
495 memset(&port->ovl, 0, sizeof(port->ovl)); \
496 port->ovl.hEvent = INVALID_HANDLE_VALUE; \
497 if ((port->ovl.hEvent = CreateEvent(NULL, TRUE, TRUE, NULL)) \
498 == INVALID_HANDLE_VALUE) { \
500 RETURN_FAIL(#ovl "CreateEvent() failed"); \
504 INIT_OVERLAPPED(read_ovl
);
505 INIT_OVERLAPPED(write_ovl
);
506 INIT_OVERLAPPED(wait_ovl
);
508 /* Set event mask for RX and error events. */
509 if (SetCommMask(port
->hdl
, EV_RXCHAR
| EV_ERR
) == 0) {
511 RETURN_FAIL("SetCommMask() failed");
514 port
->writing
= FALSE
;
515 port
->wait_running
= FALSE
;
517 ret
= restart_wait(port
);
524 int flags_local
= O_NONBLOCK
| O_NOCTTY
;
526 /* Map 'flags' to the OS-specific settings. */
527 if ((flags
& SP_MODE_READ_WRITE
) == SP_MODE_READ_WRITE
)
528 flags_local
|= O_RDWR
;
529 else if (flags
& SP_MODE_READ
)
530 flags_local
|= O_RDONLY
;
531 else if (flags
& SP_MODE_WRITE
)
532 flags_local
|= O_WRONLY
;
534 if ((port
->fd
= open(port
->name
, flags_local
)) < 0)
535 RETURN_FAIL("open() failed");
538 ret
= get_config(port
, &data
, &config
);
545 /* Set sane port settings. */
547 data
.dcb
.fBinary
= TRUE
;
548 data
.dcb
.fDsrSensitivity
= FALSE
;
549 data
.dcb
.fErrorChar
= FALSE
;
550 data
.dcb
.fNull
= FALSE
;
551 data
.dcb
.fAbortOnError
= FALSE
;
553 /* Turn off all fancy termios tricks, give us a raw channel. */
554 data
.term
.c_iflag
&= ~(IGNBRK
| BRKINT
| PARMRK
| ISTRIP
| INLCR
| IGNCR
| ICRNL
| IMAXBEL
);
556 data
.term
.c_iflag
&= ~IUCLC
;
558 data
.term
.c_oflag
&= ~(OPOST
| ONLCR
| OCRNL
| ONOCR
| ONLRET
);
560 data
.term
.c_oflag
&= ~OLCUC
;
563 data
.term
.c_oflag
&= ~NLDLY
;
566 data
.term
.c_oflag
&= ~CRDLY
;
569 data
.term
.c_oflag
&= ~TABDLY
;
572 data
.term
.c_oflag
&= ~BSDLY
;
575 data
.term
.c_oflag
&= ~VTDLY
;
578 data
.term
.c_oflag
&= ~FFDLY
;
581 data
.term
.c_oflag
&= ~OFILL
;
583 data
.term
.c_lflag
&= ~(ISIG
| ICANON
| ECHO
| IEXTEN
);
584 data
.term
.c_cc
[VMIN
] = 0;
585 data
.term
.c_cc
[VTIME
] = 0;
587 /* Ignore modem status lines; enable receiver; leave control lines alone on close. */
588 data
.term
.c_cflag
|= (CLOCAL
| CREAD
| HUPCL
);
592 if (ClearCommError(port
->hdl
, &errors
, &status
) == 0)
593 RETURN_FAIL("ClearCommError() failed");
596 ret
= set_config(port
, &data
, &config
);
606 SP_API
enum sp_return
sp_close(struct sp_port
*port
)
612 DEBUG_FMT("Closing port %s", port
->name
);
615 /* Returns non-zero upon success, 0 upon failure. */
616 if (CloseHandle(port
->hdl
) == 0)
617 RETURN_FAIL("Port CloseHandle() failed");
618 port
->hdl
= INVALID_HANDLE_VALUE
;
620 /* Close event handles for overlapped structures. */
621 #define CLOSE_OVERLAPPED(ovl) do { \
622 if (port->ovl.hEvent != INVALID_HANDLE_VALUE && \
623 CloseHandle(port->ovl.hEvent) == 0) \
624 RETURN_FAIL(# ovl "event CloseHandle() failed"); \
626 CLOSE_OVERLAPPED(read_ovl
);
627 CLOSE_OVERLAPPED(write_ovl
);
628 CLOSE_OVERLAPPED(wait_ovl
);
631 /* Returns 0 upon success, -1 upon failure. */
632 if (close(port
->fd
) == -1)
633 RETURN_FAIL("close() failed");
640 SP_API
enum sp_return
sp_flush(struct sp_port
*port
, enum sp_buffer buffers
)
642 TRACE("%p, 0x%x", port
, buffers
);
646 if (buffers
> SP_BUF_BOTH
)
647 RETURN_ERROR(SP_ERR_ARG
, "Invalid buffer selection");
649 const char *buffer_names
[] = {"no", "input", "output", "both"};
651 DEBUG_FMT("Flushing %s buffers on port %s",
652 buffer_names
[buffers
], port
->name
);
656 if (buffers
& SP_BUF_INPUT
)
657 flags
|= PURGE_RXCLEAR
;
658 if (buffers
& SP_BUF_OUTPUT
)
659 flags
|= PURGE_TXCLEAR
;
661 /* Returns non-zero upon success, 0 upon failure. */
662 if (PurgeComm(port
->hdl
, flags
) == 0)
663 RETURN_FAIL("PurgeComm() failed");
665 if (buffers
& SP_BUF_INPUT
)
666 TRY(restart_wait(port
));
669 if (buffers
== SP_BUF_BOTH
)
671 else if (buffers
== SP_BUF_INPUT
)
673 else if (buffers
== SP_BUF_OUTPUT
)
676 /* Returns 0 upon success, -1 upon failure. */
677 if (tcflush(port
->fd
, flags
) < 0)
678 RETURN_FAIL("tcflush() failed");
683 SP_API
enum sp_return
sp_drain(struct sp_port
*port
)
689 DEBUG_FMT("Draining port %s", port
->name
);
692 /* Returns non-zero upon success, 0 upon failure. */
693 if (FlushFileBuffers(port
->hdl
) == 0)
694 RETURN_FAIL("FlushFileBuffers() failed");
701 result
= ioctl(port
->fd
, TCSBRK
, &arg
);
703 result
= tcdrain(port
->fd
);
706 if (errno
== EINTR
) {
707 DEBUG("tcdrain() was interrupted");
710 RETURN_FAIL("tcdrain() failed");
719 SP_API
enum sp_return
sp_blocking_write(struct sp_port
*port
, const void *buf
,
720 size_t count
, unsigned int timeout_ms
)
722 TRACE("%p, %p, %d, %d", port
, buf
, count
, timeout_ms
);
727 RETURN_ERROR(SP_ERR_ARG
, "Null buffer");
730 DEBUG_FMT("Writing %d bytes to port %s, timeout %d ms",
731 count
, port
->name
, timeout_ms
);
733 DEBUG_FMT("Writing %d bytes to port %s, no timeout",
740 DWORD bytes_written
= 0;
743 /* Wait for previous non-blocking write to complete, if any. */
745 DEBUG("Waiting for previous write to complete");
746 result
= GetOverlappedResult(port
->hdl
, &port
->write_ovl
, &bytes_written
, TRUE
);
749 RETURN_FAIL("Previous write failed to complete");
750 DEBUG("Previous write completed");
754 if (port
->timeouts
.WriteTotalTimeoutConstant
!= timeout_ms
) {
755 port
->timeouts
.WriteTotalTimeoutConstant
= timeout_ms
;
756 if (SetCommTimeouts(port
->hdl
, &port
->timeouts
) == 0)
757 RETURN_FAIL("SetCommTimeouts() failed");
761 if (WriteFile(port
->hdl
, buf
, count
, NULL
, &port
->write_ovl
)) {
762 DEBUG("Write completed immediately");
764 } else if (GetLastError() == ERROR_IO_PENDING
) {
765 DEBUG("Waiting for write to complete");
766 if (GetOverlappedResult(port
->hdl
, &port
->write_ovl
, &bytes_written
, TRUE
) == 0)
767 RETURN_FAIL("GetOverlappedResult() failed");
768 DEBUG_FMT("Write completed, %d/%d bytes written", bytes_written
, count
);
769 RETURN_INT(bytes_written
);
771 RETURN_FAIL("WriteFile() failed");
774 size_t bytes_written
= 0;
775 unsigned char *ptr
= (unsigned char *) buf
;
776 struct timeval start
, delta
, now
, end
= {0, 0};
782 /* Get time at start of operation. */
783 gettimeofday(&start
, NULL
);
784 /* Define duration of timeout. */
785 delta
.tv_sec
= timeout_ms
/ 1000;
786 delta
.tv_usec
= (timeout_ms
% 1000) * 1000;
787 /* Calculate time at which we should give up. */
788 timeradd(&start
, &delta
, &end
);
792 FD_SET(port
->fd
, &fds
);
794 /* Loop until we have written the requested number of bytes. */
795 while (bytes_written
< count
) {
797 * Check timeout only if we have run select() at least once,
798 * to avoid any issues if a short timeout is reached before
799 * select() is even run.
801 if (timeout_ms
&& started
) {
802 gettimeofday(&now
, NULL
);
803 if (timercmp(&now
, &end
, >))
804 /* Timeout has expired. */
806 timersub(&end
, &now
, &delta
);
808 result
= select(port
->fd
+ 1, NULL
, &fds
, NULL
, timeout_ms
? &delta
: NULL
);
811 if (errno
== EINTR
) {
812 DEBUG("select() call was interrupted, repeating");
815 RETURN_FAIL("select() failed");
817 } else if (result
== 0) {
818 /* Timeout has expired. */
823 result
= write(port
->fd
, ptr
, count
- bytes_written
);
827 /* This shouldn't happen because we did a select() first, but handle anyway. */
830 /* This is an actual failure. */
831 RETURN_FAIL("write() failed");
834 bytes_written
+= result
;
838 if (bytes_written
< count
)
839 DEBUG("Write timed out");
841 RETURN_INT(bytes_written
);
845 SP_API
enum sp_return
sp_nonblocking_write(struct sp_port
*port
,
846 const void *buf
, size_t count
)
848 TRACE("%p, %p, %d", port
, buf
, count
);
853 RETURN_ERROR(SP_ERR_ARG
, "Null buffer");
855 DEBUG_FMT("Writing up to %d bytes to port %s", count
, port
->name
);
862 BYTE
*ptr
= (BYTE
*) buf
;
864 /* Check whether previous write is complete. */
866 if (HasOverlappedIoCompleted(&port
->write_ovl
)) {
867 DEBUG("Previous write completed");
870 DEBUG("Previous write not complete");
871 /* Can't take a new write until the previous one finishes. */
877 if (port
->timeouts
.WriteTotalTimeoutConstant
!= 0) {
878 port
->timeouts
.WriteTotalTimeoutConstant
= 0;
879 if (SetCommTimeouts(port
->hdl
, &port
->timeouts
) == 0)
880 RETURN_FAIL("SetCommTimeouts() failed");
884 * Keep writing data until the OS has to actually start an async IO
885 * for it. At that point we know the buffer is full.
887 while (written
< count
) {
888 /* Copy first byte of user buffer. */
889 port
->pending_byte
= *ptr
++;
891 /* Start asynchronous write. */
892 if (WriteFile(port
->hdl
, &port
->pending_byte
, 1, NULL
, &port
->write_ovl
) == 0) {
893 if (GetLastError() == ERROR_IO_PENDING
) {
894 if (HasOverlappedIoCompleted(&port
->write_ovl
)) {
895 DEBUG("Asynchronous write completed immediately");
900 DEBUG("Asynchronous write running");
902 RETURN_INT(++written
);
905 /* Actual failure of some kind. */
906 RETURN_FAIL("WriteFile() failed");
909 DEBUG("Single byte written immediately");
914 DEBUG("All bytes written immediately");
918 /* Returns the number of bytes written, or -1 upon failure. */
919 ssize_t written
= write(port
->fd
, buf
, count
);
922 RETURN_FAIL("write() failed");
929 /* Restart wait operation if buffer was emptied. */
930 static enum sp_return
restart_wait_if_needed(struct sp_port
*port
, unsigned int bytes_read
)
938 if (ClearCommError(port
->hdl
, &errors
, &comstat
) == 0)
939 RETURN_FAIL("ClearCommError() failed");
941 if (comstat
.cbInQue
== 0)
942 TRY(restart_wait(port
));
948 SP_API
enum sp_return
sp_blocking_read(struct sp_port
*port
, void *buf
,
949 size_t count
, unsigned int timeout_ms
)
951 TRACE("%p, %p, %d, %d", port
, buf
, count
, timeout_ms
);
956 RETURN_ERROR(SP_ERR_ARG
, "Null buffer");
959 DEBUG_FMT("Reading %d bytes from port %s, timeout %d ms",
960 count
, port
->name
, timeout_ms
);
962 DEBUG_FMT("Reading %d bytes from port %s, no timeout",
969 DWORD bytes_read
= 0;
972 if (port
->timeouts
.ReadIntervalTimeout
!= 0 ||
973 port
->timeouts
.ReadTotalTimeoutMultiplier
!= 0 ||
974 port
->timeouts
.ReadTotalTimeoutConstant
!= timeout_ms
) {
975 port
->timeouts
.ReadIntervalTimeout
= 0;
976 port
->timeouts
.ReadTotalTimeoutMultiplier
= 0;
977 port
->timeouts
.ReadTotalTimeoutConstant
= timeout_ms
;
978 if (SetCommTimeouts(port
->hdl
, &port
->timeouts
) == 0)
979 RETURN_FAIL("SetCommTimeouts() failed");
983 if (ReadFile(port
->hdl
, buf
, count
, NULL
, &port
->read_ovl
)) {
984 DEBUG("Read completed immediately");
986 } else if (GetLastError() == ERROR_IO_PENDING
) {
987 DEBUG("Waiting for read to complete");
988 if (GetOverlappedResult(port
->hdl
, &port
->read_ovl
, &bytes_read
, TRUE
) == 0)
989 RETURN_FAIL("GetOverlappedResult() failed");
990 DEBUG_FMT("Read completed, %d/%d bytes read", bytes_read
, count
);
992 RETURN_FAIL("ReadFile() failed");
995 TRY(restart_wait_if_needed(port
, bytes_read
));
997 RETURN_INT(bytes_read
);
1000 size_t bytes_read
= 0;
1001 unsigned char *ptr
= (unsigned char *) buf
;
1002 struct timeval start
, delta
, now
, end
= {0, 0};
1008 /* Get time at start of operation. */
1009 gettimeofday(&start
, NULL
);
1010 /* Define duration of timeout. */
1011 delta
.tv_sec
= timeout_ms
/ 1000;
1012 delta
.tv_usec
= (timeout_ms
% 1000) * 1000;
1013 /* Calculate time at which we should give up. */
1014 timeradd(&start
, &delta
, &end
);
1018 FD_SET(port
->fd
, &fds
);
1020 /* Loop until we have the requested number of bytes. */
1021 while (bytes_read
< count
) {
1023 * Check timeout only if we have run select() at least once,
1024 * to avoid any issues if a short timeout is reached before
1025 * select() is even run.
1027 if (timeout_ms
&& started
) {
1028 gettimeofday(&now
, NULL
);
1029 if (timercmp(&now
, &end
, >))
1030 /* Timeout has expired. */
1032 timersub(&end
, &now
, &delta
);
1034 result
= select(port
->fd
+ 1, &fds
, NULL
, NULL
, timeout_ms
? &delta
: NULL
);
1037 if (errno
== EINTR
) {
1038 DEBUG("select() call was interrupted, repeating");
1041 RETURN_FAIL("select() failed");
1043 } else if (result
== 0) {
1044 /* Timeout has expired. */
1049 result
= read(port
->fd
, ptr
, count
- bytes_read
);
1052 if (errno
== EAGAIN
)
1054 * This shouldn't happen because we did a
1055 * select() first, but handle anyway.
1059 /* This is an actual failure. */
1060 RETURN_FAIL("read() failed");
1063 bytes_read
+= result
;
1067 if (bytes_read
< count
)
1068 DEBUG("Read timed out");
1070 RETURN_INT(bytes_read
);
1074 SP_API
enum sp_return
sp_blocking_read_next(struct sp_port
*port
, void *buf
,
1075 size_t count
, unsigned int timeout_ms
)
1077 TRACE("%p, %p, %d, %d", port
, buf
, count
, timeout_ms
);
1082 RETURN_ERROR(SP_ERR_ARG
, "Null buffer");
1085 RETURN_ERROR(SP_ERR_ARG
, "Zero count");
1088 DEBUG_FMT("Reading next max %d bytes from port %s, timeout %d ms",
1089 count
, port
->name
, timeout_ms
);
1091 DEBUG_FMT("Reading next max %d bytes from port %s, no timeout",
1095 DWORD bytes_read
= 0;
1097 /* If timeout_ms == 0, set maximum timeout. */
1098 DWORD timeout_val
= (timeout_ms
== 0 ? MAXDWORD
- 1 : timeout_ms
);
1101 if (port
->timeouts
.ReadIntervalTimeout
!= MAXDWORD
||
1102 port
->timeouts
.ReadTotalTimeoutMultiplier
!= MAXDWORD
||
1103 port
->timeouts
.ReadTotalTimeoutConstant
!= timeout_val
) {
1104 port
->timeouts
.ReadIntervalTimeout
= MAXDWORD
;
1105 port
->timeouts
.ReadTotalTimeoutMultiplier
= MAXDWORD
;
1106 port
->timeouts
.ReadTotalTimeoutConstant
= timeout_val
;
1107 if (SetCommTimeouts(port
->hdl
, &port
->timeouts
) == 0)
1108 RETURN_FAIL("SetCommTimeouts() failed");
1111 /* Loop until we have at least one byte, or timeout is reached. */
1112 while (bytes_read
== 0) {
1114 if (ReadFile(port
->hdl
, buf
, count
, NULL
, &port
->read_ovl
)) {
1115 DEBUG("Read completed immediately");
1117 } else if (GetLastError() == ERROR_IO_PENDING
) {
1118 DEBUG("Waiting for read to complete");
1119 if (GetOverlappedResult(port
->hdl
, &port
->read_ovl
, &bytes_read
, TRUE
) == 0)
1120 RETURN_FAIL("GetOverlappedResult() failed");
1121 if (bytes_read
> 0) {
1122 DEBUG("Read completed");
1123 } else if (timeout_ms
> 0) {
1124 DEBUG("Read timed out");
1127 DEBUG("Restarting read");
1130 RETURN_FAIL("ReadFile() failed");
1134 TRY(restart_wait_if_needed(port
, bytes_read
));
1136 RETURN_INT(bytes_read
);
1139 size_t bytes_read
= 0;
1140 struct timeval start
, delta
, now
, end
= {0, 0};
1146 /* Get time at start of operation. */
1147 gettimeofday(&start
, NULL
);
1148 /* Define duration of timeout. */
1149 delta
.tv_sec
= timeout_ms
/ 1000;
1150 delta
.tv_usec
= (timeout_ms
% 1000) * 1000;
1151 /* Calculate time at which we should give up. */
1152 timeradd(&start
, &delta
, &end
);
1156 FD_SET(port
->fd
, &fds
);
1158 /* Loop until we have at least one byte, or timeout is reached. */
1159 while (bytes_read
== 0) {
1161 * Check timeout only if we have run select() at least once,
1162 * to avoid any issues if a short timeout is reached before
1163 * select() is even run.
1165 if (timeout_ms
&& started
) {
1166 gettimeofday(&now
, NULL
);
1167 if (timercmp(&now
, &end
, >))
1168 /* Timeout has expired. */
1170 timersub(&end
, &now
, &delta
);
1172 result
= select(port
->fd
+ 1, &fds
, NULL
, NULL
, timeout_ms
? &delta
: NULL
);
1175 if (errno
== EINTR
) {
1176 DEBUG("select() call was interrupted, repeating");
1179 RETURN_FAIL("select() failed");
1181 } else if (result
== 0) {
1182 /* Timeout has expired. */
1187 result
= read(port
->fd
, buf
, count
);
1190 if (errno
== EAGAIN
)
1191 /* This shouldn't happen because we did a select() first, but handle anyway. */
1194 /* This is an actual failure. */
1195 RETURN_FAIL("read() failed");
1198 bytes_read
= result
;
1201 if (bytes_read
== 0)
1202 DEBUG("Read timed out");
1204 RETURN_INT(bytes_read
);
1208 SP_API
enum sp_return
sp_nonblocking_read(struct sp_port
*port
, void *buf
,
1211 TRACE("%p, %p, %d", port
, buf
, count
);
1216 RETURN_ERROR(SP_ERR_ARG
, "Null buffer");
1218 DEBUG_FMT("Reading up to %d bytes from port %s", count
, port
->name
);
1224 if (port
->timeouts
.ReadIntervalTimeout
!= MAXDWORD
||
1225 port
->timeouts
.ReadTotalTimeoutMultiplier
!= 0 ||
1226 port
->timeouts
.ReadTotalTimeoutConstant
!= 0) {
1227 port
->timeouts
.ReadIntervalTimeout
= MAXDWORD
;
1228 port
->timeouts
.ReadTotalTimeoutMultiplier
= 0;
1229 port
->timeouts
.ReadTotalTimeoutConstant
= 0;
1230 if (SetCommTimeouts(port
->hdl
, &port
->timeouts
) == 0)
1231 RETURN_FAIL("SetCommTimeouts() failed");
1235 if (ReadFile(port
->hdl
, buf
, count
, NULL
, &port
->read_ovl
) == 0)
1236 RETURN_FAIL("ReadFile() failed");
1238 /* Get number of bytes read. */
1239 if (GetOverlappedResult(port
->hdl
, &port
->read_ovl
, &bytes_read
, TRUE
) == 0)
1240 RETURN_FAIL("GetOverlappedResult() failed");
1242 TRY(restart_wait_if_needed(port
, bytes_read
));
1244 RETURN_INT(bytes_read
);
1248 /* Returns the number of bytes read, or -1 upon failure. */
1249 if ((bytes_read
= read(port
->fd
, buf
, count
)) < 0) {
1250 if (errno
== EAGAIN
)
1251 /* No bytes available. */
1254 /* This is an actual failure. */
1255 RETURN_FAIL("read() failed");
1257 RETURN_INT(bytes_read
);
1261 SP_API
enum sp_return
sp_input_waiting(struct sp_port
*port
)
1267 DEBUG_FMT("Checking input bytes waiting on port %s", port
->name
);
1273 if (ClearCommError(port
->hdl
, &errors
, &comstat
) == 0)
1274 RETURN_FAIL("ClearCommError() failed");
1275 RETURN_INT(comstat
.cbInQue
);
1278 if (ioctl(port
->fd
, TIOCINQ
, &bytes_waiting
) < 0)
1279 RETURN_FAIL("TIOCINQ ioctl failed");
1280 RETURN_INT(bytes_waiting
);
1284 SP_API
enum sp_return
sp_output_waiting(struct sp_port
*port
)
1290 DEBUG_FMT("Checking output bytes waiting on port %s", port
->name
);
1296 if (ClearCommError(port
->hdl
, &errors
, &comstat
) == 0)
1297 RETURN_FAIL("ClearCommError() failed");
1298 RETURN_INT(comstat
.cbOutQue
);
1301 if (ioctl(port
->fd
, TIOCOUTQ
, &bytes_waiting
) < 0)
1302 RETURN_FAIL("TIOCOUTQ ioctl failed");
1303 RETURN_INT(bytes_waiting
);
1307 SP_API
enum sp_return
sp_new_event_set(struct sp_event_set
**result_ptr
)
1309 struct sp_event_set
*result
;
1311 TRACE("%p", result_ptr
);
1314 RETURN_ERROR(SP_ERR_ARG
, "Null result");
1318 if (!(result
= malloc(sizeof(struct sp_event_set
))))
1319 RETURN_ERROR(SP_ERR_MEM
, "sp_event_set malloc() failed");
1321 memset(result
, 0, sizeof(struct sp_event_set
));
1323 *result_ptr
= result
;
1328 static enum sp_return
add_handle(struct sp_event_set
*event_set
,
1329 event_handle handle
, enum sp_event mask
)
1332 enum sp_event
*new_masks
;
1334 TRACE("%p, %d, %d", event_set
, handle
, mask
);
1336 if (!(new_handles
= realloc(event_set
->handles
,
1337 sizeof(event_handle
) * (event_set
->count
+ 1))))
1338 RETURN_ERROR(SP_ERR_MEM
, "Handle array realloc() failed");
1340 event_set
->handles
= new_handles
;
1342 if (!(new_masks
= realloc(event_set
->masks
,
1343 sizeof(enum sp_event
) * (event_set
->count
+ 1))))
1344 RETURN_ERROR(SP_ERR_MEM
, "Mask array realloc() failed");
1346 event_set
->masks
= new_masks
;
1348 ((event_handle
*) event_set
->handles
)[event_set
->count
] = handle
;
1349 event_set
->masks
[event_set
->count
] = mask
;
1356 SP_API
enum sp_return
sp_add_port_events(struct sp_event_set
*event_set
,
1357 const struct sp_port
*port
, enum sp_event mask
)
1359 TRACE("%p, %p, %d", event_set
, port
, mask
);
1362 RETURN_ERROR(SP_ERR_ARG
, "Null event set");
1365 RETURN_ERROR(SP_ERR_ARG
, "Null port");
1367 if (mask
> (SP_EVENT_RX_READY
| SP_EVENT_TX_READY
| SP_EVENT_ERROR
))
1368 RETURN_ERROR(SP_ERR_ARG
, "Invalid event mask");
1374 enum sp_event handle_mask
;
1375 if ((handle_mask
= mask
& SP_EVENT_TX_READY
))
1376 TRY(add_handle(event_set
, port
->write_ovl
.hEvent
, handle_mask
));
1377 if ((handle_mask
= mask
& (SP_EVENT_RX_READY
| SP_EVENT_ERROR
)))
1378 TRY(add_handle(event_set
, port
->wait_ovl
.hEvent
, handle_mask
));
1380 TRY(add_handle(event_set
, port
->fd
, mask
));
1386 SP_API
void sp_free_event_set(struct sp_event_set
*event_set
)
1388 TRACE("%p", event_set
);
1391 DEBUG("Null event set");
1395 DEBUG("Freeing event set");
1397 if (event_set
->handles
)
1398 free(event_set
->handles
);
1399 if (event_set
->masks
)
1400 free(event_set
->masks
);
1407 SP_API
enum sp_return
sp_wait(struct sp_event_set
*event_set
,
1408 unsigned int timeout_ms
)
1410 TRACE("%p, %d", event_set
, timeout_ms
);
1413 RETURN_ERROR(SP_ERR_ARG
, "Null event set");
1416 if (WaitForMultipleObjects(event_set
->count
, event_set
->handles
, FALSE
,
1417 timeout_ms
? timeout_ms
: INFINITE
) == WAIT_FAILED
)
1418 RETURN_FAIL("WaitForMultipleObjects() failed");
1422 struct timeval start
, delta
, now
, end
= {0, 0};
1424 int result
, timeout_remaining_ms
;
1425 struct pollfd
*pollfds
;
1428 if (!(pollfds
= malloc(sizeof(struct pollfd
) * event_set
->count
)))
1429 RETURN_ERROR(SP_ERR_MEM
, "pollfds malloc() failed");
1431 for (i
= 0; i
< event_set
->count
; i
++) {
1432 pollfds
[i
].fd
= ((int *) event_set
->handles
)[i
];
1433 pollfds
[i
].events
= 0;
1434 pollfds
[i
].revents
= 0;
1435 if (event_set
->masks
[i
] & SP_EVENT_RX_READY
)
1436 pollfds
[i
].events
|= POLLIN
;
1437 if (event_set
->masks
[i
] & SP_EVENT_TX_READY
)
1438 pollfds
[i
].events
|= POLLOUT
;
1439 if (event_set
->masks
[i
] & SP_EVENT_ERROR
)
1440 pollfds
[i
].events
|= POLLERR
;
1444 /* Get time at start of operation. */
1445 gettimeofday(&start
, NULL
);
1446 /* Define duration of timeout. */
1447 delta
.tv_sec
= timeout_ms
/ 1000;
1448 delta
.tv_usec
= (timeout_ms
% 1000) * 1000;
1449 /* Calculate time at which we should give up. */
1450 timeradd(&start
, &delta
, &end
);
1453 /* Loop until an event occurs. */
1456 * Check timeout only if we have run poll() at least once,
1457 * to avoid any issues if a short timeout is reached before
1458 * poll() is even run.
1460 if (timeout_ms
&& started
) {
1461 gettimeofday(&now
, NULL
);
1462 if (timercmp(&now
, &end
, >)) {
1463 DEBUG("Wait timed out");
1466 timersub(&end
, &now
, &delta
);
1467 timeout_remaining_ms
= delta
.tv_sec
* 1000 + delta
.tv_usec
/ 1000;
1470 result
= poll(pollfds
, event_set
->count
, timeout_ms
? timeout_remaining_ms
: -1);
1474 if (errno
== EINTR
) {
1475 DEBUG("poll() call was interrupted, repeating");
1479 RETURN_FAIL("poll() failed");
1481 } else if (result
== 0) {
1482 DEBUG("poll() timed out");
1485 DEBUG("poll() completed");
1495 #ifdef USE_TERMIOS_SPEED
1496 static enum sp_return
get_baudrate(int fd
, int *baudrate
)
1500 TRACE("%d, %p", fd
, baudrate
);
1502 DEBUG("Getting baud rate");
1504 if (!(data
= malloc(get_termios_size())))
1505 RETURN_ERROR(SP_ERR_MEM
, "termios malloc failed");
1507 if (ioctl(fd
, get_termios_get_ioctl(), data
) < 0) {
1509 RETURN_FAIL("Getting termios failed");
1512 *baudrate
= get_termios_speed(data
);
1519 static enum sp_return
set_baudrate(int fd
, int baudrate
)
1523 TRACE("%d, %d", fd
, baudrate
);
1525 DEBUG("Getting baud rate");
1527 if (!(data
= malloc(get_termios_size())))
1528 RETURN_ERROR(SP_ERR_MEM
, "termios malloc failed");
1530 if (ioctl(fd
, get_termios_get_ioctl(), data
) < 0) {
1532 RETURN_FAIL("Getting termios failed");
1535 DEBUG("Setting baud rate");
1537 set_termios_speed(data
, baudrate
);
1539 if (ioctl(fd
, get_termios_set_ioctl(), data
) < 0) {
1541 RETURN_FAIL("Setting termios failed");
1548 #endif /* USE_TERMIOS_SPEED */
1551 static enum sp_return
get_flow(int fd
, struct port_data
*data
)
1555 TRACE("%d, %p", fd
, data
);
1557 DEBUG("Getting advanced flow control");
1559 if (!(termx
= malloc(get_termiox_size())))
1560 RETURN_ERROR(SP_ERR_MEM
, "termiox malloc failed");
1562 if (ioctl(fd
, TCGETX
, termx
) < 0) {
1564 RETURN_FAIL("Getting termiox failed");
1567 get_termiox_flow(termx
, &data
->rts_flow
, &data
->cts_flow
,
1568 &data
->dtr_flow
, &data
->dsr_flow
);
1575 static enum sp_return
set_flow(int fd
, struct port_data
*data
)
1579 TRACE("%d, %p", fd
, data
);
1581 DEBUG("Getting advanced flow control");
1583 if (!(termx
= malloc(get_termiox_size())))
1584 RETURN_ERROR(SP_ERR_MEM
, "termiox malloc failed");
1586 if (ioctl(fd
, TCGETX
, termx
) < 0) {
1588 RETURN_FAIL("Getting termiox failed");
1591 DEBUG("Setting advanced flow control");
1593 set_termiox_flow(termx
, data
->rts_flow
, data
->cts_flow
,
1594 data
->dtr_flow
, data
->dsr_flow
);
1596 if (ioctl(fd
, TCSETX
, termx
) < 0) {
1598 RETURN_FAIL("Setting termiox failed");
1605 #endif /* USE_TERMIOX */
1607 static enum sp_return
get_config(struct sp_port
*port
, struct port_data
*data
,
1608 struct sp_port_config
*config
)
1612 TRACE("%p, %p, %p", port
, data
, config
);
1614 DEBUG_FMT("Getting configuration for port %s", port
->name
);
1617 if (!GetCommState(port
->hdl
, &data
->dcb
))
1618 RETURN_FAIL("GetCommState() failed");
1620 for (i
= 0; i
< NUM_STD_BAUDRATES
; i
++) {
1621 if (data
->dcb
.BaudRate
== std_baudrates
[i
].index
) {
1622 config
->baudrate
= std_baudrates
[i
].value
;
1627 if (i
== NUM_STD_BAUDRATES
)
1628 /* BaudRate field can be either an index or a custom baud rate. */
1629 config
->baudrate
= data
->dcb
.BaudRate
;
1631 config
->bits
= data
->dcb
.ByteSize
;
1633 if (data
->dcb
.fParity
)
1634 switch (data
->dcb
.Parity
) {
1636 config
->parity
= SP_PARITY_NONE
;
1639 config
->parity
= SP_PARITY_ODD
;
1642 config
->parity
= SP_PARITY_EVEN
;
1645 config
->parity
= SP_PARITY_MARK
;
1648 config
->parity
= SP_PARITY_SPACE
;
1651 config
->parity
= -1;
1654 config
->parity
= SP_PARITY_NONE
;
1656 switch (data
->dcb
.StopBits
) {
1658 config
->stopbits
= 1;
1661 config
->stopbits
= 2;
1664 config
->stopbits
= -1;
1667 switch (data
->dcb
.fRtsControl
) {
1668 case RTS_CONTROL_DISABLE
:
1669 config
->rts
= SP_RTS_OFF
;
1671 case RTS_CONTROL_ENABLE
:
1672 config
->rts
= SP_RTS_ON
;
1674 case RTS_CONTROL_HANDSHAKE
:
1675 config
->rts
= SP_RTS_FLOW_CONTROL
;
1681 config
->cts
= data
->dcb
.fOutxCtsFlow
? SP_CTS_FLOW_CONTROL
: SP_CTS_IGNORE
;
1683 switch (data
->dcb
.fDtrControl
) {
1684 case DTR_CONTROL_DISABLE
:
1685 config
->dtr
= SP_DTR_OFF
;
1687 case DTR_CONTROL_ENABLE
:
1688 config
->dtr
= SP_DTR_ON
;
1690 case DTR_CONTROL_HANDSHAKE
:
1691 config
->dtr
= SP_DTR_FLOW_CONTROL
;
1697 config
->dsr
= data
->dcb
.fOutxDsrFlow
? SP_DSR_FLOW_CONTROL
: SP_DSR_IGNORE
;
1699 if (data
->dcb
.fInX
) {
1700 if (data
->dcb
.fOutX
)
1701 config
->xon_xoff
= SP_XONXOFF_INOUT
;
1703 config
->xon_xoff
= SP_XONXOFF_IN
;
1705 if (data
->dcb
.fOutX
)
1706 config
->xon_xoff
= SP_XONXOFF_OUT
;
1708 config
->xon_xoff
= SP_XONXOFF_DISABLED
;
1713 if (tcgetattr(port
->fd
, &data
->term
) < 0)
1714 RETURN_FAIL("tcgetattr() failed");
1716 if (ioctl(port
->fd
, TIOCMGET
, &data
->controlbits
) < 0)
1717 RETURN_FAIL("TIOCMGET ioctl failed");
1720 int ret
= get_flow(port
->fd
, data
);
1722 if (ret
== SP_ERR_FAIL
&& errno
== EINVAL
)
1723 data
->termiox_supported
= 0;
1725 RETURN_CODEVAL(ret
);
1727 data
->termiox_supported
= 1;
1729 data
->termiox_supported
= 0;
1732 for (i
= 0; i
< NUM_STD_BAUDRATES
; i
++) {
1733 if (cfgetispeed(&data
->term
) == std_baudrates
[i
].index
) {
1734 config
->baudrate
= std_baudrates
[i
].value
;
1739 if (i
== NUM_STD_BAUDRATES
) {
1741 config
->baudrate
= (int)data
->term
.c_ispeed
;
1742 #elif defined(USE_TERMIOS_SPEED)
1743 TRY(get_baudrate(port
->fd
, &config
->baudrate
));
1745 config
->baudrate
= -1;
1749 switch (data
->term
.c_cflag
& CSIZE
) {
1766 if (!(data
->term
.c_cflag
& PARENB
) && (data
->term
.c_iflag
& IGNPAR
))
1767 config
->parity
= SP_PARITY_NONE
;
1768 else if (!(data
->term
.c_cflag
& PARENB
) || (data
->term
.c_iflag
& IGNPAR
))
1769 config
->parity
= -1;
1771 else if (data
->term
.c_cflag
& CMSPAR
)
1772 config
->parity
= (data
->term
.c_cflag
& PARODD
) ? SP_PARITY_MARK
: SP_PARITY_SPACE
;
1775 config
->parity
= (data
->term
.c_cflag
& PARODD
) ? SP_PARITY_ODD
: SP_PARITY_EVEN
;
1777 config
->stopbits
= (data
->term
.c_cflag
& CSTOPB
) ? 2 : 1;
1779 if (data
->term
.c_cflag
& CRTSCTS
) {
1780 config
->rts
= SP_RTS_FLOW_CONTROL
;
1781 config
->cts
= SP_CTS_FLOW_CONTROL
;
1783 if (data
->termiox_supported
&& data
->rts_flow
)
1784 config
->rts
= SP_RTS_FLOW_CONTROL
;
1786 config
->rts
= (data
->controlbits
& TIOCM_RTS
) ? SP_RTS_ON
: SP_RTS_OFF
;
1788 config
->cts
= (data
->termiox_supported
&& data
->cts_flow
) ?
1789 SP_CTS_FLOW_CONTROL
: SP_CTS_IGNORE
;
1792 if (data
->termiox_supported
&& data
->dtr_flow
)
1793 config
->dtr
= SP_DTR_FLOW_CONTROL
;
1795 config
->dtr
= (data
->controlbits
& TIOCM_DTR
) ? SP_DTR_ON
: SP_DTR_OFF
;
1797 config
->dsr
= (data
->termiox_supported
&& data
->dsr_flow
) ?
1798 SP_DSR_FLOW_CONTROL
: SP_DSR_IGNORE
;
1800 if (data
->term
.c_iflag
& IXOFF
) {
1801 if (data
->term
.c_iflag
& IXON
)
1802 config
->xon_xoff
= SP_XONXOFF_INOUT
;
1804 config
->xon_xoff
= SP_XONXOFF_IN
;
1806 if (data
->term
.c_iflag
& IXON
)
1807 config
->xon_xoff
= SP_XONXOFF_OUT
;
1809 config
->xon_xoff
= SP_XONXOFF_DISABLED
;
1816 static enum sp_return
set_config(struct sp_port
*port
, struct port_data
*data
,
1817 const struct sp_port_config
*config
)
1821 BAUD_TYPE baud_nonstd
;
1825 #ifdef USE_TERMIOS_SPEED
1826 int baud_nonstd
= 0;
1829 TRACE("%p, %p, %p", port
, data
, config
);
1831 DEBUG_FMT("Setting configuration for port %s", port
->name
);
1834 if (config
->baudrate
>= 0) {
1835 for (i
= 0; i
< NUM_STD_BAUDRATES
; i
++) {
1836 if (config
->baudrate
== std_baudrates
[i
].value
) {
1837 data
->dcb
.BaudRate
= std_baudrates
[i
].index
;
1842 if (i
== NUM_STD_BAUDRATES
)
1843 data
->dcb
.BaudRate
= config
->baudrate
;
1846 if (config
->bits
>= 0)
1847 data
->dcb
.ByteSize
= config
->bits
;
1849 if (config
->parity
>= 0) {
1850 switch (config
->parity
) {
1851 case SP_PARITY_NONE
:
1852 data
->dcb
.Parity
= NOPARITY
;
1855 data
->dcb
.Parity
= ODDPARITY
;
1857 case SP_PARITY_EVEN
:
1858 data
->dcb
.Parity
= EVENPARITY
;
1860 case SP_PARITY_MARK
:
1861 data
->dcb
.Parity
= MARKPARITY
;
1863 case SP_PARITY_SPACE
:
1864 data
->dcb
.Parity
= SPACEPARITY
;
1867 RETURN_ERROR(SP_ERR_ARG
, "Invalid parity setting");
1871 if (config
->stopbits
>= 0) {
1872 switch (config
->stopbits
) {
1873 /* Note: There's also ONE5STOPBITS == 1.5 (unneeded so far). */
1875 data
->dcb
.StopBits
= ONESTOPBIT
;
1878 data
->dcb
.StopBits
= TWOSTOPBITS
;
1881 RETURN_ERROR(SP_ERR_ARG
, "Invalid stop bit setting");
1885 if (config
->rts
>= 0) {
1886 switch (config
->rts
) {
1888 data
->dcb
.fRtsControl
= RTS_CONTROL_DISABLE
;
1891 data
->dcb
.fRtsControl
= RTS_CONTROL_ENABLE
;
1893 case SP_RTS_FLOW_CONTROL
:
1894 data
->dcb
.fRtsControl
= RTS_CONTROL_HANDSHAKE
;
1897 RETURN_ERROR(SP_ERR_ARG
, "Invalid RTS setting");
1901 if (config
->cts
>= 0) {
1902 switch (config
->cts
) {
1904 data
->dcb
.fOutxCtsFlow
= FALSE
;
1906 case SP_CTS_FLOW_CONTROL
:
1907 data
->dcb
.fOutxCtsFlow
= TRUE
;
1910 RETURN_ERROR(SP_ERR_ARG
, "Invalid CTS setting");
1914 if (config
->dtr
>= 0) {
1915 switch (config
->dtr
) {
1917 data
->dcb
.fDtrControl
= DTR_CONTROL_DISABLE
;
1920 data
->dcb
.fDtrControl
= DTR_CONTROL_ENABLE
;
1922 case SP_DTR_FLOW_CONTROL
:
1923 data
->dcb
.fDtrControl
= DTR_CONTROL_HANDSHAKE
;
1926 RETURN_ERROR(SP_ERR_ARG
, "Invalid DTR setting");
1930 if (config
->dsr
>= 0) {
1931 switch (config
->dsr
) {
1933 data
->dcb
.fOutxDsrFlow
= FALSE
;
1935 case SP_DSR_FLOW_CONTROL
:
1936 data
->dcb
.fOutxDsrFlow
= TRUE
;
1939 RETURN_ERROR(SP_ERR_ARG
, "Invalid DSR setting");
1943 if (config
->xon_xoff
>= 0) {
1944 switch (config
->xon_xoff
) {
1945 case SP_XONXOFF_DISABLED
:
1946 data
->dcb
.fInX
= FALSE
;
1947 data
->dcb
.fOutX
= FALSE
;
1950 data
->dcb
.fInX
= TRUE
;
1951 data
->dcb
.fOutX
= FALSE
;
1953 case SP_XONXOFF_OUT
:
1954 data
->dcb
.fInX
= FALSE
;
1955 data
->dcb
.fOutX
= TRUE
;
1957 case SP_XONXOFF_INOUT
:
1958 data
->dcb
.fInX
= TRUE
;
1959 data
->dcb
.fOutX
= TRUE
;
1962 RETURN_ERROR(SP_ERR_ARG
, "Invalid XON/XOFF setting");
1966 if (!SetCommState(port
->hdl
, &data
->dcb
))
1967 RETURN_FAIL("SetCommState() failed");
1973 if (config
->baudrate
>= 0) {
1974 for (i
= 0; i
< NUM_STD_BAUDRATES
; i
++) {
1975 if (config
->baudrate
== std_baudrates
[i
].value
) {
1976 if (cfsetospeed(&data
->term
, std_baudrates
[i
].index
) < 0)
1977 RETURN_FAIL("cfsetospeed() failed");
1979 if (cfsetispeed(&data
->term
, std_baudrates
[i
].index
) < 0)
1980 RETURN_FAIL("cfsetispeed() failed");
1985 /* Non-standard baud rate */
1986 if (i
== NUM_STD_BAUDRATES
) {
1988 /* Set "dummy" baud rate. */
1989 if (cfsetspeed(&data
->term
, B9600
) < 0)
1990 RETURN_FAIL("cfsetspeed() failed");
1991 baud_nonstd
= config
->baudrate
;
1992 #elif defined(USE_TERMIOS_SPEED)
1995 RETURN_ERROR(SP_ERR_SUPP
, "Non-standard baudrate not supported");
2000 if (config
->bits
>= 0) {
2001 data
->term
.c_cflag
&= ~CSIZE
;
2002 switch (config
->bits
) {
2004 data
->term
.c_cflag
|= CS8
;
2007 data
->term
.c_cflag
|= CS7
;
2010 data
->term
.c_cflag
|= CS6
;
2013 data
->term
.c_cflag
|= CS5
;
2016 RETURN_ERROR(SP_ERR_ARG
, "Invalid data bits setting");
2020 if (config
->parity
>= 0) {
2021 data
->term
.c_iflag
&= ~IGNPAR
;
2022 data
->term
.c_cflag
&= ~(PARENB
| PARODD
);
2024 data
->term
.c_cflag
&= ~CMSPAR
;
2026 switch (config
->parity
) {
2027 case SP_PARITY_NONE
:
2028 data
->term
.c_iflag
|= IGNPAR
;
2030 case SP_PARITY_EVEN
:
2031 data
->term
.c_cflag
|= PARENB
;
2034 data
->term
.c_cflag
|= PARENB
| PARODD
;
2037 case SP_PARITY_MARK
:
2038 data
->term
.c_cflag
|= PARENB
| PARODD
;
2039 data
->term
.c_cflag
|= CMSPAR
;
2041 case SP_PARITY_SPACE
:
2042 data
->term
.c_cflag
|= PARENB
;
2043 data
->term
.c_cflag
|= CMSPAR
;
2046 case SP_PARITY_MARK
:
2047 case SP_PARITY_SPACE
:
2048 RETURN_ERROR(SP_ERR_SUPP
, "Mark/space parity not supported");
2051 RETURN_ERROR(SP_ERR_ARG
, "Invalid parity setting");
2055 if (config
->stopbits
>= 0) {
2056 data
->term
.c_cflag
&= ~CSTOPB
;
2057 switch (config
->stopbits
) {
2059 data
->term
.c_cflag
&= ~CSTOPB
;
2062 data
->term
.c_cflag
|= CSTOPB
;
2065 RETURN_ERROR(SP_ERR_ARG
, "Invalid stop bits setting");
2069 if (config
->rts
>= 0 || config
->cts
>= 0) {
2070 if (data
->termiox_supported
) {
2071 data
->rts_flow
= data
->cts_flow
= 0;
2072 switch (config
->rts
) {
2075 controlbits
= TIOCM_RTS
;
2076 if (ioctl(port
->fd
, config
->rts
== SP_RTS_ON
? TIOCMBIS
: TIOCMBIC
, &controlbits
) < 0)
2077 RETURN_FAIL("Setting RTS signal level failed");
2079 case SP_RTS_FLOW_CONTROL
:
2085 if (config
->cts
== SP_CTS_FLOW_CONTROL
)
2088 if (data
->rts_flow
&& data
->cts_flow
)
2089 data
->term
.c_iflag
|= CRTSCTS
;
2091 data
->term
.c_iflag
&= ~CRTSCTS
;
2093 /* Asymmetric use of RTS/CTS not supported. */
2094 if (data
->term
.c_iflag
& CRTSCTS
) {
2095 /* Flow control can only be disabled for both RTS & CTS together. */
2096 if (config
->rts
>= 0 && config
->rts
!= SP_RTS_FLOW_CONTROL
) {
2097 if (config
->cts
!= SP_CTS_IGNORE
)
2098 RETURN_ERROR(SP_ERR_SUPP
, "RTS & CTS flow control must be disabled together");
2100 if (config
->cts
>= 0 && config
->cts
!= SP_CTS_FLOW_CONTROL
) {
2101 if (config
->rts
<= 0 || config
->rts
== SP_RTS_FLOW_CONTROL
)
2102 RETURN_ERROR(SP_ERR_SUPP
, "RTS & CTS flow control must be disabled together");
2105 /* Flow control can only be enabled for both RTS & CTS together. */
2106 if (((config
->rts
== SP_RTS_FLOW_CONTROL
) && (config
->cts
!= SP_CTS_FLOW_CONTROL
)) ||
2107 ((config
->cts
== SP_CTS_FLOW_CONTROL
) && (config
->rts
!= SP_RTS_FLOW_CONTROL
)))
2108 RETURN_ERROR(SP_ERR_SUPP
, "RTS & CTS flow control must be enabled together");
2111 if (config
->rts
>= 0) {
2112 if (config
->rts
== SP_RTS_FLOW_CONTROL
) {
2113 data
->term
.c_iflag
|= CRTSCTS
;
2115 controlbits
= TIOCM_RTS
;
2116 if (ioctl(port
->fd
, config
->rts
== SP_RTS_ON
? TIOCMBIS
: TIOCMBIC
,
2118 RETURN_FAIL("Setting RTS signal level failed");
2124 if (config
->dtr
>= 0 || config
->dsr
>= 0) {
2125 if (data
->termiox_supported
) {
2126 data
->dtr_flow
= data
->dsr_flow
= 0;
2127 switch (config
->dtr
) {
2130 controlbits
= TIOCM_DTR
;
2131 if (ioctl(port
->fd
, config
->dtr
== SP_DTR_ON
? TIOCMBIS
: TIOCMBIC
, &controlbits
) < 0)
2132 RETURN_FAIL("Setting DTR signal level failed");
2134 case SP_DTR_FLOW_CONTROL
:
2140 if (config
->dsr
== SP_DSR_FLOW_CONTROL
)
2143 /* DTR/DSR flow control not supported. */
2144 if (config
->dtr
== SP_DTR_FLOW_CONTROL
|| config
->dsr
== SP_DSR_FLOW_CONTROL
)
2145 RETURN_ERROR(SP_ERR_SUPP
, "DTR/DSR flow control not supported");
2147 if (config
->dtr
>= 0) {
2148 controlbits
= TIOCM_DTR
;
2149 if (ioctl(port
->fd
, config
->dtr
== SP_DTR_ON
? TIOCMBIS
: TIOCMBIC
,
2151 RETURN_FAIL("Setting DTR signal level failed");
2156 if (config
->xon_xoff
>= 0) {
2157 data
->term
.c_iflag
&= ~(IXON
| IXOFF
| IXANY
);
2158 switch (config
->xon_xoff
) {
2159 case SP_XONXOFF_DISABLED
:
2162 data
->term
.c_iflag
|= IXOFF
;
2164 case SP_XONXOFF_OUT
:
2165 data
->term
.c_iflag
|= IXON
| IXANY
;
2167 case SP_XONXOFF_INOUT
:
2168 data
->term
.c_iflag
|= IXON
| IXOFF
| IXANY
;
2171 RETURN_ERROR(SP_ERR_ARG
, "Invalid XON/XOFF setting");
2175 if (tcsetattr(port
->fd
, TCSANOW
, &data
->term
) < 0)
2176 RETURN_FAIL("tcsetattr() failed");
2179 if (baud_nonstd
!= B0
) {
2180 if (ioctl(port
->fd
, IOSSIOSPEED
, &baud_nonstd
) == -1)
2181 RETURN_FAIL("IOSSIOSPEED ioctl failed");
2183 * Set baud rates in data->term to correct, but incompatible
2184 * with tcsetattr() value, same as delivered by tcgetattr().
2186 if (cfsetspeed(&data
->term
, baud_nonstd
) < 0)
2187 RETURN_FAIL("cfsetspeed() failed");
2189 #elif defined(__linux__)
2190 #ifdef USE_TERMIOS_SPEED
2192 TRY(set_baudrate(port
->fd
, config
->baudrate
));
2195 if (data
->termiox_supported
)
2196 TRY(set_flow(port
->fd
, data
));
2200 #endif /* !_WIN32 */
2205 SP_API
enum sp_return
sp_new_config(struct sp_port_config
**config_ptr
)
2207 struct sp_port_config
*config
;
2209 TRACE("%p", config_ptr
);
2212 RETURN_ERROR(SP_ERR_ARG
, "Null result pointer");
2216 if (!(config
= malloc(sizeof(struct sp_port_config
))))
2217 RETURN_ERROR(SP_ERR_MEM
, "Config malloc failed");
2219 config
->baudrate
= -1;
2221 config
->parity
= -1;
2222 config
->stopbits
= -1;
2228 *config_ptr
= config
;
2233 SP_API
void sp_free_config(struct sp_port_config
*config
)
2235 TRACE("%p", config
);
2238 DEBUG("Null config");
2245 SP_API
enum sp_return
sp_get_config(struct sp_port
*port
,
2246 struct sp_port_config
*config
)
2248 struct port_data data
;
2250 TRACE("%p, %p", port
, config
);
2255 RETURN_ERROR(SP_ERR_ARG
, "Null config");
2257 TRY(get_config(port
, &data
, config
));
2262 SP_API
enum sp_return
sp_set_config(struct sp_port
*port
,
2263 const struct sp_port_config
*config
)
2265 struct port_data data
;
2266 struct sp_port_config prev_config
;
2268 TRACE("%p, %p", port
, config
);
2273 RETURN_ERROR(SP_ERR_ARG
, "Null config");
2275 TRY(get_config(port
, &data
, &prev_config
));
2276 TRY(set_config(port
, &data
, config
));
2281 #define CREATE_ACCESSORS(x, type) \
2282 SP_API enum sp_return sp_set_##x(struct sp_port *port, type x) { \
2283 struct port_data data; \
2284 struct sp_port_config config; \
2285 TRACE("%p, %d", port, x); \
2286 CHECK_OPEN_PORT(); \
2287 TRY(get_config(port, &data, &config)); \
2289 TRY(set_config(port, &data, &config)); \
2292 SP_API enum sp_return sp_get_config_##x(const struct sp_port_config *config, \
2294 TRACE("%p, %p", config, x); \
2296 RETURN_ERROR(SP_ERR_ARG, "Null result pointer"); \
2298 RETURN_ERROR(SP_ERR_ARG, "Null config"); \
2302 SP_API enum sp_return sp_set_config_##x(struct sp_port_config *config, \
2304 TRACE("%p, %d", config, x); \
2306 RETURN_ERROR(SP_ERR_ARG, "Null config"); \
2311 CREATE_ACCESSORS(baudrate
, int)
2312 CREATE_ACCESSORS(bits
, int)
2313 CREATE_ACCESSORS(parity
, enum sp_parity
)
2314 CREATE_ACCESSORS(stopbits
, int)
2315 CREATE_ACCESSORS(rts
, enum sp_rts
)
2316 CREATE_ACCESSORS(cts
, enum sp_cts
)
2317 CREATE_ACCESSORS(dtr
, enum sp_dtr
)
2318 CREATE_ACCESSORS(dsr
, enum sp_dsr
)
2319 CREATE_ACCESSORS(xon_xoff
, enum sp_xonxoff
)
2321 SP_API
enum sp_return
sp_set_config_flowcontrol(struct sp_port_config
*config
,
2322 enum sp_flowcontrol flowcontrol
)
2325 RETURN_ERROR(SP_ERR_ARG
, "Null configuration");
2327 if (flowcontrol
> SP_FLOWCONTROL_DTRDSR
)
2328 RETURN_ERROR(SP_ERR_ARG
, "Invalid flow control setting");
2330 if (flowcontrol
== SP_FLOWCONTROL_XONXOFF
)
2331 config
->xon_xoff
= SP_XONXOFF_INOUT
;
2333 config
->xon_xoff
= SP_XONXOFF_DISABLED
;
2335 if (flowcontrol
== SP_FLOWCONTROL_RTSCTS
) {
2336 config
->rts
= SP_RTS_FLOW_CONTROL
;
2337 config
->cts
= SP_CTS_FLOW_CONTROL
;
2339 if (config
->rts
== SP_RTS_FLOW_CONTROL
)
2340 config
->rts
= SP_RTS_ON
;
2341 config
->cts
= SP_CTS_IGNORE
;
2344 if (flowcontrol
== SP_FLOWCONTROL_DTRDSR
) {
2345 config
->dtr
= SP_DTR_FLOW_CONTROL
;
2346 config
->dsr
= SP_DSR_FLOW_CONTROL
;
2348 if (config
->dtr
== SP_DTR_FLOW_CONTROL
)
2349 config
->dtr
= SP_DTR_ON
;
2350 config
->dsr
= SP_DSR_IGNORE
;
2356 SP_API
enum sp_return
sp_set_flowcontrol(struct sp_port
*port
,
2357 enum sp_flowcontrol flowcontrol
)
2359 struct port_data data
;
2360 struct sp_port_config config
;
2362 TRACE("%p, %d", port
, flowcontrol
);
2366 TRY(get_config(port
, &data
, &config
));
2368 TRY(sp_set_config_flowcontrol(&config
, flowcontrol
));
2370 TRY(set_config(port
, &data
, &config
));
2375 SP_API
enum sp_return
sp_get_signals(struct sp_port
*port
,
2376 enum sp_signal
*signals
)
2378 TRACE("%p, %p", port
, signals
);
2383 RETURN_ERROR(SP_ERR_ARG
, "Null result pointer");
2385 DEBUG_FMT("Getting control signals for port %s", port
->name
);
2390 if (GetCommModemStatus(port
->hdl
, &bits
) == 0)
2391 RETURN_FAIL("GetCommModemStatus() failed");
2392 if (bits
& MS_CTS_ON
)
2393 *signals
|= SP_SIG_CTS
;
2394 if (bits
& MS_DSR_ON
)
2395 *signals
|= SP_SIG_DSR
;
2396 if (bits
& MS_RLSD_ON
)
2397 *signals
|= SP_SIG_DCD
;
2398 if (bits
& MS_RING_ON
)
2399 *signals
|= SP_SIG_RI
;
2402 if (ioctl(port
->fd
, TIOCMGET
, &bits
) < 0)
2403 RETURN_FAIL("TIOCMGET ioctl failed");
2404 if (bits
& TIOCM_CTS
)
2405 *signals
|= SP_SIG_CTS
;
2406 if (bits
& TIOCM_DSR
)
2407 *signals
|= SP_SIG_DSR
;
2408 if (bits
& TIOCM_CAR
)
2409 *signals
|= SP_SIG_DCD
;
2410 if (bits
& TIOCM_RNG
)
2411 *signals
|= SP_SIG_RI
;
2416 SP_API
enum sp_return
sp_start_break(struct sp_port
*port
)
2422 if (SetCommBreak(port
->hdl
) == 0)
2423 RETURN_FAIL("SetCommBreak() failed");
2425 if (ioctl(port
->fd
, TIOCSBRK
, 1) < 0)
2426 RETURN_FAIL("TIOCSBRK ioctl failed");
2432 SP_API
enum sp_return
sp_end_break(struct sp_port
*port
)
2438 if (ClearCommBreak(port
->hdl
) == 0)
2439 RETURN_FAIL("ClearCommBreak() failed");
2441 if (ioctl(port
->fd
, TIOCCBRK
, 1) < 0)
2442 RETURN_FAIL("TIOCCBRK ioctl failed");
2448 SP_API
int sp_last_error_code(void)
2452 RETURN_INT(GetLastError());
2458 SP_API
char *sp_last_error_message(void)
2464 DWORD error
= GetLastError();
2466 DWORD length
= FormatMessage(
2467 FORMAT_MESSAGE_ALLOCATE_BUFFER
|
2468 FORMAT_MESSAGE_FROM_SYSTEM
|
2469 FORMAT_MESSAGE_IGNORE_INSERTS
,
2472 MAKELANGID(LANG_NEUTRAL
, SUBLANG_DEFAULT
),
2476 if (length
>= 2 && message
[length
- 2] == '\r')
2477 message
[length
- 2] = '\0';
2479 RETURN_STRING(message
);
2481 RETURN_STRING(strerror(errno
));
2485 SP_API
void sp_free_error_message(char *message
)
2487 TRACE("%s", message
);
2498 SP_API
void sp_set_debug_handler(void (*handler
)(const char *format
, ...))
2500 TRACE("%p", handler
);
2502 sp_debug_handler
= handler
;
2507 SP_API
void sp_default_debug_handler(const char *format
, ...)
2510 va_start(args
, format
);
2511 if (getenv("LIBSERIALPORT_DEBUG")) {
2512 fputs("sp: ", stderr
);
2513 vfprintf(stderr
, format
, args
);
2518 SP_API
int sp_get_major_package_version(void)
2520 return SP_PACKAGE_VERSION_MAJOR
;
2523 SP_API
int sp_get_minor_package_version(void)
2525 return SP_PACKAGE_VERSION_MINOR
;
2528 SP_API
int sp_get_micro_package_version(void)
2530 return SP_PACKAGE_VERSION_MICRO
;
2533 SP_API
const char *sp_get_package_version_string(void)
2535 return SP_PACKAGE_VERSION_STRING
;
2538 SP_API
int sp_get_current_lib_version(void)
2540 return SP_LIB_VERSION_CURRENT
;
2543 SP_API
int sp_get_revision_lib_version(void)
2545 return SP_LIB_VERSION_REVISION
;
2548 SP_API
int sp_get_age_lib_version(void)
2550 return SP_LIB_VERSION_AGE
;
2553 SP_API
const char *sp_get_lib_version_string(void)
2555 return SP_LIB_VERSION_STRING
;