2 * This file is part of the libserialport project.
4 * Copyright (C) 2014 Martin Ling <martin-libserialport@earth.li>
5 * Copyright (C) 2014 Aurelien Jacobs <aurel@gnuage.org>
7 * This program is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU Lesser General Public License as
9 * published by the Free Software Foundation, either version 3 of the
10 * License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU Lesser General Public License
18 * along with this program. If not, see <http://www.gnu.org/licenses/>.
21 #ifndef LIBSERIALPORT_LIBSERIALPORT_INTERNAL_H
22 #define LIBSERIALPORT_LIBSERIALPORT_INTERNAL_H
27 #define _BSD_SOURCE /* For timeradd, timersub, timercmp. */
31 #include <sys/types.h>
45 #define DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) \
46 static const GUID name = { l,w1,w2,{ b1,b2,b3,b4,b5,b6,b7,b8 } }
52 #include <sys/ioctl.h>
58 #include <CoreFoundation/CoreFoundation.h>
59 #include <IOKit/IOKitLib.h>
60 #include <IOKit/serial/IOSerialKeys.h>
61 #include <IOKit/serial/ioss.h>
62 #include <sys/syslimits.h>
67 #include "linux/serial.h"
69 #include "linux_termios.h"
71 /* TCGETX/TCSETX is not available everywhere. */
72 #if defined(TCGETX) && defined(TCSETX) && defined(HAVE_TERMIOX)
77 /* TIOCINQ/TIOCOUTQ is not available everywhere. */
78 #if !defined(TIOCINQ) && defined(FIONREAD)
79 #define TIOCINQ FIONREAD
81 #if !defined(TIOCOUTQ) && defined(FIONWRITE)
82 #define TIOCOUTQ FIONWRITE
85 /* Non-standard baudrates are not available everywhere. */
86 #if (defined(HAVE_TERMIOS_SPEED) || defined(HAVE_TERMIOS2_SPEED)) && defined(HAVE_BOTHER)
87 #define USE_TERMIOS_SPEED
93 enum sp_transport transport
;
98 char *usb_manufacturer
;
101 char *bluetooth_address
;
105 COMMTIMEOUTS timeouts
;
106 OVERLAPPED write_ovl
;
118 struct sp_port_config
{
121 enum sp_parity parity
;
127 enum sp_xonxoff xon_xoff
;
136 int termiox_supported
;
145 typedef HANDLE event_handle
;
147 typedef int event_handle
;
150 /* Standard baud rates. */
152 #define BAUD_TYPE DWORD
153 #define BAUD(n) {CBR_##n, n}
155 #define BAUD_TYPE speed_t
156 #define BAUD(n) {B##n, n}
159 struct std_baudrate
{
164 #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
166 extern void (*sp_debug_handler
)(const char *format
, ...);
168 /* Debug output macros. */
169 #define DEBUG_FMT(fmt, ...) do { \
170 if (sp_debug_handler) \
171 sp_debug_handler(fmt ".\n", __VA_ARGS__); \
173 #define DEBUG(msg) DEBUG_FMT(msg, NULL)
174 #define DEBUG_ERROR(err, msg) DEBUG_FMT("%s returning " #err ": " msg, __func__)
175 #define DEBUG_FAIL(msg) do { \
176 char *errmsg = sp_last_error_message(); \
177 DEBUG_FMT("%s returning SP_ERR_FAIL: " msg ": %s", __func__, errmsg); \
178 sp_free_error_message(errmsg); \
180 #define RETURN() do { \
181 DEBUG_FMT("%s returning", __func__); \
184 #define RETURN_CODE(x) do { \
185 DEBUG_FMT("%s returning " #x, __func__); \
188 #define RETURN_CODEVAL(x) do { \
190 case SP_OK: RETURN_CODE(SP_OK); \
191 case SP_ERR_ARG: RETURN_CODE(SP_ERR_ARG); \
192 case SP_ERR_FAIL: RETURN_CODE(SP_ERR_FAIL); \
193 case SP_ERR_MEM: RETURN_CODE(SP_ERR_MEM); \
194 case SP_ERR_SUPP: RETURN_CODE(SP_ERR_SUPP); \
195 default: RETURN_CODE(SP_ERR_FAIL); \
198 #define RETURN_OK() RETURN_CODE(SP_OK);
199 #define RETURN_ERROR(err, msg) do { \
200 DEBUG_ERROR(err, msg); \
203 #define RETURN_FAIL(msg) do { \
205 return SP_ERR_FAIL; \
207 #define RETURN_INT(x) do { \
209 DEBUG_FMT("%s returning %d", __func__, _x); \
212 #define RETURN_STRING(x) do { \
214 DEBUG_FMT("%s returning %s", __func__, _x); \
217 #define RETURN_POINTER(x) do { \
219 DEBUG_FMT("%s returning %p", __func__, _x); \
222 #define SET_ERROR(val, err, msg) do { DEBUG_ERROR(err, msg); val = err; } while (0)
223 #define SET_FAIL(val, msg) do { DEBUG_FAIL(msg); val = SP_ERR_FAIL; } while (0)
224 #define TRACE(fmt, ...) DEBUG_FMT("%s(" fmt ") called", __func__, __VA_ARGS__)
225 #define TRACE_VOID() DEBUG_FMT("%s() called", __func__)
227 #define TRY(x) do { int retval = x; if (retval != SP_OK) RETURN_CODEVAL(retval); } while (0)
229 SP_PRIV
struct sp_port
**list_append(struct sp_port
**list
, const char *portname
);
231 /* OS-specific Helper functions. */
232 SP_PRIV
enum sp_return
get_port_details(struct sp_port
*port
);
233 SP_PRIV
enum sp_return
list_ports(struct sp_port
***list
);