在Go中,如何将函数的stdout捕获到字符串中?

时间:2012-05-06 19:59:52

标签: go stdout

例如,在Python中,我可以执行以下操作:

realout = sys.stdout
sys.stdout = StringIO.StringIO()
some_function() # prints to stdout get captured in the StringIO object
result = sys.stdout.getvalue()
sys.stdout = realout

你能在Go吗?

4 个答案:

答案 0 :(得分:51)

我同意您应该使用fmt.Fprint功能,如果您可以管理它。但是,如果您不控制正在捕获其输出的代码,则可能没有该选项。

Mostafa的回答是有效的,但是如果你想在没有临时文件的情况下这样做,你可以使用os.Pipe。这是一个相当于Mostafa的例子,其中一些代码受到Go测试包的启发。

package main

import (
    "bytes"
    "fmt"
    "io"
    "os"
)

func print() {
    fmt.Println("output")
}

func main() {
    old := os.Stdout // keep backup of the real stdout
    r, w, _ := os.Pipe()
    os.Stdout = w

    print()

    outC := make(chan string)
    // copy the output in a separate goroutine so printing can't block indefinitely
    go func() {
        var buf bytes.Buffer
        io.Copy(&buf, r)
        outC <- buf.String()
    }()

    // back to normal state
    w.Close()
    os.Stdout = old // restoring the real stdout
    out := <-outC

    // reading our temp stdout
    fmt.Println("previous output:")
    fmt.Print(out)
}

答案 1 :(得分:15)

我不建议这样做,但您可以通过更改os.Stdout来实现。由于此变量的类型为os.File,因此临时输出也应该是文件。

package main

import (
    "fmt"
    "io/ioutil"
    "os"
    "path/filepath"
)

func print() {
    fmt.Println("output")
}

func main() {
    // setting stdout to a file
    fname := filepath.Join(os.TempDir(), "stdout")
    fmt.Println("stdout is now set to", fname)
    old := os.Stdout // keep backup of the real stdout
    temp, _ := os.Create(fname) // create temp file
    os.Stdout = temp

    print()

    // back to normal state
    temp.Close()
    os.Stdout = old // restoring the real stdout

    // reading our temp stdout
    fmt.Println("previous output:")
    out, _ := ioutil.ReadFile(fname)
    fmt.Print(string(out))
}

我不推荐,因为这是太多的黑客攻击,而且在Go中并不是非常惯用。我建议将io.Writer传递给函数并将输出写入其中。这是做几乎相同事情的更好方法。

package main

import (
    "bytes"
    "fmt"
    "io"
    "os"
)

func print(w io.Writer) {
    fmt.Fprintln(w, "output")
}

func main() {
    fmt.Println("print with byes.Buffer:")
    var b bytes.Buffer
    print(&b)
    fmt.Print(b.String())

    fmt.Println("print with os.Stdout:")
    print(os.Stdout)
}

答案 2 :(得分:14)

这个答案与之前的答案类似,但使用io / ioutil看起来更干净。

http://play.golang.org/p/fXpK0ZhXXf

package main

import (
  "fmt"
  "io/ioutil"
  "os"
)

func main() {
  rescueStdout := os.Stdout
  r, w, _ := os.Pipe()
  os.Stdout = w

  fmt.Println("Hello, playground") // this gets captured

  w.Close()
  out, _ := ioutil.ReadAll(r)
  os.Stdout = rescueStdout

  fmt.Printf("Captured: %s", out) // prints: Captured: Hello, playground
}

答案 3 :(得分:2)

我认为整个想法根本不可取(竞争条件),但我想人们可以用类似/类比的方式来破坏os.Stdout。