2

我正在编写一个与外部进程交互的 C++ 程序。外部进程用 C# 编写并在单声道上运行。请注意,我无法修改 C# 代码,因为它不是我编写的程序。

在这方面,我首先使用管道,当然我后来意识到它是完全缓冲的,因此我遇到了很多同步问题。本质上,外部进程必须在每次写入后刷新其输出,这是不可能的。

我接下来要尝试的是文件,但是我发现在我的情况下使用伪终端更合适。这是我编写的一些示例代码:

int main()
{
    int fdm, fds, rc, pid;
    bool rValue;
    /* Setup Master pty*/
    rValue = rValue && (fdm = posix_openpt(O_RDWR)) >= 0 &&
             (rc = grantpt(fdm)) == 0 && (rc = unlockpt(fdm) == 0);
    if (rValue) {
        /* Open Slave pty */
        fds = open(ptsname(fdm), O_RDWR);
        pid = fork();
        if(pid < 0)
            perror("fork failed");
        else if(pid == 0) //child
        {
            close(fdm); //close master
            struct termios slave_orig_term_settings;
            struct termios new_term_settings;
            tcgetattr(slaveTTY, &slave_orig_term_settings);
            new_term_settings = slave_orig_term_settings;
            cfmakeraw(&new_term_settings);
            tcsetattr(slaveTTY, TCSANOW, &new_term_settings);

            //redirect I/O of this process
            close(0);
            close(1);
            close(2);
            dup(slaveTTY);
            dup(slaveTTY);
            dup(slaveTTY);

            close(slaveTTY);

            setsid();
            ioctl(0, TIOCSCTTY, 1);

            //launch the external process and replace its image in this process
            execve(argv[0],...);
        }
        else
        {
            close(fds); //close slave
            //Perform some interaction
            write(something using fdm);
            //Assume fdsets declared and set somewhere here
            select(fdm +1,&fdset,NULL,NULL,NULL);
            int readBytes = read(someting using fds);
        }
    }
    return EXIT_SUCCESS;
}

假设正在处理 select 的 fdset 和 fdclr。

在父进程中观察到以下问题:

  1. 有时 read 返回时 readBytes > 0 但缓冲区中没有任何内容
  2. 有时,写入终端的任何内容都会被回读
  3. 一些垃圾值,例如 ^]]49]1R 被转储到终端上(这是实际的终端,即我的输出窗口)

PS:外部进程用C/C++编写时,不会出现这个问题。仅当我以单声道运行 C# 程序时。

4

1 回答 1

0

我认为python 中的pexpect是一个不错的选择,如果您不必在 中这样做C++,它将为您节省大量时间。您还可以使用pyinstaller等 Python 冻结工具将您的 Python 脚本转换为独立的二进制文件。

于 2013-11-25T18:13:23.480 回答