-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathparser.go
More file actions
145 lines (130 loc) · 2.96 KB
/
parser.go
File metadata and controls
145 lines (130 loc) · 2.96 KB
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
package djson
import (
"errors"
"fmt"
"strconv"
)
// MergeValue deserializes the input string and merges result to the map provided.
func MergeValue(m map[string]interface{}, str string) error {
parser := &parser{
lex: newLex(str),
}
parser.rightValueReader = parser.readRightValue
return parser.merge(m, str)
}
// MergeString deserializes the input string and merges result to the map provided.
func MergeString(m map[string]interface{}, str string) error {
parser := &parser{
lex: newLex(str),
}
parser.rightValueReader = parser.readRightString
return parser.merge(m, str)
}
type parser struct {
lex lexer
rightValueReader func() (interface{}, error)
}
func (p *parser) merge(m map[string]interface{}, str string) error {
builder := newRootBuilder(m)
// Expecting a map at the top level
err := p.readMap(builder)
if err != nil {
p.lex.drain()
p.lex = nil
return fmt.Errorf("unable to parse \"%s\", %v", str, err)
}
p.lex = nil
return nil
}
func (p *parser) nextToken() token {
return p.lex.nextToken()
}
func (p *parser) readMap(b mapBuilderFactory) error {
var key string
switch tok := p.nextToken(); tok.TokenType {
case tokenMapKey:
key = tok.value
default:
return tokenToError(tok)
}
return p.readLeftValue(b.newMapBuilder(key))
}
func (p *parser) readLeftValue(b builder) error {
switch tok := p.nextToken(); tok.TokenType {
case tokenMapKeySeparator:
return p.readMap(b)
case tokenArrayIndexStart:
return p.readArray(b)
case tokenAssignment:
val, err := p.rightValueReader()
if err != nil {
return err
}
b.set(val)
default:
return tokenToError(tok)
}
return nil
}
func (p *parser) readArray(b builder) (err error) {
var index int
switch tok := p.nextToken(); tok.TokenType {
case tokenArrayIndex:
index, err = strconv.Atoi(tok.value)
if err != nil {
return err
}
default:
return tokenToError(tok)
}
switch tok := p.nextToken(); tok.TokenType {
case tokenArrayIndexFinish:
default:
return tokenToError(tok)
}
return p.readLeftValue(b.newArrayBuilder(index))
}
func (p *parser) readRightValue() (interface{}, error) {
switch tok := p.nextToken(); tok.TokenType {
case tokenEnd:
return "", nil
case tokenValue:
return tryParse(tok.value), nil
default:
return nil, tokenToError(tok)
}
}
func (p *parser) readRightString() (interface{}, error) {
switch tok := p.nextToken(); tok.TokenType {
case tokenEnd:
return "", nil
case tokenValue:
return tok.value, nil
default:
return nil, tokenToError(tok)
}
}
func tryParse(val string) interface{} {
b, err := strconv.ParseBool(val)
if err == nil {
return b
}
i, err := strconv.ParseInt(val, 10, 64)
if err == nil {
return i
}
f, err := strconv.ParseFloat(val, 64)
if err == nil {
return f
}
if val == "null" || val == "NULL" || val == "Null" {
return nil
}
return val
}
func tokenToError(tok token) error {
if tok.TokenType == tokenError {
return errors.New(tok.value)
}
return fmt.Errorf("unexpected \"%s\"", tok.value)
}