123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325 |
- /**
- * @file SerialPortBase.h
- * @author itas109 (itas109@qq.com) \n\n
- * Blog : https://blog.csdn.net/itas109 \n
- * Github : https://github.com/itas109 \n
- * QQ Group : 12951803
- * @brief the CSerialPort Base class 串口基类
- * @date 2020-04-29
- * @copyright The CSerialPort is Copyright (C) 2021 itas109. \n
- * Contact: itas109@qq.com \n\n
- * You may use, distribute and copy the CSerialPort under the terms of \n
- * GNU Lesser General Public License version 3, which is displayed below.
- */
- #ifndef __CSERIALPORTBASE_H__
- #define __CSERIALPORTBASE_H__
- #include "SerialPort_global.h"
- #include <string>
- /**
- * @brief the CSerialPort Base class 串口基类
- *
- */
- class CSerialPortBase
- {
- public:
- /**
- * @brief Construct a new CSerialPortBase object 构造函数
- *
- */
- CSerialPortBase(){
- lastError = 0;
- m_minByteReadNotify = 1;
- m_operateMode = itas109::AsynchronousOperate;
- }
- /**
- * @brief Construct a new CSerialPortBase object 通过串口名称构造函数
- *
- * @param portName [in] the port name 串口名称 Windows:COM1 Linux:/dev/ttyS0
- */
- CSerialPortBase(const std::string &portName){
- lastError = 0;
- m_minByteReadNotify = 1;
- m_operateMode = itas109::AsynchronousOperate;
- }
- /**
- * @brief Destroy the CSerialPortBase object 析构函数
- *
- */
- virtual ~CSerialPortBase(){};
- /**
- * @brief parameter init 参数初始化
- *
- */
- virtual void construct() = 0;
- /**
- * @brief init 初始化函数
- *
- * @param portName [in] the port name串口名称 Windows:COM1 Linux:/dev/ttyS0
- * @param baudRate [in] the baudRate 波特率
- * @param parity [in] the parity 校验位
- * @param dataBits [in] the dataBits 数据位
- * @param stopbits [in] the stopbits 停止位
- * @param flowControl [in] flowControl type 流控制
- * @param readBufferSize [in] the read buffer size 读取缓冲区大小
- */
- virtual void init(std::string portName,
- int baudRate,
- itas109::Parity parity,
- itas109::DataBits dataBits,
- itas109::StopBits stopbits,
- itas109::FlowControl flowControl,
- int64_t readBufferSize) = 0;
- /**
- * @brief Set the Operate Mode object 设置串口操作模式
- *
- * @param operateMode [in] the operate mode 串口操作模式 {@link itas109::OperateMode}
- */
- virtual void setOperateMode(itas109::OperateMode operateMode){
- m_operateMode = operateMode;
- }
- /**
- * @brief open serial port 打开串口
- *
- * @return
- * @retval true open success 打开成功
- * @retval false open failed 打开失败
- */
- virtual bool openPort() = 0;
- /**
- * @brief close 关闭串口
- *
- */
- virtual void closePort() = 0;
- /**
- * @brief if serial port is open success 串口是否打开成功
- *
- * @return
- * @retval true serial port open success 串口打开成功
- * @retval false serial port open failed 串口打开失败
- */
- virtual bool isOpened() = 0;
- /**
- * @brief read specified length data 读取指定长度数据
- *
- * @param data [out] read data result 读取结果
- * @param maxSize [in] read length 读取长度
- * @return return number Of bytes read 返回读取字节数
- * @retval -1 read error 读取错误
- * @retval [other] return number Of bytes read 返回读取字节数
- */
- virtual int readData(char *data, int maxSize) = 0;
- /**
- * @brief read all data 读取所有数据
- *
- * @param data [out] read data result 读取结果
- * @return return number Of bytes read 返回读取字节数
- * @retval -1 read error 读取错误
- * @retval [other] return number Of bytes read 返回读取字节数
- */
- virtual int readAllData(char *data) = 0;
- /**
- * @brief read line data 读取一行字符串
- * @todo Not implemented 未实现
- *
- * @param data
- * @param maxSize
- * @return int
- */
- virtual int readLineData(char *data, int maxSize) = 0;
- /**
- * @brief write specified lenfth data 写入指定长度数据
- *
- * @param data [in] write data 待写入数据
- * @param maxSize [in] wtite length 写入长度
- * @return return number Of bytes write 返回写入字节数
- * @retval -1 read error 写入错误
- * @retval [other] return number Of bytes write 返回写入字节数
- */
- virtual int writeData(const char *data, int maxSize) = 0;
- /**
- * @brief Set Debug Model 设置调试模式
- * @details output serial port read and write details info 输出串口读写的详细信息
- *
- * @param isDebug true if enable true为启用
- */
- virtual void setDebugModel(bool isDebug) = 0;
- /**
- * @brief Set the Read Time Interval object
- * @details use timer import effectiveness 使用定时器提高效率
- *
- * @param msecs read time micro second 读取间隔时间,单位:毫秒
- */
- virtual void setReadTimeInterval(int msecs) = 0;
- /**
- * @brief setMinByteReadNotify set minimum byte of read notify 设置读取通知触发最小字节数
- * @param minByteReadNotify minimum byte of read notify 读取通知触发最小字节数
- */
- virtual void setMinByteReadNotify(unsigned int minByteReadNotify) = 0;
- /**
- * @brief getMinByteReadNotify get minimum byte of read notify 获取读取通知触发最小字节数
- * @return minimum byte of read notify 读取通知触发最小字节数
- */
- virtual unsigned int getMinByteReadNotify(){
- return m_minByteReadNotify;
- }
- /**
- * @brief Get the Last Error object 获取最后的错误代码
- *
- * @return return last error code, refrence {@link itas109::SerialPortError} 错误代码
- */
- virtual int getLastError() const{
- return lastError;
- }
- /**
- * @brief clear error 清除错误信息
- *
- */
- virtual void clearError(){}
- /**
- * @brief Set the Port Name object 设置串口名称
- *
- * @param portName [in] the port name 串口名称 Windows:COM1 Linux:/dev/ttyS0
- */
- virtual void setPortName(std::string portName) = 0;
- /**
- * @brief Get the Port Name object 获取串口名称
- *
- * @return return port name 返回串口名称
- */
- virtual std::string getPortName() const = 0;
- /**
- * @brief Set the Baud Rate object 设置波特率
- *
- * @param baudRate [in] the baudRate 波特率
- */
- virtual void setBaudRate(int baudRate) = 0;
- /**
- * @brief Get the Baud Rate object 获取波特率
- *
- * @return return baudRate 返回波特率
- */
- virtual int getBaudRate() const = 0;
- /**
- * @brief Set the Parity object 设置校验位
- *
- * @param parity [in] the parity 校验位 {@link itas109::Parity}
- */
- virtual void setParity(itas109::Parity parity) = 0;
- /**
- * @brief Get the Parity object 获取校验位
- *
- * @return return parity 返回校验位 {@link itas109::Parity}
- */
- virtual itas109::Parity getParity() const = 0;
- /**
- * @brief Set the Data Bits object 设置数据位
- *
- * @param dataBits [in] the dataBits 数据位 {@link itas109::DataBits}
- */
- virtual void setDataBits(itas109::DataBits dataBits) = 0;
- /**
- * @brief Get the Data Bits object 获取数据位
- *
- * @return return dataBits 返回数据位 {@link itas109::DataBits}
- */
- virtual itas109::DataBits getDataBits() const = 0;
- /**
- * @brief Set the Stop Bits object 设置停止位
- *
- * @param stopbits [in] the stopbits 停止位 {@link itas109::StopBits}
- */
- virtual void setStopBits(itas109::StopBits stopbits) = 0;
- /**
- * @brief Get the Stop Bits object 获取停止位
- *
- * @return return stopbits 返回停止位 {@link itas109::StopBits}
- */
- virtual itas109::StopBits getStopBits() const = 0;
- /**
- * @brief Set the Flow Control object 设置流控制
- *
- * @param flowControl [in]
- */
- virtual void setFlowControl(itas109::FlowControl flowControl) = 0;
- /**
- * @brief Get the Flow Control object 获取流控制
- *
- * @return itas109::FlowControl
- */
- virtual itas109::FlowControl getFlowControl() const = 0;
- /**
- * @brief Set the Read Buffer Size object 设置读取缓冲区大小
- *
- * @param size [in] read buffer size 读取缓冲区大小
- */
- virtual void setReadBufferSize(int64_t size) = 0;
- /**
- * @brief Get the Read Buffer Size object 获取读取缓冲区大小
- *
- * @return return read buffer size 返回读取缓冲区大小
- */
- virtual int64_t getReadBufferSize() const = 0;
- /**
- * @brief Set the Dtr object 设置DTR
- *
- * @param set [in]
- */
- virtual void setDtr(bool set = true) = 0;
- /**
- * @brief Set the Rts object 设置RTS
- *
- * @param set [in]
- */
- virtual void setRts(bool set = true) = 0;
- /**
- * @brief Get the Version object 获取版本信息
- *
- * @return return version 返回版本信息
- */
- std::string getVersion();
- protected:
- /**
- * @brief lock 锁
- *
- */
- void lock();
- /**
- * @brief unlock 解锁
- *
- */
- void unlock();
- protected:
- int lastError; ///< last error code 最后的错误代码
- itas109::OperateMode m_operateMode; ///< operate mode 串口操作类型
- unsigned int m_minByteReadNotify; ///< minimum byte of read notify 读取通知触发最小字节数
- private:
- };
- #endif //__CSERIALPORTBASE_H__
|