使用libc++
版本的getline
函数的程序将在从管道读取输入直到管道缓冲区已满时阻塞。
对于libstdc++
函数的getline
版本,同样 NOT 为true:此函数会立即读取并返回一行输入。
我应该期待libstdc++
和libc++
之间的行为差异吗? [编辑:我这里没有意见,我根本不了解管道,也没有实现C ++标准库的困难。对我而言,这种行为上的差异当然是令人惊讶,但也许有人知道更好,可以向我保证这些差异是可以预期的,也许这只是一个实现细节?]
更重要的是,我可以做些什么才能使libc++
表现得像libstdc++
?也就是说,getline
函数不应该等到管道缓冲区已满,它应该立即返回一行输入。
请参阅下面的代码示例,其中显示了我如何读取和写入管道。
我怀疑问题不仅限于macOS,但我还没有一个可以用来测试clang
的Linux开发系统。
打开三个炮弹,我们称它们为A,B和C.
在shell A中:创建一个新文件pipe-test.cpp
并从下面添加源代码。使用libstdc++
编译一次源代码,使用libc++
编译一次:
g++ -stdlib=libstdc++ -o pipe-test-libstdc++ pipe-test.cpp
g++ -stdlib=libc++ -o pipe-test-libc++ pipe-test.cpp
在shell A中:创建两个管道:
mkfifo input-pipe output-pipe
libstdc++
版本pipe-test-libstdc++ input-pipe output-pipe
cat output-pipe
cat >input-pipe
getline
函数从输入管道读取了“foo”行,并立即将该行打印到输出管道。libc++
版本pipe-test-libc++ input-pipe output-pipe
cat output-pipe
cat >input-pipe
getline
函数尚未从输入管道收到“foo”行,因为该管道的缓冲区尚未满。getline
函数将逐行读取输入,直到它有清空了管道的缓冲区。#include <string>
#include <iostream>
#include <fstream>
int main(int argc, char** argv)
{
if (argc != 3)
{
std::cout
<< "Usage: pipe-test /path/to/input-pipe /path/to/output-pipe"
<< std::endl;
return 1;
}
std::string pathToInputPipe = argv[1];
std::string pathToOutputPipe = argv[2];
std::cout
<< "Input pipe = " << pathToInputPipe << std::endl
<< "Output pipe = " << pathToOutputPipe << std::endl;
std::ifstream inputPipeStream;
inputPipeStream.open(pathToInputPipe.c_str());
if (! inputPipeStream)
{
std::cout
<< "Failed to open input pipe " << pathToInputPipe
<< std::endl;
return 1;
}
else
{
std::cout
<< "Input pipe: result of eof() = " << inputPipeStream.eof() << std::endl
<< "Input pipe: result of bad() = " << inputPipeStream.bad() << std::endl
<< "Input pipe: result of good() = " << inputPipeStream.good() << std::endl
<< "Input pipe: result of fail() = " << inputPipeStream.fail() << std::endl;
}
std::ofstream outputPipeStream;
outputPipeStream.open(pathToOutputPipe.c_str());
if (! outputPipeStream)
{
std::cout
<< "Failed to open output pipe " << pathToOutputPipe
<< std::endl;
return 1;
}
else
{
std::cout
<< "Output pipe: result of eof() = " << outputPipeStream.eof() << std::endl
<< "Output pipe: result of bad() = " << outputPipeStream.bad() << std::endl
<< "Output pipe: result of good() = " << outputPipeStream.good() << std::endl
<< "Output pipe: result of fail() = " << outputPipeStream.fail() << std::endl;
}
int lineNumber = 0;
while (true)
{
lineNumber++;
std::string line;
bool getlineFailResult = getline(inputPipeStream, line).fail();
if (getlineFailResult)
{
std::cout << "Failed to read stream, stopping" << std::endl;
break;
}
else
{
std::cout << "Received line " << lineNumber << ": " << line << std::endl;
outputPipeStream << line << std::endl;
outputPipeStream.flush();
}
}
return 0;
}
答案 0 :(得分:-3)
您可能知道,libc ++是标准库的非GPL(MIT)版本。 libstdc ++是GPL版本。 libc ++是LLVM的一部分。 libstdc ++是一个GPL库,通常随GCC一起提供。
它们是两种完全不同的实现。哪个更好,或者你应该使用哪一个是意见。这有很多线程,例如:Should I use libc++ or libstdc++?
我无法轻易找到getline()的规范,它会指定您关注的行为。
这是libc ++版本中getline的源代码 https://github.com/llvm-mirror/libcxx/blob/018a3d51a47f7275c59e802709104498b729522b/include/istream#L1037
他们表现不同的事实并不让我感到惊讶。如果你需要getline()的特定实现/行为,我会编写你自己的,因为它不是一个复杂的操作,并使用标准的POSIX系统调用来做它已经指出,并且应该是相同的 - 无论是OS或编译器。
另外(在这里看到),我的建议是避免使用标准的C ++库,特别是iostream,除了它们已经在大型代码库中并且必须使用它们之外。它们充满了错误,具有不同的行为,并且通常不会很快。