我有以下方法(位于类中)取自:https ://gitorious.org/serial-port/serial-port/source/03e161e0b788d593773b33006e01333946aa7e13:1_simple/SimpleSerial.h#L46
boost::asio::serial_port serial;
// [...]
std::string readLine() {
char c;
std::string result;
while(true) {
asio::read(serial,asio::buffer(&c,1));
switch(c)
{
case '\r':
result+=c;
break;
case '\n':
result+=c;
return result;
default:
result+=c;
}
}
return result;
}
正如它所写的那样,“代码是为简单而优化的,而不是速度”。所以我正在考虑优化这段代码。但是我没有得到任何有用的结果。我的一般做法是这样的:
void readUntil(const std::string& delim) {
using namespace boost;
asio::streambuf bf;
size_t recBytes = asio::read_until(serial, bf, boost::regex(delim));
[...]
'delim' 将是 "\n"。但我不知道如何将 asio::streambuf 转换为 std::string。此外,我不知道这种方法是否会丢失字符。例如,如果我一次收到以下文本块:
xxxxx\r\nyyyyyyy
我会只读 'xxxxx\r\n' 而其余的就丢失了吗?