gpt4 book ai didi

c++ - 仅当它包含任何换行符时,如何才能从 stringstream 中读取一行?

转载 作者:塔克拉玛干 更新时间:2023-11-03 07:44:36 26 4
gpt4 key购买 nike

我正在将一些网络数据作为输入缓冲区读入字符串流。

数据是由 LF 字符分隔的 ASCII 行。

input_buffer 可能处于其中只有部分行的状态。

我正在尝试调用 getline (),但只有当字符串流中实际有一个新的换行符时才会调用。换句话说,它应该提取完整的行,但在缓冲区中保留部分行。

这是一个 MVCE:

#include <string>
#include <sstream>
#include <iostream>

int
main (void)
{
std::stringstream input_buffer;
input_buffer << "test123\nOK\n";
while (input_buffer.str ().find ('\n') != std::string::npos)
{
std::string line;
std::getline (input_buffer, line, '\n');
std::cout << "input_buffer.str ().size: " << input_buffer.str ().size () << "\n";
std::cout << "line: " << line << "\n";
}
return 0;
}

它目前没有终止,这里是输出的一个片段:

input_buffer.str ().size: 11
line: test123
input_buffer.str ().size: 11
line: OK
input_buffer.str ().size: 11
line:
input_buffer.str ().size: 11
...

只有当它包含任何换行符时,我如何才能从字符串流中读取一行?

编辑:这里是另一个带有部分输入的代码示例:

#include <string>
#include <sstream>
#include <iostream>
#include <vector>

void
extract_complete_lines_1 (std::stringstream &input_buffer, std::vector<std::string> &lines)
{
while (input_buffer.str ().find ('\n') != std::string::npos)
{
std::string line;
std::getline (input_buffer, line, '\n');
lines.push_back (line);
}
}

void
print_lines (const std::vector<std::string> &v)
{
for (auto l : v)
{
std::cout << l << '\n';
}
}

int
main (void)
{
std::vector<std::string> lines;
std::stringstream input_buffer {"test123\nOK\npartial line"};
extract_complete_lines_1 (input_buffer, lines);
print_lines (lines);
return 0;
}

这应该打印“test123”和“OK”,而不是“partial line”。

最佳答案

如前所述here ,您可以覆盖缓冲区的 underflow 函数,以便它使用您可以指定的函数重新填充。

这是一个改编自 here 的例子:

#include <iostream>
#include <sstream>
#include <string>

class Mybuf : public std::streambuf {
std::string line{};
char ch{}; // single-byte buffer
protected:
int underflow() override {
if(line.empty()) {
std::cout << "Please enter a line of text for the stream: ";
getline(std::cin, line);
line.push_back('\n');
}
ch = line[0];
line.erase(0, 1);
setg(&ch, &ch, &ch + 1); // make one read position available
return ch;
}
public:
Mybuf(std::string line) : line{line} {};
};

class mystream : public std::istringstream {
Mybuf mybuf;

public:
mystream(std::string line) : std::istringstream{}, mybuf{line}
{
static_cast<std::istream&>(*this).rdbuf(&mybuf);
}
};

int main()
{
mystream ms{"The first line.\nThe second line.\nA partial line"};
for(std::string line{}; std::getline(ms, line); )
std::cout << "line: " << line << "\n";
}

输出:

line: The first line.
line: The second line.
Please enter a line of text for the stream: Here is more!
line: A partial lineHere is more!
Please enter a line of text for the stream:

关于c++ - 仅当它包含任何换行符时,如何才能从 stringstream 中读取一行?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41522152/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com