aboutsummaryrefslogtreecommitdiffstats
path: root/vendor/github.com/naoina/toml/parse.go
blob: e6f95001e5d8dabdd719fe84a767e7067e9ad364 (plain) (blame)
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
package toml

import (
    "errors"
    "fmt"
    "strconv"
    "strings"

    "github.com/naoina/toml/ast"
)

// The parser is generated by github.com/pointlander/peg. To regenerate it, do:
//
//     go get -u github.com/pointlander/peg
//     go generate .

//go:generate peg -switch -inline parse.peg

var errParse = errors.New("invalid TOML syntax")

// Parse returns an AST representation of TOML.
// The toplevel is represented by a table.
func Parse(data []byte) (*ast.Table, error) {
    d := &parseState{p: &tomlParser{Buffer: string(data)}}
    d.init()

    if err := d.parse(); err != nil {
        return nil, err
    }

    return d.p.toml.table, nil
}

type parseState struct {
    p *tomlParser
}

func (d *parseState) init() {
    d.p.Init()
    d.p.toml.init(d.p.buffer)
}

func (d *parseState) parse() error {
    if err := d.p.Parse(); err != nil {
        if err, ok := err.(*parseError); ok {
            return lineError(err.Line(), errParse)
        }
        return err
    }
    return d.execute()
}

func (d *parseState) execute() (err error) {
    defer func() {
        if e := recover(); e != nil {
            lerr, ok := e.(*LineError)
            if !ok {
                panic(e)
            }
            err = lerr
        }
    }()
    d.p.Execute()
    return nil
}

func (e *parseError) Line() int {
    tokens := []token32{e.max}
    positions, p := make([]int, 2*len(tokens)), 0
    for _, token := range tokens {
        positions[p], p = int(token.begin), p+1
        positions[p], p = int(token.end), p+1
    }
    for _, t := range translatePositions(e.p.buffer, positions) {
        if e.p.line < t.line {
            e.p.line = t.line
        }
    }
    return e.p.line
}

type stack struct {
    key   string
    table *ast.Table
}

type array struct {
    parent  *array
    child   *array
    current *ast.Array
    line    int
}

type toml struct {
    table        *ast.Table
    line         int
    currentTable *ast.Table
    s            string
    key          string
    val          ast.Value
    arr          *array
    stack        []*stack
    skip         bool
}

func (p *toml) init(data []rune) {
    p.line = 1
    p.table = p.newTable(ast.TableTypeNormal, "")
    p.table.Position.End = len(data) - 1
    p.table.Data = data[:len(data)-1] // truncate the end_symbol added by PEG parse generator.
    p.currentTable = p.table
}

func (p *toml) Error(err error) {
    panic(lineError(p.line, err))
}

func (p *tomlParser) SetTime(begin, end int) {
    p.val = &ast.Datetime{
        Position: ast.Position{Begin: begin, End: end},
        Data:     p.buffer[begin:end],
        Value:    string(p.buffer[begin:end]),
    }
}

func (p *tomlParser) SetFloat64(begin, end int) {
    p.val = &ast.Float{
        Position: ast.Position{Begin: begin, End: end},
        Data:     p.buffer[begin:end],
        Value:    underscoreReplacer.Replace(string(p.buffer[begin:end])),
    }
}

func (p *tomlParser) SetInt64(begin, end int) {
    p.val = &ast.Integer{
        Position: ast.Position{Begin: begin, End: end},
        Data:     p.buffer[begin:end],
        Value:    underscoreReplacer.Replace(string(p.buffer[begin:end])),
    }
}

func (p *tomlParser) SetString(begin, end int) {
    p.val = &ast.String{
        Position: ast.Position{Begin: begin, End: end},
        Data:     p.buffer[begin:end],
        Value:    p.s,
    }
    p.s = ""
}

func (p *tomlParser) SetBool(begin, end int) {
    p.val = &ast.Boolean{
        Position: ast.Position{Begin: begin, End: end},
        Data:     p.buffer[begin:end],
        Value:    string(p.buffer[begin:end]),
    }
}

func (p *tomlParser) StartArray() {
    if p.arr == nil {
        p.arr = &array{line: p.line, current: &ast.Array{}}
        return
    }
    p.arr.child = &array{parent: p.arr, line: p.line, current: &ast.Array{}}
    p.arr = p.arr.child
}

func (p *tomlParser) AddArrayVal() {
    if p.arr.current == nil {
        p.arr.current = &ast.Array{}
    }
    p.arr.current.Value = append(p.arr.current.Value, p.val)
}

func (p *tomlParser) SetArray(begin, end int) {
    p.arr.current.Position = ast.Position{Begin: begin, End: end}
    p.arr.current.Data = p.buffer[begin:end]
    p.val = p.arr.current
    p.arr = p.arr.parent
}

func (p *toml) SetTable(buf []rune, begin, end int) {
    p.setTable(p.table, buf, begin, end)
}

func (p *toml) setTable(parent *ast.Table, buf []rune, begin, end int) {
    name := string(buf[begin:end])
    names := splitTableKey(name)
    parent, err := p.lookupTable(parent, names[:len(names)-1])
    if err != nil {
        p.Error(err)
    }
    last := names[len(names)-1]
    tbl := p.newTable(ast.TableTypeNormal, last)
    switch v := parent.Fields[last].(type) {
    case nil:
        parent.Fields[last] = tbl
    case []*ast.Table:
        p.Error(fmt.Errorf("table `%s' is in conflict with array table in line %d", name, v[0].Line))
    case *ast.Table:
        if (v.Position == ast.Position{}) {
            // This table was created as an implicit parent.
            // Replace it with the real defined table.
            tbl.Fields = v.Fields
            parent.Fields[last] = tbl
        } else {
            p.Error(fmt.Errorf("table `%s' is in conflict with table in line %d", name, v.Line))
        }
    case *ast.KeyValue:
        p.Error(fmt.Errorf("table `%s' is in conflict with line %d", name, v.Line))
    default:
        p.Error(fmt.Errorf("BUG: table `%s' is in conflict but it's unknown type `%T'", last, v))
    }
    p.currentTable = tbl
}

func (p *toml) newTable(typ ast.TableType, name string) *ast.Table {
    return &ast.Table{
        Line:   p.line,
        Name:   name,
        Type:   typ,
        Fields: make(map[string]interface{}),
    }
}

func (p *tomlParser) SetTableString(begin, end int) {
    p.currentTable.Data = p.buffer[begin:end]
    p.currentTable.Position.Begin = begin
    p.currentTable.Position.End = end
}

func (p *toml) SetArrayTable(buf []rune, begin, end int) {
    p.setArrayTable(p.table, buf, begin, end)
}

func (p *toml) setArrayTable(parent *ast.Table, buf []rune, begin, end int) {
    name := string(buf[begin:end])
    names := splitTableKey(name)
    parent, err := p.lookupTable(parent, names[:len(names)-1])
    if err != nil {
        p.Error(err)
    }
    last := names[len(names)-1]
    tbl := p.newTable(ast.TableTypeArray, last)
    switch v := parent.Fields[last].(type) {
    case nil:
        parent.Fields[last] = []*ast.Table{tbl}
    case []*ast.Table:
        parent.Fields[last] = append(v, tbl)
    case *ast.Table:
        p.Error(fmt.Errorf("array table `%s' is in conflict with table in line %d", name, v.Line))
    case *ast.KeyValue:
        p.Error(fmt.Errorf("array table `%s' is in conflict with line %d", name, v.Line))
    default:
        p.Error(fmt.Errorf("BUG: array table `%s' is in conflict but it's unknown type `%T'", name, v))
    }
    p.currentTable = tbl
}

func (p *toml) StartInlineTable() {
    p.skip = false
    p.stack = append(p.stack, &stack{p.key, p.currentTable})
    buf := []rune(p.key)
    if p.arr == nil {
        p.setTable(p.currentTable, buf, 0, len(buf))
    } else {
        p.setArrayTable(p.currentTable, buf, 0, len(buf))
    }
}

func (p *toml) EndInlineTable() {
    st := p.stack[len(p.stack)-1]
    p.key, p.currentTable = st.key, st.table
    p.stack[len(p.stack)-1] = nil
    p.stack = p.stack[:len(p.stack)-1]
    p.skip = true
}

func (p *toml) AddLineCount(i int) {
    p.line += i
}

func (p *toml) SetKey(buf []rune, begin, end int) {
    p.key = string(buf[begin:end])
}

func (p *toml) AddKeyValue() {
    if p.skip {
        p.skip = false
        return
    }
    if val, exists := p.currentTable.Fields[p.key]; exists {
        switch v := val.(type) {
        case *ast.Table:
            p.Error(fmt.Errorf("key `%s' is in conflict with table in line %d", p.key, v.Line))
        case *ast.KeyValue:
            p.Error(fmt.Errorf("key `%s' is in conflict with line %xd", p.key, v.Line))
        default:
            p.Error(fmt.Errorf("BUG: key `%s' is in conflict but it's unknown type `%T'", p.key, v))
        }
    }
    p.currentTable.Fields[p.key] = &ast.KeyValue{Key: p.key, Value: p.val, Line: p.line}
}

func (p *toml) SetBasicString(buf []rune, begin, end int) {
    p.s = p.unquote(string(buf[begin:end]))
}

func (p *toml) SetMultilineString() {
    p.s = p.unquote(`"` + escapeReplacer.Replace(strings.TrimLeft(p.s, "\r\n")) + `"`)
}

func (p *toml) AddMultilineBasicBody(buf []rune, begin, end int) {
    p.s += string(buf[begin:end])
}

func (p *toml) SetLiteralString(buf []rune, begin, end int) {
    p.s = string(buf[begin:end])
}

func (p *toml) SetMultilineLiteralString(buf []rune, begin, end int) {
    p.s = strings.TrimLeft(string(buf[begin:end]), "\r\n")
}

func (p *toml) unquote(s string) string {
    s, err := strconv.Unquote(s)
    if err != nil {
        p.Error(err)
    }
    return s
}

func (p *toml) lookupTable(t *ast.Table, keys []string) (*ast.Table, error) {
    for _, s := range keys {
        val, exists := t.Fields[s]
        if !exists {
            tbl := p.newTable(ast.TableTypeNormal, s)
            t.Fields[s] = tbl
            t = tbl
            continue
        }
        switch v := val.(type) {
        case *ast.Table:
            t = v
        case []*ast.Table:
            t = v[len(v)-1]
        case *ast.KeyValue:
            return nil, fmt.Errorf("key `%s' is in conflict with line %d", s, v.Line)
        default:
            return nil, fmt.Errorf("BUG: key `%s' is in conflict but it's unknown type `%T'", s, v)
        }
    }
    return t, nil
}

func splitTableKey(tk string) []string {
    key := make([]byte, 0, 1)
    keys := make([]string, 0, 1)
    inQuote := false
    for i := 0; i < len(tk); i++ {
        k := tk[i]
        switch {
        case k == tableSeparator && !inQuote:
            keys = append(keys, string(key))
            key = key[:0] // reuse buffer.
        case k == '"':
            inQuote = !inQuote
        case (k == ' ' || k == '\t') && !inQuote:
            // skip.
        default:
            key = append(key, k)
        }
    }
    keys = append(keys, string(key))
    return keys
}