使用Go Routines将控制台日志连续打印到网页屏幕

时间:2018-04-10 19:58:07

标签: go

我下面的go例程可以工作,但问题是它打印到控制台而不是屏幕。我的想法是在网页上的脚本节目中显示正在发生的命令或输出的运行日志,以便实时观看。使用fmt.Fprint并不能解决问题。所有这一切都是我的网页永远不会完全加载。请帮忙吗?

Running external python in Golang, Catching continuous exec.Command Stdout

去代码

package main

import (
    "log"
    "net/http"
    "time"
    "os/exec"
    "io"
    "bufio"
    "fmt"
    "github.com/gorilla/mux"
)

func main() {
    r := mux.NewRouter()
    s := r.PathPrefix("/api/").Subrouter()
    s.HandleFunc("/export", export).Methods("GET")
    http.Handle("/", r)
    log.Panic(http.ListenAndServe(":80", nil))
}

func export(w http.ResponseWriter, r *http.Request) {
    cmd := exec.Command("python", "game.py")
    stdout, err := cmd.StdoutPipe()
    if err != nil {
        panic(err)
    }
    stderr, err := cmd.StderrPipe()
    if err != nil {
        panic(err)
    }
    err = cmd.Start()
    if err != nil {
        panic(err)
    }

    go copyOutput(stdout)
    go copyOutput(stderr)
    cmd.Wait()
}

func copyOutput(r io.Reader, w http.ResponseWriter) {
    scanner := bufio.NewScanner(r)
    for scanner.Scan() {
        fmt.Fprint(w, scanner.Text()) //line I expect to print to the screen, but doesn't
    }
}

python脚本

import time
import sys

while True:
    print "Hello"
    sys.stdout.flush()
    time.sleep(1)

网站上还有很多内容,所以我知道路线配置正确,因为当我没有使用go例程时,打印到屏幕上就可以了#<

更新:

这是我的新更新功能,它会打印到屏幕上,但只有在整个脚本运行后才会显示,而不是在它运行之后

func export(w http.ResponseWriter, r *http.Request) {
    cmd := exec.Command("python", "game.py")
    cmd.Stdout = w
    cmd.Start()
    cmd.Wait()
}

我相信我可能仍需要一个常规程序,以便在我去的时候进行打印,但将cmd.Start和/或cmd.Wait放在一个不起作用

更新:

因此即使提供了所有内容,我也无法在浏览器上显示输出,因为它们正在运行。它只是锁定浏览器,即使是标题和刷新。我希望有时间给出一个完整的,有效的答案,但是现在,上面的代码在运行后正确地将代码打印到浏览器。我找到了一个我认为可能正在寻找的回购,也许它会帮助那些遇到这个问题的人。

https://github.com/yudai/gotty

1 个答案:

答案 0 :(得分:1)

这是一个非常基本的(天真)示例,但是如何让您了解如何连续传输数据:

https://play.golang.org/p/vtXPEHSv-Sg

single_h的代码是:

game.py

网络应用代码:

import time
import sys

while True:
    print("Hello")
    sys.stdout.flush()
    time.sleep(1)

这里的关键部分是使用http.Flusher和一些标题使其在浏览器中运行:

package main

import (
    "bufio"
    "fmt"
    "io"
    "log"
    "net/http"
    "os"
    "os/exec"

    "github.com/nbari/violetear"
)

func stream(w http.ResponseWriter, r *http.Request) {
    cmd := exec.Command("python", "game.py")
    rPipe, wPipe, err := os.Pipe()
    if err != nil {
        log.Fatal(err)
    }
    cmd.Stdout = wPipe
    cmd.Stderr = wPipe
    if err := cmd.Start(); err != nil {
        log.Fatal(err)
    }
    go writeOutput(w, rPipe)
    cmd.Wait()
    wPipe.Close()
}

func writeOutput(w http.ResponseWriter, input io.ReadCloser) {
    flusher, ok := w.(http.Flusher)
    if !ok {
        http.Error(w, "Streaming not supported", http.StatusInternalServerError)
        return
    }

    // Important to make it work in browsers
    w.Header().Set("Content-Type", "text/event-stream")
    w.Header().Set("Cache-Control", "no-cache")
    w.Header().Set("Connection", "keep-alive")

    in := bufio.NewScanner(input)
    for in.Scan() {
        fmt.Fprintf(w, "data: %s\n", in.Text())
        flusher.Flush()
    }
    input.Close()
}

func main() {
    router := violetear.New()
    router.HandleFunc("/", stream, "GET")
    log.Fatal(http.ListenAndServe(":8080", router))
}

请注意,此代码的问题是,一旦请求到达,它将 w.Header().Set("Content-Type", "text/event-stream") 永远循环的命令,因此永远不会调用exec

wPipe.Close()

为了更加详细,您可以在浏览器旁边打印输出终端:

    cmd.Wait()
    wPipe.Close()

如果您有多个请求,您会注意到它会在终端中写得更快,不错但您还会注意到,如果客户端关闭连接/浏览器,您仍会看到数据输出。

更好的方法是在上下文中执行命令,例如:https://golang.org/pkg/os/exec/#CommandContext

 for in.Scan() {
     data := in.Text()
     log.Printf("data: %s\n", data)
     fmt.Fprintf(w, "data: %s\n", data)
     flusher.Flush()
 }

另请查看上下文(https://stackoverflow.com/a/44146619/1135424)不替换ctx, cancel := context.WithTimeout(context.Background(), 100*time.Millisecond) defer cancel() if err := exec.CommandContext(ctx, "sleep", "5").Run(); err != nil { // This will fail after 100 milliseconds. The 5 second sleep // will be interrupted. } ,因此在客户端关闭浏览器后终止进程可能非常有用,不用了。

最后取决于您的需求,但希望可以通过使用http.CloseNotifier界面让您了解如何以简单的方式传输数据。

只是为了好玩,这是一个使用context的例子:

https://play.golang.org/p/V69BuDUceBA

仍然非常基本,但在这种情况下,如果客户端关闭浏览器,程序也会终止,因为练习可能很好地改进它的分享;-),注意使用CommandContext和{{1 }}

http.Flusher