123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398 |
- package micro
- import (
- "context"
- "crypto/md5"
- "encoding/hex"
- "git.nspix.com/golang/micro/gateway/cli"
- "git.nspix.com/golang/micro/stats/prometheusbackend"
- "git.nspix.com/golang/micro/utils/machineid"
- "github.com/prometheus/client_golang/prometheus/promhttp"
- "net"
- hp "net/http"
- "net/http/pprof"
- "os"
- "os/signal"
- "strings"
- "sync"
- "syscall"
- "time"
- "git.nspix.com/golang/micro/gateway"
- "git.nspix.com/golang/micro/gateway/http"
- "git.nspix.com/golang/micro/gateway/rpc"
- "git.nspix.com/golang/micro/log"
- "git.nspix.com/golang/micro/registry"
- "git.nspix.com/golang/micro/utils/docker"
- "git.nspix.com/golang/micro/utils/net/ip"
- "git.nspix.com/golang/micro/utils/unsafestr"
- )
- type Service struct {
- opts *Options
- ctx context.Context
- cancelFunc context.CancelFunc
- registry registry.Registry
- node *registry.ServiceNode
- listener net.Listener
- gateway *gateway.Gateway
- wg sync.WaitGroup
- httpSvr *http.Server
- rpcSvr *rpc.Server
- cliSvr *cli.Server
- upTime time.Time
- client *Client
- environment string
- }
- func (svr *Service) wrapSync(f func()) {
- svr.wg.Add(1)
- go func() {
- f()
- svr.wg.Done()
- }()
- }
- func (svr *Service) eventLoop() {
- var (
- err error
- registryTicker *time.Ticker
- collectTicker *time.Ticker
- )
- registryTicker = time.NewTicker(time.Second * 20)
- collectTicker = time.NewTicker(time.Second * 2)
- defer func() {
- collectTicker.Stop()
- registryTicker.Stop()
- }()
- for {
- select {
- case <-registryTicker.C:
- if !svr.opts.DisableRegister {
- if err = svr.registry.Register(svr.node); err != nil {
- log.Warnf("registry service %s error: %s", svr.opts.Name, err.Error())
- }
- }
- case <-collectTicker.C:
- if svr.opts.EnableReport {
- _ = defaultReporter.Do(svr.opts.Name)
- }
- case <-svr.ctx.Done():
- return
- }
- }
- }
- func (svr *Service) Handle(method string, cb HandleFunc, opts ...HandleOption) {
- opt := &HandleOptions{HttpMethod: "POST"}
- for _, f := range opts {
- f(opt)
- }
- //HTTP处理
- if svr.opts.EnableHttp && !opt.DisableHttp {
- if opt.HttpPath == "" {
- opt.HttpPath = strings.ReplaceAll(method, ".", "/")
- }
- if opt.HttpPath[0] != '/' {
- opt.HttpPath = "/" + opt.HttpPath
- }
- svr.httpSvr.Handle(opt.HttpMethod, opt.HttpPath, func(ctx *http.Context) (err error) {
- return cb(ctx)
- })
- }
- //启动RPC功能
- if svr.opts.EnableRPC && !opt.DisableRpc {
- svr.rpcSvr.Handle(method, func(ctx *rpc.Context) error {
- return cb(ctx)
- })
- }
- return
- }
- func (svr *Service) NewRequest(name, method string, body interface{}) (req *Request, err error) {
- return &Request{
- ServiceName: name,
- Method: method,
- Body: body,
- client: svr.client,
- }, nil
- }
- func (svr *Service) PeekService(name string) ([]*registry.ServiceNode, error) {
- return svr.registry.Get(name)
- }
- func (svr *Service) HttpServe() *http.Server {
- return svr.httpSvr
- }
- func (svr *Service) CliServe() *cli.Server {
- return svr.cliSvr
- }
- func (svr *Service) RPCServe() *rpc.Server {
- return svr.rpcSvr
- }
- func (svr *Service) Node() *registry.ServiceNode {
- return svr.node
- }
- func (svr *Service) Environment() string {
- return svr.environment
- }
- func (svr *Service) instance() *registry.ServiceNode {
- var (
- err error
- id string
- dockerID string
- tcpAddr *net.TCPAddr
- ipLocal string
- machineCode string
- node *registry.ServiceNode
- )
- if id, err = docker.SelfContainerID(); err != nil {
- //生成唯一ID
- e5 := md5.New()
- e5.Write(unsafestr.StringToBytes(svr.opts.Name))
- e5.Write(unsafestr.StringToBytes(svr.opts.Version))
- id = hex.EncodeToString(e5.Sum(nil))
- } else {
- dockerID = id
- svr.environment = EnvironmentDocker
- }
- node = ®istry.ServiceNode{
- ID: id,
- Name: svr.opts.Name,
- Version: svr.opts.Version,
- Metadata: map[string]string{},
- Addresses: make(map[string]registry.Addr),
- }
- if svr.opts.Address == "" {
- ipLocal = ip.InternalIP()
- } else {
- ipLocal = svr.opts.Address
- }
- node.Address = ipLocal
- if svr.listener != nil {
- if tcpAddr, err = net.ResolveTCPAddr("tcp", svr.listener.Addr().String()); err == nil {
- node.Port = tcpAddr.Port
- }
- } else {
- node.Port = svr.opts.Port
- }
- //上报机器码
- if machineCode, err = machineid.Code(); err == nil {
- node.Metadata["machine-code"] = machineCode
- }
- node.Metadata["docker-id"] = dockerID
- if svr.opts.EnableHttp {
- node.Metadata["enable-http"] = "true"
- }
- if svr.opts.EnableRPC {
- node.Metadata["enable-rpc"] = "true"
- }
- //服务注册时候处理
- if svr.opts.EnableStats {
- node.Metadata["prometheus"] = "enable"
- }
- return node
- }
- func (svr *Service) startHTTPServe() (err error) {
- l := gateway.NewListener(svr.listener.Addr())
- if err = svr.gateway.Attaches([][]byte{[]byte("GET"), []byte("POST"), []byte("PUT"), []byte("DELETE"), []byte("OPTIONS")}, l); err == nil {
- svr.wrapSync(func() {
- if err = svr.httpSvr.Serve(l); err != nil {
- log.Warnf("http serve error: %s", err.Error())
- }
- })
- svr.httpSvr.Handle("GET", "/healthy", func(ctx *http.Context) (err error) {
- return ctx.Success(map[string]interface{}{
- "id": svr.node.ID,
- "healthy": "healthy",
- "uptime": time.Now().Sub(svr.upTime).String(),
- })
- })
- if svr.opts.EnableStats {
- prometheusbackend.Init(svr.opts.shortName)
- svr.httpSvr.Handler("GET", "/metrics", promhttp.Handler())
- }
- if svr.opts.EnableHttpPProf {
- svr.httpSvr.Handler("GET", "/debug/pprof/", hp.HandlerFunc(pprof.Index))
- svr.httpSvr.Handler("GET", "/debug/pprof/goroutine", hp.HandlerFunc(pprof.Index))
- svr.httpSvr.Handler("GET", "/debug/pprof/heap", hp.HandlerFunc(pprof.Index))
- svr.httpSvr.Handler("GET", "/debug/pprof/mutex", hp.HandlerFunc(pprof.Index))
- svr.httpSvr.Handler("GET", "/debug/pprof/threadcreate", hp.HandlerFunc(pprof.Index))
- svr.httpSvr.Handler("GET", "/debug/pprof/cmdline", hp.HandlerFunc(pprof.Cmdline))
- svr.httpSvr.Handler("GET", "/debug/pprof/profile", hp.HandlerFunc(pprof.Profile))
- svr.httpSvr.Handler("GET", "/debug/pprof/symbol", hp.HandlerFunc(pprof.Symbol))
- svr.httpSvr.Handler("GET", "/debug/pprof/trace", hp.HandlerFunc(pprof.Trace))
- }
- log.Infof("attach http listener success")
- } else {
- log.Warnf("attach http listener failed cause by %s", err.Error())
- }
- return
- }
- func (svr *Service) startRPCServe() (err error) {
- l := gateway.NewListener(svr.listener.Addr())
- if err = svr.gateway.Attach([]byte("RPC"), l); err == nil {
- svr.wrapSync(func() {
- if err = svr.rpcSvr.Serve(l); err != nil {
- log.Warnf("rpc serve start error: %s", err.Error())
- }
- })
- log.Infof("attach rpc listener success")
- } else {
- log.Warnf("attach rpc listener failed cause by %s", err.Error())
- }
- return
- }
- func (svr *Service) startCliServe() (err error) {
- l := gateway.NewListener(svr.listener.Addr())
- if err = svr.gateway.Attach([]byte("CLI"), l); err == nil {
- svr.wrapSync(func() {
- if err = svr.cliSvr.Serve(l); err != nil {
- log.Warnf("cli serve start error: %s", err.Error())
- }
- })
- log.Infof("attach cli listener success")
- } else {
- log.Warnf("attach cli listener failed cause by %s", err.Error())
- }
- return
- }
- func (svr *Service) prepare() (err error) {
- svr.ctx = WithContext(svr.ctx, svr)
- if svr.opts.EnableInternalListener {
- var tcpAddr *net.TCPAddr
- //绑定指定的端口
- if svr.opts.Port != 0 {
- tcpAddr = &net.TCPAddr{
- Port: svr.opts.Port,
- }
- }
- //默认指定为本机IP
- if svr.opts.Address == "" {
- svr.opts.Address = ip.InternalIP()
- }
- //绑定指定的IP
- if tcpAddr == nil {
- tcpAddr = &net.TCPAddr{
- IP: net.ParseIP(svr.opts.Address),
- }
- } else {
- tcpAddr.IP = net.ParseIP(svr.opts.Address)
- }
- _ = os.Setenv("MICRO_SERVICE_NAME", svr.opts.ShortName())
- _ = os.Setenv("MICRO_SERVICE_VERSION", svr.opts.Version)
- if svr.listener, err = net.ListenTCP("tcp", tcpAddr); err != nil {
- return
- }
- log.Infof("server listen on: %s", svr.listener.Addr())
- svr.gateway = gateway.New(svr.listener, svr.opts.EnableStats)
- svr.wrapSync(func() {
- svr.gateway.Run(svr.ctx)
- })
- //开启HTTP服务
- if svr.opts.EnableHttp {
- err = svr.startHTTPServe()
- }
- //开启RCP服务
- if svr.opts.EnableRPC {
- err = svr.startRPCServe()
- }
- //开启cli服务
- if svr.opts.EnableCli {
- err = svr.startCliServe()
- }
- }
- svr.node = svr.instance()
- svr.wrapSync(func() {
- svr.eventLoop()
- })
- if !svr.opts.DisableRegister {
- _ = svr.registry.Register(svr.node)
- }
- return
- }
- func (svr *Service) destroy() (err error) {
- log.Infof("service stopping")
- svr.cancelFunc()
- if !svr.opts.DisableRegister {
- if err = svr.registry.Deregister(svr.node); err != nil {
- log.Warnf("deregister service %s error: %s", svr.opts.Name, err.Error())
- } else {
- log.Infof("deregister service %s successful", svr.opts.Name)
- }
- }
- if svr.listener != nil {
- if err = svr.listener.Close(); err != nil {
- log.Warnf(err.Error())
- }
- }
- if err = svr.client.Close(); err != nil {
- log.Warnf(err.Error())
- }
- log.Infof("service stopped")
- return
- }
- func (svr *Service) Run() (err error) {
- if svr.opts.EnableLogPrefix {
- log.Prefix(svr.opts.Name)
- }
- log.Infof("service starting")
- if err = svr.prepare(); err != nil {
- return
- }
- //start server
- if svr.opts.Server != nil {
- if err = svr.opts.Server.Start(svr.ctx); err != nil {
- return
- }
- }
- log.Infof("service started")
- //waiting
- ch := make(chan os.Signal, 1)
- signal.Notify(ch, syscall.SIGTERM, syscall.SIGINT, syscall.SIGQUIT, syscall.SIGKILL)
- select {
- case <-ch:
- case <-svr.ctx.Done():
- }
- //stop server
- if svr.opts.Server != nil {
- err = svr.opts.Server.Stop()
- }
- return svr.destroy()
- }
- func New(opts ...Option) *Service {
- o := NewOptions()
- for _, opt := range opts {
- opt(o)
- }
- svr := &Service{
- opts: o,
- upTime: time.Now(),
- httpSvr: http.New(),
- cliSvr: cli.New(),
- rpcSvr: rpc.NewServer(),
- registry: o.registry,
- client: NewClient(o.registry),
- environment: EnvironmentHost,
- }
- svr.ctx, svr.cancelFunc = context.WithCancel(o.Context)
- return svr
- }
|