mirror of
https://gitee.com/johng/gf.git
synced 2024-12-05 05:37:55 +08:00
108 lines
2.7 KiB
Go
108 lines
2.7 KiB
Go
// Copyright GoFrame Author(https://goframe.org). All Rights Reserved.
|
|
//
|
|
// This Source Code Form is subject to the terms of the MIT License.
|
|
// If a copy of the MIT was not distributed with this file,
|
|
// You can obtain one at https://github.com/gogf/gf.
|
|
|
|
package gsvc
|
|
|
|
import (
|
|
"context"
|
|
"time"
|
|
|
|
"github.com/gogf/gf/v2/container/gmap"
|
|
"github.com/gogf/gf/v2/errors/gcode"
|
|
"github.com/gogf/gf/v2/errors/gerror"
|
|
"github.com/gogf/gf/v2/internal/intlog"
|
|
"github.com/gogf/gf/v2/util/gutil"
|
|
)
|
|
|
|
var (
|
|
watchedServiceMap = gmap.New(true)
|
|
)
|
|
|
|
type ServiceWatch func(service *Service)
|
|
|
|
func Get(ctx context.Context, name string) (service *Service, err error) {
|
|
return GetWithWatch(ctx, name, nil)
|
|
}
|
|
|
|
func GetWithWatch(ctx context.Context, name string, watch ServiceWatch) (service *Service, err error) {
|
|
v := watchedServiceMap.GetOrSetFuncLock(name, func() interface{} {
|
|
var (
|
|
s = NewServiceWithName(name)
|
|
services []*Service
|
|
watcher Watcher
|
|
)
|
|
services, err = Search(ctx, SearchInput{
|
|
Prefix: s.Prefix,
|
|
Deployment: s.Deployment,
|
|
Namespace: s.Namespace,
|
|
Name: s.Name,
|
|
Version: s.Version,
|
|
})
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
if len(services) == 0 {
|
|
err = gerror.NewCodef(gcode.CodeNotFound, `service not found with name "%s"`, name)
|
|
return nil
|
|
}
|
|
service = services[0]
|
|
// Watch the service changes in goroutine.
|
|
watcher, err = Watch(ctx, service.KeyWithoutEndpoints())
|
|
if err != nil {
|
|
return nil
|
|
}
|
|
go watchAndUpdateService(watcher, service, watch)
|
|
return service
|
|
})
|
|
if v != nil {
|
|
service = v.(*Service)
|
|
}
|
|
return
|
|
}
|
|
|
|
func watchAndUpdateService(watcher Watcher, service *Service, watchFunc ServiceWatch) {
|
|
var (
|
|
ctx = context.Background()
|
|
err error
|
|
services []*Service
|
|
)
|
|
for {
|
|
time.Sleep(time.Second)
|
|
services, err = watcher.Proceed()
|
|
if err != nil {
|
|
intlog.Errorf(ctx, `%+v`, err)
|
|
continue
|
|
}
|
|
if len(services) > 0 {
|
|
watchedServiceMap.Set(service.Name, services[0])
|
|
if watchFunc != nil {
|
|
gutil.TryCatch(func() {
|
|
watchFunc(services[0])
|
|
}, func(exception error) {
|
|
intlog.Errorf(ctx, `%+v`, exception)
|
|
})
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
// Search searches and returns services with specified condition.
|
|
func Search(ctx context.Context, in SearchInput) ([]*Service, error) {
|
|
if defaultRegistry == nil {
|
|
return nil, gerror.NewCodef(gcode.CodeNotImplemented, `no Registry is registered`)
|
|
}
|
|
ctx, _ = context.WithTimeout(ctx, defaultTimeout)
|
|
return defaultRegistry.Search(ctx, in)
|
|
}
|
|
|
|
// Watch watches specified condition changes.
|
|
func Watch(ctx context.Context, key string) (Watcher, error) {
|
|
if defaultRegistry == nil {
|
|
return nil, gerror.NewCodef(gcode.CodeNotImplemented, `no Registry is registered`)
|
|
}
|
|
return defaultRegistry.Watch(ctx, key)
|
|
}
|