46#include <serial/v8stdint.h>
48#define THROW(exceptionClass, message) throw exceptionClass(__FILE__, \
80 stopbits_one_point_five
102 static uint32_t max() {
return std::numeric_limits<uint32_t>::max();}
113 return Timeout(max(), timeout, 0, timeout, 0);
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)
181 uint32_t baudrate = 9600,
265 read (uint8_t *buffer,
size_t size);
279 read (std::vector<uint8_t> &buffer,
size_t size = 1);
293 read (std::string &buffer,
size_t size = 1);
322 readline (std::string &buffer,
size_t size = 65536, std::string eol =
"\n");
337 readline (
size_t size = 65536, std::string eol =
"\n");
353 std::vector<std::string>
354 readlines (
size_t size = 65536, std::string eol =
"\n");
372 write (
const uint8_t *data,
size_t size);
387 write (
const std::vector<uint8_t> &data);
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)
469 Timeout timeout(inter_byte_timeout, read_timeout_constant,
470 read_timeout_multiplier, write_timeout_constant,
471 write_timeout_multiplier);
660 class ScopedReadLock;
661 class ScopedWriteLock;
665 read_ (uint8_t *buffer,
size_t size);
668 write_ (
const uint8_t *data,
size_t length);
679 std::stringstream ss;
680 ss <<
"SerialException " << description <<
" failed.";
685 virtual const char* what ()
const throw () {
686 return e_what_.c_str();
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);
706 char * error_str = strerror(errnum);
708 ss <<
"IO Exception (" << errno_ <<
"): " << error_str;
709 ss <<
", file " << file_ <<
", line " << line_ <<
".";
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_ <<
".";
720 IOException (
const IOException& other) : line_(other.line_), e_what_(other.e_what_), errno_(other.errno_) {}
722 int getErrorNumber ()
const {
return errno_; }
724 virtual const char* what ()
const throw () {
725 return e_what_.c_str();
736 std::stringstream ss;
737 ss <<
"PortNotOpenedException " << description <<
" failed.";
742 virtual const char* what ()
const throw () {
743 return e_what_.c_str();
Class that provides a portable serial port interface.
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.
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.
parity_t
Enumeration defines the possible parity types for the serial port.
flowcontrol_t
Enumeration defines the possible flowcontrol types for the serial port.
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.
Structure that describes a serial device.
std::string description
Human readable description of serial device if available.
std::string port
Address of the serial port (this can be passed to the constructor of Serial).
std::string hardware_id
Hardware ID (e.g.
Structure for setting the timeout of the serial port, times are in milliseconds.
uint32_t read_timeout_constant
A constant number of milliseconds to wait after calling read.
uint32_t write_timeout_multiplier
A multiplier against the number of requested bytes to wait after calling write.
uint32_t read_timeout_multiplier
A multiplier against the number of requested bytes to wait after calling read.
static Timeout simpleTimeout(uint32_t timeout)
Convenience function to generate Timeout structs using a single absolute timeout.
uint32_t write_timeout_constant
A constant number of milliseconds to wait after calling write.
uint32_t inter_byte_timeout
Number of milliseconds between bytes received to timeout on.