来自FILE_DESCRIPTOR_SOURCE(Boost::ioStreams)或文件的IStream [英] istream from file_descriptor_source (boost::iostreams) or file

查看:0
本文介绍了来自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的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆