istream from file_descriptor_source (boost::iostreams) or file(来自FILE_DESCRIPTOR_SOURCE(Boost::ioStreams)或文件的IStream)
本文介绍了来自FILE_DESCRIPTOR_SOURCE(Boost::ioStreams)或文件的IStream的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我需要对程序的输入执行类似的操作:
stream input;
if (decompressed)
input.open(filepath);
else {
file_descriptor=_popen("decompressor "+filepath,"r");
input.open(file_descriptor);
}
input.read(...)
...
我可以看到一种解决方案-在两种情况下都使用_popen,如果文件已经解压缩,则只将文件复制到stdout,但这似乎不是很好。
有趣的是,这与C相比有多难--我猜标准库没有注意到这一点。现在我迷失在神秘的Boost::ioStreams文档中。如果有人知道如何使用示例代码,那就太好了。
推荐答案
这是您要找的东西吗:
#include <cstdio>
#include <string>
#include <iostream>
#include <boost/iostreams/device/file_descriptor.hpp>
#include <boost/iostreams/stream.hpp>
namespace io = boost::iostreams;
int main()
{
bool flag = false;
FILE* handle = 0;
if (flag)
{
handle = _popen("dir", "r");
}
else
{
handle = fopen ("main.cpp", "r");
}
io::stream_buffer<io::file_descriptor_source> fpstream (fileno(handle));
std::istream in (&fpstream);
std::string line;
while (in)
{
std::getline (in, line);
std::cout << line << std::endl;
}
return 0;
}
这篇关于来自FILE_DESCRIPTOR_SOURCE(Boost::ioStreams)或文件的IStream的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
沃梦达教程
本文标题为:来自FILE_DESCRIPTOR_SOURCE(Boost::ioStreams)或文件的IStream
猜你喜欢
- 使用 __stdcall & 调用 DLLVS2013 中的 GetProcAddress() 2021-01-01
- DoEvents 等效于 C++? 2021-01-01
- 将 hdc 内容复制到位图 2022-09-04
- 哪个更快:if (bool) 或 if(int)? 2022-01-01
- XML Schema 到 C++ 类 2022-01-01
- 将函数的返回值分配给引用 C++? 2022-01-01
- 如何提取 __VA_ARGS__? 2022-01-01
- OpenGL 对象的 RAII 包装器 2021-01-01
- GDB 不显示函数名 2022-01-01
- 从父 CMakeLists.txt 覆盖 CMake 中的默认选项(...)值 2021-01-01