]> sigrok.org Git - libserialport.git/blob - libserialport.h
Use SP_API prefix for functions in libserialport.h.
[libserialport.git] / libserialport.h
1 /*
2  * This file is part of the libserialport project.
3  *
4  * Copyright (C) 2013, 2015 Martin Ling <martin-libserialport@earth.li>
5  * Copyright (C) 2014 Uwe Hermann <uwe@hermann-uwe.de>
6  * Copyright (C) 2014 Aurelien Jacobs <aurel@gnuage.org>
7  *
8  * This program is free software: you can redistribute it and/or modify
9  * it under the terms of the GNU Lesser General Public License as
10  * published by the Free Software Foundation, either version 3 of the
11  * License, or (at your option) any later version.
12  *
13  * This program is distributed in the hope that it will be useful,
14  * but WITHOUT ANY WARRANTY; without even the implied warranty of
15  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16  * GNU General Public License for more details.
17  *
18  * You should have received a copy of the GNU Lesser General Public License
19  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
20  */
21
22 /**
23  * @mainpage libserialport API
24  *
25  * Introduction
26  * ============
27  *
28  * libserialport is a minimal library written in C that is intended to take
29  * care of the OS-specific details when writing software that uses serial ports.
30  *
31  * By writing your serial code to use libserialport, you enable it to work
32  * transparently on any platform supported by the library.
33  *
34  * libserialport is an open source project released under the LGPL3+ license.
35  *
36  * The library is maintained by the [sigrok](http://sigrok.org/) project. See
37  * the [libserialport homepage](http://sigrok.org/wiki/Libserialport) for the
38  * latest information.
39  *
40  * Source code is maintained in git at
41  * [git://sigrok.org/libserialport](http://sigrok.org/gitweb/?p=libserialport.git).
42  *
43  * Bugs are tracked at http://sigrok.org/bugzilla/.
44  *
45  * The library was conceived and designed by Martin Ling, is maintained by
46  * Uwe Hermann, and has received contributions from several other developers.
47  * See the git history for full credits.
48  *
49  * API information
50  * ===============
51  *
52  * The API has been designed from scratch. It does not exactly resemble the
53  * serial API of any particular operating system. Instead it aims to provide
54  * a set of functions that can reliably be implemented across all operating
55  * systems. These form a sufficient basis for higher level behaviour to
56  * be implemented in a platform independent manner.
57  *
58  * If you are porting code written for a particular OS, you may find you need
59  * to restructure things somewhat, or do without some specialised features.
60  * For particular notes on porting existing code, see @ref Porting.
61  *
62  * Examples
63  * --------
64  *
65  * Some simple example programs using libserialport are included in the
66  * @c examples directory in the source package:
67  *
68  * - @ref list_ports.c - Getting a list of ports present on the system.
69  * - @ref port_info.c - Getting information on a particular serial port.
70  *
71  * These examples are linked with the API documentation. Each function
72  * in the API reference includes links to where it is used in an example
73  * program, and each appearance of a function in the examples links
74  * to that function's entry in the API reference.
75  *
76  * Headers
77  * -------
78  *
79  * To use libserialport functions in your code, you should include the
80  * libserialport.h header, i.e.
81  * @code
82  * #include <libserialport.h>
83  * @endcode
84  *
85  * Namespace
86  * ---------
87  *
88  * All identifiers defined by the public libserialport headers use the prefix
89  * @c sp_ (for functions and data types) or @c SP_ (for macros and constants).
90  *
91  * Functions
92  * ---------
93  *
94  * The functions provided by the library are documented in detail in
95  * the following sections:
96  *
97  * - @ref Enumeration (obtaining a list of serial ports on the system)
98  * - @ref Ports (opening, closing and getting information about ports)
99  * - @ref Configuration (baud rate, parity, etc.)
100  * - @ref Signals (modem control lines, breaks, etc.)
101  * - @ref Data (reading and writing data, and buffer management)
102  * - @ref Waiting (waiting for ports to be ready, integrating with event loops)
103  * - @ref Errors (getting error and debugging information)
104  *
105  * Data structures
106  * ---------------
107  *
108  * The library defines three data structures:
109  *
110  * - @ref sp_port, which represents a serial port.
111  *   See @ref Enumeration.
112  * - @ref sp_port_config, which represents a port configuration.
113  *   See @ref Configuration.
114  * - @ref sp_event_set, which represents a set of events.
115  *   See @ref Waiting.
116  *
117  * All these structures are allocated and freed by library functions. It is
118  * the caller's responsibility to ensure that the correct calls are made to
119  * free allocated structures after use.
120  *
121  * Return codes and error handling
122  * -------------------------------
123  *
124  * Most functions have return type @ref sp_return and can return only four
125  * possible error values:
126  *
127  * - @ref SP_ERR_ARG means that a function was called with invalid
128  *   arguments. This implies a bug in the caller. The arguments passed would
129  *   be invalid regardless of the underlying OS or serial device involved.
130  *
131  * - @ref SP_ERR_FAIL means that the OS reported a failure. The error code or
132  *   message provided by the OS can be obtained by calling sp_last_error_code()
133  *   or sp_last_error_message().
134  *
135  * - @ref SP_ERR_SUPP indicates that there is no support for the requested
136  *   operation in the current OS, driver or device. No error message is
137  *   available from the OS in this case. There is either no way to request
138  *   the operation in the first place, or libserialport does not know how to
139  *   do so in the current version.
140  *
141  * - @ref SP_ERR_MEM indicates that a memory allocation failed.
142  *
143  * All of these error values are negative.
144  *
145  * Calls that succeed return @ref SP_OK, which is equal to zero. Some functions
146  * declared @ref sp_return can also return a positive value for a successful
147  * numeric result, e.g. sp_blocking_read() or sp_blocking_write().
148  *
149  * An error message is only available via sp_last_error_message() in the case
150  * where @ref SP_ERR_FAIL was returned by the previous function call. The error
151  * message returned is that provided by the OS, using the current language
152  * settings. It is an error to call sp_last_error_code() or
153  * sp_last_error_message() except after a previous function call returned
154  * @ref SP_ERR_FAIL. The library does not define its own error codes or
155  * messages to accompany other return codes.
156  *
157  * Thread safety
158  * -------------
159  *
160  * Certain combinations of calls can be made concurrently, as follows.
161  *
162  * - Calls using different ports may always be made concurrently, i.e.
163  *   it is safe for separate threads to handle their own ports.
164  *
165  * - Calls using the same port may be made concurrently when one call
166  *   is a read operation and one call is a write operation, i.e. it is safe
167  *   to use separate "reader" and "writer" threads for the same port. See
168  *   below for which operations meet these definitions.
169  *
170  * Read operations:
171  *
172  * - sp_blocking_read()
173  * - sp_blocking_read_next()
174  * - sp_nonblocking_read()
175  * - sp_input_waiting()
176  * - sp_flush() with @ref SP_BUF_INPUT only.
177  * - sp_wait() with @ref SP_EVENT_RX_READY only.
178  *
179  * Write operations:
180  *
181  * - sp_blocking_write()
182  * - sp_nonblocking_write()
183  * - sp_output_waiting()
184  * - sp_drain()
185  * - sp_flush() with @ref SP_BUF_OUTPUT only.
186  * - sp_wait() with @ref SP_EVENT_TX_READY only.
187  *
188  * If two calls, on the same port, do not fit into one of these categories
189  * each, then they may not be made concurrently.
190  *
191  * Debugging
192  * ---------
193  *
194  * The library can output extensive tracing and debugging information. The
195  * simplest way to use this is to set the environment variable
196  * @c LIBSERIALPORT_DEBUG to any value; messages will then be output to the
197  * standard error stream.
198  *
199  * This behaviour is implemented by a default debug message handling
200  * callback. An alternative callback can be set using sp_set_debug_handler(),
201  * in order to e.g. redirect the output elsewhere or filter it.
202  *
203  * No guarantees are made about the content of the debug output; it is chosen
204  * to suit the needs of the developers and may change between releases.
205  *
206  * @anchor Porting
207  * Porting
208  * -------
209  *
210  * The following guidelines may help when porting existing OS-specific code
211  * to use libserialport.
212  *
213  * ### Porting from Unix-like systems ###
214  *
215  * There are two main differences to note when porting code written for Unix.
216  *
217  * The first is that Unix traditionally provides a wide range of functionality
218  * for dealing with serial devices at the OS level; this is exposed through the
219  * termios API and dates to the days when serial terminals were common. If your
220  * code relies on many of these facilities you will need to adapt it, because
221  * libserialport provides only a raw binary channel with no special handling.
222  *
223  * The second relates to blocking versus non-blocking I/O behaviour. In
224  * Unix-like systems this is normally specified by setting the @c O_NONBLOCK
225  * flag on the file descriptor, affecting the semantics of subsequent @c read()
226  * and @c write() calls.
227  *
228  * In libserialport, blocking and nonblocking operations are both available at
229  * any time. If your existing code Ń•ets @c O_NONBLOCK, you should use
230  * sp_nonblocking_read() and sp_nonblocking_write() to get the same behaviour
231  * as your existing @c read() and @c write() calls. If it does not, you should
232  * use sp_blocking_read() and sp_blocking_write() instead. You may also find
233  * sp_blocking_read_next() useful, which reproduces the semantics of a blocking
234  * read() with @c VTIME=0 and @c VMIN=1 set in termios.
235  *
236  * Finally, you should take care if your program uses custom signal handlers.
237  * The blocking calls provided by libserialport will restart system calls that
238  * return with @c EINTR, so you will need to make your own arrangements if you
239  * need to interrupt blocking operations when your signal handlers are called.
240  * This is not an issue if you only use the default handlers.
241  *
242  * ### Porting from Windows ###
243  *
244  * The main consideration when porting from Windows is that there is no
245  * direct equivalent for overlapped I/O operations.
246  *
247  * If your program does not use overlapped I/O, you can simply use
248  * sp_blocking_read() and sp_blocking_write() as direct equivalents for
249  * @c ReadFile() and @c WriteFile(). You may also find sp_blocking_read_next()
250  * useful, which reproduces the special semantics of @c ReadFile() with
251  * @c ReadIntervalTimeout and @c ReadTotalTimeoutMultiplier set to @c MAXDWORD
252  * and @c ReadTotalTimeoutConstant set to between @c 1 and @c MAXDWORD-1 .
253  *
254  * If your program makes use of overlapped I/O to continue work while a serial
255  * operation is in progress, then you can achieve the same results using
256  * sp_nonblocking_read() and sp_nonblocking_write().
257  *
258  * Generally, overlapped I/O is combined with either waiting for completion
259  * once there is no more background work to do (using @c WaitForSingleObject()
260  * or @c WaitForMultipleObjects()), or periodically checking for completion
261  * with @c GetOverlappedResult(). If the aim is to start a new operation for
262  * further data once the previous one has completed, you can instead simply
263  * call the nonblocking functions again with the next data. If you need to
264  * wait for completion, use sp_wait() to determine when the port is ready to
265  * send or receive further data.
266  */
267
268 #ifndef LIBSERIALPORT_LIBSERIALPORT_H
269 #define LIBSERIALPORT_LIBSERIALPORT_H
270
271 #ifdef __cplusplus
272 extern "C" {
273 #endif
274
275 #include <stddef.h>
276
277 /** @cond */
278 #ifdef _MSC_VER
279 /* Microsoft Visual C/C++ compiler in use */
280 #ifdef LIBSERIALPORT_MSBUILD
281 /* Building the library - need to export DLL symbols */
282 #define SP_API __declspec(dllexport)
283 #else
284 /* Using the library - need to import DLL symbols */
285 #define SP_API __declspec(dllimport)
286 #endif
287 #else
288 /* Some other compiler in use */
289 #ifndef LIBSERIALPORT_ATBUILD
290 /* Not building the library itself - don't need any special prefixes. */
291 #define SP_API
292 #endif
293 #endif
294 /** @endcond */
295
296 /** Return values. */
297 enum sp_return {
298         /** Operation completed successfully. */
299         SP_OK = 0,
300         /** Invalid arguments were passed to the function. */
301         SP_ERR_ARG = -1,
302         /** A system error occurred while executing the operation. */
303         SP_ERR_FAIL = -2,
304         /** A memory allocation failed while executing the operation. */
305         SP_ERR_MEM = -3,
306         /** The requested operation is not supported by this system or device. */
307         SP_ERR_SUPP = -4
308 };
309
310 /** Port access modes. */
311 enum sp_mode {
312         /** Open port for read access. */
313         SP_MODE_READ = 1,
314         /** Open port for write access. */
315         SP_MODE_WRITE = 2,
316         /** Open port for read and write access. @since 0.1.1 */
317         SP_MODE_READ_WRITE = 3
318 };
319
320 /** Port events. */
321 enum sp_event {
322         /** Data received and ready to read. */
323         SP_EVENT_RX_READY = 1,
324         /** Ready to transmit new data. */
325         SP_EVENT_TX_READY = 2,
326         /** Error occurred. */
327         SP_EVENT_ERROR = 4
328 };
329
330 /** Buffer selection. */
331 enum sp_buffer {
332         /** Input buffer. */
333         SP_BUF_INPUT = 1,
334         /** Output buffer. */
335         SP_BUF_OUTPUT = 2,
336         /** Both buffers. */
337         SP_BUF_BOTH = 3
338 };
339
340 /** Parity settings. */
341 enum sp_parity {
342         /** Special value to indicate setting should be left alone. */
343         SP_PARITY_INVALID = -1,
344         /** No parity. */
345         SP_PARITY_NONE = 0,
346         /** Odd parity. */
347         SP_PARITY_ODD = 1,
348         /** Even parity. */
349         SP_PARITY_EVEN = 2,
350         /** Mark parity. */
351         SP_PARITY_MARK = 3,
352         /** Space parity. */
353         SP_PARITY_SPACE = 4
354 };
355
356 /** RTS pin behaviour. */
357 enum sp_rts {
358         /** Special value to indicate setting should be left alone. */
359         SP_RTS_INVALID = -1,
360         /** RTS off. */
361         SP_RTS_OFF = 0,
362         /** RTS on. */
363         SP_RTS_ON = 1,
364         /** RTS used for flow control. */
365         SP_RTS_FLOW_CONTROL = 2
366 };
367
368 /** CTS pin behaviour. */
369 enum sp_cts {
370         /** Special value to indicate setting should be left alone. */
371         SP_CTS_INVALID = -1,
372         /** CTS ignored. */
373         SP_CTS_IGNORE = 0,
374         /** CTS used for flow control. */
375         SP_CTS_FLOW_CONTROL = 1
376 };
377
378 /** DTR pin behaviour. */
379 enum sp_dtr {
380         /** Special value to indicate setting should be left alone. */
381         SP_DTR_INVALID = -1,
382         /** DTR off. */
383         SP_DTR_OFF = 0,
384         /** DTR on. */
385         SP_DTR_ON = 1,
386         /** DTR used for flow control. */
387         SP_DTR_FLOW_CONTROL = 2
388 };
389
390 /** DSR pin behaviour. */
391 enum sp_dsr {
392         /** Special value to indicate setting should be left alone. */
393         SP_DSR_INVALID = -1,
394         /** DSR ignored. */
395         SP_DSR_IGNORE = 0,
396         /** DSR used for flow control. */
397         SP_DSR_FLOW_CONTROL = 1
398 };
399
400 /** XON/XOFF flow control behaviour. */
401 enum sp_xonxoff {
402         /** Special value to indicate setting should be left alone. */
403         SP_XONXOFF_INVALID = -1,
404         /** XON/XOFF disabled. */
405         SP_XONXOFF_DISABLED = 0,
406         /** XON/XOFF enabled for input only. */
407         SP_XONXOFF_IN = 1,
408         /** XON/XOFF enabled for output only. */
409         SP_XONXOFF_OUT = 2,
410         /** XON/XOFF enabled for input and output. */
411         SP_XONXOFF_INOUT = 3
412 };
413
414 /** Standard flow control combinations. */
415 enum sp_flowcontrol {
416         /** No flow control. */
417         SP_FLOWCONTROL_NONE = 0,
418         /** Software flow control using XON/XOFF characters. */
419         SP_FLOWCONTROL_XONXOFF = 1,
420         /** Hardware flow control using RTS/CTS signals. */
421         SP_FLOWCONTROL_RTSCTS = 2,
422         /** Hardware flow control using DTR/DSR signals. */
423         SP_FLOWCONTROL_DTRDSR = 3
424 };
425
426 /** Input signals. */
427 enum sp_signal {
428         /** Clear to send. */
429         SP_SIG_CTS = 1,
430         /** Data set ready. */
431         SP_SIG_DSR = 2,
432         /** Data carrier detect. */
433         SP_SIG_DCD = 4,
434         /** Ring indicator. */
435         SP_SIG_RI = 8
436 };
437
438 /**
439  * Transport types.
440  *
441  * @since 0.1.1
442  */
443 enum sp_transport {
444         /** Native platform serial port. @since 0.1.1 */
445         SP_TRANSPORT_NATIVE,
446         /** USB serial port adapter. @since 0.1.1 */
447         SP_TRANSPORT_USB,
448         /** Bluetooth serial port adapter. @since 0.1.1 */
449         SP_TRANSPORT_BLUETOOTH
450 };
451
452 /**
453  * @struct sp_port
454  * An opaque structure representing a serial port.
455  */
456 struct sp_port;
457
458 /**
459  * @struct sp_port_config
460  * An opaque structure representing the configuration for a serial port.
461  */
462 struct sp_port_config;
463
464 /**
465  * @struct sp_event_set
466  * A set of handles to wait on for events.
467  */
468 struct sp_event_set {
469         /** Array of OS-specific handles. */
470         void *handles;
471         /** Array of bitmasks indicating which events apply for each handle. */
472         enum sp_event *masks;
473         /** Number of handles. */
474         unsigned int count;
475 };
476
477 /**
478  * @defgroup Enumeration Port enumeration
479  *
480  * Enumerating the serial ports of a system.
481  *
482  * See @ref list_ports.c for a working example of port enumeration.
483  *
484  * @{
485  */
486
487 /**
488  * Obtain a pointer to a new sp_port structure representing the named port.
489  *
490  * The user should allocate a variable of type "struct sp_port *" and pass a
491  * pointer to this to receive the result.
492  *
493  * The result should be freed after use by calling sp_free_port().
494  *
495  * @param[in] portname The OS-specific name of a serial port. Must not be NULL.
496  * @param[out] port_ptr If any error is returned, the variable pointed to by
497  *                      port_ptr will be set to NULL. Otherwise, it will be set
498  *                      to point to the newly allocated port. Must not be NULL.
499  *
500  * @return SP_OK upon success, a negative error code otherwise.
501  *
502  * @since 0.1.0
503  */
504 SP_API enum sp_return sp_get_port_by_name(const char *portname, struct sp_port **port_ptr);
505
506 /**
507  * Free a port structure obtained from sp_get_port_by_name() or sp_copy_port().
508  *
509  * @param[in] port Pointer to a port structure. Must not be NULL.
510  *
511  * @since 0.1.0
512  */
513 SP_API void sp_free_port(struct sp_port *port);
514
515 /**
516  * List the serial ports available on the system.
517  *
518  * The result obtained is an array of pointers to sp_port structures,
519  * terminated by a NULL. The user should allocate a variable of type
520  * "struct sp_port **" and pass a pointer to this to receive the result.
521  *
522  * The result should be freed after use by calling sp_free_port_list().
523  * If a port from the list is to be used after freeing the list, it must be
524  * copied first using sp_copy_port().
525  *
526  * @param[out] list_ptr If any error is returned, the variable pointed to by
527  *                      list_ptr will be set to NULL. Otherwise, it will be set
528  *                      to point to the newly allocated array. Must not be NULL.
529  *
530  * @return SP_OK upon success, a negative error code otherwise.
531  *
532  * @since 0.1.0
533  */
534 SP_API enum sp_return sp_list_ports(struct sp_port ***list_ptr);
535
536 /**
537  * Make a new copy of an sp_port structure.
538  *
539  * The user should allocate a variable of type "struct sp_port *" and pass a
540  * pointer to this to receive the result.
541  *
542  * The copy should be freed after use by calling sp_free_port().
543  *
544  * @param[in] port Pointer to a port structure. Must not be NULL.
545  * @param[out] copy_ptr If any error is returned, the variable pointed to by
546  *                      copy_ptr will be set to NULL. Otherwise, it will be set
547  *                      to point to the newly allocated copy. Must not be NULL.
548  *
549  * @return SP_OK upon success, a negative error code otherwise.
550  *
551  * @since 0.1.0
552  */
553 SP_API enum sp_return sp_copy_port(const struct sp_port *port, struct sp_port **copy_ptr);
554
555 /**
556  * Free a port list obtained from sp_list_ports().
557  *
558  * This will also free all the sp_port structures referred to from the list;
559  * any that are to be retained must be copied first using sp_copy_port().
560  *
561  * @param[in] ports Pointer to a list of port structures. Must not be NULL.
562  *
563  * @since 0.1.0
564  */
565 SP_API void sp_free_port_list(struct sp_port **ports);
566
567 /**
568  * @}
569  * @defgroup Ports Port handling
570  *
571  * Opening, closing and querying ports.
572  *
573  * See @ref port_info.c for a working example of getting port information.
574  *
575  * @{
576  */
577
578 /**
579  * Open the specified serial port.
580  *
581  * @param[in] port Pointer to a port structure. Must not be NULL.
582  * @param[in] flags Flags to use when opening the serial port.
583  *
584  * @return SP_OK upon success, a negative error code otherwise.
585  *
586  * @since 0.1.0
587  */
588 SP_API enum sp_return sp_open(struct sp_port *port, enum sp_mode flags);
589
590 /**
591  * Close the specified serial port.
592  *
593  * @param[in] port Pointer to a port structure. Must not be NULL.
594  *
595  * @return SP_OK upon success, a negative error code otherwise.
596  *
597  * @since 0.1.0
598  */
599 SP_API enum sp_return sp_close(struct sp_port *port);
600
601 /**
602  * Get the name of a port.
603  *
604  * The name returned is whatever is normally used to refer to a port on the
605  * current operating system; e.g. for Windows it will usually be a "COMn"
606  * device name, and for Unix it will be a device path beginning with "/dev/".
607  *
608  * @param[in] port Pointer to a port structure. Must not be NULL.
609  *
610  * @return The port name, or NULL if an invalid port is passed. The name
611  *         string is part of the port structure and may not be used after
612  *         the port structure has been freed.
613  *
614  * @since 0.1.0
615  */
616 SP_API char *sp_get_port_name(const struct sp_port *port);
617
618 /**
619  * Get a description for a port, to present to end user.
620  *
621  * @param[in] port Pointer to a port structure. Must not be NULL.
622  *
623  * @return The port description, or NULL if an invalid port is passed.
624  *         The description string is part of the port structure and may not
625  *         be used after the port structure has been freed.
626  *
627  * @since 0.1.1
628  */
629 SP_API char *sp_get_port_description(const struct sp_port *port);
630
631 /**
632  * Get the transport type used by a port.
633  *
634  * @param[in] port Pointer to a port structure. Must not be NULL.
635  *
636  * @return The port transport type.
637  *
638  * @since 0.1.1
639  */
640 SP_API enum sp_transport sp_get_port_transport(const struct sp_port *port);
641
642 /**
643  * Get the USB bus number and address on bus of a USB serial adapter port.
644  *
645  * @param[in] port Pointer to a port structure. Must not be NULL.
646  * @param[out] usb_bus Pointer to a variable to store the USB bus.
647  *                     Can be NULL (in that case it will be ignored).
648  * @param[out] usb_address Pointer to a variable to store the USB address.
649  *                         Can be NULL (in that case it will be ignored).
650  *
651  * @return SP_OK upon success, a negative error code otherwise.
652  *
653  * @since 0.1.1
654  */
655 SP_API enum sp_return sp_get_port_usb_bus_address(const struct sp_port *port,
656                                            int *usb_bus, int *usb_address);
657
658 /**
659  * Get the USB Vendor ID and Product ID of a USB serial adapter port.
660  *
661  * @param[in] port Pointer to a port structure. Must not be NULL.
662  * @param[out] usb_vid Pointer to a variable to store the USB VID.
663  *                     Can be NULL (in that case it will be ignored).
664  * @param[out] usb_pid Pointer to a variable to store the USB PID.
665  *                     Can be NULL (in that case it will be ignored).
666  *
667  * @return SP_OK upon success, a negative error code otherwise.
668  *
669  * @since 0.1.1
670  */
671 SP_API enum sp_return sp_get_port_usb_vid_pid(const struct sp_port *port, int *usb_vid, int *usb_pid);
672
673 /**
674  * Get the USB manufacturer string of a USB serial adapter port.
675  *
676  * @param[in] port Pointer to a port structure. Must not be NULL.
677  *
678  * @return The port manufacturer string, or NULL if an invalid port is passed.
679  *         The manufacturer string is part of the port structure and may not
680  *         be used after the port structure has been freed.
681  *
682  * @since 0.1.1
683  */
684 SP_API char *sp_get_port_usb_manufacturer(const struct sp_port *port);
685
686 /**
687  * Get the USB product string of a USB serial adapter port.
688  *
689  * @param[in] port Pointer to a port structure. Must not be NULL.
690  *
691  * @return The port product string, or NULL if an invalid port is passed.
692  *         The product string is part of the port structure and may not be
693  *         used after the port structure has been freed.
694  *
695  * @since 0.1.1
696  */
697 SP_API char *sp_get_port_usb_product(const struct sp_port *port);
698
699 /**
700  * Get the USB serial number string of a USB serial adapter port.
701  *
702  * @param[in] port Pointer to a port structure. Must not be NULL.
703  *
704  * @return The port serial number, or NULL if an invalid port is passed.
705  *         The serial number string is part of the port structure and may
706  *         not be used after the port structure has been freed.
707  *
708  * @since 0.1.1
709  */
710 SP_API char *sp_get_port_usb_serial(const struct sp_port *port);
711
712 /**
713  * Get the MAC address of a Bluetooth serial adapter port.
714  *
715  * @param[in] port Pointer to a port structure. Must not be NULL.
716  *
717  * @return The port MAC address, or NULL if an invalid port is passed.
718  *         The MAC address string is part of the port structure and may not
719  *         be used after the port structure has been freed.
720  *
721  * @since 0.1.1
722  */
723 SP_API char *sp_get_port_bluetooth_address(const struct sp_port *port);
724
725 /**
726  * Get the operating system handle for a port.
727  *
728  * The type of the handle depends on the operating system. On Unix based
729  * systems, the handle is a file descriptor of type "int". On Windows, the
730  * handle is of type "HANDLE". The user should allocate a variable of the
731  * appropriate type and pass a pointer to this to receive the result.
732  *
733  * To obtain a valid handle, the port must first be opened by calling
734  * sp_open() using the same port structure.
735  *
736  * After the port is closed or the port structure freed, the handle may
737  * no longer be valid.
738  *
739  * @warning This feature is provided so that programs may make use of
740  *          OS-specific functionality where desired. Doing so obviously
741  *          comes at a cost in portability. It also cannot be guaranteed
742  *          that direct usage of the OS handle will not conflict with the
743  *          library's own usage of the port. Be careful.
744  *
745  * @param[in] port Pointer to a port structure. Must not be NULL.
746  * @param[out] result_ptr If any error is returned, the variable pointed to by
747  *                        result_ptr will have unknown contents and should not
748  *                        be used. Otherwise, it will be set to point to the
749  *                        OS handle. Must not be NULL.
750  *
751  * @return SP_OK upon success, a negative error code otherwise.
752  *
753  * @since 0.1.0
754  */
755 SP_API enum sp_return sp_get_port_handle(const struct sp_port *port, void *result_ptr);
756
757 /**
758  * @}
759  *
760  * @defgroup Configuration Configuration
761  *
762  * Setting and querying serial port parameters.
763  * @{
764  */
765
766 /**
767  * Allocate a port configuration structure.
768  *
769  * The user should allocate a variable of type "struct sp_port_config *" and
770  * pass a pointer to this to receive the result. The variable will be updated
771  * to point to the new configuration structure. The structure is opaque and
772  * must be accessed via the functions provided.
773  *
774  * All parameters in the structure will be initialised to special values which
775  * are ignored by sp_set_config().
776  *
777  * The structure should be freed after use by calling sp_free_config().
778  *
779  * @param[out] config_ptr If any error is returned, the variable pointed to by
780  *                        config_ptr will be set to NULL. Otherwise, it will
781  *                        be set to point to the allocated config structure.
782  *                        Must not be NULL.
783  *
784  * @return SP_OK upon success, a negative error code otherwise.
785  *
786  * @since 0.1.0
787  */
788 SP_API enum sp_return sp_new_config(struct sp_port_config **config_ptr);
789
790 /**
791  * Free a port configuration structure.
792  *
793  * @param[in] config Pointer to a configuration structure. Must not be NULL.
794  *
795  * @since 0.1.0
796  */
797 SP_API void sp_free_config(struct sp_port_config *config);
798
799 /**
800  * Get the current configuration of the specified serial port.
801  *
802  * The user should allocate a configuration structure using sp_new_config()
803  * and pass this as the config parameter. The configuration structure will
804  * be updated with the port configuration.
805  *
806  * Any parameters that are configured with settings not recognised or
807  * supported by libserialport, will be set to special values that are
808  * ignored by sp_set_config().
809  *
810  * @param[in] port Pointer to a port structure. Must not be NULL.
811  * @param[out] config Pointer to a configuration structure that will hold
812  *                    the result. Upon errors the contents of the config
813  *                    struct will not be changed. Must not be NULL.
814  *
815  * @return SP_OK upon success, a negative error code otherwise.
816  *
817  * @since 0.1.0
818  */
819 SP_API enum sp_return sp_get_config(struct sp_port *port, struct sp_port_config *config);
820
821 /**
822  * Set the configuration for the specified serial port.
823  *
824  * For each parameter in the configuration, there is a special value (usually
825  * -1, but see the documentation for each field). These values will be ignored
826  * and the corresponding setting left unchanged on the port.
827  *
828  * Upon errors, the configuration of the serial port is unknown since
829  * partial/incomplete config updates may have happened.
830  *
831  * @param[in] port Pointer to a port structure. Must not be NULL.
832  * @param[in] config Pointer to a configuration structure. Must not be NULL.
833  *
834  * @return SP_OK upon success, a negative error code otherwise.
835  *
836  * @since 0.1.0
837  */
838 SP_API enum sp_return sp_set_config(struct sp_port *port, const struct sp_port_config *config);
839
840 /**
841  * Set the baud rate for the specified serial port.
842  *
843  * @param[in] port Pointer to a port structure. Must not be NULL.
844  * @param[in] baudrate Baud rate in bits per second.
845  *
846  * @return SP_OK upon success, a negative error code otherwise.
847  *
848  * @since 0.1.0
849  */
850 SP_API enum sp_return sp_set_baudrate(struct sp_port *port, int baudrate);
851
852 /**
853  * Get the baud rate from a port configuration.
854  *
855  * The user should allocate a variable of type int and
856  * pass a pointer to this to receive the result.
857  *
858  * @param[in] config Pointer to a configuration structure. Must not be NULL.
859  * @param[out] baudrate_ptr Pointer to a variable to store the result. Must not be NULL.
860  *
861  * @return SP_OK upon success, a negative error code otherwise.
862  *
863  * @since 0.1.0
864  */
865 SP_API enum sp_return sp_get_config_baudrate(const struct sp_port_config *config, int *baudrate_ptr);
866
867 /**
868  * Set the baud rate in a port configuration.
869  *
870  * @param[in] config Pointer to a configuration structure. Must not be NULL.
871  * @param[in] baudrate Baud rate in bits per second, or -1 to retain the current setting.
872  *
873  * @return SP_OK upon success, a negative error code otherwise.
874  *
875  * @since 0.1.0
876  */
877 SP_API enum sp_return sp_set_config_baudrate(struct sp_port_config *config, int baudrate);
878
879 /**
880  * Set the data bits for the specified serial port.
881  *
882  * @param[in] port Pointer to a port structure. Must not be NULL.
883  * @param[in] bits Number of data bits.
884  *
885  * @return SP_OK upon success, a negative error code otherwise.
886  *
887  * @since 0.1.0
888  */
889 SP_API enum sp_return sp_set_bits(struct sp_port *port, int bits);
890
891 /**
892  * Get the data bits from a port configuration.
893  *
894  * The user should allocate a variable of type int and
895  * pass a pointer to this to receive the result.
896  *
897  * @param[in] config Pointer to a configuration structure. Must not be NULL.
898  * @param[out] bits_ptr Pointer to a variable to store the result. Must not be NULL.
899  *
900  * @return SP_OK upon success, a negative error code otherwise.
901  *
902  * @since 0.1.0
903  */
904 SP_API enum sp_return sp_get_config_bits(const struct sp_port_config *config, int *bits_ptr);
905
906 /**
907  * Set the data bits in a port configuration.
908  *
909  * @param[in] config Pointer to a configuration structure. Must not be NULL.
910  * @param[in] bits Number of data bits, or -1 to retain the current setting.
911  *
912  * @return SP_OK upon success, a negative error code otherwise.
913  *
914  * @since 0.1.0
915  */
916 SP_API enum sp_return sp_set_config_bits(struct sp_port_config *config, int bits);
917
918 /**
919  * Set the parity setting for the specified serial port.
920  *
921  * @param[in] port Pointer to a port structure. Must not be NULL.
922  * @param[in] parity Parity setting.
923  *
924  * @return SP_OK upon success, a negative error code otherwise.
925  *
926  * @since 0.1.0
927  */
928 SP_API enum sp_return sp_set_parity(struct sp_port *port, enum sp_parity parity);
929
930 /**
931  * Get the parity setting from a port configuration.
932  *
933  * The user should allocate a variable of type enum sp_parity and
934  * pass a pointer to this to receive the result.
935  *
936  * @param[in] config Pointer to a configuration structure. Must not be NULL.
937  * @param[out] parity_ptr Pointer to a variable to store the result. Must not be NULL.
938  *
939  * @return SP_OK upon success, a negative error code otherwise.
940  *
941  * @since 0.1.0
942  */
943 SP_API enum sp_return sp_get_config_parity(const struct sp_port_config *config, enum sp_parity *parity_ptr);
944
945 /**
946  * Set the parity setting in a port configuration.
947  *
948  * @param[in] config Pointer to a configuration structure. Must not be NULL.
949  * @param[in] parity Parity setting, or -1 to retain the current setting.
950  *
951  * @return SP_OK upon success, a negative error code otherwise.
952  *
953  * @since 0.1.0
954  */
955 SP_API enum sp_return sp_set_config_parity(struct sp_port_config *config, enum sp_parity parity);
956
957 /**
958  * Set the stop bits for the specified serial port.
959  *
960  * @param[in] port Pointer to a port structure. Must not be NULL.
961  * @param[in] stopbits Number of stop bits.
962  *
963  * @return SP_OK upon success, a negative error code otherwise.
964  *
965  * @since 0.1.0
966  */
967 SP_API enum sp_return sp_set_stopbits(struct sp_port *port, int stopbits);
968
969 /**
970  * Get the stop bits from a port configuration.
971  *
972  * The user should allocate a variable of type int and
973  * pass a pointer to this to receive the result.
974  *
975  * @param[in] config Pointer to a configuration structure. Must not be NULL.
976  * @param[out] stopbits_ptr Pointer to a variable to store the result. Must not be NULL.
977  *
978  * @return SP_OK upon success, a negative error code otherwise.
979  *
980  * @since 0.1.0
981  */
982 SP_API enum sp_return sp_get_config_stopbits(const struct sp_port_config *config, int *stopbits_ptr);
983
984 /**
985  * Set the stop bits in a port configuration.
986  *
987  * @param[in] config Pointer to a configuration structure. Must not be NULL.
988  * @param[in] stopbits Number of stop bits, or -1 to retain the current setting.
989  *
990  * @return SP_OK upon success, a negative error code otherwise.
991  *
992  * @since 0.1.0
993  */
994 SP_API enum sp_return sp_set_config_stopbits(struct sp_port_config *config, int stopbits);
995
996 /**
997  * Set the RTS pin behaviour for the specified serial port.
998  *
999  * @param[in] port Pointer to a port structure. Must not be NULL.
1000  * @param[in] rts RTS pin mode.
1001  *
1002  * @return SP_OK upon success, a negative error code otherwise.
1003  *
1004  * @since 0.1.0
1005  */
1006 SP_API enum sp_return sp_set_rts(struct sp_port *port, enum sp_rts rts);
1007
1008 /**
1009  * Get the RTS pin behaviour from a port configuration.
1010  *
1011  * The user should allocate a variable of type enum sp_rts and
1012  * pass a pointer to this to receive the result.
1013  *
1014  * @param[in] config Pointer to a configuration structure. Must not be NULL.
1015  * @param[out] rts_ptr Pointer to a variable to store the result. Must not be NULL.
1016  *
1017  * @return SP_OK upon success, a negative error code otherwise.
1018  *
1019  * @since 0.1.0
1020  */
1021 SP_API enum sp_return sp_get_config_rts(const struct sp_port_config *config, enum sp_rts *rts_ptr);
1022
1023 /**
1024  * Set the RTS pin behaviour in a port configuration.
1025  *
1026  * @param[in] config Pointer to a configuration structure. Must not be NULL.
1027  * @param[in] rts RTS pin mode, or -1 to retain the current setting.
1028  *
1029  * @return SP_OK upon success, a negative error code otherwise.
1030  *
1031  * @since 0.1.0
1032  */
1033 SP_API enum sp_return sp_set_config_rts(struct sp_port_config *config, enum sp_rts rts);
1034
1035 /**
1036  * Set the CTS pin behaviour for the specified serial port.
1037  *
1038  * @param[in] port Pointer to a port structure. Must not be NULL.
1039  * @param[in] cts CTS pin mode.
1040  *
1041  * @return SP_OK upon success, a negative error code otherwise.
1042  *
1043  * @since 0.1.0
1044  */
1045 SP_API enum sp_return sp_set_cts(struct sp_port *port, enum sp_cts cts);
1046
1047 /**
1048  * Get the CTS pin behaviour from a port configuration.
1049  *
1050  * The user should allocate a variable of type enum sp_cts and
1051  * pass a pointer to this to receive the result.
1052  *
1053  * @param[in] config Pointer to a configuration structure. Must not be NULL.
1054  * @param[out] cts_ptr Pointer to a variable to store the result. Must not be NULL.
1055  *
1056  * @return SP_OK upon success, a negative error code otherwise.
1057  *
1058  * @since 0.1.0
1059  */
1060 SP_API enum sp_return sp_get_config_cts(const struct sp_port_config *config, enum sp_cts *cts_ptr);
1061
1062 /**
1063  * Set the CTS pin behaviour in a port configuration.
1064  *
1065  * @param[in] config Pointer to a configuration structure. Must not be NULL.
1066  * @param[in] cts CTS pin mode, or -1 to retain the current setting.
1067  *
1068  * @return SP_OK upon success, a negative error code otherwise.
1069  *
1070  * @since 0.1.0
1071  */
1072 SP_API enum sp_return sp_set_config_cts(struct sp_port_config *config, enum sp_cts cts);
1073
1074 /**
1075  * Set the DTR pin behaviour for the specified serial port.
1076  *
1077  * @param[in] port Pointer to a port structure. Must not be NULL.
1078  * @param[in] dtr DTR pin mode.
1079  *
1080  * @return SP_OK upon success, a negative error code otherwise.
1081  *
1082  * @since 0.1.0
1083  */
1084 SP_API enum sp_return sp_set_dtr(struct sp_port *port, enum sp_dtr dtr);
1085
1086 /**
1087  * Get the DTR pin behaviour from a port configuration.
1088  *
1089  * The user should allocate a variable of type enum sp_dtr and
1090  * pass a pointer to this to receive the result.
1091  *
1092  * @param[in] config Pointer to a configuration structure. Must not be NULL.
1093  * @param[out] dtr_ptr Pointer to a variable to store the result. Must not be NULL.
1094  *
1095  * @return SP_OK upon success, a negative error code otherwise.
1096  *
1097  * @since 0.1.0
1098  */
1099 SP_API enum sp_return sp_get_config_dtr(const struct sp_port_config *config, enum sp_dtr *dtr_ptr);
1100
1101 /**
1102  * Set the DTR pin behaviour in a port configuration.
1103  *
1104  * @param[in] config Pointer to a configuration structure. Must not be NULL.
1105  * @param[in] dtr DTR pin mode, or -1 to retain the current setting.
1106  *
1107  * @return SP_OK upon success, a negative error code otherwise.
1108  *
1109  * @since 0.1.0
1110  */
1111 SP_API enum sp_return sp_set_config_dtr(struct sp_port_config *config, enum sp_dtr dtr);
1112
1113 /**
1114  * Set the DSR pin behaviour for the specified serial port.
1115  *
1116  * @param[in] port Pointer to a port structure. Must not be NULL.
1117  * @param[in] dsr DSR pin mode.
1118  *
1119  * @return SP_OK upon success, a negative error code otherwise.
1120  *
1121  * @since 0.1.0
1122  */
1123 SP_API enum sp_return sp_set_dsr(struct sp_port *port, enum sp_dsr dsr);
1124
1125 /**
1126  * Get the DSR pin behaviour from a port configuration.
1127  *
1128  * The user should allocate a variable of type enum sp_dsr and
1129  * pass a pointer to this to receive the result.
1130  *
1131  * @param[in] config Pointer to a configuration structure. Must not be NULL.
1132  * @param[out] dsr_ptr Pointer to a variable to store the result. Must not be NULL.
1133  *
1134  * @return SP_OK upon success, a negative error code otherwise.
1135  *
1136  * @since 0.1.0
1137  */
1138 SP_API enum sp_return sp_get_config_dsr(const struct sp_port_config *config, enum sp_dsr *dsr_ptr);
1139
1140 /**
1141  * Set the DSR pin behaviour in a port configuration.
1142  *
1143  * @param[in] config Pointer to a configuration structure. Must not be NULL.
1144  * @param[in] dsr DSR pin mode, or -1 to retain the current setting.
1145  *
1146  * @return SP_OK upon success, a negative error code otherwise.
1147  *
1148  * @since 0.1.0
1149  */
1150 SP_API enum sp_return sp_set_config_dsr(struct sp_port_config *config, enum sp_dsr dsr);
1151
1152 /**
1153  * Set the XON/XOFF configuration for the specified serial port.
1154  *
1155  * @param[in] port Pointer to a port structure. Must not be NULL.
1156  * @param[in] xon_xoff XON/XOFF mode.
1157  *
1158  * @return SP_OK upon success, a negative error code otherwise.
1159  *
1160  * @since 0.1.0
1161  */
1162 SP_API enum sp_return sp_set_xon_xoff(struct sp_port *port, enum sp_xonxoff xon_xoff);
1163
1164 /**
1165  * Get the XON/XOFF configuration from a port configuration.
1166  *
1167  * The user should allocate a variable of type enum sp_xonxoff and
1168  * pass a pointer to this to receive the result.
1169  *
1170  * @param[in] config Pointer to a configuration structure. Must not be NULL.
1171  * @param[out] xon_xoff_ptr Pointer to a variable to store the result. Must not be NULL.
1172  *
1173  * @return SP_OK upon success, a negative error code otherwise.
1174  *
1175  * @since 0.1.0
1176  */
1177 SP_API enum sp_return sp_get_config_xon_xoff(const struct sp_port_config *config, enum sp_xonxoff *xon_xoff_ptr);
1178
1179 /**
1180  * Set the XON/XOFF configuration in a port configuration.
1181  *
1182  * @param[in] config Pointer to a configuration structure. Must not be NULL.
1183  * @param[in] xon_xoff XON/XOFF mode, or -1 to retain the current setting.
1184  *
1185  * @return SP_OK upon success, a negative error code otherwise.
1186  *
1187  * @since 0.1.0
1188  */
1189 SP_API enum sp_return sp_set_config_xon_xoff(struct sp_port_config *config, enum sp_xonxoff xon_xoff);
1190
1191 /**
1192  * Set the flow control type in a port configuration.
1193  *
1194  * This function is a wrapper that sets the RTS, CTS, DTR, DSR and
1195  * XON/XOFF settings as necessary for the specified flow control
1196  * type. For more fine-grained control of these settings, use their
1197  * individual configuration functions.
1198  *
1199  * @param[in] config Pointer to a configuration structure. Must not be NULL.
1200  * @param[in] flowcontrol Flow control setting to use.
1201  *
1202  * @return SP_OK upon success, a negative error code otherwise.
1203  *
1204  * @since 0.1.0
1205  */
1206 SP_API enum sp_return sp_set_config_flowcontrol(struct sp_port_config *config, enum sp_flowcontrol flowcontrol);
1207
1208 /**
1209  * Set the flow control type for the specified serial port.
1210  *
1211  * This function is a wrapper that sets the RTS, CTS, DTR, DSR and
1212  * XON/XOFF settings as necessary for the specified flow control
1213  * type. For more fine-grained control of these settings, use their
1214  * individual configuration functions.
1215  *
1216  * @param[in] port Pointer to a port structure. Must not be NULL.
1217  * @param[in] flowcontrol Flow control setting to use.
1218  *
1219  * @return SP_OK upon success, a negative error code otherwise.
1220  *
1221  * @since 0.1.0
1222  */
1223 SP_API enum sp_return sp_set_flowcontrol(struct sp_port *port, enum sp_flowcontrol flowcontrol);
1224
1225 /**
1226  * @}
1227  *
1228  * @defgroup Data Data handling
1229  *
1230  * Reading, writing, and flushing data.
1231  *
1232  * @{
1233  */
1234
1235 /**
1236  * Read bytes from the specified serial port, blocking until complete.
1237  *
1238  * @warning If your program runs on Unix, defines its own signal handlers, and
1239  *          needs to abort blocking reads when these are called, then you
1240  *          should not use this function. It repeats system calls that return
1241  *          with EINTR. To be able to abort a read from a signal handler, you
1242  *          should implement your own blocking read using sp_nonblocking_read()
1243  *          together with a blocking method that makes sense for your program.
1244  *          E.g. you can obtain the file descriptor for an open port using
1245  *          sp_get_port_handle() and use this to call select() or pselect(),
1246  *          with appropriate arrangements to return if a signal is received.
1247  *
1248  * @param[in] port Pointer to a port structure. Must not be NULL.
1249  * @param[out] buf Buffer in which to store the bytes read. Must not be NULL.
1250  * @param[in] count Requested number of bytes to read.
1251  * @param[in] timeout_ms Timeout in milliseconds, or zero to wait indefinitely.
1252  *
1253  * @return The number of bytes read on success, or a negative error code. If
1254  *         the number of bytes returned is less than that requested, the
1255  *         timeout was reached before the requested number of bytes was
1256  *         available. If timeout is zero, the function will always return
1257  *         either the requested number of bytes or a negative error code.
1258  *
1259  * @since 0.1.0
1260  */
1261 SP_API enum sp_return sp_blocking_read(struct sp_port *port, void *buf, size_t count, unsigned int timeout_ms);
1262
1263 /**
1264  * Read bytes from the specified serial port, returning as soon as any data is
1265  * available.
1266  *
1267  * @warning If your program runs on Unix, defines its own signal handlers, and
1268  *          needs to abort blocking reads when these are called, then you
1269  *          should not use this function. It repeats system calls that return
1270  *          with EINTR. To be able to abort a read from a signal handler, you
1271  *          should implement your own blocking read using sp_nonblocking_read()
1272  *          together with a blocking method that makes sense for your program.
1273  *          E.g. you can obtain the file descriptor for an open port using
1274  *          sp_get_port_handle() and use this to call select() or pselect(),
1275  *          with appropriate arrangements to return if a signal is received.
1276  *
1277  * @param[in] port Pointer to a port structure. Must not be NULL.
1278  * @param[out] buf Buffer in which to store the bytes read. Must not be NULL.
1279  * @param[in] count Maximum number of bytes to read. Must not be zero.
1280  * @param[in] timeout_ms Timeout in milliseconds, or zero to wait indefinitely.
1281  *
1282  * @return The number of bytes read on success, or a negative error code. If
1283  *         the result is zero, the timeout was reached before any bytes were
1284  *         available. If timeout_ms is zero, the function will always return
1285  *         either at least one byte, or a negative error code.
1286  *
1287  * @since 0.1.1
1288  */
1289 SP_API enum sp_return sp_blocking_read_next(struct sp_port *port, void *buf, size_t count, unsigned int timeout_ms);
1290
1291 /**
1292  * Read bytes from the specified serial port, without blocking.
1293  *
1294  * @param[in] port Pointer to a port structure. Must not be NULL.
1295  * @param[out] buf Buffer in which to store the bytes read. Must not be NULL.
1296  * @param[in] count Maximum number of bytes to read.
1297  *
1298  * @return The number of bytes read on success, or a negative error code. The
1299  *         number of bytes returned may be any number from zero to the maximum
1300  *         that was requested.
1301  *
1302  * @since 0.1.0
1303  */
1304 SP_API enum sp_return sp_nonblocking_read(struct sp_port *port, void *buf, size_t count);
1305
1306 /**
1307  * Write bytes to the specified serial port, blocking until complete.
1308  *
1309  * Note that this function only ensures that the accepted bytes have been
1310  * written to the OS; they may be held in driver or hardware buffers and not
1311  * yet physically transmitted. To check whether all written bytes have actually
1312  * been transmitted, use the sp_output_waiting() function. To wait until all
1313  * written bytes have actually been transmitted, use the sp_drain() function.
1314  *
1315  * @warning If your program runs on Unix, defines its own signal handlers, and
1316  *          needs to abort blocking writes when these are called, then you
1317  *          should not use this function. It repeats system calls that return
1318  *          with EINTR. To be able to abort a write from a signal handler, you
1319  *          should implement your own blocking write using sp_nonblocking_write()
1320  *          together with a blocking method that makes sense for your program.
1321  *          E.g. you can obtain the file descriptor for an open port using
1322  *          sp_get_port_handle() and use this to call select() or pselect(),
1323  *          with appropriate arrangements to return if a signal is received.
1324  *
1325  * @param[in] port Pointer to a port structure. Must not be NULL.
1326  * @param[in] buf Buffer containing the bytes to write. Must not be NULL.
1327  * @param[in] count Requested number of bytes to write.
1328  * @param[in] timeout_ms Timeout in milliseconds, or zero to wait indefinitely.
1329  *
1330  * @return The number of bytes written on success, or a negative error code.
1331  *         If the number of bytes returned is less than that requested, the
1332  *         timeout was reached before the requested number of bytes was
1333  *         written. If timeout is zero, the function will always return
1334  *         either the requested number of bytes or a negative error code. In
1335  *         the event of an error there is no way to determine how many bytes
1336  *         were sent before the error occurred.
1337  *
1338  * @since 0.1.0
1339  */
1340 SP_API enum sp_return sp_blocking_write(struct sp_port *port, const void *buf, size_t count, unsigned int timeout_ms);
1341
1342 /**
1343  * Write bytes to the specified serial port, without blocking.
1344  *
1345  * Note that this function only ensures that the accepted bytes have been
1346  * written to the OS; they may be held in driver or hardware buffers and not
1347  * yet physically transmitted. To check whether all written bytes have actually
1348  * been transmitted, use the sp_output_waiting() function. To wait until all
1349  * written bytes have actually been transmitted, use the sp_drain() function.
1350  *
1351  * @param[in] port Pointer to a port structure. Must not be NULL.
1352  * @param[in] buf Buffer containing the bytes to write. Must not be NULL.
1353  * @param[in] count Maximum number of bytes to write.
1354  *
1355  * @return The number of bytes written on success, or a negative error code.
1356  *         The number of bytes returned may be any number from zero to the
1357  *         maximum that was requested.
1358  *
1359  * @since 0.1.0
1360  */
1361 SP_API enum sp_return sp_nonblocking_write(struct sp_port *port, const void *buf, size_t count);
1362
1363 /**
1364  * Gets the number of bytes waiting in the input buffer.
1365  *
1366  * @param[in] port Pointer to a port structure. Must not be NULL.
1367  *
1368  * @return Number of bytes waiting on success, a negative error code otherwise.
1369  *
1370  * @since 0.1.0
1371  */
1372 SP_API enum sp_return sp_input_waiting(struct sp_port *port);
1373
1374 /**
1375  * Gets the number of bytes waiting in the output buffer.
1376  *
1377  * @param[in] port Pointer to a port structure. Must not be NULL.
1378  *
1379  * @return Number of bytes waiting on success, a negative error code otherwise.
1380  *
1381  * @since 0.1.0
1382  */
1383 SP_API enum sp_return sp_output_waiting(struct sp_port *port);
1384
1385 /**
1386  * Flush serial port buffers. Data in the selected buffer(s) is discarded.
1387  *
1388  * @param[in] port Pointer to a port structure. Must not be NULL.
1389  * @param[in] buffers Which buffer(s) to flush.
1390  *
1391  * @return SP_OK upon success, a negative error code otherwise.
1392  *
1393  * @since 0.1.0
1394  */
1395 SP_API enum sp_return sp_flush(struct sp_port *port, enum sp_buffer buffers);
1396
1397 /**
1398  * Wait for buffered data to be transmitted.
1399  *
1400  * @warning If your program runs on Unix, defines its own signal handlers, and
1401  *          needs to abort draining the output buffer when when these are
1402  *          called, then you should not use this function. It repeats system
1403  *          calls that return with EINTR. To be able to abort a drain from a
1404  *          signal handler, you would need to implement your own blocking
1405  *          drain by polling the result of sp_output_waiting().
1406  *
1407  * @param[in] port Pointer to a port structure. Must not be NULL.
1408  *
1409  * @return SP_OK upon success, a negative error code otherwise.
1410  *
1411  * @since 0.1.0
1412  */
1413 SP_API enum sp_return sp_drain(struct sp_port *port);
1414
1415 /**
1416  * @}
1417  *
1418  * @defgroup Waiting Waiting
1419  *
1420  * Waiting for events and timeout handling.
1421  *
1422  * @{
1423  */
1424
1425 /**
1426  * Allocate storage for a set of events.
1427  *
1428  * The user should allocate a variable of type struct sp_event_set *,
1429  * then pass a pointer to this variable to receive the result.
1430  *
1431  * The result should be freed after use by calling sp_free_event_set().
1432  *
1433  * @param[out] result_ptr If any error is returned, the variable pointed to by
1434  *                        result_ptr will be set to NULL. Otherwise, it will
1435  *                        be set to point to the event set. Must not be NULL.
1436  *
1437  * @return SP_OK upon success, a negative error code otherwise.
1438  *
1439  * @since 0.1.0
1440  */
1441 SP_API enum sp_return sp_new_event_set(struct sp_event_set **result_ptr);
1442
1443 /**
1444  * Add events to a struct sp_event_set for a given port.
1445  *
1446  * The port must first be opened by calling sp_open() using the same port
1447  * structure.
1448  *
1449  * After the port is closed or the port structure freed, the results may
1450  * no longer be valid.
1451  *
1452  * @param[in,out] event_set Event set to update. Must not be NULL.
1453  * @param[in] port Pointer to a port structure. Must not be NULL.
1454  * @param[in] mask Bitmask of events to be waited for.
1455  *
1456  * @return SP_OK upon success, a negative error code otherwise.
1457  *
1458  * @since 0.1.0
1459  */
1460 SP_API enum sp_return sp_add_port_events(struct sp_event_set *event_set,
1461         const struct sp_port *port, enum sp_event mask);
1462
1463 /**
1464  * Wait for any of a set of events to occur.
1465  *
1466  * @param[in] event_set Event set to wait on. Must not be NULL.
1467  * @param[in] timeout_ms Timeout in milliseconds, or zero to wait indefinitely.
1468  *
1469  * @return SP_OK upon success, a negative error code otherwise.
1470  *
1471  * @since 0.1.0
1472  */
1473 SP_API enum sp_return sp_wait(struct sp_event_set *event_set, unsigned int timeout_ms);
1474
1475 /**
1476  * Free a structure allocated by sp_new_event_set().
1477  *
1478  * @param[in] event_set Event set to free. Must not be NULL.
1479  *
1480  * @since 0.1.0
1481  */
1482 SP_API void sp_free_event_set(struct sp_event_set *event_set);
1483
1484 /**
1485  * @}
1486  *
1487  * @defgroup Signals Signals
1488  *
1489  * Port signalling operations.
1490  *
1491  * @{
1492  */
1493
1494 /**
1495  * Gets the status of the control signals for the specified port.
1496  *
1497  * The user should allocate a variable of type "enum sp_signal" and pass a
1498  * pointer to this variable to receive the result. The result is a bitmask
1499  * in which individual signals can be checked by bitwise OR with values of
1500  * the sp_signal enum.
1501  *
1502  * @param[in] port Pointer to a port structure. Must not be NULL.
1503  * @param[out] signal_mask Pointer to a variable to receive the result.
1504  *                         Must not be NULL.
1505  *
1506  * @return SP_OK upon success, a negative error code otherwise.
1507  *
1508  * @since 0.1.0
1509  */
1510 SP_API enum sp_return sp_get_signals(struct sp_port *port, enum sp_signal *signal_mask);
1511
1512 /**
1513  * Put the port transmit line into the break state.
1514  *
1515  * @param[in] port Pointer to a port structure. Must not be NULL.
1516  *
1517  * @return SP_OK upon success, a negative error code otherwise.
1518  *
1519  * @since 0.1.0
1520  */
1521 SP_API enum sp_return sp_start_break(struct sp_port *port);
1522
1523 /**
1524  * Take the port transmit line out of the break state.
1525  *
1526  * @param[in] port Pointer to a port structure. Must not be NULL.
1527  *
1528  * @return SP_OK upon success, a negative error code otherwise.
1529  *
1530  * @since 0.1.0
1531  */
1532 SP_API enum sp_return sp_end_break(struct sp_port *port);
1533
1534 /**
1535  * @}
1536  *
1537  * @defgroup Errors Errors
1538  *
1539  * Obtaining error information.
1540  *
1541  * @{
1542  */
1543
1544 /**
1545  * Get the error code for a failed operation.
1546  *
1547  * In order to obtain the correct result, this function should be called
1548  * straight after the failure, before executing any other system operations.
1549  * The result is thread-specific, and only valid when called immediately
1550  * after a previous call returning SP_ERR_FAIL.
1551  *
1552  * @return The system's numeric code for the error that caused the last
1553  *         operation to fail.
1554  *
1555  * @since 0.1.0
1556  */
1557 SP_API int sp_last_error_code(void);
1558
1559 /**
1560  * Get the error message for a failed operation.
1561  *
1562  * In order to obtain the correct result, this function should be called
1563  * straight after the failure, before executing other system operations.
1564  * The result is thread-specific, and only valid when called immediately
1565  * after a previous call returning SP_ERR_FAIL.
1566  *
1567  * @return The system's message for the error that caused the last
1568  *         operation to fail. This string may be allocated by the function,
1569  *         and should be freed after use by calling sp_free_error_message().
1570  *
1571  * @since 0.1.0
1572  */
1573 SP_API char *sp_last_error_message(void);
1574
1575 /**
1576  * Free an error message returned by sp_last_error_message().
1577  *
1578  * @param[in] message The error message string to free. Must not be NULL.
1579  *
1580  * @since 0.1.0
1581  */
1582 SP_API void sp_free_error_message(char *message);
1583
1584 /**
1585  * Set the handler function for library debugging messages.
1586  *
1587  * Debugging messages are generated by the library during each operation,
1588  * to help in diagnosing problems. The handler will be called for each
1589  * message. The handler can be set to NULL to ignore all debug messages.
1590  *
1591  * The handler function should accept a format string and variable length
1592  * argument list, in the same manner as e.g. printf().
1593  *
1594  * The default handler is sp_default_debug_handler().
1595  *
1596  * @param[in] handler The handler function to use. Can be NULL (in that case
1597  *                    all debug messages will be ignored).
1598  *
1599  * @since 0.1.0
1600  */
1601 SP_API void sp_set_debug_handler(void (*handler)(const char *format, ...));
1602
1603 /**
1604  * Default handler function for library debugging messages.
1605  *
1606  * This function prints debug messages to the standard error stream if the
1607  * environment variable LIBSERIALPORT_DEBUG is set. Otherwise, they are
1608  * ignored.
1609  *
1610  * @param[in] format The format string to use. Must not be NULL.
1611  * @param[in] ... The variable length argument list to use.
1612  *
1613  * @since 0.1.0
1614  */
1615 SP_API void sp_default_debug_handler(const char *format, ...);
1616
1617 /** @} */
1618
1619 /**
1620  * @defgroup Versions Versions
1621  *
1622  * Version number querying functions, definitions, and macros.
1623  *
1624  * This set of API calls returns two different version numbers related
1625  * to libserialport. The "package version" is the release version number of the
1626  * libserialport tarball in the usual "major.minor.micro" format, e.g. "0.1.0".
1627  *
1628  * The "library version" is independent of that; it is the libtool version
1629  * number in the "current:revision:age" format, e.g. "2:0:0".
1630  * See http://www.gnu.org/software/libtool/manual/libtool.html#Libtool-versioning for details.
1631  *
1632  * Both version numbers (and/or individual components of them) can be
1633  * retrieved via the API calls at runtime, and/or they can be checked at
1634  * compile/preprocessor time using the respective macros.
1635  *
1636  * @{
1637  */
1638
1639 /*
1640  * Package version macros (can be used for conditional compilation).
1641  */
1642
1643 /** The libserialport package 'major' version number. */
1644 #define SP_PACKAGE_VERSION_MAJOR 0
1645
1646 /** The libserialport package 'minor' version number. */
1647 #define SP_PACKAGE_VERSION_MINOR 1
1648
1649 /** The libserialport package 'micro' version number. */
1650 #define SP_PACKAGE_VERSION_MICRO 1
1651
1652 /** The libserialport package version ("major.minor.micro") as string. */
1653 #define SP_PACKAGE_VERSION_STRING "0.1.1"
1654
1655 /*
1656  * Library/libtool version macros (can be used for conditional compilation).
1657  */
1658
1659 /** The libserialport libtool 'current' version number. */
1660 #define SP_LIB_VERSION_CURRENT 1
1661
1662 /** The libserialport libtool 'revision' version number. */
1663 #define SP_LIB_VERSION_REVISION 0
1664
1665 /** The libserialport libtool 'age' version number. */
1666 #define SP_LIB_VERSION_AGE 1
1667
1668 /** The libserialport libtool version ("current:revision:age") as string. */
1669 #define SP_LIB_VERSION_STRING "1:0:1"
1670
1671 /**
1672  * Get the major libserialport package version number.
1673  *
1674  * @return The major package version number.
1675  *
1676  * @since 0.1.0
1677  */
1678 SP_API int sp_get_major_package_version(void);
1679
1680 /**
1681  * Get the minor libserialport package version number.
1682  *
1683  * @return The minor package version number.
1684  *
1685  * @since 0.1.0
1686  */
1687 SP_API int sp_get_minor_package_version(void);
1688
1689 /**
1690  * Get the micro libserialport package version number.
1691  *
1692  * @return The micro package version number.
1693  *
1694  * @since 0.1.0
1695  */
1696 SP_API int sp_get_micro_package_version(void);
1697
1698 /**
1699  * Get the libserialport package version number as a string.
1700  *
1701  * @return The package version number string. The returned string is
1702  *         static and thus should NOT be free'd by the caller.
1703  *
1704  * @since 0.1.0
1705  */
1706 SP_API const char *sp_get_package_version_string(void);
1707
1708 /**
1709  * Get the "current" part of the libserialport library version number.
1710  *
1711  * @return The "current" library version number.
1712  *
1713  * @since 0.1.0
1714  */
1715 SP_API int sp_get_current_lib_version(void);
1716
1717 /**
1718  * Get the "revision" part of the libserialport library version number.
1719  *
1720  * @return The "revision" library version number.
1721  *
1722  * @since 0.1.0
1723  */
1724 SP_API int sp_get_revision_lib_version(void);
1725
1726 /**
1727  * Get the "age" part of the libserialport library version number.
1728  *
1729  * @return The "age" library version number.
1730  *
1731  * @since 0.1.0
1732  */
1733 SP_API int sp_get_age_lib_version(void);
1734
1735 /**
1736  * Get the libserialport library version number as a string.
1737  *
1738  * @return The library version number string. The returned string is
1739  *         static and thus should NOT be free'd by the caller.
1740  *
1741  * @since 0.1.0
1742  */
1743 SP_API const char *sp_get_lib_version_string(void);
1744
1745 /** @} */
1746
1747 /**
1748  * @example list_ports.c Getting a list of ports present on the system.
1749  * @example port_info.c Getting information on a particular serial port.
1750 */
1751
1752 #ifdef __cplusplus
1753 }
1754 #endif
1755
1756 #endif