-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmatcher_str.go
183 lines (135 loc) · 2.39 KB
/
matcher_str.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
package ulexer
import (
"strings"
"unicode"
)
// 匹配标识符
func Identifier() Matcher {
return (*identifierMatcher)(nil)
}
type identifierMatcher struct{}
func (*identifierMatcher) TokenType() string {
return "Identifier"
}
func (self *identifierMatcher) Read(lex *Lexer) (tk *Token) {
var count int
for {
c := lex.Peek(count)
isBasic := unicode.IsLetter(c) || c == '_'
switch {
case count == 0 && isBasic:
case count > 0 && (isBasic || unicode.IsDigit(c)):
default:
goto ExitFor
}
count++
}
ExitFor:
if count == 0 {
return nil
}
tk = lex.NewToken(count, self)
lex.Consume(count)
return
}
// 包含字面量
func Contain(literal interface{}) Matcher {
self := &containMatcher{}
switch v := literal.(type) {
case string:
self.literal = []rune(v)
case rune:
self.literal = []rune{v}
default:
panic("invalid contain")
}
return self
}
type containMatcher struct {
literal []rune
}
func (*containMatcher) TokenType() string {
return "Contain"
}
func (c *containMatcher) String() string {
return string(c.literal)
}
func (self *containMatcher) Read(lex *Lexer) (tk *Token) {
var count int
for {
c := lex.Peek(count)
if count >= len(self.literal) {
break
}
if c != self.literal[count] {
break
}
count++
}
if count == 0 {
return nil
}
tk = lex.NewToken(count, self)
lex.Consume(count)
return
}
// 匹配字符串
func String() Matcher {
return (*stringMatcher)(nil)
}
type stringMatcher struct{}
func (*stringMatcher) TokenType() string {
return "String"
}
func (self *stringMatcher) Read(lex *Lexer) (tk *Token) {
beginChar := lex.Peek(0)
if beginChar != '"' && beginChar != '\'' {
return nil
}
state := lex.State
lex.Consume(1)
var (
escaping bool
closed bool
sb strings.Builder
)
var count int
for {
c := lex.Peek(count)
if escaping {
switch c {
case 'n':
sb.WriteRune('\n')
case 'r':
sb.WriteRune('\r')
case '"', '\'':
sb.WriteRune(c)
default:
sb.WriteRune('\\')
sb.WriteRune(c)
}
escaping = false
} else if c != beginChar {
if c == '\\' {
escaping = true
} else if c != 0 {
sb.WriteRune(c)
}
} else {
closed = true
break
}
if c == '\n' || c == 0 {
break
}
count++
}
if !closed {
lex.State = state
return nil
}
end := count + 1
tk = lex.NewTokenLiteral(end, self, sb.String())
lex.Consume(end)
return
}