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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
|
package config
import (
"errors"
"fmt"
"math"
"strconv"
"strings"
"codeberg.org/lindenii/furgit/internal/intconv"
)
// ValueKind describes the presence and form of a config value.
type ValueKind uint8
const (
// ValueMissing means the queried key does not exist.
ValueMissing ValueKind = iota
// ValueValueless means the key exists but has no "= <value>" part.
ValueValueless
// ValueString means the key exists and has an explicit value (possibly "").
ValueString
)
func isValidSection(s string) bool {
if len(s) == 0 {
return false
}
for i := range len(s) {
ch := s[i]
if !isLetter(ch) && !isDigit(ch) && ch != '-' && ch != '.' {
return false
}
}
return true
}
func isKeyChar(ch byte) bool {
return isLetter(ch) || isDigit(ch) || ch == '-'
}
func parseBool(value string) (bool, error) {
switch {
case strings.EqualFold(value, "true"),
strings.EqualFold(value, "yes"),
strings.EqualFold(value, "on"):
return true, nil
case strings.EqualFold(value, "false"),
strings.EqualFold(value, "no"),
strings.EqualFold(value, "off"),
value == "":
return false, nil
}
n, err := parseInt32(value)
if err != nil {
return false, fmt.Errorf("invalid boolean value %q", value)
}
return n != 0, nil
}
func parseInt32(value string) (int32, error) {
n64, err := parseInt64WithMax(value, math.MaxInt32)
if err != nil {
return 0, err
}
return intconv.Int64ToInt32(n64)
}
func parseInt(value string) (int, error) {
n64, err := parseInt64WithMax(value, int64(int(^uint(0)>>1)))
if err != nil {
return 0, err
}
return int(n64), nil
}
func parseInt64(value string) (int64, error) {
return parseInt64WithMax(value, int64(^uint64(0)>>1))
}
func parseInt64WithMax(value string, maxValue int64) (int64, error) {
if value == "" {
return 0, errors.New("empty value")
}
trimmed := strings.TrimLeft(value, " \t\n\r\f\v")
if trimmed == "" {
return 0, errors.New("empty value")
}
numPart := trimmed
factor := int64(1)
if last := trimmed[len(trimmed)-1]; last == 'k' || last == 'K' || last == 'm' || last == 'M' || last == 'g' || last == 'G' {
switch toLower(last) {
case 'k':
factor = 1024
case 'm':
factor = 1024 * 1024
case 'g':
factor = 1024 * 1024 * 1024
}
numPart = trimmed[:len(trimmed)-1]
}
if numPart == "" {
return 0, errors.New("missing integer value")
}
n, err := strconv.ParseInt(numPart, 0, 64)
if err != nil {
return 0, err
}
intMax := maxValue
intMin := -maxValue - 1
if n > 0 && n > intMax/factor {
return 0, errors.New("integer overflow")
}
if n < 0 && n < intMin/factor {
return 0, errors.New("integer overflow")
}
n *= factor
return n, nil
}
func truncateAtNUL(value string) string {
for i := range len(value) {
if value[i] == 0 {
return value[:i]
}
}
return value
}
func isSpace(ch byte) bool {
return ch == ' ' || ch == '\t'
}
func isWhitespace(ch byte) bool {
return ch == ' ' || ch == '\t' || ch == '\n' || ch == '\r' || ch == '\v' || ch == '\f'
}
func isLetter(ch byte) bool {
return (ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z')
}
func isDigit(ch byte) bool {
return ch >= '0' && ch <= '9'
}
func toLower(ch byte) byte {
if ch >= 'A' && ch <= 'Z' {
return ch + ('a' - 'A')
}
return ch
}
|