0

我想在 Linux 中将数据从 C++ 传递到 Python,我通过管道完成此操作。我的 C++ 程序如下所示:

#include<iostream>
#include<stdio.h>
#include<sstream>
#include<math.h>

int main() {
    FILE *cmd;

    std::ostringstream ss;
    double val;

    cmd = popen("python plot.py","w");
    for (int i=0; i<100; i++) {
        val = cos(3.14159*i/40);
        ss.str("");
        ss << val << std::endl;
        fputs(ss.str().c_str(),cmd);
        fflush(cmd);
    }
    fputs("\n",cmd);
    fflush(cmd);
    pclose(cmd);
    return 0;     
}

对应的 python 函数 plot.py 如下所示:

fig, = plt.plot([],[])
index = 0
plt.ion()
while True:
    data = sys.stdin.readline().strip()
    if not data:
        plt.ioff()
        break
    index = index + 1
    val = [float(n) for n in self.data.split()]

    fig.set_xdata(numpy.append(fig.get_xdata(),index))
    fig.set_ydata(numpy.append(fig.get_ydata(),val))
    axis = list(plt.axis())
    min_x = 0      
    max_x = max(self.fig.get_xdata())
    min_y = min(self.fig.get_ydata())
    max_y = max(self.fig.get_ydata())
    axis[0] = min_x
    axis[1] = max_x
    axis[2] = min_y
    axis[3] = max_y
    plt.axis(axis)
    plt.draw()
plt.show()

现在我的问题是,在将数据传递给 python 函数之前,我的 c++ 函数中似乎有数据缓冲,我无法摆脱它。我一直在寻找解决方案,但找不到任何解决方案。我能找到的最好的建议是在 c++ 函数中使用 setvbuf,所以我还尝试在 c++ 函数中包含以下行

setvbuf(cmd,NULL,_IONBUF,0)

但这没有任何影响。

有谁知道我如何以无缓冲的方式将数据从我的 c++ 函数传递给 python?

4

0 回答 0