1
0
mirror of https://github.com/go-micro/go-micro.git synced 2024-11-24 08:02:32 +02:00
go-micro/service.go

184 lines
3.4 KiB
Go
Raw Normal View History

2016-01-02 21:14:56 +02:00
package micro
2015-12-21 01:50:16 +02:00
import (
"os"
"os/signal"
2019-09-10 05:17:36 +02:00
"strings"
2017-10-09 14:55:03 +02:00
"sync"
2015-12-21 01:50:16 +02:00
"syscall"
"github.com/micro/go-micro/client"
2019-06-21 14:36:11 +02:00
"github.com/micro/go-micro/config/cmd"
2019-08-06 18:53:14 +02:00
"github.com/micro/go-micro/debug/handler"
"github.com/micro/go-micro/debug/profile"
"github.com/micro/go-micro/debug/profile/pprof"
2019-09-10 05:17:36 +02:00
"github.com/micro/go-micro/plugin"
2015-12-21 01:50:16 +02:00
"github.com/micro/go-micro/server"
2019-09-10 05:17:36 +02:00
"github.com/micro/go-micro/util/log"
2019-11-16 20:52:27 +02:00
"github.com/micro/go-micro/util/wrapper"
2015-12-21 01:50:16 +02:00
)
type service struct {
opts Options
once sync.Once
2015-12-21 01:50:16 +02:00
}
func newService(opts ...Option) Service {
options := newOptions(opts...)
// service name
serviceName := options.Server.Options().Name
// wrap client to inject From-Service header on any calls
options.Client = wrapper.FromService(serviceName, options.Client)
2015-12-21 01:50:16 +02:00
return &service{
opts: options,
}
}
2019-10-07 09:32:28 +02:00
func (s *service) Name() string {
return s.opts.Server.Options().Name
}
// Init initialises options. Additionally it calls cmd.Init
// which parses command line flags. cmd.Init is only called
// on first Init.
2016-01-01 03:16:21 +02:00
func (s *service) Init(opts ...Option) {
// process options
for _, o := range opts {
o(&s.opts)
}
s.once.Do(func() {
2019-09-10 05:17:36 +02:00
// setup the plugins
for _, p := range strings.Split(os.Getenv("MICRO_PLUGIN"), ",") {
if len(p) == 0 {
continue
}
// load the plugin
c, err := plugin.Load(p)
if err != nil {
log.Fatal(err)
}
// initialise the plugin
if err := plugin.Init(c); err != nil {
log.Fatal(err)
}
}
// Initialise the command flags, overriding new service
_ = s.opts.Cmd.Init(
cmd.Broker(&s.opts.Broker),
cmd.Registry(&s.opts.Registry),
cmd.Transport(&s.opts.Transport),
cmd.Client(&s.opts.Client),
cmd.Server(&s.opts.Server),
)
})
2016-01-01 03:16:21 +02:00
}
2016-01-02 21:12:17 +02:00
func (s *service) Options() Options {
return s.opts
2016-01-01 03:16:21 +02:00
}
2015-12-21 01:50:16 +02:00
func (s *service) Client() client.Client {
return s.opts.Client
}
func (s *service) Server() server.Server {
return s.opts.Server
}
func (s *service) String() string {
2019-01-24 15:22:17 +02:00
return "micro"
2015-12-21 01:50:16 +02:00
}
func (s *service) Start() error {
2016-01-01 03:16:21 +02:00
for _, fn := range s.opts.BeforeStart {
if err := fn(); err != nil {
return err
}
}
2015-12-21 01:50:16 +02:00
if err := s.opts.Server.Start(); err != nil {
return err
}
for _, fn := range s.opts.AfterStart {
if err := fn(); err != nil {
return err
}
}
2015-12-21 01:50:16 +02:00
return nil
}
func (s *service) Stop() error {
var gerr error
for _, fn := range s.opts.BeforeStop {
if err := fn(); err != nil {
gerr = err
}
}
2015-12-21 01:50:16 +02:00
if err := s.opts.Server.Stop(); err != nil {
return err
}
2016-01-01 03:16:21 +02:00
for _, fn := range s.opts.AfterStop {
if err := fn(); err != nil {
gerr = err
}
}
2016-01-01 03:16:21 +02:00
return gerr
2015-12-21 01:50:16 +02:00
}
func (s *service) Run() error {
2019-08-06 18:53:14 +02:00
// register the debug handler
s.opts.Server.Handle(
s.opts.Server.NewHandler(
handler.DefaultHandler,
server.InternalHandler(true),
),
)
// start the profiler
// TODO: set as an option to the service, don't just use pprof
if prof := os.Getenv("MICRO_DEBUG_PROFILE"); len(prof) > 0 {
service := s.opts.Server.Options().Name
version := s.opts.Server.Options().Version
id := s.opts.Server.Options().Id
profiler := pprof.NewProfile(
profile.Name(service + "." + version + "." + id),
)
if err := profiler.Start(); err != nil {
return err
}
defer profiler.Stop()
}
2015-12-21 01:50:16 +02:00
if err := s.Start(); err != nil {
return err
}
ch := make(chan os.Signal, 1)
if s.opts.Signal {
signal.Notify(ch, syscall.SIGTERM, syscall.SIGINT, syscall.SIGQUIT)
}
select {
// wait on kill signal
case <-ch:
// wait on context cancel
case <-s.opts.Context.Done():
}
2015-12-21 01:50:16 +02:00
2018-03-13 12:40:13 +02:00
return s.Stop()
2015-12-21 01:50:16 +02:00
}