Documentation
¶
Overview ¶
Package server is an interface for a micro server
Index ¶
- Variables
- func NewContext(ctx context.Context, s Server) context.Context
- func NewRegisterService(s Server) (*register.Service, error)
- type Error
- func (e *Error) BadGateway(format string, a ...interface{}) error
- func (e *Error) BadRequest(format string, a ...interface{}) error
- func (e *Error) Conflict(format string, a ...interface{}) error
- func (e *Error) Forbidden(format string, a ...interface{}) error
- func (e *Error) GatewayTimeout(format string, a ...interface{}) error
- func (e *Error) InternalServerError(format string, a ...interface{}) error
- func (e *Error) MethodNotAllowed(format string, a ...interface{}) error
- func (e *Error) NotFound(format string, a ...interface{}) error
- func (e *Error) NotImplemented(format string, a ...interface{}) error
- func (e *Error) ServiceUnavailable(format string, a ...interface{}) error
- func (e *Error) Timeout(format string, a ...interface{}) error
- func (e *Error) Unauthorized(format string, a ...interface{}) error
- type Handler
- type HandlerFunc
- type HandlerOption
- type HandlerOptions
- type HandlerWrapper
- type Option
- func Address(a string) Option
- func Advertise(a string) Option
- func Codec(contentType string, c codec.Codec) Option
- func Context(ctx context.Context) Option
- func ID(id string) Option
- func Listener(l net.Listener) Option
- func Logger(l logger.Logger) Option
- func MaxConn(n int) Option
- func Metadata(md metadata.Metadata) Option
- func Meter(m meter.Meter) Option
- func Name(n string) Option
- func Namespace(n string) Option
- func Register(r register.Register) Option
- func RegisterCheck(fn func(context.Context) error) Option
- func RegisterInterval(t time.Duration) Option
- func RegisterTTL(t time.Duration) Option
- func SetOption(k, v interface{}) Option
- func TLSConfig(t *tls.Config) Option
- func Tracer(t tracer.Tracer) Option
- func Transport(t transport.Transport) Option
- func Version(v string) Option
- func Wait(wg *sync.WaitGroup) Option
- func WrapHandler(w HandlerWrapper) Option
- type Options
- type Request
- type Response
- type Server
- type Stream
- type StreamWrapper
Constants ¶
This section is empty.
Variables ¶
var ( // ServerRequestDurationSeconds specifies meter metric name ServerRequestDurationSeconds = "server_request_duration_seconds" // ServerRequestLatencyMicroseconds specifies meter metric name ServerRequestLatencyMicroseconds = "server_request_latency_microseconds" // ServerRequestTotal specifies meter metric name ServerRequestTotal = "server_request_total" // ServerRequestInflight specifies meter metric name ServerRequestInflight = "server_request_inflight" )
var ( // DefaultRegisterFunc uses backoff to register service DefaultRegisterFunc = func(svc *register.Service, config Options) error { var err error opts := []register.RegisterOption{ register.RegisterTTL(config.RegisterTTL), register.RegisterDomain(config.Namespace), } for i := 0; i <= config.RegisterAttempts; i++ { err = config.Register.Register(config.Context, svc, opts...) if err == nil { break } time.Sleep(backoff.Do(i + 1)) continue } return err } // DefaultDeregisterFunc uses backoff to deregister service DefaultDeregisterFunc = func(svc *register.Service, config Options) error { var err error opts := []register.DeregisterOption{ register.DeregisterDomain(config.Namespace), } for i := 0; i <= config.DeregisterAttempts; i++ { err = config.Register.Deregister(config.Context, svc, opts...) if err == nil { break } time.Sleep(backoff.Do(i + 1)) continue } return err } )
var ( // DefaultAddress will be used if no address passed, use secure localhost DefaultAddress = "127.0.0.1:0" // DefaultName will be used if no name passed DefaultName = "server" // DefaultVersion will be used if no version passed DefaultVersion = "latest" // DefaultRegisterCheck holds func that run before register server DefaultRegisterCheck = func(context.Context) error { return nil } // DefaultRegisterInterval holds interval for register DefaultRegisterInterval = time.Second * 30 // DefaultRegisterTTL holds register record ttl, must be multiple of DefaultRegisterInterval DefaultRegisterTTL = time.Second * 90 // DefaultNamespace will be used if no namespace passed DefaultNamespace = "micro" // DefaultMaxMsgSize holds default max msg ssize DefaultMaxMsgSize = 1024 * 1024 * 4 // 4Mb // DefaultMaxMsgRecvSize holds default max recv size DefaultMaxMsgRecvSize = 1024 * 1024 * 4 // 4Mb // DefaultMaxMsgSendSize holds default max send size DefaultMaxMsgSendSize = 1024 * 1024 * 4 // 4Mb )
var DefaultCodecs = map[string]codec.Codec{ "application/octet-stream": codec.NewCodec(), }
DefaultCodecs will be used to encode/decode
var DefaultServer = NewServer()
DefaultServer default server
Functions ¶
func NewContext ¶
NewContext stores Server to context
Types ¶
type Error ¶
type Error struct {
// contains filtered or unexported fields
}
func (*Error) BadGateway ¶
func (*Error) BadRequest ¶
func (*Error) GatewayTimeout ¶
func (*Error) InternalServerError ¶
func (*Error) MethodNotAllowed ¶
func (*Error) NotImplemented ¶
func (*Error) ServiceUnavailable ¶
func (*Error) Unauthorized ¶
type Handler ¶
type Handler interface { Name() string Handler() interface{} Endpoints() []*register.Endpoint Options() HandlerOptions }
Handler interface represents a request handler. It's generated by passing any type of public concrete object with endpoints into server.NewHandler. Most will pass in a struct.
Example:
type Greeter struct {} func (g *Greeter) Hello(context, request, response) error { return nil }
type HandlerFunc ¶
HandlerFunc represents a single method of a handler. It's used primarily for the wrappers. What's handed to the actual method is the concrete request and response types.
type HandlerOption ¶
type HandlerOption func(*HandlerOptions)
HandlerOption func
func EndpointMetadata ¶
func EndpointMetadata(name string, md metadata.Metadata) HandlerOption
EndpointMetadata is a Handler option that allows metadata to be added to individual endpoints.
func SetHandlerOption ¶
func SetHandlerOption(k, v interface{}) HandlerOption
SetHandlerOption returns a function to setup a context with given value
type HandlerOptions ¶
type HandlerOptions struct { // Context holds external options Context context.Context // Metadata for handler Metadata map[string]metadata.Metadata }
HandlerOptions struct
func NewHandlerOptions ¶
func NewHandlerOptions(opts ...HandlerOption) HandlerOptions
NewHandlerOptions creates new HandlerOptions
type HandlerWrapper ¶
type HandlerWrapper func(HandlerFunc) HandlerFunc
HandlerWrapper wraps the HandlerFunc and returns the equivalent
type Option ¶
type Option func(*Options)
Option func
func Context ¶
Context specifies a context for the service. Can be used to signal shutdown of the service Can be used for extra option values.
func RegisterCheck ¶
RegisterCheck run func before register service
func RegisterInterval ¶
RegisterInterval registers service with at interval
func RegisterTTL ¶
RegisterTTL registers service with a TTL
func SetOption ¶
func SetOption(k, v interface{}) Option
SetOption returns a function to setup a context with given value
func Wait ¶
Wait tells the server to wait for requests to finish before exiting If `wg` is nil, server only wait for completion of rpc handler. For user need finer grained control, pass a concrete `wg` here, server will wait against it on stop.
func WrapHandler ¶
func WrapHandler(w HandlerWrapper) Option
WrapHandler adds a handler Wrapper to a list of options passed into the server
type Options ¶
type Options struct { // Context holds the external options and can be used for server shutdown Context context.Context // Register holds the register Register register.Register // Tracer holds the tracer Tracer tracer.Tracer // Logger holds the logger Logger logger.Logger // Meter holds the meter Meter meter.Meter // Transport holds the transport Transport transport.Transport // Listener may be passed if already created Listener net.Listener // Wait group Wait *sync.WaitGroup // TLSConfig specifies tls.Config for secure serving TLSConfig *tls.Config // Metadata holds the server metadata Metadata metadata.Metadata // RegisterCheck run before register server RegisterCheck func(context.Context) error // Codecs map to handle content-type Codecs map[string]codec.Codec // ID holds the id of the server ID string // Namespace for te server Namespace string // Name holds the server name Name string // Address holds the server address Address string // Advertise holds the advertise address Advertise string // Version holds the server version Version string // HdlrWrappers holds the handler wrappers HdlrWrappers []HandlerWrapper // RegisterAttempts holds the number of register attempts before error RegisterAttempts int // RegisterInterval holds he interval for re-register RegisterInterval time.Duration // RegisterTTL specifies TTL for register record RegisterTTL time.Duration // MaxConn limits number of connections MaxConn int // DeregisterAttempts holds the number of deregister attempts before error DeregisterAttempts int // Hooks may contains HandlerWrapper or Server func wrapper Hooks options.Hooks }
Options server struct
func NewOptions ¶
NewOptions returns new options struct with default or passed values
type Request ¶
type Request interface { // Service name requested Service() string // The action requested Method() string // Endpoint name requested Endpoint() string // Content type provided ContentType() string // Header of the request Header() metadata.Metadata // Body is the initial decoded value Body() interface{} // Read the undecoded request body Read() ([]byte, error) // The encoded message stream Codec() codec.Codec // Indicates whether its a stream Stream() bool }
Request is a synchronous request interface
type Response ¶
type Response interface { // Encoded writer Codec() codec.Codec // Write the header WriteHeader(md metadata.Metadata) // write a response directly to the client Write([]byte) error }
Response is the response writer for unencoded messages
type Server ¶
type Server interface { // Name returns server name Name() string // Initialise options Init(...Option) error // Retrieve the options Options() Options // Register a handler Handle(h Handler) error // Create a new handler NewHandler(h interface{}, opts ...HandlerOption) Handler // Start the server Start() error // Stop the server Stop() error // Server implementation String() string }
Server is a simple micro server abstraction
func FromContext ¶
FromContext returns Server from context
type Stream ¶
type Stream interface { // Context for the stream Context() context.Context // Request returns request Request() Request // Send will encode and send a request Send(msg interface{}) error // Recv will decode and read a response Recv(msg interface{}) error // SendMsg will encode and send a request SendMsg(msg interface{}) error // RecvMsg will decode and read a response RecvMsg(msg interface{}) error // Error returns stream error Error() error // Close closes the stream Close() error }
Stream represents a stream established with a client. A stream can be bidirectional which is indicated by the request. The last error will be left in Error(). EOF indicates end of the stream.
type StreamWrapper ¶
StreamWrapper wraps a Stream interface and returns the equivalent. Because streams exist for the lifetime of a method invocation this is a convenient way to wrap a Stream as its in use for trace, monitoring, metrics, etc.