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
26 /* For timeradd, timersub, timercmp, realpath. */
27 #define _BSD_SOURCE 1 /* for glibc < 2.19 */
28 #define _DEFAULT_SOURCE 1 /* for glibc >= 2.20 */
32 #include <sys/types.h>
46 #define DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) \
47 static const GUID name = { l,w1,w2,{ b1,b2,b3,b4,b5,b6,b7,b8 } }
50 #include "windows_ddk.h"
54 #include <sys/ioctl.h>
60 #include <CoreFoundation/CoreFoundation.h>
61 #include <IOKit/IOKitLib.h>
62 #include <IOKit/serial/IOSerialKeys.h>
63 #include <IOKit/serial/ioss.h>
64 #include <sys/syslimits.h>
65 #include <mach/mach_time.h>
70 #include "linux/serial.h"
72 #include "linux_termios.h"
74 /* TCGETX/TCSETX is not available everywhere. */
75 #if defined(TCGETX) && defined(TCSETX) && defined(HAVE_STRUCT_TERMIOX)
80 /* TIOCINQ/TIOCOUTQ is not available everywhere. */
81 #if !defined(TIOCINQ) && defined(FIONREAD)
82 #define TIOCINQ FIONREAD
84 #if !defined(TIOCOUTQ) && defined(FIONWRITE)
85 #define TIOCOUTQ FIONWRITE
88 /* Non-standard baudrates are not available everywhere. */
89 #if (defined(HAVE_TERMIOS_SPEED) || defined(HAVE_TERMIOS2_SPEED)) && HAVE_DECL_BOTHER
90 #define USE_TERMIOS_SPEED
96 enum sp_transport transport
;
101 char *usb_manufacturer
;
104 char *bluetooth_address
;
108 COMMTIMEOUTS timeouts
;
109 OVERLAPPED write_ovl
;
114 DWORD write_buf_size
;
122 struct sp_port_config
{
125 enum sp_parity parity
;
131 enum sp_xonxoff xon_xoff
;
140 int termiox_supported
;
149 typedef HANDLE event_handle
;
151 typedef int event_handle
;
154 /* Standard baud rates. */
156 #define BAUD_TYPE DWORD
157 #define BAUD(n) {CBR_##n, n}
159 #define BAUD_TYPE speed_t
160 #define BAUD(n) {B##n, n}
163 struct std_baudrate
{
168 #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
170 extern void (*sp_debug_handler
)(const char *format
, ...);
172 /* Debug output macros. */
173 #define DEBUG_FMT(fmt, ...) do { \
174 if (sp_debug_handler) \
175 sp_debug_handler(fmt ".\n", __VA_ARGS__); \
177 #define DEBUG(msg) DEBUG_FMT(msg, NULL)
178 #define DEBUG_ERROR(err, msg) DEBUG_FMT("%s returning " #err ": " msg, __func__)
179 #define DEBUG_FAIL(msg) do { \
180 char *errmsg = sp_last_error_message(); \
181 DEBUG_FMT("%s returning SP_ERR_FAIL: " msg ": %s", __func__, errmsg); \
182 sp_free_error_message(errmsg); \
184 #define RETURN() do { \
185 DEBUG_FMT("%s returning", __func__); \
188 #define RETURN_CODE(x) do { \
189 DEBUG_FMT("%s returning " #x, __func__); \
192 #define RETURN_CODEVAL(x) do { \
194 case SP_OK: RETURN_CODE(SP_OK); \
195 case SP_ERR_ARG: RETURN_CODE(SP_ERR_ARG); \
196 case SP_ERR_FAIL: RETURN_CODE(SP_ERR_FAIL); \
197 case SP_ERR_MEM: RETURN_CODE(SP_ERR_MEM); \
198 case SP_ERR_SUPP: RETURN_CODE(SP_ERR_SUPP); \
199 default: RETURN_CODE(SP_ERR_FAIL); \
202 #define RETURN_OK() RETURN_CODE(SP_OK);
203 #define RETURN_ERROR(err, msg) do { \
204 DEBUG_ERROR(err, msg); \
207 #define RETURN_FAIL(msg) do { \
209 return SP_ERR_FAIL; \
211 #define RETURN_INT(x) do { \
213 DEBUG_FMT("%s returning %d", __func__, _x); \
216 #define RETURN_STRING(x) do { \
218 DEBUG_FMT("%s returning %s", __func__, _x); \
221 #define RETURN_POINTER(x) do { \
223 DEBUG_FMT("%s returning %p", __func__, _x); \
226 #define SET_ERROR(val, err, msg) do { DEBUG_ERROR(err, msg); val = err; } while (0)
227 #define SET_FAIL(val, msg) do { DEBUG_FAIL(msg); val = SP_ERR_FAIL; } while (0)
228 #define TRACE(fmt, ...) DEBUG_FMT("%s(" fmt ") called", __func__, __VA_ARGS__)
229 #define TRACE_VOID() DEBUG_FMT("%s() called", __func__)
231 #define TRY(x) do { int retval = x; if (retval != SP_OK) RETURN_CODEVAL(retval); } while (0)
233 SP_PRIV
struct sp_port
**list_append(struct sp_port
**list
, const char *portname
);
235 /* OS-specific Helper functions. */
236 SP_PRIV
enum sp_return
get_port_details(struct sp_port
*port
);
237 SP_PRIV
enum sp_return
list_ports(struct sp_port
***list
);