-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsoulsbag.go
89 lines (72 loc) · 1.6 KB
/
soulsbag.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
package soulsbag
import (
"github.com/karlma/soulsbag/encoding"
_ "github.com/karlma/soulsbag/encoding/json"
_ "github.com/karlma/soulsbag/encoding/toml"
_ "github.com/karlma/soulsbag/encoding/yaml"
"github.com/karlma/soulsbag/source"
_ "github.com/karlma/soulsbag/source/etcdv3"
_ "github.com/karlma/soulsbag/source/file"
)
type SoulsBag struct {
Source source.Source
Encoder encoding.Encoder
Opts source.Options
Data []byte
}
func New() *SoulsBag {
return &SoulsBag{}
}
var sb *SoulsBag
func init() {
sb = New()
}
func (s *SoulsBag) Init(sourceTyp, encodingTyp string, opts source.Options) error {
src, err := source.New(sourceTyp, opts)
if err != nil {
return err
}
s.Source = src
enc, err := encoding.New(encodingTyp)
if err != nil {
return err
}
s.Encoder = enc
s.Opts = opts
return nil
}
func Init(source, encoding string, opts source.Options) error {
return sb.Init(source, encoding, opts)
}
func (s *SoulsBag) Read() error {
data, err := s.Source.Read()
if err != nil {
return err
}
s.Data = data
return nil
}
func Read() error {
return sb.Read()
}
func (s *SoulsBag) Unmarshal(v interface{}) error {
return s.Encoder.Decode(s.Data, v)
}
func Unmarshal(v interface{}) error {
return sb.Unmarshal(v)
}
// Watch the configuration content change.
// PUT - value is update
// DELETE - key is deleted
func Watch(watchFunc func(string)) error {
return sb.Watch(watchFunc)
}
func (s *SoulsBag) Watch(watchFunc func(string)) error {
return s.Source.Watch(watchFunc)
}
func (s *SoulsBag) GetData() []byte {
return s.Data
}
func GetData() []byte {
return sb.GetData()
}