-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfilereader.go
86 lines (72 loc) · 1.8 KB
/
filereader.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
package parseandgo
import (
"bufio"
"bytes"
"strings"
"unicode"
)
type FileReader interface {
readIntoConfig() Config
}
func newFileReader(fileType FileType, body []byte) FileReader {
switch fileType {
case ENV:
return EnvFileReader{body: body}
case PROPERTIES:
return PropertiesFileReader{body: body}
default:
panic(noSuchParserDefined())
}
}
func readIntoConfig(reader FileReader) Config {
return reader.readIntoConfig()
}
type EnvFileReader struct {
body []byte
}
func (envFileReader EnvFileReader) readIntoConfig() Config {
return readFileLineByLine(getFile(envFileReader.body), "#")
}
type PropertiesFileReader struct {
body []byte
}
func (propertiesFileReader PropertiesFileReader) readIntoConfig() Config {
return readFileLineByLine(getFile(propertiesFileReader.body), "#")
}
func getFile(body []byte) *bufio.Scanner {
reader := bytes.NewReader(body)
return bufio.NewScanner(reader)
}
func readFileLineByLine(scanner *bufio.Scanner, commentToken string) Config {
configuration := make(Config)
for scanner.Scan() {
line := scanner.Text()
configuration = processLine(line, configuration, commentToken)
}
return configuration
}
func processLine(line string, config Config, commentToken string) Config {
if isLineNotCommented(line, commentToken) {
spacesStripped := stripSpacesFromLine(line)
key, value := splitLine(spacesStripped)
config[key] = value
}
return config
}
func isLineNotCommented(line string, substr string) bool {
return !strings.Contains(line, substr)
}
func stripSpacesFromLine(str string) string {
var b strings.Builder
b.Grow(len(str))
for _, ch := range str {
if !unicode.IsSpace(ch) {
b.WriteRune(ch)
}
}
return b.String()
}
func splitLine(line string) (string, string) {
keyAndValue := strings.Split(line, "=")
return keyAndValue[0], keyAndValue[1]
}