-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsfv.go
73 lines (62 loc) · 1.11 KB
/
sfv.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
package sfv
type Dictionary struct {
Map map[string]Member
Keys []string
}
type List = []Member
type Member struct {
IsItem bool
Item Item
InnerList InnerList
}
type InnerList struct {
Items []Item
Params Params
}
type Item struct {
BareItem BareItem
Params Params
}
type Params struct {
Map map[string]BareItem
Keys []string
}
type BareItem struct {
Type BareItemType
Integer int64
Decimal float64
String string
Token string
Binary []byte
Boolean bool
}
func (b BareItem) isBoolTrue() bool {
return b.Type == BareItemTypeBoolean && b.Boolean == true
}
type BareItemType int
func (t BareItemType) String() string {
switch t {
case BareItemTypeInteger:
return "integer"
case BareItemTypeDecimal:
return "decimal"
case BareItemTypeString:
return "string"
case BareItemTypeToken:
return "token"
case BareItemTypeBinary:
return "binary"
case BareItemTypeBoolean:
return "boolean"
default:
return "invalid type"
}
}
const (
BareItemTypeInteger BareItemType = iota + 1
BareItemTypeDecimal
BareItemTypeString
BareItemTypeToken
BareItemTypeBinary
BareItemTypeBoolean
)