-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathtokeniser.go
181 lines (138 loc) · 3.41 KB
/
tokeniser.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
package ics
import (
"errors"
"io"
"vimagination.zapto.org/parser"
)
const (
tokenName parser.TokenType = iota
tokenParamName
tokenParamQuotedValue
tokenParamValue
tokenValue
)
const phraseContentLine parser.PhraseType = iota
const (
ianaToken = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789-"
nonsafeChars = "\x00\x01\x02\x03\x04\x05\x06\x07\x08\x0b\x0c\x0d\x0e\x0f\x10\x11\x12\x13\x14\x15\x16\x17\x18\x19\x1a\x1b\x1c\x1d\x1e\x1f\x7f\n\";:,"
)
type tokeniser interface {
GetPhrase() (parser.Phrase, error)
}
func newTokeniser(r io.Reader) *parser.Parser {
p := parser.New(parser.NewReaderTokeniser(r))
p.TokeniserState(parseName)
p.PhraserState(phrase)
return &p
}
func parseName(t *parser.Tokeniser) (parser.Token, parser.TokenFunc) {
next := t.AcceptRun(ianaToken)
name := t.Get()
if len(name) == 0 {
if next == -1 {
return t.Done()
}
t.Err = ErrInvalidContentLine
return t.Error()
}
switch next {
case ';':
return parser.Token{
Type: tokenName,
Data: name,
}, parseParamName
case ':':
return parser.Token{
Type: tokenName,
Data: name,
}, parseValue
default:
t.Err = ErrInvalidContentLineName
return t.Error()
}
}
func parseParamName(t *parser.Tokeniser) (parser.Token, parser.TokenFunc) {
t.Accept(";")
t.Get()
if t.AcceptRun(ianaToken) != '=' {
t.Err = ErrInvalidContentLineParamName
return t.Error()
}
return t.Return(tokenParamName, parseParamValue)
}
func parseParamValue(t *parser.Tokeniser) (parser.Token, parser.TokenFunc) {
t.Accept("=,")
t.Get()
var tk parser.Token
if t.Accept("\"") {
t.Get()
if t.ExceptRun(nonsafeChars[:33]) != '"' {
t.Err = ErrInvalidContentLineQuotedParamValue
return t.Error()
}
tk.Type = tokenParamQuotedValue
tk.Data = t.Get()
t.Accept("\"")
} else {
t.ExceptRun(nonsafeChars)
tk.Type = tokenParamValue
tk.Data = t.Get()
}
switch t.Peek() {
case ',':
return tk, parseParamValue
case ';':
return tk, parseParamName
case ':':
return tk, parseValue
}
t.Err = ErrInvalidContentLineParamValue
return t.Error()
}
func parseValue(t *parser.Tokeniser) (parser.Token, parser.TokenFunc) {
t.Accept(":")
t.Get()
switch t.ExceptRun(nonsafeChars[:32]) {
case '\r':
data := t.Get()
t.Accept("\r")
if t.Accept("\n") {
t.Get()
return parser.Token{
Type: tokenValue,
Data: data,
}, parseName
}
case -1:
return t.Return(tokenValue, nil)
}
t.Err = ErrInvalidContentLineValue
return t.Error()
}
func phrase(p *parser.Parser) (parser.Phrase, parser.PhraseFunc) {
if !p.Accept(tokenName) {
if p.Accept(parser.TokenDone) {
return p.Done()
}
return p.Error()
}
for p.Accept(tokenParamName) {
if !p.Accept(tokenParamValue, tokenParamQuotedValue) {
return p.Error()
}
p.AcceptRun(tokenParamValue, tokenParamQuotedValue)
}
if !p.Accept(tokenValue) {
return p.Error()
}
return p.Return(phraseContentLine, phrase)
}
// Errors.
var (
ErrInvalidContentLine = errors.New("invalid content line")
ErrInvalidContentLineName = errors.New("invalid content line name")
ErrInvalidContentLineParamName = errors.New("invalid content line param name")
ErrInvalidContentLineQuotedParamValue = errors.New("invalid content line quoted param value")
ErrInvalidContentLineParamValue = errors.New("invalid content line param value")
ErrInvalidContentLineValue = errors.New("invalid content line value")
)