This repository has been archived by the owner on Sep 16, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
/
reader_suffix.go
87 lines (72 loc) · 2.2 KB
/
reader_suffix.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
/*
Copyright © 2017 Henry Huang <hhh@rutcode.com>
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package config
import (
"strings"
)
type defSuffixReader struct {
opts ReaderOptions
reader Reader
}
// NewSuffixReader return a suffix reader
// supportted: .json, .xml, .yaml, .yml
func NewSuffixReader(opts ...ReaderOptionFunc) (reader Reader, err error) {
r := &defSuffixReader{}
for _, o := range opts {
o(&r.opts)
}
if r.opts.filename == "" {
return nil, ErrInvalidFilePath
}
r.reader, err = fileToReader(r.opts.filename)
if err != nil {
return
}
return r, nil
}
func (p *defSuffixReader) Read(model interface{}) (err error) {
return p.reader.Read(model)
}
func (p *defSuffixReader) Dump(v interface{}) ([]byte, error) {
return p.reader.Dump(v)
}
func (p *defSuffixReader) ParseData(data []byte, model interface{}) error {
return p.reader.ParseData(data, model)
}
func fileToReader(filename string) (Reader, error) {
switch {
case strings.HasSuffix(filename, ".json"):
return NewJSONReader(ReaderOptionFilename(filename)), nil
case strings.HasSuffix(filename, ".xml"):
return NewXMLReader(ReaderOptionFilename(filename)), nil
case strings.HasSuffix(filename, ".yml"),
strings.HasSuffix(filename, ".yaml"):
return NewYAMLReader(ReaderOptionFilename(filename)), nil
default:
return nil, ErrUnknownSuffixes
}
}
func fileToReaderType(name string) ReaderType {
switch {
case strings.HasSuffix(name, ".json"):
return ReaderTypeJSON
case strings.HasSuffix(name, ".xml"):
return ReaderTypeXML
case strings.HasSuffix(name, ".yml"),
strings.HasSuffix(name, ".yaml"):
return ReaderTypeYAML
default:
return ReaderTypeSuffix
}
}