forked from pydio/cells
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmicro.go
152 lines (128 loc) · 2.59 KB
/
micro.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
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
package micro
import (
"time"
"github.com/pydio/cells/x/configx"
"github.com/pydio/go-os/config"
)
type Micro struct {
path string
config config.Config
}
type mem struct {
config config.Config
}
type Writer interface {
Write(cs *config.ChangeSet) error
}
func New(c config.Config) configx.Entrypoint {
return &mem{
&writableConfig{c},
}
}
func (m *mem) Val(path ...string) configx.Values {
return &values{
m.config,
path,
}
}
func (m *mem) Get() configx.Value {
v := configx.New(configx.WithJSON())
m.config.Get().Scan(&v)
return v
}
func (m *mem) Set(data interface{}) error {
m.config.Set(data)
return nil
}
func (m *mem) Del() error {
m.config.Del()
return nil
}
func (m *mem) Watch(path ...string) (configx.Receiver, error) {
w, err := m.config.Watch(path...)
if err != nil {
return nil, err
}
return &receiver{w}, nil
}
type values struct {
config config.Config
path []string
}
func (v *values) Get() configx.Value {
return v
}
func (v *values) Set(data interface{}) error {
v.config.Set(data, configx.StringToKeys(v.path...)...)
return nil
}
func (v *values) Del() error {
v.config.Del(v.path...)
return nil
}
func (v *values) Val(path ...string) configx.Values {
return &values{
v.config,
append(v.path, path...),
}
}
func (v *values) Default(i interface{}) configx.Value {
return v
}
func (v *values) Bool() bool {
return v.config.Get(v.path...).Bool(false)
}
func (v *values) Int() int {
return v.config.Get(v.path...).Int(0)
}
func (v *values) Int64() int64 {
return int64(v.Int())
}
func (v *values) Bytes() []byte {
return []byte(v.String())
}
func (v *values) Duration() time.Duration {
return v.config.Get(v.path...).Duration(0 * time.Second)
}
func (v *values) String() string {
return v.config.Get(v.path...).String("")
}
func (v *values) StringMap() map[string]string {
return v.config.Get(v.path...).StringMap(nil)
}
func (v *values) StringArray() []string {
var s []string
v.config.Get(v.path...).Scan(&s)
return s
}
func (v *values) Slice() []interface{} {
var s []interface{}
v.config.Get(v.path...).Scan(&s)
return s
}
func (v *values) Map() map[string]interface{} {
var m map[string]interface{}
v.config.Get(v.path...).Scan(&m)
return m
}
func (v *values) Scan(i interface{}) error {
return v.config.Get(v.path...).Scan(i)
}
type receiver struct {
w config.Watcher
}
func (r *receiver) Next() (configx.Values, error) {
v, err := r.w.Next()
if err != nil {
return nil, err
}
var i interface{}
if err := v.Scan(&i); err != nil {
return nil, err
}
vv := configx.NewFrom(i)
return vv, nil
}
func (r *receiver) Stop() {
r.w.Stop()
}