gpt4 book ai didi

Go:与另一个进程的双向通信?

转载 作者:IT王子 更新时间:2023-10-29 01:54:45 24 4
gpt4 key购买 nike

(注意)不是 Go Inter-Process Communication 的骗局这是在询问 System V IPC。 (尾注)

使用 os/exec,我如何与另一个进程交互通信?我想获取进程的标准输入和标准输出的 fd,并使用这些 fds 写入和读取进程。

我发现的大多数示例都涉及运行另一个进程,然后吞噬生成的输出。

这是我正在寻找的 python 等价物。

p = subprocess.Popen("cmd", stdin=subprocess.PIPE, stdout=subprocess.PIPE)
(child_stdin, child_stdout) = (p.stdin, p.stdout)

作为一个具体的例子,考虑打开一个到 dc 的管道,发送行 12 34 +p 并接收行 46

(更新)

func main() {
cmd := exec.Command("dc")
stdin, err := cmd.StdinPipe()
must(err)
stdout, err := cmd.StdoutPipe()
must(err)

err = cmd.Start()
must(err)

fmt.Fprintln(stdin, "2 2 +p")

line := []byte{}
n, err := stdout.Read(line)

fmt.Printf("%d :%s:\n", n, line)
}

我通过 strace 看到 dc 正在按预期接收和应答:

[pid  8089] write(4, "12 23 +p\n", 9 <unfinished ...>
...
[pid 8095] <... read resumed> "12 23 +p\n", 4096) = 9
...
[pid 8095] write(1, "35\n", 3 <unfinished ...>

但我似乎没有将结果返回到我的调用程序中:

0 ::

(更新)

根据接受的答案,我的问题是没有分配字符串来接收响应。更改为 line := make([]byte, 100) 修复了所有问题。

最佳答案

exec.Cmd 具有您可以分配的进程 stdin、std 和 stderr 字段。

    // Stdin specifies the process's standard input.
// If Stdin is nil, the process reads from the null device (os.DevNull).
// If Stdin is an *os.File, the process's standard input is connected
// directly to that file.
// Otherwise, during the execution of the command a separate
// goroutine reads from Stdin and delivers that data to the command
// over a pipe. In this case, Wait does not complete until the goroutine
// stops copying, either because it has reached the end of Stdin
// (EOF or a read error) or because writing to the pipe returned an error.
Stdin io.Reader

// Stdout and Stderr specify the process's standard output and error.
//
// If either is nil, Run connects the corresponding file descriptor
// to the null device (os.DevNull).
//
// If Stdout and Stderr are the same writer, at most one
// goroutine at a time will call Write.
Stdout io.Writer
Stderr io.Writer

如果你想要一个预制的管道连接到其中任何一个,你可以使用 *Pipe() 方法

func (c *Cmd) StderrPipe() (io.ReadCloser, error)
func (c *Cmd) StdinPipe() (io.WriteCloser, error)
func (c *Cmd) StdoutPipe() (io.ReadCloser, error)

使用 dc 程序的基本示例(无错误检查):

cmd := exec.Command("dc")
stdin, _ := cmd.StdinPipe()
stdout, _ := cmd.StdoutPipe()
cmd.Start()

stdin.Write([]byte("12 34 +p\n"))

out := make([]byte, 1024)
n, _ := stdout.Read(out)

fmt.Println("OUTPUT:", string(out[:n]))

// prints "OUTPUT: 46"

关于Go:与另一个进程的双向通信?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39799415/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com