-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsource.go
42 lines (32 loc) · 827 Bytes
/
source.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
package confusing
import "fmt"
type SourceType = string
type Source interface {
Type() SourceType
Read(target interface{}) error
ReadKey(key string, target interface{}) error
}
type SourceOptions struct {
FilePath string
Convention string
}
type SourceBuilder = func(opts SourceOptions) (Source, error)
type PrefixedSource struct {
source Source
prefix string
}
func (s *PrefixedSource) Read(target interface{}) error {
return s.source.ReadKey(s.prefix, target)
}
func (s *PrefixedSource) ReadKey(key string, target interface{}) error {
return s.source.ReadKey(fmt.Sprintf("%s.%s", s.prefix, key), target)
}
func (s *PrefixedSource) Type() SourceType {
return s.source.Type()
}
func PrefixSourceWith(prefix string, source Source) Source {
return &PrefixedSource{
source: source,
prefix: prefix,
}
}