-
Notifications
You must be signed in to change notification settings - Fork 9
/
parser.go
234 lines (208 loc) · 5.01 KB
/
parser.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
package css
import (
"bytes"
"container/list"
"errors"
"fmt"
"io"
"strings"
"text/scanner"
)
type tokenType int
const (
tokenFirstToken tokenType = iota - 1
tokenBlockStart
tokenBlockEnd
tokenRuleName
tokenValue
tokenSelector
tokenStyleSeparator
tokenStatementEnd
)
// Rule is a string type that represents a CSS rule.
type Rule string
type tokenEntry struct {
value string
pos scanner.Position
}
type tokenizer struct {
s *scanner.Scanner
}
// Type returns the rule type, which can be a class, id or a tag.
func (rule Rule) Type() string {
if strings.HasPrefix(string(rule), ".") {
return "class"
}
if strings.HasPrefix(string(rule), "#") {
return "id"
}
return "tag"
}
func (e tokenEntry) typ() tokenType {
return newTokenType(e.value)
}
func (t *tokenizer) next() (tokenEntry, error) {
token := t.s.Scan()
if token == scanner.EOF {
return tokenEntry{}, errors.New("EOF")
}
value := t.s.TokenText()
pos := t.s.Pos()
if newTokenType(value).String() == "STYLE_SEPARATOR" {
t.s.IsIdentRune = func(ch rune, i int) bool { // property value can contain spaces
if ch == -1 || ch == '\n' || ch == '\r' || ch == '\t' || ch == ':' || ch == ';' {
return false
}
return true
}
} else {
t.s.IsIdentRune = func(ch rune, i int) bool { // other tokens can't contain spaces
if ch == -1 || ch == '.' || ch == '#' || ch == '\n' || ch == '\r' || ch == ' ' || ch == '\t' || ch == ':' || ch == ';' {
return false
}
return true
}
}
return tokenEntry{
value: value,
pos: pos,
}, nil
}
func (t tokenType) String() string {
switch t {
case tokenBlockStart:
return "BLOCK_START"
case tokenBlockEnd:
return "BLOCK_END"
case tokenStyleSeparator:
return "STYLE_SEPARATOR"
case tokenStatementEnd:
return "STATEMENT_END"
case tokenSelector:
return "SELECTOR"
}
return "VALUE"
}
func newTokenType(typ string) tokenType {
switch typ {
case "{":
return tokenBlockStart
case "}":
return tokenBlockEnd
case ":":
return tokenStyleSeparator
case ";":
return tokenStatementEnd
case ".", "#":
return tokenSelector
}
return tokenValue
}
func newTokenizer(r io.Reader) *tokenizer {
s := &scanner.Scanner{}
s.Init(r)
return &tokenizer{
s: s,
}
}
func buildList(r io.Reader) *list.List {
l := list.New()
t := newTokenizer(r)
for {
token, err := t.next()
if err != nil {
break
}
l.PushBack(token)
}
return l
}
// TODO: rules can be comma separated
func parse(l *list.List) (map[Rule]map[string]string, error) {
var (
// Information about the current block that is parsed.
rule []string
style string
value string
selector string
isBlock bool
// Parsed styles.
css = make(map[Rule]map[string]string)
styles = make(map[string]string)
// Previous token for the state machine.
prevToken = tokenType(tokenFirstToken)
)
for e := l.Front(); e != nil; e = l.Front() {
token := e.Value.(tokenEntry)
l.Remove(e)
// fmt.Printf("typ: %s, value: %q, prevToken: %v\n", token.typ(), token.value, prevToken)
switch token.typ() {
case tokenValue:
switch prevToken {
case tokenFirstToken, tokenBlockEnd:
rule = append(rule, token.value)
case tokenSelector:
rule = append(rule, selector+token.value)
case tokenBlockStart, tokenStatementEnd:
style = token.value
case tokenStyleSeparator:
value = token.value
case tokenValue:
rule = append(rule, token.value)
default:
return css, fmt.Errorf("line %d: invalid syntax", token.pos.Line)
}
case tokenSelector:
selector = token.value
case tokenBlockStart:
if prevToken != tokenValue {
return css, fmt.Errorf("line %d: block is missing rule identifier", token.pos.Line)
}
isBlock = true
case tokenStatementEnd:
// fmt.Printf("prevToken: %v, style: %v, value: %v\n", prevToken, style, value)
if prevToken != tokenValue || style == "" || value == "" {
return css, fmt.Errorf("line %d: expected style before semicolon", token.pos.Line)
}
styles[style] = value
case tokenBlockEnd:
if !isBlock {
return css, fmt.Errorf("line %d: rule block ends without a beginning", token.pos.Line)
}
for i := range rule {
r := Rule(rule[i])
oldRule, ok := css[r]
if ok {
// merge rules
for style, value := range oldRule {
if _, ok := styles[style]; !ok {
styles[style] = value
}
}
continue
}
css[r] = styles
}
styles = map[string]string{}
style, value = "", ""
isBlock = false
}
prevToken = token.typ()
}
return css, nil
}
// Unmarshal will take a byte slice, containing sylesheet rules and return
// a map of a rules map.
func Unmarshal(b []byte) (map[Rule]map[string]string, error) {
return parse(buildList(bytes.NewReader(b)))
}
// CSSStyle returns an error-checked parsed style, or an error if the
// style is unknown. Most of the styles are not supported yet.
func CSSStyle(name string, styles map[string]string) (Style, error) {
value := styles[name]
styleFn, ok := StylesTable[name]
if !ok {
return Style{}, errors.New("unknown style")
}
return styleFn(value)
}