英文:
Why do I get "bad file descriptor" in this Go Program using stderr and ioutil.ReadAll
问题
命令"psql"应该会抛出一个错误,我正在尝试读取stderr并在Go程序中打印它。我使用ioutil.ReadAll来从stderr和stdout中读取数据。
不幸的是,它根本没有从stderr中读取。ioutil.ReadAll返回一个错误,这不是我期望的错误。
我得到的错误是
read |0: bad file descriptor
以下是代码。
package main
import (
"fmt"
"os/exec"
"io/ioutil"
)
func main() {
cmd := exec.Command("psql")
stdout, err := cmd.StdoutPipe()
if err != nil {
fmt.Printf("Error: %s", err)
}
stderr, err := cmd.StderrPipe()
if err != nil {
fmt.Printf("Error: %s", err)
}
err = cmd.Start()
if err != nil {
fmt.Printf("Start error %s",err)
}
d := cmd.Wait()
if d != nil {
fmt.Println(d)
}
stdo,g := ioutil.ReadAll(stdout)
stde,f := ioutil.ReadAll(stderr)
if g != nil {
fmt.Println(g)
}
if f !=nil {
fmt.Println(f)
}
fmt.Printf("Standard err is %s \n", stde)
fmt.Printf("Standard out is %s \n",stdo)
}
英文:
The command "psql" should throw an error, and I am trying to read stderr and print it in the Go program. I use ioutil.ReadAll to read the data from stderr, and stdout.
Unfortunately it is not reading from stderr at all. ioutil.ReadAll returns an error, which is not the error I am expecting.
The error I get is
read |0: bad file descriptor
Here is the code.
package main
import (
"fmt"
"os/exec"
"io/ioutil"
)
func main() {
cmd := exec.Command("psql")
stdout, err := cmd.StdoutPipe()
if err != nil {
fmt.Printf("Error: %s", err)
}
stderr, err := cmd.StderrPipe()
if err != nil {
fmt.Printf("Error: %s", err)
}
err = cmd.Start()
if err != nil {
fmt.Printf("Start error %s",err)
}
d := cmd.Wait()
if d != nil {
fmt.Println(d)
}
stdo,g := ioutil.ReadAll(stdout)
stde,f := ioutil.ReadAll(stderr)
if g != nil {
fmt.Println(g)
}
if f !=nil {
fmt.Println(f)
}
fmt.Printf("Standard err is %s \n", stde)
fmt.Printf("Standard out is %s \n",stdo)
}
答案1
得分: 10
我发现通过实验,我得到了一个错误,原因是我在cmd.Wait()
之后调用了以下代码:
stdo,g := ioutil.ReadAll(stdout)
stde,f := ioutil.ReadAll(stderr)
所以问题是,在cmd.Wait()
返回后,stdout和stderr管道被关闭了。
以下是cmd.StderrPipe()
的代码注释:
// StderrPipe返回一个管道,该管道在命令启动时将连接到命令的标准错误输出。
// 管道将在Wait看到命令退出后自动关闭。
显然,我们不能在它们关闭后读取stdout和stderr。
我们也不能在命令启动之前读取它们。所以我们必须将它们放在启动和等待之间。
以下是修复该问题的代码:
package main
import (
"fmt"
"os/exec"
"io/ioutil"
)
func main() {
cmd := exec.Command("psql")
stdout, err := cmd.StdoutPipe()
if err != nil {
fmt.Printf("Error: %s", err)
}
stderr, err := cmd.StderrPipe()
if err != nil {
fmt.Printf("Error: %s", err)
}
err = cmd.Start()
if err != nil {
fmt.Printf("Start error %s",err)
}
stdo,g := ioutil.ReadAll(stdout)
stde,f := ioutil.ReadAll(stderr)
d := cmd.Wait()
if d != nil {
fmt.Println(d)
}
if g != nil {
fmt.Println(g)
}
if f !=nil {
fmt.Println(f)
}
fmt.Printf("Standard err is %s \n", stde)
fmt.Printf("Standard out is %s \n",stdo)
}
希望对你有帮助!
英文:
I found that through experimentation that I am getting the error, due to the fact that I am calling
stdo,g := ioutil.ReadAll(stdout)
stde,f := ioutil.ReadAll(stderr)
after
d := cmd.Wait()
so what happens is the stdout, stderr pipe get closed after the cmd.Wait()
returns.
Here are the code comments for the cmd.StderrPipe()
// StderrPipe returns a pipe that will be connected to the command's
// standard error when the command starts.
// The pipe will be closed automatically after Wait sees the command exit.
So obviously we can't read stdout and stderr after they get closed.
We cannot read them before the command starts either. So we have to put them in between start and wait.
Here is code that fixes that.
package main
import (
"fmt"
"os/exec"
"io/ioutil"
)
func main() {
cmd := exec.Command("psql")
stdout, err := cmd.StdoutPipe()
if err != nil {
fmt.Printf("Error: %s", err)
}
stderr, err := cmd.StderrPipe()
if err != nil {
fmt.Printf("Error: %s", err)
}
err = cmd.Start()
if err != nil {
fmt.Printf("Start error %s",err)
}
stdo,g := ioutil.ReadAll(stdout)
stde,f := ioutil.ReadAll(stderr)
d := cmd.Wait()
if d != nil {
fmt.Println(d)
}
if g != nil {
fmt.Println(g)
}
if f !=nil {
fmt.Println(f)
}
fmt.Printf("Standard err is %s \n", stde)
fmt.Printf("Standard out is %s \n",stdo)
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论