2015-01-14 02:31:27 +03:00
|
|
|
package client
|
|
|
|
|
2015-05-21 21:24:57 +03:00
|
|
|
import (
|
|
|
|
"github.com/myodc/go-micro/transport"
|
2015-05-23 13:53:40 +03:00
|
|
|
"golang.org/x/net/context"
|
2015-05-21 21:24:57 +03:00
|
|
|
)
|
|
|
|
|
2015-01-14 02:31:27 +03:00
|
|
|
type Client interface {
|
|
|
|
NewRequest(string, string, interface{}) Request
|
|
|
|
NewProtoRequest(string, string, interface{}) Request
|
|
|
|
NewJsonRequest(string, string, interface{}) Request
|
2015-05-23 13:53:40 +03:00
|
|
|
Call(context.Context, Request, interface{}) error
|
|
|
|
CallRemote(context.Context, string, Request, interface{}) error
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2015-05-21 21:24:57 +03:00
|
|
|
type options struct {
|
|
|
|
transport transport.Transport
|
|
|
|
}
|
|
|
|
|
2015-05-21 21:28:57 +03:00
|
|
|
type Option func(*options)
|
2015-05-21 21:24:57 +03:00
|
|
|
|
2015-01-14 02:31:27 +03:00
|
|
|
var (
|
2015-05-23 19:40:53 +03:00
|
|
|
DefaultClient Client = newRpcClient()
|
2015-01-14 02:31:27 +03:00
|
|
|
)
|
|
|
|
|
2015-05-21 21:28:57 +03:00
|
|
|
func Transport(t transport.Transport) Option {
|
|
|
|
return func(o *options) {
|
|
|
|
o.transport = t
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-23 13:53:40 +03:00
|
|
|
func Call(ctx context.Context, request Request, response interface{}) error {
|
|
|
|
return DefaultClient.Call(ctx, request, response)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2015-05-23 13:53:40 +03:00
|
|
|
func CallRemote(ctx context.Context, address string, request Request, response interface{}) error {
|
|
|
|
return DefaultClient.CallRemote(ctx, address, request, response)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
2015-05-23 22:04:16 +03:00
|
|
|
func NewClient(opt ...Option) Client {
|
2015-05-23 19:40:53 +03:00
|
|
|
return newRpcClient(opt...)
|
|
|
|
}
|
|
|
|
|
2015-01-14 02:31:27 +03:00
|
|
|
func NewRequest(service, method string, request interface{}) Request {
|
2015-05-21 21:24:57 +03:00
|
|
|
return DefaultClient.NewRequest(service, method, request)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewProtoRequest(service, method string, request interface{}) Request {
|
2015-05-21 21:24:57 +03:00
|
|
|
return DefaultClient.NewProtoRequest(service, method, request)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|
|
|
|
|
|
|
|
func NewJsonRequest(service, method string, request interface{}) Request {
|
2015-05-21 21:24:57 +03:00
|
|
|
return DefaultClient.NewJsonRequest(service, method, request)
|
2015-01-14 02:31:27 +03:00
|
|
|
}
|