1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-01-10 00:29:01 +02:00
kratos/pkg/conf/paladin/default.go

74 lines
1.4 KiB
Go
Raw Normal View History

2019-04-04 09:44:15 +02:00
package paladin
import (
"context"
"flag"
)
var (
// DefaultClient default client.
DefaultClient Client
confPath string
)
func init() {
flag.StringVar(&confPath, "conf", "", "default config path")
}
// Init init config client.
func Init() (err error) {
if confPath != "" {
DefaultClient, err = NewFile(confPath)
} else {
2019-05-08 17:24:56 +02:00
// TODO: Get the configuration from the remote service
2019-04-25 08:13:54 +02:00
panic("Please specify a file or dir name by -conf flag.")
2019-04-04 09:44:15 +02:00
}
if err != nil {
return
}
return
}
// Watch watch on a key. The configuration implements the setter interface, which is invoked when the configuration changes.
func Watch(key string, s Setter) error {
v := DefaultClient.Get(key)
str, err := v.Raw()
if err != nil {
return err
}
if err := s.Set(str); err != nil {
return err
}
2019-05-08 17:24:56 +02:00
go func() {
for event := range WatchEvent(context.Background(), key) {
s.Set(event.Value)
}
}()
2019-04-04 09:44:15 +02:00
return nil
}
// WatchEvent watch on multi keys. Events are returned when the configuration changes.
func WatchEvent(ctx context.Context, keys ...string) <-chan Event {
return DefaultClient.WatchEvent(ctx, keys...)
}
// Get return value by key.
func Get(key string) *Value {
return DefaultClient.Get(key)
}
// GetAll return all config map.
func GetAll() *Map {
return DefaultClient.GetAll()
}
// Keys return values key.
func Keys() []string {
return DefaultClient.GetAll().Keys()
}
// Close close watcher.
func Close() error {
return DefaultClient.Close()
}