]> sigrok.org Git - libserialport.git/blob - libserialport.h.in
Make port structure opaque.
[libserialport.git] / libserialport.h.in
1 /*
2  * This file is part of the libserialport project.
3  *
4  * Copyright (C) 2013 Martin Ling <martin-libserialport@earth.li>
5  *
6  * This program is free software: you can redistribute it and/or modify
7  * it under the terms of the GNU Lesser General Public License as
8  * published by the Free Software Foundation, either version 3 of the
9  * License, or (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU Lesser General Public License
17  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
18  */
19
20 /**
21  * @mainpage libserialport API
22  *
23  * Introduction
24  * ============
25  *
26  * libserialport is a minimal library written in C that is intended to take
27  * care of the OS-specific details when writing software that uses serial ports.
28  *
29  * By writing your serial code to use libserialport, you enable it to work
30  * transparently on any platform supported by the library.
31  *
32  * The operations that are supported are:
33  *
34  * - @ref Enumeration (obtaining a list of serial ports on the system)
35  * - @ref Ports
36  * - @ref Configuration (baud rate, parity, etc.)
37  * - @ref Data
38  * - @ref Errors
39  *
40  * libserialport is an open source project released under the LGPL3+ license.
41  *
42  * API principles
43  * ==============
44  *
45  * The API is simple, and designed to be a minimal wrapper around the serial
46  * port support in each OS.
47  *
48  * Most functions take a pointer to a struct sp_port, which represents a serial
49  * port. These structures are always allocated and freed by the library, using
50  * the functions in the @ref Enumeration "Enumeration" section.
51  *
52  * All functions can return only four possible error values:
53  *
54  * - @ref SP_ERR_ARG means that a function was called with invalid
55  *   arguments. This implies a bug in the caller. The arguments passed would
56  *   be invalid regardless of the underlying OS or serial device involved.
57  *
58  * - @ref SP_ERR_FAIL means that the OS reported a failure. The error code or
59  *   message provided by the OS can be obtained by calling sp_last_error_code()
60  *   or sp_last_error_message().
61  *
62  * - @ref SP_ERR_SUPP indicates that there is no support for the requested
63  *   operation in the current OS, driver or device. No error message is
64  *   available from the OS in this case. There is either no way to request
65  *   the operation in the first place, or libserialport does not know how to
66  *   do so in the current version.
67  *
68  * - @ref SP_ERR_MEM indicates that a memory allocation failed.
69  *
70  * All of these error values are negative.
71  *
72  * Function calls that succeed return @ref SP_OK, which is equal to zero,
73  * or where otherwise documented a positive value.
74  */
75
76 #ifndef LIBSERIALPORT_LIBSERIALPORT_H
77 #define LIBSERIALPORT_LIBSERIALPORT_H
78
79 #ifdef __cplusplus
80 extern "C" {
81 #endif
82
83 #include <stddef.h>
84 #ifdef _WIN32
85 #include <windows.h>
86 #endif
87
88 /* Package version macros (e.g. for conditional compilation). */
89 #define SP_PACKAGE_VERSION_MAJOR @SP_PACKAGE_VERSION_MAJOR@
90 #define SP_PACKAGE_VERSION_MINOR @SP_PACKAGE_VERSION_MINOR@
91 #define SP_PACKAGE_VERSION_MICRO @SP_PACKAGE_VERSION_MICRO@
92 #define SP_PACKAGE_VERSION_STRING "@SP_PACKAGE_VERSION@"
93
94 /* Library/libtool version macros (e.g. for conditional compilation). */
95 #define SP_LIB_VERSION_CURRENT @SP_LIB_VERSION_CURRENT@
96 #define SP_LIB_VERSION_REVISION @SP_LIB_VERSION_REVISION@
97 #define SP_LIB_VERSION_AGE @SP_LIB_VERSION_AGE@
98 #define SP_LIB_VERSION_STRING "@SP_LIB_VERSION@"
99
100 /** Return values. */
101 enum sp_return {
102         /** Operation completed successfully. */
103         SP_OK = 0,
104         /** Invalid arguments were passed to the function. */
105         SP_ERR_ARG = -1,
106         /** A system error occured while executing the operation. */
107         SP_ERR_FAIL = -2,
108         /** A memory allocation failed while executing the operation. */
109         SP_ERR_MEM = -3,
110         /** The requested operation is not supported by this system or device. */
111         SP_ERR_SUPP = -4,
112 };
113
114 /** Port access modes. */
115 enum sp_mode {
116         /** Open port for read access. */
117         SP_MODE_READ = 1,
118         /** Open port for write access. */
119         SP_MODE_WRITE = 2,
120         /** Open port in non-blocking mode. */
121         SP_MODE_NONBLOCK = 4,
122 };
123
124 /** Buffer selection. */
125 enum sp_buffer {
126         /** Input buffer. */
127         SP_BUF_INPUT = 1,
128         /** Output buffer. */
129         SP_BUF_OUTPUT = 2,
130         /** Both buffers. */
131         SP_BUF_BOTH = 3,
132 };
133
134 /** Parity settings. */
135 enum sp_parity {
136         /** Special value to indicate setting should be left alone. */
137         SP_PARITY_INVALID = -1,
138         /** No parity. */
139         SP_PARITY_NONE = 0,
140         /** Odd parity. */
141         SP_PARITY_ODD = 1,
142         /** Even parity. */
143         SP_PARITY_EVEN = 2,
144 };
145
146 /** RTS pin behaviour. */
147 enum sp_rts {
148         /** Special value to indicate setting should be left alone. */
149         SP_RTS_INVALID = -1,
150         /** RTS off. */
151         SP_RTS_OFF = 0,
152         /** RTS on. */
153         SP_RTS_ON = 1,
154         /** RTS used for flow control. */
155         SP_RTS_FLOW_CONTROL = 2,
156 };
157
158 /** CTS pin behaviour. */
159 enum sp_cts {
160         /** Special value to indicate setting should be left alone. */
161         SP_CTS_INVALID = -1,
162         /** CTS ignored. */
163         SP_CTS_IGNORE = 0,
164         /** CTS used for flow control. */
165         SP_CTS_FLOW_CONTROL = 1,
166 };
167
168 /** DTR pin behaviour. */
169 enum sp_dtr {
170         /** Special value to indicate setting should be left alone. */
171         SP_DTR_INVALID = -1,
172         /** DTR off. */
173         SP_DTR_OFF = 0,
174         /** DTR on. */
175         SP_DTR_ON = 1,
176         /** DTR used for flow control. */
177         SP_DTR_FLOW_CONTROL = 2,
178 };
179
180 /** DSR pin behaviour. */
181 enum sp_dsr {
182         /** Special value to indicate setting should be left alone. */
183         SP_DSR_INVALID = -1,
184         /** DSR ignored. */
185         SP_DSR_IGNORE = 0,
186         /** DSR used for flow control. */
187         SP_DSR_FLOW_CONTROL = 1,
188 };
189
190 /** XON/XOFF flow control behaviour. */
191 enum sp_xonxoff {
192         /** Special value to indicate setting should be left alone. */
193         SP_XONXOFF_INVALID = -1,
194         /** XON/XOFF disabled. */
195         SP_XONXOFF_DISABLED = 0,
196         /** XON/XOFF enabled for input only. */
197         SP_XONXOFF_IN = 1,
198         /** XON/XOFF enabled for output only. */
199         SP_XONXOFF_OUT = 2,
200         /** XON/XOFF enabled for input and output. */
201         SP_XONXOFF_INOUT = 3,
202 };
203
204 /** Standard flow control combinations. */
205 enum sp_flowcontrol {
206         /** No flow control. */
207         SP_FLOWCONTROL_NONE = 0,
208         /** Software flow control using XON/XOFF characters. */
209         SP_FLOWCONTROL_XONXOFF = 1,
210         /** Hardware flow control using RTS/CTS signals. */
211         SP_FLOWCONTROL_RTSCTS = 2,
212         /** Hardware flow control using DTR/DSR signals. */
213         SP_FLOWCONTROL_DTRDSR = 3,
214 };
215
216 /** Input signals. */
217 enum sp_signal {
218         /** Clear to send. */
219         SP_SIG_CTS = 1,
220         /** Data set ready. */
221         SP_SIG_DSR = 2,
222         /** Data carrier detect. */
223         SP_SIG_DCD = 4,
224         /** Ring indicator. */
225         SP_SIG_RI = 8,
226 };
227
228 /** A serial port. */
229 struct sp_port;
230
231 /** Configuration for a serial port. */
232 struct sp_port_config {
233         /** Baud rate in bits per second. */
234         int baudrate;
235         /** Number of data bits to use. Valid values are 5 to 8. */
236         int bits;
237         /** Parity setting to use. */
238         enum sp_parity parity;
239         /** Number of stop bits to use (1 or 2). */
240         int stopbits;
241         /** RTS pin mode. */
242         enum sp_rts rts;
243         /** CTS pin mode. */
244         enum sp_cts cts;
245         /** DTR pin mode. */
246         enum sp_dtr dtr;
247         /** DSR pin mode. */
248         enum sp_dsr dsr;
249         /** XON/XOFF flow control mode. */
250         enum sp_xonxoff xon_xoff;
251 };
252
253 /**
254 @defgroup Enumeration Port enumeration
255 @{
256 */
257
258 /**
259  * Obtain a pointer to a new sp_port structure representing the named port.
260  *
261  * The user should allocate a variable of type "struct sp_port *" and pass a
262  * pointer to this to receive the result.
263  *
264  * The result should be freed after use by calling sp_free_port().
265  *
266  * If any error is returned, the variable pointed to by port_ptr will be set
267  * to NULL. Otherwise, it will be set to point to the newly allocated port.
268  *
269  * @return SP_OK upon success, a negative error code otherwise.
270  */
271 enum sp_return sp_get_port_by_name(const char *portname, struct sp_port **port_ptr);
272
273 /**
274  * Get the name of a port.
275  *
276  * The name returned is whatever is normally used to refer to a port on the
277  * current operating system; e.g. for Windows it will usually be a "COMn"
278  * device name, and for Unix it will be a device path beginning with "/dev/".
279  *
280  * @param port Pointer to port structure.
281  *
282  * @return The port name, or NULL if an invalid port is passed. The name
283  * string is part of the port structure and may not be used after the
284  * port structure has been freed.
285  */
286 char *sp_get_port_name(const struct sp_port *port);
287
288 /**
289  * Free a port structure obtained from sp_get_port_by_name() or sp_copy_port().
290  */
291 void sp_free_port(struct sp_port *port);
292
293 /**
294  * List the serial ports available on the system.
295  *
296  * The result obtained is an array of pointers to sp_port structures,
297  * terminated by a NULL. The user should allocate a variable of type
298  * "struct sp_port **" and pass a pointer to this to receive the result.
299  *
300  * The result should be freed after use by calling sp_free_port_list().
301  * If a port from the list is to be used after freeing the list, it must be
302  * copied first using sp_copy_port().
303  *
304  * If any error is returned, the variable pointed to by list_ptr will be set
305  * to NULL. Otherwise, it will be set to point to the newly allocated array.
306  *
307  * @return SP_OK upon success, a negative error code otherwise.
308  */
309 enum sp_return sp_list_ports(struct sp_port ***list_ptr);
310
311 /**
312  * Make a new copy of a sp_port structure.
313  *
314  * The user should allocate a variable of type "struct sp_port *" and pass a
315  * pointer to this to receive the result.
316  *
317  * The copy should be freed after use by calling sp_free_port().
318  *
319  * If any error is returned, the variable pointed to by copy_ptr will be set
320  * to NULL. Otherwise, it will be set to point to the newly allocated copy.
321  *
322  * @return SP_OK upon success, a negative error code otherwise.
323  */
324 enum sp_return sp_copy_port(const struct sp_port *port, struct sp_port **copy_ptr);
325
326 /**
327  * Free a port list obtained from sp_list_ports().
328  *
329  * This will also free all the sp_port structures referred to from the list;
330  * any that are to be retained must be copied first using sp_copy_port().
331  */
332 void sp_free_port_list(struct sp_port **ports);
333
334 /**
335  * @}
336  * @defgroup Ports Opening and closing ports
337  * @{
338  */
339
340 /**
341  * Open the specified serial port.
342  *
343  * @param port Pointer to port structure.
344  * @param flags Flags to use when opening the serial port.
345  *
346  * @return SP_OK upon success, a negative error code otherwise.
347  */
348 enum sp_return sp_open(struct sp_port *port, enum sp_mode flags);
349
350 /**
351  * Close the specified serial port.
352  *
353  * @return SP_OK upon success, a negative error code otherwise.
354  */
355 enum sp_return sp_close(struct sp_port *port);
356
357 /**
358  * @}
359  * @defgroup Configuration Setting port parameters
360  * @{
361  */
362
363 /**
364  * Get the current configuration of the specified serial port.
365  *
366  * The user should allocate a struct sp_port_config, then pass a pointer to it
367  * as the config parameter. The struct will be populated with the port
368  * configuration.
369  *
370  * Any setting that is in a state not recognised or supported by
371  * libserialport will have its value set to -1 in the struct.
372  *
373  * @return SP_OK upon success, a negative error code otherwise.
374  */
375 enum sp_return sp_get_config(struct sp_port *port, struct sp_port_config *config);
376
377 /**
378  * Set the configuration for the specified serial port.
379  *
380  * The user should populate a struct sp_port_config, then pass a pointer to it
381  * as the config parameter.
382  *
383  * To retain the current value of any setting, set that field to -1.
384  *
385  * @return SP_OK upon success, a negative error code otherwise.
386  */
387 enum sp_return sp_set_config(struct sp_port *port, const struct sp_port_config *config);
388
389 /**
390  * Set the baud rate for the specified serial port.
391  *
392  * @param port Pointer to port structure.
393  * @param baudrate Baud rate in bits per second.
394  *
395  * @return SP_OK upon success, a negative error code otherwise.
396  */
397 enum sp_return sp_set_baudrate(struct sp_port *port, int baudrate);
398
399 /**
400  * Set the number of data bits for the specified serial port.
401  *
402  * @param port Pointer to port structure.
403  * @param bits Number of data bits to use. Valid values are 5 to 8.
404  *
405  * @return SP_OK upon success, a negative error code otherwise.
406  */
407 enum sp_return sp_set_bits(struct sp_port *port, int bits);
408
409 /**
410  * Set the parity for the specified serial port.
411  *
412  * @param port Pointer to port structure.
413  * @param parity Parity setting to use.
414  *
415  * @return SP_OK upon success, a negative error code otherwise.
416  */
417 enum sp_return sp_set_parity(struct sp_port *port, enum sp_parity parity);
418
419 /**
420  * Set the number of stop bits for the specified port.
421  *
422  * @param port Pointer to port structure.
423  * @param stopbits Number of stop bits to use (1 or 2).
424  *
425  * @return SP_OK upon success, a negative error code otherwise.
426  */
427 enum sp_return sp_set_stopbits(struct sp_port *port, int stopbits);
428
429 /**
430  * Set the flow control type for the specified serial port.
431  *
432  * This function is a wrapper that sets the RTS, CTS, DTR, DSR and
433  * XON/XOFF settings as necessary for the specified flow control
434  * type. For more fine-grained control of these settings, use their
435  * individual configuration functions or the sp_set_config() function.
436  *
437  * @param port Pointer to port structure.
438  * @param flowcontrol Flow control setting to use.
439  *
440  * @return SP_OK upon success, a negative error code otherwise.
441  */
442 enum sp_return sp_set_flowcontrol(struct sp_port *port, enum sp_flowcontrol flowcontrol);
443
444 /**
445  * Set the RTS pin behaviour for the specified port.
446  *
447  * @param port Pointer to port structure.
448  * @param rts RTS pin mode.
449  *
450  * @return SP_OK upon success, a negative error code otherwise.
451  */
452 enum sp_return sp_set_rts(struct sp_port *port, enum sp_rts rts);
453
454 /**
455  * Set the CTS pin behaviour for the specified port.
456  *
457  * @param port Pointer to port structure.
458  * @param cts CTS pin mode.
459  *
460  * @return SP_OK upon success, a negative error code otherwise.
461  */
462 enum sp_return sp_set_cts(struct sp_port *port, enum sp_cts cts);
463
464 /**
465  * Set the DTR pin behaviour for the specified port.
466  *
467  * @param port Pointer to port structure.
468  * @param dtr DTR pin mode.
469  *
470  * @return SP_OK upon success, a negative error code otherwise.
471  */
472 enum sp_return sp_set_dtr(struct sp_port *port, enum sp_dtr dtr);
473
474 /**
475  * Set the RTS pin behaviour for the specified port.
476  *
477  * @param port Pointer to port structure.
478  * @param dsr DSR pin mode.
479  *
480  * @return SP_OK upon success, a negative error code otherwise.
481  */
482 enum sp_return sp_set_dsr(struct sp_port *port, enum sp_dsr dsr);
483
484 /**
485  * Configure XON/XOFF flow control for the specified port.
486  *
487  * @param port Pointer to port structure.
488  * @param xon_xoff XON/XOFF flow control mode.
489  *
490  * @return SP_OK upon success, a negative error code otherwise.
491  */
492 enum sp_return sp_set_xon_xoff(struct sp_port *port, enum sp_xonxoff xon_xoff);
493
494 /**
495  * @}
496  * @defgroup Data Reading, writing, and flushing data
497  * @{
498 */
499
500 /**
501  * Read bytes from the specified serial port.
502  *
503  * Note that this function may return after reading less than the specified
504  * number of bytes; it is the user's responsibility to iterate as necessary
505  * in this case.
506  *
507  * @param port Pointer to port structure.
508  * @param buf Buffer in which to store the bytes read.
509  * @param count Maximum number of bytes to read.
510  *
511  * @return The number of bytes read on success, or a negative error code.
512  */
513 enum sp_return sp_read(struct sp_port *port, void *buf, size_t count);
514
515 /**
516  * Write bytes to the specified serial port.
517  *
518  * Note that this function may return after writing less than the specified
519  * number of bytes; it is the user's responsibility to iterate as necessary
520  * in this case.
521  *
522  * @param port Pointer to port structure.
523  * @param buf Buffer containing the bytes to write.
524  * @param count Maximum number of bytes to write.
525  *
526  * @return The number of bytes written on success, or a negative error code.
527  */
528 enum sp_return sp_write(struct sp_port *port, const void *buf, size_t count);
529
530 /**
531  * Flush serial port buffers. Data in the selected buffer(s) is discarded.
532  *
533  * @param port Pointer to port structure.
534  * @param buffers Which buffer(s) to flush.
535  *
536  * @return SP_OK upon success, a negative error code otherwise.
537  */
538 enum sp_return sp_flush(struct sp_port *port, enum sp_buffer buffers);
539
540 /**
541  * Wait for buffered data to be transmitted.
542  *
543  * @param port Pointer to port structure.
544  *
545  * @return SP_OK upon success, a negative error code otherwise.
546  */
547 enum sp_return sp_drain(struct sp_port *port);
548
549 /**
550  * @}
551  * @defgroup Signal Port signalling operations
552  * @{
553  */
554
555 /**
556  * Gets the status of the control signals for the specified port.
557  *
558  * The user should allocate a variable of type "enum sp_signal" and pass a
559  * pointer to this variable to receive the result. The result is a bitmask
560  * in which individual signals can be checked by bitwise OR with values of
561  * the sp_signal enum.
562  *
563  * @param port Pointer to port structure.
564  * @param signals Pointer to variable to receive result.
565  *
566  * @return SP_OK upon success, a negative error code otherwise.
567  */
568 enum sp_return sp_get_signals(struct sp_port *port, enum sp_signal *signals);
569
570 /**
571  * Put the port transmit line into the break state.
572  *
573  * @param port Pointer to port structure.
574  *
575  * @return SP_OK upon success, a negative error code otherwise.
576  */
577 enum sp_return sp_start_break(struct sp_port *port);
578
579 /**
580  * Take the port transmit line out of the break state.
581  *
582  * @param port Pointer to port structure.
583  *
584  * @return SP_OK upon success, a negative error code otherwise.
585  */
586 enum sp_return sp_end_break(struct sp_port *port);
587
588 /**
589  * @}
590  * @defgroup Errors Obtaining error information
591  * @{
592 */
593
594 /**
595  * Get the error code for a failed operation.
596  *
597  * In order to obtain the correct result, this function should be called
598  * straight after the failure, before executing any other system operations.
599  *
600  * @return The system's numeric code for the error that caused the last
601  *         operation to fail.
602  */
603 int sp_last_error_code(void);
604
605 /**
606  * Get the error message for a failed operation.
607  *
608  * In order to obtain the correct result, this function should be called
609  * straight after the failure, before executing other system operations.
610  *
611  * @return The system's message for the error that caused the last
612  *         operation to fail. This string may be allocated by the function,
613  *         and should be freed after use by calling sp_free_error_message().
614  */
615 char *sp_last_error_message(void);
616
617 /**
618  * Free an error message returned by sp_last_error_message().
619  */
620 void sp_free_error_message(char *message);
621
622 /**
623  * Set the handler function for library debugging messages.
624  *
625  * Debugging messages are generated by the library during each operation,
626  * to help in diagnosing problems. The handler will be called for each
627  * message. The handler can be set to NULL to ignore all debug messages.
628  *
629  * The handler function should accept a format string and variable length
630  * argument list, in the same manner as e.g. printf().
631  *
632  * The default handler is sp_default_debug_handler().
633  */
634 void sp_set_debug_handler(void (*handler)(const char *format, ...));
635
636 /**
637  * Default handler function for library debugging messages.
638  *
639  * This function prints debug messages to the standard error stream if the
640  * environment variable LIBSERIALPORT_DEBUG is set. Otherwise, they are
641  * ignored.
642  */
643 void sp_default_debug_handler(const char *format, ...);
644
645 /** @} */
646
647 #ifdef __cplusplus
648 }
649 #endif
650
651 #endif