1. ホーム
  2. c++

[解決済み] C++でPOSIXを使ってコマンドを実行し、その出力を得るにはどうしたらよいですか?

2022-03-18 01:11:38

質問

C++プログラム内でコマンドを実行したときの出力を取得する方法を探しています。 私は system() 関数がありますが、これでは単にコマンドを実行するだけです。以下は、私が探しているものの例です。

std::string result = system("./some_command");

任意のコマンドを実行し、その出力を取得したい。私は boost.org しかし、私が必要とするものを与えてくれるものは見つかっていません。

どのように解決するのですか?

#include <cstdio>
#include <iostream>
#include <memory>
#include <stdexcept>
#include <string>
#include <array>

std::string exec(const char* cmd) {
    std::array<char, 128> buffer;
    std::string result;
    std::unique_ptr<FILE, decltype(&pclose)> pipe(popen(cmd, "r"), pclose);
    if (!pipe) {
        throw std::runtime_error("popen() failed!");
    }
    while (fgets(buffer.data(), buffer.size(), pipe.get()) != nullptr) {
        result += buffer.data();
    }
    return result;
}

C++11以前のバージョンです。

#include <iostream>
#include <stdexcept>
#include <stdio.h>
#include <string>

std::string exec(const char* cmd) {
    char buffer[128];
    std::string result = "";
    FILE* pipe = popen(cmd, "r");
    if (!pipe) throw std::runtime_error("popen() failed!");
    try {
        while (fgets(buffer, sizeof buffer, pipe) != NULL) {
            result += buffer;
        }
    } catch (...) {
        pclose(pipe);
        throw;
    }
    pclose(pipe);
    return result;
}

交換 popenpclose_popen_pclose Windows用