4

文档提升没有提供任何使用process::child(...).
给出了一个示例,process::system(...)但该函数system的操作可能较少(例如管道或 waitpid),因此如果可能,我希望有一个完整的示例process::child

4

2 回答 2

2

最后的答案和评论已经很老了,但我可以确认boost::process::child在 Ubuntu 18.04 下使用 Boost 版本 1.65 可以使用环境参数。关于那个的文档很薄,所以我不得不自己找出:

std::string command = "/usr/bin/something";
ipstream pipe_stream;

// Get current env
auto env = boost::this_process::environment();
// Add something
env["CHINESE_FOOD"] = "GOOD";
// Change something
env["CHINESE_FOOD"] = "GREAT";
// Delete something
env["CHINESE_FOOD"].clear();

boost::process::child childProc(command, env, std_out > pipe_stream);

当然,如果不需要环境,它会自动从父进程继承

std::string command = "/usr/bin/something";
ipstream pipe_stream;

boost::process::child childProc(command, std_out > pipe_stream);
于 2021-05-20T18:34:12.210 回答
0

在system.hpp中,支持自定义env的system_impl是按照child来实现的,

template<typename IoService, typename ...Args>
inline int system_impl(
        std::true_type, /*needs ios*/
        std::true_type, /*has io_context*/
        Args && ...args)
{
    IoService & ios = ::boost::process::detail::get_io_context_var(args...);

    system_impl_success_check check;

    std::atomic_bool exited{false};

    child c(std::forward<Args>(args)...,
            check,
            ::boost::process::on_exit(
                [&](int, const std::error_code&)
                {
                    ios.post([&]{exited.store(true);});
                }));
    if (!c.valid() || !check.succeeded)
        return -1;

    while (!exited.load())
        ios.poll();

    return c.exit_code();
}

所以从文档调用系统:

bp::system("stuff", bp::env["VALUE_1"]="foo", bp::env["VALUE_2"]+={"bar1", "bar2"});

调用:

template<typename ...Args>
inline int system(Args && ...args)
{
    typedef typename ::boost::process::detail::needs_io_context<Args...>::type
            need_ios;
    typedef typename ::boost::process::detail::has_io_context<Args...>::type
            has_ios;
    return ::boost::process::detail::system_impl<boost::asio::io_context>(
            need_ios(), has_ios(),
            std::forward<Args>(args)...);
}

翻译成这个函数,所以你应该能够做同样的事情。

于 2019-03-09T03:30:40.467 回答