]> sigrok.org Git - libserialport.git/blob - libserialport_internal.h
windows: Don't try to include <unistd.h>.
[libserialport.git] / libserialport_internal.h
1 /*
2  * This file is part of the libserialport project.
3  *
4  * Copyright (C) 2014 Martin Ling <martin-libserialport@earth.li>
5  * Copyright (C) 2014 Aurelien Jacobs <aurel@gnuage.org>
6  *
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.
11  *
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.
16  *
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/>.
19  */
20
21 #ifndef LIBSERIALPORT_LIBSERIALPORT_INTERNAL_H
22 #define LIBSERIALPORT_LIBSERIALPORT_INTERNAL_H
23
24
25 #ifdef __linux__
26 /* For timeradd, timersub, timercmp, realpath. */
27 #define _BSD_SOURCE 1 /* for glibc < 2.19 */
28 #define _DEFAULT_SOURCE 1 /* for glibc >= 2.20 */
29 /* For clock_gettime and associated types. */
30 #define _POSIX_C_SOURCE 199309L
31 #endif
32
33 #include <string.h>
34 #include <sys/types.h>
35 #include <sys/stat.h>
36 #include <fcntl.h>
37 #include <stdlib.h>
38 #include <errno.h>
39 #include <stdio.h>
40 #include <stdarg.h>
41 #include <stdbool.h>
42 #include <stdint.h>
43 #ifdef _WIN32
44 #include <windows.h>
45 #include <tchar.h>
46 #include <setupapi.h>
47 #include <cfgmgr32.h>
48 #undef DEFINE_GUID
49 #define DEFINE_GUID(name,l,w1,w2,b1,b2,b3,b4,b5,b6,b7,b8) \
50         static const GUID name = { l,w1,w2,{ b1,b2,b3,b4,b5,b6,b7,b8 } }
51 #include <usbioctl.h>
52 #include <usbiodef.h>
53 /* The largest size that can be passed to WriteFile() safely
54  * on any architecture. This arises from the expression:
55  * PAGE_SIZE * (65535 - sizeof(MDL)) / sizeof(ULONG_PTR)
56  * and this worst-case value is found on x64. */
57 #define WRITEFILE_MAX_SIZE 33525760
58 #else
59 #include <limits.h>
60 #include <termios.h>
61 #include <sys/ioctl.h>
62 #include <sys/time.h>
63 #include <time.h>
64 #include <poll.h>
65 #include <unistd.h>
66 #endif
67 #ifdef __APPLE__
68 #include <CoreFoundation/CoreFoundation.h>
69 #include <IOKit/IOKitLib.h>
70 #include <IOKit/serial/IOSerialKeys.h>
71 #include <IOKit/serial/ioss.h>
72 #include <sys/syslimits.h>
73 #include <mach/mach_time.h>
74 #endif
75 #ifdef __linux__
76 #include <dirent.h>
77 /* Android only has linux/serial.h from platform 21 onwards. */
78 #if !(defined(__ANDROID__) && (__ANDROID_API__ < 21))
79 #include <linux/serial.h>
80 #endif
81 #include "linux_termios.h"
82
83 /* TCGETX/TCSETX is not available everywhere. */
84 #if defined(TCGETX) && defined(TCSETX) && defined(HAVE_STRUCT_TERMIOX)
85 #define USE_TERMIOX
86 #endif
87 #endif
88
89 /* TIOCINQ/TIOCOUTQ is not available everywhere. */
90 #if !defined(TIOCINQ) && defined(FIONREAD)
91 #define TIOCINQ FIONREAD
92 #endif
93 #if !defined(TIOCOUTQ) && defined(FIONWRITE)
94 #define TIOCOUTQ FIONWRITE
95 #endif
96
97 /*
98  * O_CLOEXEC is not available everywhere, fallback to not setting the
99  * flag on those systems.
100  */
101 #ifndef _WIN32
102 #ifndef O_CLOEXEC
103 #define O_CLOEXEC 0
104 #endif
105 #endif
106
107 /* Non-standard baudrates are not available everywhere. */
108 #if (defined(HAVE_TERMIOS_SPEED) || defined(HAVE_TERMIOS2_SPEED)) && HAVE_DECL_BOTHER
109 #define USE_TERMIOS_SPEED
110 #endif
111
112 struct sp_port {
113         char *name;
114         char *description;
115         enum sp_transport transport;
116         int usb_bus;
117         int usb_address;
118         int usb_vid;
119         int usb_pid;
120         char *usb_manufacturer;
121         char *usb_product;
122         char *usb_serial;
123         char *bluetooth_address;
124 #ifdef _WIN32
125         char *usb_path;
126         HANDLE hdl;
127         COMMTIMEOUTS timeouts;
128         OVERLAPPED write_ovl;
129         OVERLAPPED read_ovl;
130         OVERLAPPED wait_ovl;
131         DWORD events;
132         BYTE *write_buf;
133         DWORD write_buf_size;
134         BOOL writing;
135         BOOL wait_running;
136 #else
137         int fd;
138 #endif
139 };
140
141 struct sp_port_config {
142         int baudrate;
143         int bits;
144         enum sp_parity parity;
145         int stopbits;
146         enum sp_rts rts;
147         enum sp_cts cts;
148         enum sp_dtr dtr;
149         enum sp_dsr dsr;
150         enum sp_xonxoff xon_xoff;
151 };
152
153 struct port_data {
154 #ifdef _WIN32
155         DCB dcb;
156 #else
157         struct termios term;
158         int controlbits;
159         int termiox_supported;
160         int rts_flow;
161         int cts_flow;
162         int dtr_flow;
163         int dsr_flow;
164 #endif
165 };
166
167 #ifdef _WIN32
168 typedef HANDLE event_handle;
169 #else
170 typedef int event_handle;
171 #endif
172
173 /* Standard baud rates. */
174 #ifdef _WIN32
175 #define BAUD_TYPE DWORD
176 #define BAUD(n) {CBR_##n, n}
177 #else
178 #define BAUD_TYPE speed_t
179 #define BAUD(n) {B##n, n}
180 #endif
181
182 struct std_baudrate {
183         BAUD_TYPE index;
184         int value;
185 };
186
187 #define ARRAY_SIZE(x) (sizeof(x) / sizeof(x[0]))
188
189 extern void (*sp_debug_handler)(const char *format, ...);
190
191 /* Debug output macros. */
192 #define DEBUG_FMT(fmt, ...) do { \
193         if (sp_debug_handler) \
194                 sp_debug_handler(fmt ".\n", __VA_ARGS__); \
195 } while (0)
196 #define DEBUG(msg) DEBUG_FMT(msg, NULL)
197 #define DEBUG_ERROR(err, msg) DEBUG_FMT("%s returning " #err ": " msg, __func__)
198 #define DEBUG_FAIL(msg) do {               \
199         char *errmsg = sp_last_error_message(); \
200         DEBUG_FMT("%s returning SP_ERR_FAIL: " msg ": %s", __func__, errmsg); \
201         sp_free_error_message(errmsg); \
202 } while (0);
203 #define RETURN() do { \
204         DEBUG_FMT("%s returning", __func__); \
205         return; \
206 } while (0)
207 #define RETURN_CODE(x) do { \
208         DEBUG_FMT("%s returning " #x, __func__); \
209         return x; \
210 } while (0)
211 #define RETURN_CODEVAL(x) do { \
212         switch (x) { \
213         case SP_OK: RETURN_CODE(SP_OK); \
214         case SP_ERR_ARG: RETURN_CODE(SP_ERR_ARG); \
215         case SP_ERR_FAIL: RETURN_CODE(SP_ERR_FAIL); \
216         case SP_ERR_MEM: RETURN_CODE(SP_ERR_MEM); \
217         case SP_ERR_SUPP: RETURN_CODE(SP_ERR_SUPP); \
218         default: RETURN_CODE(SP_ERR_FAIL); \
219         } \
220 } while (0)
221 #define RETURN_OK() RETURN_CODE(SP_OK);
222 #define RETURN_ERROR(err, msg) do { \
223         DEBUG_ERROR(err, msg); \
224         return err; \
225 } while (0)
226 #define RETURN_FAIL(msg) do { \
227         DEBUG_FAIL(msg); \
228         return SP_ERR_FAIL; \
229 } while (0)
230 #define RETURN_INT(x) do { \
231         int _x = x; \
232         DEBUG_FMT("%s returning %d", __func__, _x); \
233         return _x; \
234 } while (0)
235 #define RETURN_STRING(x) do { \
236         char *_x = x; \
237         DEBUG_FMT("%s returning %s", __func__, _x); \
238         return _x; \
239 } while (0)
240 #define RETURN_POINTER(x) do { \
241         void *_x = x; \
242         DEBUG_FMT("%s returning %p", __func__, _x); \
243         return _x; \
244 } while (0)
245 #define SET_ERROR(val, err, msg) do { DEBUG_ERROR(err, msg); val = err; } while (0)
246 #define SET_FAIL(val, msg) do { DEBUG_FAIL(msg); val = SP_ERR_FAIL; } while (0)
247 #define TRACE(fmt, ...) DEBUG_FMT("%s(" fmt ") called", __func__, __VA_ARGS__)
248 #define TRACE_VOID() DEBUG_FMT("%s() called", __func__)
249
250 #define TRY(x) do { int retval = x; if (retval != SP_OK) RETURN_CODEVAL(retval); } while (0)
251
252 SP_PRIV struct sp_port **list_append(struct sp_port **list, const char *portname);
253
254 /* OS-specific Helper functions. */
255 SP_PRIV enum sp_return get_port_details(struct sp_port *port);
256 SP_PRIV enum sp_return list_ports(struct sp_port ***list);
257
258 /* Timing abstraction */
259
260 struct time {
261 #ifdef _WIN32
262         int64_t ticks;
263 #else
264         struct timeval tv;
265 #endif
266 };
267
268 struct timeout {
269         unsigned int ms, limit_ms;
270         struct time start, now, end, delta, delta_max;
271         struct timeval delta_tv;
272         bool calls_started, overflow;
273 };
274
275 SP_PRIV void time_get(struct time *time);
276 SP_PRIV void time_set_ms(struct time *time, unsigned int ms);
277 SP_PRIV void time_add(const struct time *a, const struct time *b, struct time *result);
278 SP_PRIV void time_sub(const struct time *a, const struct time *b, struct time *result);
279 SP_PRIV bool time_greater(const struct time *a, const struct time *b);
280 SP_PRIV void time_as_timeval(const struct time *time, struct timeval *tv);
281 SP_PRIV unsigned int time_as_ms(const struct time *time);
282 SP_PRIV void timeout_start(struct timeout *timeout, unsigned int timeout_ms);
283 SP_PRIV void timeout_limit(struct timeout *timeout, unsigned int limit_ms);
284 SP_PRIV bool timeout_check(struct timeout *timeout);
285 SP_PRIV void timeout_update(struct timeout *timeout);
286 SP_PRIV struct timeval *timeout_timeval(struct timeout *timeout);
287 SP_PRIV unsigned int timeout_remaining_ms(struct timeout *timeout);
288
289 #endif