micro-client-http/stream.go

109 lines
1.8 KiB
Go
Raw Normal View History

2017-01-01 21:39:05 +03:00
package http
import (
"bufio"
2018-03-03 15:28:44 +03:00
"context"
"fmt"
2017-01-01 21:39:05 +03:00
"net"
"net/http"
"sync"
"github.com/unistack-org/micro/v3/client"
"github.com/unistack-org/micro/v3/codec"
"github.com/unistack-org/micro/v3/errors"
2017-01-01 21:39:05 +03:00
)
// Implements the streamer interface
type httpStream struct {
sync.RWMutex
address string
opts client.CallOptions
codec codec.Codec
2017-01-01 21:39:05 +03:00
context context.Context
header http.Header
seq uint64
closed chan bool
err error
conn net.Conn
reader *bufio.Reader
request client.Request
}
var (
errShutdown = fmt.Errorf("connection is shut down")
2017-01-01 21:39:05 +03:00
)
func (h *httpStream) isClosed() bool {
select {
case <-h.closed:
return true
default:
return false
}
}
func (h *httpStream) Context() context.Context {
return h.context
}
func (h *httpStream) Request() client.Request {
return h.request
}
2019-01-15 00:32:12 +03:00
func (h *httpStream) Response() client.Response {
return nil
}
2017-01-01 21:39:05 +03:00
func (h *httpStream) Send(msg interface{}) error {
h.Lock()
defer h.Unlock()
if h.isClosed() {
h.err = errShutdown
return errShutdown
}
hreq, err := newRequest(h.address, h.request, h.codec, msg, h.opts)
2017-01-01 21:39:05 +03:00
if err != nil {
return err
}
hreq.Header = h.header
return hreq.Write(h.conn)
2017-01-01 21:39:05 +03:00
}
func (h *httpStream) Recv(msg interface{}) error {
h.Lock()
defer h.Unlock()
if h.isClosed() {
h.err = errShutdown
return errShutdown
}
hrsp, err := http.ReadResponse(h.reader, new(http.Request))
2017-01-01 21:39:05 +03:00
if err != nil {
return errors.InternalServerError("go.micro.client", err.Error())
2017-01-01 21:39:05 +03:00
}
defer hrsp.Body.Close()
2017-01-01 21:39:05 +03:00
return parseRsp(h.context, hrsp, h.codec, msg, h.opts)
2017-01-01 21:39:05 +03:00
}
func (h *httpStream) Error() error {
h.RLock()
defer h.RUnlock()
return h.err
}
func (h *httpStream) Close() error {
select {
case <-h.closed:
return nil
default:
close(h.closed)
return h.conn.Close()
}
}