micro/micro.go

123 lines
3.2 KiB
Go
Raw Normal View History

2019-01-23 21:15:17 +03:00
// Package micro is a pluggable framework for microservices
2016-01-02 22:14:56 +03:00
package micro
2015-12-21 02:50:16 +03:00
import (
2018-03-03 14:53:52 +03:00
"context"
"github.com/micro/go-micro/v2/client"
"github.com/micro/go-micro/v2/server"
2015-12-21 02:50:16 +03:00
)
2016-01-28 21:23:24 +03:00
type serviceKey struct{}
2015-12-23 03:02:42 +03:00
// Service is an interface that wraps the lower level libraries
// within go-micro. Its a convenience method for building
// and initialising services.
2015-12-21 02:50:16 +03:00
type Service interface {
2019-10-07 10:32:28 +03:00
// The service name
Name() string
// Init initialises options
2016-01-01 04:16:21 +03:00
Init(...Option)
2019-10-07 10:32:28 +03:00
// Options returns the current options
2016-01-02 22:12:17 +03:00
Options() Options
2019-10-07 10:32:28 +03:00
// Client is used to call services
2015-12-21 02:50:16 +03:00
Client() client.Client
2019-10-07 10:32:28 +03:00
// Server is for handling requests and events
2015-12-21 02:50:16 +03:00
Server() server.Server
2019-10-07 10:32:28 +03:00
// Run the service
2015-12-21 02:50:16 +03:00
Run() error
2019-10-07 10:32:28 +03:00
// The service implementation
2015-12-21 02:50:16 +03:00
String() string
}
2017-05-31 17:03:24 +03:00
// Function is a one time executing Service
type Function interface {
// Inherits Service interface
Service
// Done signals to complete execution
Done() error
// Handle registers an RPC handler
Handle(v interface{}) error
// Subscribe registers a subscriber
Subscribe(topic string, v interface{}) error
}
2019-12-16 20:37:11 +03:00
/*
// Type Event is a future type for acting on asynchronous events
type Event interface {
// Publish publishes a message to the event topic
Publish(ctx context.Context, msg interface{}, opts ...client.PublishOption) error
// Subscribe to the event
Subscribe(ctx context.Context, v in
}
// Resource is a future type for defining dependencies
type Resource interface {
// Name of the resource
Name() string
// Type of resource
Type() string
// Method of creation
Create() error
}
*/
2019-12-18 02:05:46 +03:00
// Event is used to publish messages to a topic
type Event interface {
2019-12-16 20:37:11 +03:00
// Publish publishes a message to the event topic
2017-03-18 22:00:11 +03:00
Publish(ctx context.Context, msg interface{}, opts ...client.PublishOption) error
}
2019-12-18 02:05:46 +03:00
// Type alias to satisfy the deprecation
type Publisher = Event
2015-12-21 02:50:16 +03:00
type Option func(*Options)
var (
2019-01-24 13:11:02 +03:00
HeaderPrefix = "Micro-"
2015-12-21 02:50:16 +03:00
)
2017-08-25 12:56:57 +03:00
// NewService creates and returns a new Service based on the packages within.
2015-12-21 02:50:16 +03:00
func NewService(opts ...Option) Service {
return newService(opts...)
}
2016-01-28 21:23:24 +03:00
2016-06-19 18:02:14 +03:00
// FromContext retrieves a Service from the Context.
2016-01-28 21:23:24 +03:00
func FromContext(ctx context.Context) (Service, bool) {
s, ok := ctx.Value(serviceKey{}).(Service)
return s, ok
}
2016-06-19 18:02:14 +03:00
// NewContext returns a new Context with the Service embedded within it.
2016-01-28 21:23:24 +03:00
func NewContext(ctx context.Context, s Service) context.Context {
return context.WithValue(ctx, serviceKey{}, s)
}
2017-03-18 22:00:11 +03:00
2017-05-31 22:45:36 +03:00
// NewFunction returns a new Function for a one time executing Service
func NewFunction(opts ...Option) Function {
return newFunction(opts...)
}
2019-12-18 02:05:46 +03:00
// NewEvent creates a new event publisher
func NewEvent(topic string, c client.Client) Event {
2017-03-18 22:00:11 +03:00
if c == nil {
c = client.NewClient()
}
2019-12-18 02:05:46 +03:00
return &event{c, topic}
}
// Deprecated: NewPublisher returns a new Publisher
func NewPublisher(topic string, c client.Client) Event {
return NewEvent(topic, c)
2017-03-18 22:00:11 +03:00
}
// RegisterHandler is syntactic sugar for registering a handler
func RegisterHandler(s server.Server, h interface{}, opts ...server.HandlerOption) error {
return s.Handle(s.NewHandler(h, opts...))
}
// RegisterSubscriber is syntactic sugar for registering a subscriber
func RegisterSubscriber(topic string, s server.Server, h interface{}, opts ...server.SubscriberOption) error {
2017-08-24 10:47:32 +03:00
return s.Subscribe(s.NewSubscriber(topic, h, opts...))
2017-03-18 22:00:11 +03:00
}