duanmiexi2275 2016-11-22 16:38
浏览 92
已采纳

在Golang中将管道读取写入HTTP响应

Here is the schema :

Client sends a POST request to server A

server A process this and sends a GET to server B

server B sends a response through A to the client


I though the best idea was to make a pipe which would read the response of the GET, and write into the response of the POST, but I got many types problems.

func main() {
    r := mux.NewRouter()
    r.HandleFunc("/test/{hash}", testHandler)

    log.Fatal(http.ListenAndServe(":9095", r))
}

func handleErr(err error) {
    if err != nil {
        log.Fatalf("%s
", err)
    }
}


func testHandler(w http.ResponseWriter, r *http.Request){

    fmt.Println("FIRST REQUEST RECEIVED")
    vars := mux.Vars(r)
    hash := vars["hash"]
    read, write := io.Pipe()

    // writing without a reader will deadlock so write in a goroutine
    go func() {
        write, _ = http.Get("http://localhost:9090/test/" + hash)
        defer write.Close()
    }()

    w.Write(read)
}

When I run this I get the following error:

./ReverseProxy.go:61: cannot use read (type *io.PipeReader) as type []byte in argument to w.Write

Is there a way, to properly insert a io.PipeReader format into an http response? Or am I doing this in a totally wrong way?

  • 写回答

1条回答 默认 最新

  • duandie0921 2016-11-22 16:51
    关注

    You are not actually writing to it, you're replacing the pipe's write.

    Something along the lines of:

    func testHandler(w http.ResponseWriter, r *http.Request) {
    
        fmt.Println("FIRST REQUEST RECEIVED")
    
        vars := mux.Vars(r)
        hash := vars["hash"]
    
        read, write := io.Pipe()
    
        // writing without a reader will deadlock so write in a goroutine
        go func() {
            defer write.Close()
            resp, err := http.Get("http://localhost:9090/test/" + hash)
            if err != nil {
                return
            }
            defer resp.Body.Close()
            io.Copy(write, resp.Body)
    
        }()
    
        io.Copy(w, read)
    
    }
    

    Although, I agree with @JimB, for this instance, the pipe isn't even needed, something like this should be more efficient:

    func testHandler(w http.ResponseWriter, r *http.Request) {
        vars := mux.Vars(r)
        hash := vars["hash"]
    
        resp, err := http.Get("http://localhost:9090/test/" + hash)
        if err != nil {
            // handle error
            return
        }
        defer resp.Body.Close()
    
        io.Copy(w, resp.Body)
    }
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 乌班图ip地址配置及远程SSH
  • ¥15 怎么让点阵屏显示静态爱心,用keiluVision5写出让点阵屏显示静态爱心的代码,越快越好
  • ¥15 PSPICE制作一个加法器
  • ¥15 javaweb项目无法正常跳转
  • ¥15 VMBox虚拟机无法访问
  • ¥15 skd显示找不到头文件
  • ¥15 机器视觉中图片中长度与真实长度的关系
  • ¥15 fastreport table 怎么只让每页的最下面和最顶部有横线
  • ¥15 R语言卸载之后无法重装,显示电脑存在下载某些较大二进制文件行为,怎么办
  • ¥15 java 的protected权限 ,问题在注释里