-
-
Save ws6/1c26a4073319bf9946ecb04e40e93d23 to your computer and use it in GitHub Desktop.
Revisions
-
ifels renamed this gist
May 19, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ifels renamed this gist
Apr 10, 2014 . 1 changed file with 0 additions and 0 deletions.There are no files selected for viewing
File renamed without changes. -
ifels created this gist
Apr 10, 2014 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,47 @@ package main import ( "io" "net/http" "os/exec" ) var ( BUF_LEN = 1024 ) func handler(w http.ResponseWriter, r *http.Request) { cmd := exec.Command("./build.sh") pipeReader, pipeWriter := io.Pipe() cmd.Stdout = pipeWriter cmd.Stderr = pipeWriter go writeCmdOutput(w, pipeReader) cmd.Run() pipeWriter.Close() } func writeCmdOutput(res http.ResponseWriter, pipeReader *io.PipeReader) { buffer := make([]byte, BUF_LEN) for { n, err := pipeReader.Read(buffer) if err != nil { pipeReader.Close() break } data := buffer[0:n] res.Write(data) if f, ok := res.(http.Flusher); ok { f.Flush() } //reset buffer for i := 0; i < n; i++ { buffer[i] = 0 } } } func main() { http.HandleFunc("/", handler) http.ListenAndServe(":8080", nil) }