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