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

标签 c++ string buffer line

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

数据是由 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/

相关文章:

c++ - C++ 构造函数的多重声明

python - 将具有相似(但略有不同)子字符串的字符串重新映射到相同的结果

logging - 在磁盘上实现固定大小的日志文件或循环缓冲区

C++ OpenGL Multithreading 与缓冲区资源

c++ - 为什么 [=]{} 有 lambda 捕获?

c++ - SSE g++ 编译问题

c++ - 在现代 C++ 中使用原始指针是不好的做法吗?

python - 删除字符串中与列表Python范围内的数字不对应的位置的字母

Java字符串循环在数字后停止

Java生命游戏实现: Issues with board updates and infinite loops.