micro/transport/http_transport.go

180 lines
2.9 KiB
Go
Raw Normal View History

2015-05-21 00:57:19 +03:00
package transport
import (
"bytes"
2015-05-21 23:08:19 +03:00
"errors"
2015-05-21 00:57:19 +03:00
"io/ioutil"
"net"
"net/http"
"net/url"
)
type headerRoundTripper struct {
r http.RoundTripper
}
type HttpTransport struct {
client *http.Client
}
type HttpTransportClient struct {
2015-05-21 21:24:57 +03:00
ht *HttpTransport
addr string
2015-05-21 00:57:19 +03:00
}
type HttpTransportSocket struct {
r *http.Request
w http.ResponseWriter
}
2015-05-21 23:08:19 +03:00
type HttpTransportListener struct {
2015-05-21 00:57:19 +03:00
listener net.Listener
}
func (t *headerRoundTripper) RoundTrip(r *http.Request) (*http.Response, error) {
r.Header.Set("X-Client-Version", "1.0")
return t.r.RoundTrip(r)
}
func (h *HttpTransportClient) Send(m *Message) (*Message, error) {
header := make(http.Header)
for k, v := range m.Header {
header.Set(k, v)
}
reqB := bytes.NewBuffer(m.Body)
defer reqB.Reset()
buf := &buffer{
reqB,
}
hreq := &http.Request{
Method: "POST",
URL: &url.URL{
Scheme: "http",
2015-05-21 21:24:57 +03:00
Host: h.addr,
2015-05-21 00:57:19 +03:00
},
Header: header,
Body: buf,
ContentLength: int64(reqB.Len()),
2015-05-21 21:24:57 +03:00
Host: h.addr,
2015-05-21 00:57:19 +03:00
}
2015-05-21 21:24:57 +03:00
rsp, err := h.ht.client.Do(hreq)
2015-05-21 00:57:19 +03:00
if err != nil {
return nil, err
}
defer rsp.Body.Close()
b, err := ioutil.ReadAll(rsp.Body)
if err != nil {
return nil, err
}
mr := &Message{
Header: make(map[string]string),
Body: b,
}
for k, v := range rsp.Header {
if len(v) > 0 {
mr.Header[k] = v[0]
} else {
mr.Header[k] = ""
}
}
return mr, nil
}
func (h *HttpTransportClient) Close() error {
return nil
}
2015-05-21 23:08:19 +03:00
func (h *HttpTransportSocket) Recv(m *Message) error {
if m == nil {
return errors.New("message passed in is nil")
}
2015-05-21 00:57:19 +03:00
b, err := ioutil.ReadAll(h.r.Body)
if err != nil {
2015-05-21 23:08:19 +03:00
return err
2015-05-21 00:57:19 +03:00
}
2015-05-21 23:08:19 +03:00
mr := &Message{
2015-05-21 00:57:19 +03:00
Header: make(map[string]string),
Body: b,
}
for k, v := range h.r.Header {
if len(v) > 0 {
2015-05-21 23:08:19 +03:00
mr.Header[k] = v[0]
2015-05-21 00:57:19 +03:00
} else {
2015-05-21 23:08:19 +03:00
mr.Header[k] = ""
2015-05-21 00:57:19 +03:00
}
}
2015-05-21 23:08:19 +03:00
*m = *mr
return nil
2015-05-21 00:57:19 +03:00
}
2015-05-21 23:08:19 +03:00
func (h *HttpTransportSocket) Send(m *Message) error {
for k, v := range m.Header {
h.w.Header().Set(k, v)
}
2015-05-21 00:57:19 +03:00
2015-05-21 23:08:19 +03:00
_, err := h.w.Write(m.Body)
2015-05-21 00:57:19 +03:00
return err
}
2015-05-21 23:08:19 +03:00
func (h *HttpTransportSocket) Close() error {
return nil
}
func (h *HttpTransportListener) Addr() string {
2015-05-21 00:57:19 +03:00
return h.listener.Addr().String()
}
2015-05-21 23:08:19 +03:00
func (h *HttpTransportListener) Close() error {
2015-05-21 00:57:19 +03:00
return h.listener.Close()
}
2015-05-21 23:08:19 +03:00
func (h *HttpTransportListener) Accept(fn func(Socket)) error {
2015-05-21 00:57:19 +03:00
srv := &http.Server{
Handler: http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
fn(&HttpTransportSocket{
r: r,
w: w,
})
}),
}
return srv.Serve(h.listener)
}
2015-05-21 23:08:19 +03:00
func (h *HttpTransport) Dial(addr string) (Client, error) {
2015-05-21 00:57:19 +03:00
return &HttpTransportClient{
2015-05-21 21:24:57 +03:00
ht: h,
addr: addr,
2015-05-21 00:57:19 +03:00
}, nil
}
2015-05-21 23:08:19 +03:00
func (h *HttpTransport) Listen(addr string) (Listener, error) {
2015-05-21 00:57:19 +03:00
l, err := net.Listen("tcp", addr)
if err != nil {
return nil, err
}
2015-05-21 23:08:19 +03:00
return &HttpTransportListener{
2015-05-21 00:57:19 +03:00
listener: l,
}, nil
}
func NewHttpTransport(addrs []string) *HttpTransport {
client := &http.Client{}
client.Transport = &headerRoundTripper{http.DefaultTransport}
return &HttpTransport{client: client}
}