-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathPropertiesDocument.go
382 lines (320 loc) · 9.02 KB
/
PropertiesDocument.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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
// Package properties is used to read or write or modify the properties document.
package properties
import (
"bufio"
"bytes"
"container/list"
"fmt"
"io"
"strconv"
"strings"
"unicode"
)
type element struct {
// # 注释行
// ! 注释行
// ' ' 空白行或者空行
// = 等号分隔的属性行
// : 冒号分隔的属性行
typo byte // 行类型
value string // 行的内容,如果是注释注释引导符也包含在内
key string // 如果是属性行这里表示属性的key
}
// PropertiesDocument The properties document in memory.
type PropertiesDocument struct {
elems *list.List
props map[string]*list.Element
}
// New is used to create a new and empty properties document.
//
// It's used to generate a new document.
func New() *PropertiesDocument {
doc := new(PropertiesDocument)
doc.elems = list.New()
doc.props = make(map[string]*list.Element)
return doc
}
// Save is used to save the doc to file or stream.
func Save(doc *PropertiesDocument, writer io.Writer) error {
var err error
doc.Accept(func(typo byte, value string, key string) bool {
switch typo {
case '#', '!', ' ':
_, err = fmt.Fprintln(writer, value)
case '=', ':':
_, err = fmt.Fprintf(writer, "%s%c%s\n", key, typo, value)
}
return nil == err
})
return err
}
// Load is used to create the properties document from a file or a stream.
func Load(reader io.Reader) (doc *PropertiesDocument, err error) {
// 创建一个Properties对象
doc = New()
// 创建一个扫描器
scanner := bufio.NewScanner(reader)
for scanner.Scan() {
// 逐行读取
line := scanner.Bytes()
// 遇到空行
if 0 == len(line) {
doc.elems.PushBack(&element{typo: ' ', value: string("")})
continue
}
// 找到第一个非空白字符
pos := bytes.IndexFunc(line, func(r rune) bool {
return !unicode.IsSpace(r)
})
// 遇到空白行
if -1 == pos {
doc.elems.PushBack(&element{typo: ' ', value: string("")})
continue
}
// 遇到注释行
if '#' == line[pos] {
doc.elems.PushBack(&element{typo: '#', value: string(line)})
continue
}
if '!' == line[pos] {
doc.elems.PushBack(&element{typo: '!', value: string(line)})
continue
}
// 找到第一个等号的位置
end := bytes.IndexFunc(line[pos+1:], func(r rune) bool {
return ('=' == r) || (':' == r)
})
// 没有=,说明该配置项只有key
key := ""
value := ""
if -1 == end {
key = string(bytes.TrimRightFunc(line[pos:], func(r rune) bool {
return unicode.IsSpace(r)
}))
} else {
key = string(bytes.TrimRightFunc(line[pos:pos+1+end], func(r rune) bool {
return unicode.IsSpace(r)
}))
value = string(bytes.TrimSpace(line[pos+1+end+1:]))
}
var typo byte = '='
if end > 0 {
typo = line[pos+1+end]
}
elem := &element{typo: typo, key: key, value: value}
listelem := doc.elems.PushBack(elem)
doc.props[key] = listelem
}
if err = scanner.Err(); nil != err {
return nil, err
}
return doc, nil
}
// Get Retrive the value from PropertiesDocument.
//
// If the item is not exist, the exist is false.
func (p PropertiesDocument) Get(key string) (value string, exist bool) {
e, ok := p.props[key]
if !ok {
return "", ok
}
return e.Value.(*element).value, ok
}
// Set Update the value of the item of the key.
//
// Create a new item if the item of the key is not exist.
func (p *PropertiesDocument) Set(key string, value string) {
e, ok := p.props[key]
if !ok {
p.props[key] = p.elems.PushBack(&element{typo: '=', key: key, value: value})
return
}
e.Value.(*element).value = value
return
}
// Del Delete the exist item.
//
// If the item is not exist, return false.
func (p *PropertiesDocument) Del(key string) bool {
e, ok := p.props[key]
if !ok {
return false
}
p.Uncomment(key)
p.elems.Remove(e)
delete(p.props, key)
return true
}
// Comment Append comments for the special item.
//
// Return false if the special item is not exist.
func (p *PropertiesDocument) Comment(key string, comments string) bool {
e, ok := p.props[key]
if !ok {
return false
}
// 如果所有注释为空
if len(comments) <= 0 {
p.elems.InsertBefore(&element{typo: '#', value: "#"}, e)
return true
}
// 创建一个新的Scanner
scanner := bufio.NewScanner(strings.NewReader(comments))
for scanner.Scan() {
p.elems.InsertBefore(&element{typo: '#', value: "#" + scanner.Text()}, e)
}
return true
}
// Uncomment Remove all of the comments for the special item.
//
// Return false if the special item is not exist.
func (p *PropertiesDocument) Uncomment(key string) bool {
e, ok := p.props[key]
if !ok {
return false
}
for item := e.Prev(); nil != item; {
del := item
item = item.Prev()
if ('=' == del.Value.(*element).typo) ||
(':' == del.Value.(*element).typo) ||
(' ' == del.Value.(*element).typo) {
break
}
p.elems.Remove(del)
}
return true
}
// Accept Traverse every element of the document, include comment.
//
// The typo parameter special the element type.
// If typo is '#' or '!' means current element is a comment.
// If typo is ' ' means current element is a empty or a space line.
// If typo is '=' or ':' means current element is a key-value pair.
// The traverse will be terminated if f return false.
func (p PropertiesDocument) Accept(f func(typo byte, value string, key string) bool) {
for e := p.elems.Front(); e != nil; e = e.Next() {
elem := e.Value.(*element)
continues := f(elem.typo, elem.value, elem.key)
if !continues {
return
}
}
}
// Foreach Traverse all of the key-value pairs in the document.
// The traverse will be terminated if f return false.
func (p PropertiesDocument) Foreach(f func(value string, key string) bool) {
for e := p.elems.Front(); e != nil; e = e.Next() {
elem := e.Value.(*element)
if ('=' == elem.typo) ||
(':' == elem.typo) {
continues := f(elem.value, elem.key)
if !continues {
return
}
}
}
}
// StringDefault Retrive the string value by key.
// If the element is not exist, the def will be returned.
func (p PropertiesDocument) StringDefault(key string, def string) string {
e, ok := p.props[key]
if ok {
return e.Value.(*element).value
}
return def
}
// IntDefault Retrive the int64 value by key.
// If the element is not exist, the def will be returned.
func (p PropertiesDocument) IntDefault(key string, def int64) int64 {
e, ok := p.props[key]
if ok {
v, err := strconv.ParseInt(e.Value.(*element).value, 10, 64)
if nil != err {
return def
}
return v
}
return def
}
// UintDefault Same as IntDefault, but the return type is uint64.
func (p PropertiesDocument) UintDefault(key string, def uint64) uint64 {
e, ok := p.props[key]
if ok {
v, err := strconv.ParseUint(e.Value.(*element).value, 10, 64)
if nil != err {
return def
}
return v
}
return def
}
// FloatDefault Retrive the float64 value by key.
// If the element is not exist, the def will be returned.
func (p PropertiesDocument) FloatDefault(key string, def float64) float64 {
e, ok := p.props[key]
if ok {
v, err := strconv.ParseFloat(e.Value.(*element).value, 64)
if nil != err {
return def
}
return v
}
return def
}
// BoolDefault Retrive the bool value by key.
// If the element is not exist, the def will be returned.
// This function mapping "1", "t", "T", "true", "TRUE", "True" as true.
// This function mapping "0", "f", "F", "false", "FALSE", "False" as false.
// If the element is not exist of can not map to value of bool,the def will be returned.
func (p PropertiesDocument) BoolDefault(key string, def bool) bool {
e, ok := p.props[key]
if ok {
v, err := strconv.ParseBool(e.Value.(*element).value)
if nil != err {
return def
}
return v
}
return def
}
// ObjectDefault Map the value of the key to any object.
// The f is the customized mapping function.
// Return def if the element is not exist of f have a error returned.
func (p PropertiesDocument) ObjectDefault(key string, def interface{}, f func(k string, v string) (interface{}, error)) interface{} {
e, ok := p.props[key]
if ok {
v, err := f(key, e.Value.(*element).value)
if nil != err {
return def
}
return v
}
return def
}
// String Same as StringDefault but the def is "".
func (p PropertiesDocument) String(key string) string {
return p.StringDefault(key, "")
}
// Int is ame as IntDefault but the def is 0 .
func (p PropertiesDocument) Int(key string) int64 {
return p.IntDefault(key, 0)
}
// Uint Same as UintDefault but the def is 0 .
func (p PropertiesDocument) Uint(key string) uint64 {
return p.UintDefault(key, 0)
}
// Float is same as FloatDefault but the def is 0.0 .
func (p PropertiesDocument) Float(key string) float64 {
return p.FloatDefault(key, 0.0)
}
// Bool is same as BoolDefault but the def is false.
func (p PropertiesDocument) Bool(key string) bool {
return p.BoolDefault(key, false)
}
// Object is same as ObjectDefault but the def is nil.
//
// Notice: If the return value can not be assign to nil, this function will panic/
func (p PropertiesDocument) Object(key string, f func(k string, v string) (interface{}, error)) interface{} {
return p.ObjectDefault(key, interface{}(nil), f)
}