2015-06-01 20:55:27 +03:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"fmt"
|
2015-11-20 19:17:33 +03:00
|
|
|
"github.com/micro/go-micro/transport"
|
2015-06-01 20:55:27 +03:00
|
|
|
rpc "github.com/youtube/vitess/go/rpcplus"
|
|
|
|
js "github.com/youtube/vitess/go/rpcplus/jsonrpc"
|
|
|
|
pb "github.com/youtube/vitess/go/rpcplus/pbrpc"
|
|
|
|
)
|
|
|
|
|
|
|
|
type rpcPlusCodec struct {
|
|
|
|
socket transport.Socket
|
|
|
|
codec rpc.ServerCodec
|
|
|
|
|
|
|
|
req *transport.Message
|
2015-10-16 00:06:43 +03:00
|
|
|
buf *readWriteCloser
|
|
|
|
}
|
2015-06-01 20:55:27 +03:00
|
|
|
|
2015-10-16 00:06:43 +03:00
|
|
|
type readWriteCloser struct {
|
2015-06-01 20:55:27 +03:00
|
|
|
wbuf *bytes.Buffer
|
|
|
|
rbuf *bytes.Buffer
|
|
|
|
}
|
|
|
|
|
2015-10-16 00:06:43 +03:00
|
|
|
func (rwc *readWriteCloser) Read(p []byte) (n int, err error) {
|
|
|
|
return rwc.rbuf.Read(p)
|
2015-06-01 20:55:27 +03:00
|
|
|
}
|
|
|
|
|
2015-10-16 00:06:43 +03:00
|
|
|
func (rwc *readWriteCloser) Write(p []byte) (n int, err error) {
|
|
|
|
return rwc.wbuf.Write(p)
|
|
|
|
}
|
2015-06-01 20:55:27 +03:00
|
|
|
|
2015-10-16 00:06:43 +03:00
|
|
|
func (rwc *readWriteCloser) Close() error {
|
|
|
|
rwc.rbuf.Reset()
|
|
|
|
rwc.wbuf.Reset()
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func newRpcPlusCodec(req *transport.Message, socket transport.Socket) rpc.ServerCodec {
|
2015-10-16 13:15:17 +03:00
|
|
|
r := &rpcPlusCodec{
|
|
|
|
socket: socket,
|
|
|
|
req: req,
|
2015-10-16 00:06:43 +03:00
|
|
|
buf: &readWriteCloser{
|
|
|
|
rbuf: bytes.NewBuffer(req.Body),
|
|
|
|
wbuf: bytes.NewBuffer(nil),
|
|
|
|
},
|
2015-10-16 13:15:17 +03:00
|
|
|
}
|
2015-10-16 00:06:43 +03:00
|
|
|
|
|
|
|
switch req.Header["Content-Type"] {
|
2015-06-01 20:55:27 +03:00
|
|
|
case "application/octet-stream":
|
2015-10-16 00:06:43 +03:00
|
|
|
r.codec = pb.NewServerCodec(r.buf)
|
2015-06-01 20:55:27 +03:00
|
|
|
case "application/json":
|
2015-10-16 00:06:43 +03:00
|
|
|
r.codec = js.NewServerCodec(r.buf)
|
2015-06-01 20:55:27 +03:00
|
|
|
}
|
|
|
|
|
2015-10-16 00:06:43 +03:00
|
|
|
return r
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *rpcPlusCodec) ReadRequestHeader(r *rpc.Request) error {
|
|
|
|
if c.codec == nil {
|
|
|
|
return fmt.Errorf("unsupported content type %s", c.req.Header["Content-Type"])
|
|
|
|
}
|
2015-06-01 20:55:27 +03:00
|
|
|
return c.codec.ReadRequestHeader(r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *rpcPlusCodec) ReadRequestBody(r interface{}) error {
|
|
|
|
return c.codec.ReadRequestBody(r)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *rpcPlusCodec) WriteResponse(r *rpc.Response, body interface{}, last bool) error {
|
2015-10-16 00:06:43 +03:00
|
|
|
if c.codec == nil {
|
2015-06-01 20:55:27 +03:00
|
|
|
return fmt.Errorf("unsupported request type: %s", c.req.Header["Content-Type"])
|
|
|
|
}
|
2015-10-16 00:06:43 +03:00
|
|
|
c.buf.wbuf.Reset()
|
|
|
|
if err := c.codec.WriteResponse(r, body, last); err != nil {
|
2015-06-01 20:55:27 +03:00
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
|
|
|
return c.socket.Send(&transport.Message{
|
|
|
|
Header: map[string]string{"Content-Type": c.req.Header["Content-Type"]},
|
2015-10-16 00:06:43 +03:00
|
|
|
Body: c.buf.wbuf.Bytes(),
|
2015-06-01 20:55:27 +03:00
|
|
|
})
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
func (c *rpcPlusCodec) Close() error {
|
2015-10-16 00:06:43 +03:00
|
|
|
c.buf.Close()
|
2015-06-01 20:55:27 +03:00
|
|
|
return c.socket.Close()
|
|
|
|
}
|