OpenCPN Partial API docs
Loading...
Searching...
No Matches
serial.h
Go to the documentation of this file.
1
36#ifndef SERIAL_H
37#define SERIAL_H
38
39#include <limits>
40#include <vector>
41#include <string>
42#include <cstring>
43#include <sstream>
44#include <exception>
45#include <stdexcept>
46#include <serial/v8stdint.h>
47
48#define THROW(exceptionClass, message) throw exceptionClass(__FILE__, \
49__LINE__, (message) )
50
51namespace serial {
52
56typedef enum {
57 fivebits = 5,
58 sixbits = 6,
59 sevenbits = 7,
60 eightbits = 8
61} bytesize_t;
62
66typedef enum {
67 parity_none = 0,
68 parity_odd = 1,
69 parity_even = 2,
70 parity_mark = 3,
71 parity_space = 4
72} parity_t;
73
77typedef enum {
78 stopbits_one = 1,
79 stopbits_two = 2,
80 stopbits_one_point_five
81} stopbits_t;
82
86typedef enum {
87 flowcontrol_none = 0,
88 flowcontrol_software,
89 flowcontrol_hardware
90} flowcontrol_t;
91
98struct Timeout {
99#ifdef max
100# undef max
101#endif
102 static uint32_t max() {return std::numeric_limits<uint32_t>::max();}
112 static Timeout simpleTimeout(uint32_t timeout) {
113 return Timeout(max(), timeout, 0, timeout, 0);
114 }
115
130
131 explicit Timeout (uint32_t inter_byte_timeout_=0,
132 uint32_t read_timeout_constant_=0,
133 uint32_t read_timeout_multiplier_=0,
134 uint32_t write_timeout_constant_=0,
135 uint32_t write_timeout_multiplier_=0)
136 : inter_byte_timeout(inter_byte_timeout_),
137 read_timeout_constant(read_timeout_constant_),
138 read_timeout_multiplier(read_timeout_multiplier_),
139 write_timeout_constant(write_timeout_constant_),
140 write_timeout_multiplier(write_timeout_multiplier_)
141 {}
142};
143
147class Serial {
148public:
180 Serial (const std::string &port = "",
181 uint32_t baudrate = 9600,
182 Timeout timeout = Timeout(),
183 bytesize_t bytesize = eightbits,
184 parity_t parity = parity_none,
185 stopbits_t stopbits = stopbits_one,
186 flowcontrol_t flowcontrol = flowcontrol_none);
187
189 virtual ~Serial ();
190
204 void
206
211 bool
212 isOpen () const;
213
215 void
217
219 size_t
221
226 bool
228
233 void
234 waitByteTimes (size_t count);
235
264 size_t
265 read (uint8_t *buffer, size_t size);
266
278 size_t
279 read (std::vector<uint8_t> &buffer, size_t size = 1);
280
292 size_t
293 read (std::string &buffer, size_t size = 1);
294
305 std::string
306 read (size_t size = 1);
307
321 size_t
322 readline (std::string &buffer, size_t size = 65536, std::string eol = "\n");
323
336 std::string
337 readline (size_t size = 65536, std::string eol = "\n");
338
353 std::vector<std::string>
354 readlines (size_t size = 65536, std::string eol = "\n");
355
371 size_t
372 write (const uint8_t *data, size_t size);
373
386 size_t
387 write (const std::vector<uint8_t> &data);
388
401 size_t
402 write (const std::string &data);
403
412 void
413 setPort (const std::string &port);
414
421 std::string
422 getPort () const;
423
460 void
461 setTimeout (Timeout &timeout);
462
464 void
465 setTimeout (uint32_t inter_byte_timeout, uint32_t read_timeout_constant,
466 uint32_t read_timeout_multiplier, uint32_t write_timeout_constant,
467 uint32_t write_timeout_multiplier)
468 {
469 Timeout timeout(inter_byte_timeout, read_timeout_constant,
470 read_timeout_multiplier, write_timeout_constant,
471 write_timeout_multiplier);
472 return setTimeout(timeout);
473 }
474
482 Timeout
483 getTimeout () const;
484
497 void
498 setBaudrate (uint32_t baudrate);
499
508 uint32_t
509 getBaudrate () const;
510
519 void
521
529 getBytesize () const;
530
538 void
540
548 getParity () const;
549
557 void
559
567 getStopbits () const;
568
577 void
579
588
590 void
592
594 void
596
598 void
600
602 void
603 sendBreak (int duration);
604
606 void
607 setBreak (bool level = true);
608
610 void
611 setRTS (bool level = true);
612
614 void
615 setDTR (bool level = true);
616
631 bool
633
635 bool
637
639 bool
641
643 bool
645
647 bool
649
650private:
651 // Disable copy constructors
652 Serial(const Serial&);
653 Serial& operator=(const Serial&);
654
655 // Pimpl idiom, d_pointer
656 class SerialImpl;
657 SerialImpl *pimpl_;
658
659 // Scoped Lock Classes
660 class ScopedReadLock;
661 class ScopedWriteLock;
662
663 // Read common function
664 size_t
665 read_ (uint8_t *buffer, size_t size);
666 // Write common function
667 size_t
668 write_ (const uint8_t *data, size_t length);
669
670};
671
672class SerialException : public std::exception
673{
674 // Disable copy constructors
675 SerialException& operator=(const SerialException&);
676 std::string e_what_;
677public:
678 SerialException (const char *description) {
679 std::stringstream ss;
680 ss << "SerialException " << description << " failed.";
681 e_what_ = ss.str();
682 }
683 SerialException (const SerialException& other) : e_what_(other.e_what_) {}
684 virtual ~SerialException() throw() {}
685 virtual const char* what () const throw () {
686 return e_what_.c_str();
687 }
688};
689
690class IOException : public std::exception
691{
692 // Disable copy constructors
693 IOException& operator=(const IOException&);
694 std::string file_;
695 int line_;
696 std::string e_what_;
697 int errno_;
698public:
699 explicit IOException (std::string file, int line, int errnum)
700 : file_(file), line_(line), errno_(errnum) {
701 std::stringstream ss;
702#if defined(_WIN32) && !defined(__MINGW32__)
703 char error_str [1024];
704 strerror_s(error_str, 1024, errnum);
705#else
706 char * error_str = strerror(errnum);
707#endif
708 ss << "IO Exception (" << errno_ << "): " << error_str;
709 ss << ", file " << file_ << ", line " << line_ << ".";
710 e_what_ = ss.str();
711 }
712 explicit IOException (std::string file, int line, const char * description)
713 : file_(file), line_(line), errno_(0) {
714 std::stringstream ss;
715 ss << "IO Exception: " << description;
716 ss << ", file " << file_ << ", line " << line_ << ".";
717 e_what_ = ss.str();
718 }
719 virtual ~IOException() throw() {}
720 IOException (const IOException& other) : line_(other.line_), e_what_(other.e_what_), errno_(other.errno_) {}
721
722 int getErrorNumber () const { return errno_; }
723
724 virtual const char* what () const throw () {
725 return e_what_.c_str();
726 }
727};
728
729class PortNotOpenedException : public std::exception
730{
731 // Disable copy constructors
733 std::string e_what_;
734public:
735 PortNotOpenedException (const char * description) {
736 std::stringstream ss;
737 ss << "PortNotOpenedException " << description << " failed.";
738 e_what_ = ss.str();
739 }
740 PortNotOpenedException (const PortNotOpenedException& other) : e_what_(other.e_what_) {}
741 virtual ~PortNotOpenedException() throw() {}
742 virtual const char* what () const throw () {
743 return e_what_.c_str();
744 }
745};
746
750struct PortInfo {
751
753 std::string port;
754
756 std::string description;
757
759 std::string hardware_id;
760
761};
762
771std::vector<PortInfo>
773
774} // namespace serial
775
776#endif
Class that provides a portable serial port interface.
Definition serial.h:147
size_t readline(std::string &buffer, size_t size=65536, std::string eol="\n")
Reads in a line or until a given delimiter has been processed.
size_t read(uint8_t *buffer, size_t size)
Read a given amount of bytes from the serial port into a given buffer.
std::string readline(size_t size=65536, std::string eol="\n")
Reads in a line or until a given delimiter has been processed.
void setPort(const std::string &port)
Sets the serial port identifier.
bool getRI()
Returns the current status of the RI line.
size_t write(const uint8_t *data, size_t size)
Write a string to the serial port.
void waitByteTimes(size_t count)
Block for a period of time corresponding to the transmission time of count characters at present seri...
size_t read(std::vector< uint8_t > &buffer, size_t size=1)
Read a given amount of bytes from the serial port into a give buffer.
void flush()
Flush the input and output buffers.
void setTimeout(uint32_t inter_byte_timeout, uint32_t read_timeout_constant, uint32_t read_timeout_multiplier, uint32_t write_timeout_constant, uint32_t write_timeout_multiplier)
Sets the timeout for reads and writes.
Definition serial.h:465
void setBaudrate(uint32_t baudrate)
Sets the baudrate for the serial port.
void close()
Closes the serial port.
bytesize_t getBytesize() const
Gets the bytesize for the serial port.
bool waitReadable()
Block until there is serial data to read or read_timeout_constant number of milliseconds have elapsed...
bool getCD()
Returns the current status of the CD line.
void setTimeout(Timeout &timeout)
Sets the timeout for reads and writes using the Timeout struct.
void setRTS(bool level=true)
Set the RTS handshaking line to the given level.
void setBreak(bool level=true)
Set the break condition to a given level.
virtual ~Serial()
Destructor.
void setBytesize(bytesize_t bytesize)
Sets the bytesize for the serial port.
size_t write(const std::string &data)
Write a string to the serial port.
bool getDSR()
Returns the current status of the DSR line.
void flushOutput()
Flush only the output buffer.
bool getCTS()
Returns the current status of the CTS line.
size_t write(const std::vector< uint8_t > &data)
Write a string to the serial port.
bool waitForChange()
Blocks until CTS, DSR, RI, CD changes or something interrupts it.
std::vector< std::string > readlines(size_t size=65536, std::string eol="\n")
Reads in multiple lines until the serial port times out.
void flushInput()
Flush only the input buffer.
stopbits_t getStopbits() const
Gets the stopbits for the serial port.
void sendBreak(int duration)
Sends the RS-232 break signal.
void setDTR(bool level=true)
Set the DTR handshaking line to the given level.
size_t available()
Return the number of characters in the buffer.
void open()
Opens the serial port as long as the port is set and the port isn't already open.
parity_t getParity() const
Gets the parity for the serial port.
Timeout getTimeout() const
Gets the timeout for reads in seconds.
void setStopbits(stopbits_t stopbits)
Sets the stopbits for the serial port.
uint32_t getBaudrate() const
Gets the baudrate for the serial port.
size_t read(std::string &buffer, size_t size=1)
Read a given amount of bytes from the serial port into a give buffer.
void setFlowcontrol(flowcontrol_t flowcontrol)
Sets the flow control for the serial port.
bool isOpen() const
Gets the open status of the serial port.
std::string read(size_t size=1)
Read a given amount of bytes from the serial port and return a string containing the data.
Serial(const std::string &port="", uint32_t baudrate=9600, Timeout timeout=Timeout(), bytesize_t bytesize=eightbits, parity_t parity=parity_none, stopbits_t stopbits=stopbits_one, flowcontrol_t flowcontrol=flowcontrol_none)
Creates a Serial object and opens the port if a port is specified, otherwise it remains closed until ...
flowcontrol_t getFlowcontrol() const
Gets the flow control for the serial port.
void setParity(parity_t parity)
Sets the parity for the serial port.
std::string getPort() const
Gets the serial port identifier.
bytesize_t
Enumeration defines the possible bytesizes for the serial port.
Definition serial.h:56
parity_t
Enumeration defines the possible parity types for the serial port.
Definition serial.h:66
flowcontrol_t
Enumeration defines the possible flowcontrol types for the serial port.
Definition serial.h:86
std::vector< PortInfo > list_ports()
Lists the serial ports available on the system.
stopbits_t
Enumeration defines the possible stopbit types for the serial port.
Definition serial.h:77
Structure that describes a serial device.
Definition serial.h:750
std::string description
Human readable description of serial device if available.
Definition serial.h:756
std::string port
Address of the serial port (this can be passed to the constructor of Serial).
Definition serial.h:753
std::string hardware_id
Hardware ID (e.g.
Definition serial.h:759
Structure for setting the timeout of the serial port, times are in milliseconds.
Definition serial.h:98
uint32_t read_timeout_constant
A constant number of milliseconds to wait after calling read.
Definition serial.h:119
uint32_t write_timeout_multiplier
A multiplier against the number of requested bytes to wait after calling write.
Definition serial.h:129
uint32_t read_timeout_multiplier
A multiplier against the number of requested bytes to wait after calling read.
Definition serial.h:123
static Timeout simpleTimeout(uint32_t timeout)
Convenience function to generate Timeout structs using a single absolute timeout.
Definition serial.h:112
uint32_t write_timeout_constant
A constant number of milliseconds to wait after calling write.
Definition serial.h:125
uint32_t inter_byte_timeout
Number of milliseconds between bytes received to timeout on.
Definition serial.h:117