2015-01-14 02:31:27 +03:00
|
|
|
package server
|
|
|
|
|
|
|
|
import (
|
|
|
|
"bytes"
|
|
|
|
"sync"
|
|
|
|
|
2015-01-31 18:49:21 +03:00
|
|
|
log "github.com/golang/glog"
|
2015-05-21 00:57:19 +03:00
|
|
|
"github.com/myodc/go-micro/transport"
|
2015-01-14 02:31: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"
|
2015-05-21 00:57:19 +03:00
|
|
|
"golang.org/x/net/context"
|
2015-01-14 02:31:27 +03:00
|
|
|
)
|
|
|
|
|
|
|
|
type RpcServer struct {
|
2015-05-21 21:24:57 +03:00
|
|
|
mtx sync.RWMutex
|
|
|
|
address string
|
|
|
|
opts options
|
|
|
|
rpc *rpc.Server
|
|
|
|
exit chan chan error
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
var (
|
|
|
|
HealthPath = "/_status/health"
|
|
|
|
RpcPath = "/_rpc"
|
|
|
|
)
|
|
|
|
|
2015-05-21 23:08:19 +03:00
|
|
|
func (s *RpcServer) accept(sock transport.Socket) {
|
2015-05-21 00:57:19 +03:00
|
|
|
// serveCtx := getServerContext(req)
|
2015-05-21 23:08:19 +03:00
|
|
|
var msg transport.Message
|
|
|
|
if err := sock.Recv(&msg); err != nil {
|
2015-01-14 02:31:27 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-05-21 00:57:19 +03:00
|
|
|
rbq := bytes.NewBuffer(msg.Body)
|
2015-01-14 02:31:27 +03:00
|
|
|
rsp := bytes.NewBuffer(nil)
|
|
|
|
defer rsp.Reset()
|
|
|
|
defer rbq.Reset()
|
|
|
|
|
|
|
|
buf := &buffer{
|
|
|
|
rbq,
|
|
|
|
rsp,
|
|
|
|
}
|
|
|
|
|
|
|
|
var cc rpc.ServerCodec
|
2015-05-21 00:57:19 +03:00
|
|
|
switch msg.Header["Content-Type"] {
|
2015-01-14 02:31:27 +03:00
|
|
|
case "application/octet-stream":
|
|
|
|
cc = pb.NewServerCodec(buf)
|
|
|
|
case "application/json":
|
|
|
|
cc = js.NewServerCodec(buf)
|
|
|
|
default:
|
|
|
|
return
|
2015-05-21 00:57:19 +03:00
|
|
|
// return nil, errors.InternalServerError("go.micro.server", fmt.Sprintf("Unsupported content-type: %v", req.Header.Get("Content-Type")))
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2015-05-21 00:57:19 +03:00
|
|
|
//ctx := newContext(&ctx{}, serveCtx)
|
2015-05-21 23:08:19 +03:00
|
|
|
if err := s.rpc.ServeRequestWithContext(context.Background(), cc); err != nil {
|
2015-01-14 02:31:27 +03:00
|
|
|
return
|
|
|
|
}
|
|
|
|
|
2015-05-21 23:08:19 +03:00
|
|
|
sock.Send(&transport.Message{
|
|
|
|
Header: map[string]string{
|
|
|
|
"Content-Type": msg.Header["Content-Type"],
|
|
|
|
},
|
|
|
|
Body: rsp.Bytes(),
|
|
|
|
})
|
2015-05-21 00:57:19 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *RpcServer) Address() string {
|
|
|
|
s.mtx.RLock()
|
|
|
|
address := s.address
|
|
|
|
s.mtx.RUnlock()
|
|
|
|
return address
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func (s *RpcServer) Init() error {
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *RpcServer) NewReceiver(handler interface{}) Receiver {
|
|
|
|
return newRpcReceiver("", handler)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *RpcServer) NewNamedReceiver(name string, handler interface{}) Receiver {
|
|
|
|
return newRpcReceiver(name, handler)
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *RpcServer) Register(r Receiver) error {
|
|
|
|
if len(r.Name()) > 0 {
|
|
|
|
s.rpc.RegisterName(r.Name(), r.Handler())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
s.rpc.Register(r.Handler())
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *RpcServer) Start() error {
|
2015-05-22 01:06:01 +03:00
|
|
|
registerHealthChecker(s)
|
2015-01-14 02:31:27 +03:00
|
|
|
|
2015-05-21 23:08:19 +03:00
|
|
|
ts, err := s.opts.transport.Listen(s.address)
|
2015-01-14 02:31:27 +03:00
|
|
|
if err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
|
2015-05-21 00:57:19 +03:00
|
|
|
log.Infof("Listening on %s", ts.Addr())
|
2015-01-14 02:31:27 +03:00
|
|
|
|
2015-05-21 00:57:19 +03:00
|
|
|
s.mtx.RLock()
|
|
|
|
s.address = ts.Addr()
|
|
|
|
s.mtx.RUnlock()
|
2015-05-16 02:34:02 +03:00
|
|
|
|
2015-05-21 23:08:19 +03:00
|
|
|
go ts.Accept(s.accept)
|
2015-01-14 02:31:27 +03:00
|
|
|
|
|
|
|
go func() {
|
|
|
|
ch := <-s.exit
|
2015-05-21 00:57:19 +03:00
|
|
|
ch <- ts.Close()
|
2015-01-14 02:31:27 +03:00
|
|
|
}()
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
|
|
|
|
|
|
|
func (s *RpcServer) Stop() error {
|
|
|
|
ch := make(chan error)
|
|
|
|
s.exit <- ch
|
|
|
|
return <-ch
|
|
|
|
}
|
|
|
|
|
2015-05-21 21:28:57 +03:00
|
|
|
func NewRpcServer(address string, opt ...Option) *RpcServer {
|
2015-05-21 21:24:57 +03:00
|
|
|
var opts options
|
|
|
|
|
|
|
|
for _, o := range opt {
|
|
|
|
o(&opts)
|
|
|
|
}
|
|
|
|
|
|
|
|
if opts.transport == nil {
|
|
|
|
opts.transport = transport.DefaultTransport
|
|
|
|
}
|
|
|
|
|
2015-01-14 02:31:27 +03:00
|
|
|
return &RpcServer{
|
2015-05-21 21:24:57 +03:00
|
|
|
opts: opts,
|
|
|
|
address: address,
|
|
|
|
rpc: rpc.NewServer(),
|
|
|
|
exit: make(chan chan error),
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
}
|