serial/include/serial.h

201 lines
6.0 KiB
C
Raw Normal View History

2024-09-23 19:50:16 +08:00
#ifndef SERIAL_H
#define SERIAL_H
#include <chrono>
2024-09-23 19:50:16 +08:00
#include <cstring>
#include <format>
#include <functional>
2024-09-23 19:50:16 +08:00
#include <iostream>
#include <ranges>
2024-09-23 19:50:16 +08:00
#include <string>
#include <string_view>
2024-09-23 19:50:16 +08:00
#include <thread>
#include <type_traits>
#include <vector>
#include <expected>
2024-09-23 19:50:16 +08:00
#include "serialib.h"
2024-09-23 19:50:16 +08:00
using namespace std::literals::chrono_literals;
namespace ranges = std::ranges;
namespace views = std::views;
namespace serial {
static std::vector<std::string> GetUsbPorts() {
std::vector<std::string> portArray;
std::string comname;
std::string showname;
ranges::for_each(views::iota(1, 256), [&](int i) {
std::format_to(std::back_inserter(comname), "\\\\.\\COM{}", i);
std::format_to(std::back_inserter(showname), "COM{}", i);
const HANDLE m_handle = ::CreateFileA(
comname.c_str(), static_cast<DWORD>(GENERIC_WRITE) | GENERIC_READ,
0U, nullptr, OPEN_EXISTING, 0U, nullptr);
if (m_handle != INVALID_HANDLE_VALUE) {
portArray.push_back(showname);
CloseHandle(m_handle);
2024-09-23 19:50:16 +08:00
}
comname.clear();
showname.clear();
});
return portArray;
}
template <typename T>
concept SupportString = requires {
std::is_same_v<T, const char *>;
std::is_same_v<T, std::string>;
};
enum class [[maybe_unused]] SerialErrorCode{
SUCCESS,
TIMEOUT,
SETTIMEOUTERROR,
WRITEINGERROR,
READINGERROR,
};
class Serial {
private:
serialib ser;
const char *endChar = "\r\n";
std::function<void(const std::string &)> logCallBack;
bool removeEcho = true;
public:
Serial() = default;
~Serial() { CloseDevice(); }
Serial(const Serial &other) = delete;
Serial(Serial &&other) = delete;
Serial &operator=(const Serial &other) = delete;
Serial &operator=(Serial &&other) = delete;
auto SetRemoveEcho(bool remove) { removeEcho = remove; }
static std::string GetTimeNow() {
auto now = std::chrono::system_clock::now();
auto now_c = std::chrono::system_clock::to_time_t(now);
char buffer[32];
auto _ = ctime_s(buffer, 32, &now_c);
return buffer;
2024-09-23 19:50:16 +08:00
}
bool IsOpen() { return ser.isDeviceOpen(); }
2024-09-30 10:49:51 +08:00
template<SupportString T>
bool OpenDeviceDelay(T portName, unsigned int baudRate, int delay){
std::this_thread::sleep_for(std::chrono::seconds(delay));
return OpenDevice(portName, baudRate);
}
template <SupportString T>
bool OpenDevice(T portName, unsigned int bauds = 115200) {
std::string reallyPortName;
std::format_to(std::back_inserter(reallyPortName), "\\\\.\\{}",
portName);
if (ser.isDeviceOpen())
return true;
int code = ser.openDevice(reallyPortName.c_str(), bauds);
if (code == 1) {
return true;
} else {
return false;
}
}
2024-09-23 19:50:16 +08:00
void Log(const std::string &log) const {
if (logCallBack) {
auto msg = GetTimeNow() + " " + log;
logCallBack(msg);
}
}
2024-09-23 19:50:16 +08:00
void
SetLogCallBack(const std::function<void(const std::string &)> &callBack) {
logCallBack = callBack;
}
void CloseDevice() {
if (!ser.isDeviceOpen())
return;
ser.closeDevice();
}
2024-09-23 19:50:16 +08:00
template <SupportString T>
std::expected<std::string, SerialErrorCode> DelayGetResponse(int delayTime, T command,
int timeout = 50) {
std::this_thread::sleep_for(std::chrono::milliseconds(delayTime));
return GetAtResponse(command, timeout);
}
template <SupportString T>
std::expected<std::string, SerialErrorCode> GetAtResponse(T command, int timeout = 50) {
ser.flushReceiver();
std::string reallyCommand;
if constexpr (std::is_same_v<T, std::string>) {
reallyCommand = command + endChar;
} else {
reallyCommand = std::string(command) + endChar;
2024-09-23 19:50:16 +08:00
}
ser.writeString(reallyCommand.c_str());
Log("Send: " + reallyCommand);
std::this_thread::sleep_for(10ms);
auto availableSize = ser.available();
char *buffer = new char[availableSize + 1];
std::memset(buffer, 0, availableSize);
auto size = ser.readBytes(buffer, availableSize, timeout);
if (size > 0) {
buffer[size] = '\0';
std::string response = std::string(buffer);
Log("Receive: " + response);
delete[] buffer;
if (removeEcho)
response.replace(0, reallyCommand.length(), "");
return response;
2024-09-23 19:50:16 +08:00
}
delete[] buffer;
return std::unexpected(SerialErrorCode::TIMEOUT);
}
2024-09-23 19:50:16 +08:00
template <SupportString T>
auto GetAtResponseRepeat(T command, int timeout = 200, int repeatTime = 1)
-> void {
for (int i = 0; i <= repeatTime; i++) {
auto _ = GetAtResponse(command, timeout);
2024-09-23 19:50:16 +08:00
}
}
template <SupportString T>
bool GetAtUntil(T command, T expect = "OK", int timeout = 200) {
auto endTime = std::chrono::system_clock::now() +
std::chrono::milliseconds(timeout);
ser.flushReceiver();
std::string reallyCommand;
if constexpr (std::is_same_v<T, std::string>) {
reallyCommand = command + endChar;
} else {
reallyCommand = std::string(command) + endChar;
}
ser.writeString(reallyCommand.c_str());
Log("Send : " + reallyCommand);
while (std::chrono::system_clock::now() < endTime) {
2024-09-23 19:50:16 +08:00
std::this_thread::sleep_for(10ms);
2024-09-24 16:59:08 +08:00
auto availableSize = ser.available();
auto buffer = new char[availableSize + 1];
2024-09-24 16:59:08 +08:00
auto size = ser.readBytes(buffer, availableSize, timeout);
buffer[size] = '\0';
auto str = std::string(buffer);
delete[] buffer;
if (size > 0)
Log("Receive: " + str);
if (str.find(expect) != std::string::npos) {
return true;
}
}
return false;
}
};
} // namespace serial
2024-09-23 19:50:16 +08:00
#endif // SERIAL_H