-
Notifications
You must be signed in to change notification settings - Fork 1.1k
/
Copy pathregexp.go
422 lines (373 loc) · 12.8 KB
/
regexp.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
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
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
/*
Package regexp implmenets API of Go's native "regexp" but with caching results in memory
*/
package regexp
import (
"io"
"regexp"
"strconv"
"time"
)
var (
compileCache = newRegexpCache(defaultCacheItemTTL, true, regexp.Compile)
compilePOSIXCache = newRegexpCache(defaultCacheItemTTL, true, regexp.CompilePOSIX)
matchStringCache = newRegexpStrRetBoolCache(defaultCacheItemTTL, true)
matchCache = newRegexpByteRetBoolCache(defaultCacheItemTTL, true)
replaceAllStringCache = newRegexpStrStrRetStrCache(defaultCacheItemTTL, true)
replaceAllLiteralStringCache = newRegexpStrStrRetStrCache(defaultCacheItemTTL, true)
replaceAllStringFuncCache = newRegexpStrFuncRetStrCache(defaultCacheItemTTL, true)
findStringSubmatchCache = newRegexpStrRetSliceStrCache(defaultCacheItemTTL, true)
findAllStringCache = newRegexpStrIntRetSliceStrCache(defaultCacheItemTTL, true)
findAllStringSubmatchCache = newRegexpStrIntRetSliceSliceStrCache(defaultCacheItemTTL, true)
)
// Regexp is a wrapper around regexp.Regexp but with caching
type Regexp struct {
*regexp.Regexp
FromCache bool
}
// ResetCache resets cache to initial state
func ResetCache(ttl time.Duration, isEnabled bool) {
if ttl == 0 {
ttl = defaultCacheItemTTL
}
compileCache.reset(ttl, isEnabled)
compilePOSIXCache.reset(ttl, isEnabled)
matchStringCache.reset(ttl, isEnabled)
matchCache.reset(ttl, isEnabled)
replaceAllStringCache.reset(ttl, isEnabled)
replaceAllLiteralStringCache.reset(ttl, isEnabled)
replaceAllStringFuncCache.reset(ttl, isEnabled)
findStringSubmatchCache.reset(ttl, isEnabled)
findAllStringCache.reset(ttl, isEnabled)
findAllStringSubmatchCache.reset(ttl, isEnabled)
}
// Compile does the same as regexp.Compile but returns cached *Regexp instead.
func Compile(expr string) (*Regexp, error) {
return compileCache.do(expr)
}
// CompilePOSIX does the same as regexp.CompilePOSIX but returns cached *Regexp instead.
func CompilePOSIX(expr string) (*Regexp, error) {
return compilePOSIXCache.do(expr)
}
// MustCompile is the same as regexp.MustCompile but returns cached *Regexp instead.
func MustCompile(str string) *Regexp {
regexp, err := Compile(str)
if err != nil {
panic(`regexp: Compile(` + quote(str) + `): ` + err.Error())
}
return regexp
}
// MustCompilePOSIX is the same as regexp.MustCompilePOSIX but returns cached *Regexp instead.
func MustCompilePOSIX(str string) *Regexp {
regexp, err := CompilePOSIX(str)
if err != nil {
panic(`regexp: CompilePOSIX(` + quote(str) + `): ` + err.Error())
}
return regexp
}
// MatchString is the same as regexp.MatchString but returns cached result instead.
func MatchString(pattern string, s string) (matched bool, err error) {
re, err := Compile(pattern)
if err != nil {
return false, err
}
return re.MatchString(s), nil
}
// Match is the same as regexp.Match but returns cached result instead.
func Match(pattern string, b []byte) (matched bool, err error) {
re, err := Compile(pattern)
if err != nil {
return false, err
}
return re.Match(b), nil
}
// QuoteMeta is the same as regexp.QuoteMeta but returns cached result instead.
func QuoteMeta(s string) string {
// TODO: add cache for QuoteMeta
return regexp.QuoteMeta(s)
}
func quote(s string) string {
if strconv.CanBackquote(s) {
return "`" + s + "`"
}
return strconv.Quote(s)
}
// String returns the source text used to compile the wrapped regular expression.
func (re *Regexp) String() string {
if re.Regexp == nil {
return ""
}
return re.Regexp.String()
}
// Copy returns a new Regexp object copied from re.
//
// When using a Regexp in multiple goroutines, giving each goroutine
// its own copy helps to avoid lock contention.
func (re *Regexp) Copy() *Regexp {
reCopy := &Regexp{
FromCache: re.FromCache,
}
if re.Regexp != nil {
reCopy.Regexp = re.Regexp.Copy()
}
return reCopy
}
// Longest calls regexp.Regexp.Longest of wrapped regular expression
func (re *Regexp) Longest() {
if re.Regexp == nil {
re.Regexp.Longest()
}
}
// NumSubexp returns result of regexp.Regexp.NumSubexp of wrapped regular expression.
func (re *Regexp) NumSubexp() int {
if re.Regexp == nil {
return 0
}
return re.Regexp.NumSubexp()
}
// SubexpNames returns result of regexp.Regexp.SubexpNames of wrapped regular expression.
func (re *Regexp) SubexpNames() []string {
if re.Regexp == nil {
return []string{}
}
return re.Regexp.SubexpNames()
}
// LiteralPrefix returns a literal string that must begin any match
// Calls regexp.Regexp.LiteralPrefix
func (re *Regexp) LiteralPrefix() (prefix string, complete bool) {
if re.Regexp == nil {
return "", false
}
return re.Regexp.LiteralPrefix()
}
// MatchReader reports whether the Regexp matches the text read by the
// RuneReader.
// Calls regexp.Regexp.MatchReader (NO CACHE)
func (re *Regexp) MatchReader(r io.RuneReader) bool {
if re.Regexp == nil {
return false
}
return re.Regexp.MatchReader(r)
}
// MatchString reports whether the Regexp matches the string s.
func (re *Regexp) MatchString(s string) bool {
if re.Regexp == nil {
return false
}
return matchStringCache.do(re.Regexp, s, re.Regexp.MatchString)
}
// Match reports whether the Regexp matches the byte slice b.
func (re *Regexp) Match(b []byte) bool {
if re.Regexp == nil {
return false
}
return matchCache.do(re.Regexp, b, re.Regexp.Match)
}
// ReplaceAllString is the same as regexp.Regexp.ReplaceAllString but returns cached result instead.
func (re *Regexp) ReplaceAllString(src, repl string) string {
if re.Regexp == nil {
return ""
}
return replaceAllStringCache.do(re.Regexp, src, repl, re.Regexp.ReplaceAllString)
}
// ReplaceAllLiteralString is the same as regexp.Regexp.ReplaceAllLiteralString but returns cached result instead.
func (re *Regexp) ReplaceAllLiteralString(src, repl string) string {
if re.Regexp == nil {
return ""
}
return replaceAllLiteralStringCache.do(re.Regexp, src, repl, re.Regexp.ReplaceAllLiteralString)
}
// ReplaceAllStringFunc is the same as regexp.Regexp.ReplaceAllStringFunc but returns cached result instead.
func (re *Regexp) ReplaceAllStringFunc(src string, repl func(string) string) string {
if re.Regexp == nil {
return ""
}
return replaceAllStringFuncCache.do(re.Regexp, src, repl, re.Regexp.ReplaceAllStringFunc)
}
// ReplaceAll is the same as regexp.Regexp.ReplaceAll but returns cached result instead.
func (re *Regexp) ReplaceAll(src, repl []byte) []byte {
if re.Regexp == nil {
return []byte{}
}
// TODO: add cache for ReplaceAll
return re.Regexp.ReplaceAll(src, repl)
}
// ReplaceAllLiteral is the same as regexp.Regexp.ReplaceAllLiteral but returns cached result instead.
func (re *Regexp) ReplaceAllLiteral(src, repl []byte) []byte {
if re.Regexp == nil {
return []byte{}
}
// TODO: add cache for ReplaceAllLiteral
return re.Regexp.ReplaceAllLiteral(src, repl)
}
// ReplaceAllFunc is the same as regexp.Regexp.ReplaceAllFunc but returns cached result instead.
func (re *Regexp) ReplaceAllFunc(src []byte, repl func([]byte) []byte) []byte {
if re.Regexp == nil {
return []byte{}
}
// TODO: add cache for ReplaceAllFunc
return re.Regexp.ReplaceAllFunc(src, repl)
}
// Find is the same as regexp.Regexp.Find but returns cached result instead.
func (re *Regexp) Find(b []byte) []byte {
if re.Regexp == nil {
return []byte{}
}
// TODO: add cache for Find
return re.Regexp.Find(b)
}
// FindIndex is the same as regexp.Regexp.FindIndex but returns cached result instead.
func (re *Regexp) FindIndex(b []byte) (loc []int) {
if re.Regexp == nil {
return
}
// TODO: add cache for FindIndex
return re.Regexp.FindIndex(b)
}
// FindString is the same as regexp.Regexp.FindString but returns cached result instead.
func (re *Regexp) FindString(s string) string {
if re.Regexp == nil {
return ""
}
// TODO: add cache for FindString
return re.Regexp.FindString(s)
}
// FindStringIndex is the same as regexp.Regexp.FindStringIndex but returns cached result instead.
func (re *Regexp) FindStringIndex(s string) (loc []int) {
if re.Regexp == nil {
return
}
// TODO: add cache for FindStringIndex
return re.Regexp.FindStringIndex(s)
}
// FindReaderIndex is the same as regexp.Regexp.FindReaderIndex (NO CACHE).
func (re *Regexp) FindReaderIndex(r io.RuneReader) (loc []int) {
if re.Regexp == nil {
return
}
return re.Regexp.FindReaderIndex(r)
}
// FindSubmatch is the same as regexp.Regexp.FindSubmatch but returns cached result instead.
func (re *Regexp) FindSubmatch(b []byte) [][]byte {
if re.Regexp == nil {
return [][]byte{}
}
// TODO: add cache for FindSubmatch
return re.Regexp.FindSubmatch(b)
}
// Expand is the same as regexp.Regexp.Expand but returns cached result instead.
func (re *Regexp) Expand(dst []byte, template []byte, src []byte, match []int) []byte {
if re.Regexp == nil {
return []byte{}
}
// TODO: add cache for Expand
return re.Regexp.Expand(dst, template, src, match)
}
// ExpandString is the same as regexp.Regexp.ExpandString but returns cached result instead.
func (re *Regexp) ExpandString(dst []byte, template string, src string, match []int) []byte {
if re.Regexp == nil {
return []byte{}
}
// TODO: add cache for ExpandString
return re.Regexp.ExpandString(dst, template, src, match)
}
// FindSubmatchIndex is the same as regexp.Regexp.FindSubmatchIndex but returns cached result instead.
func (re *Regexp) FindSubmatchIndex(b []byte) []int {
if re.Regexp == nil {
return []int{}
}
// TODO: add cache for ExpandString
return re.Regexp.FindSubmatchIndex(b)
}
// FindStringSubmatch is the same as regexp.Regexp.FindStringSubmatch but returns cached result instead.
func (re *Regexp) FindStringSubmatch(s string) []string {
if re.Regexp == nil {
return []string{}
}
return findStringSubmatchCache.do(re.Regexp, s, re.Regexp.FindStringSubmatch)
}
// FindStringSubmatchIndex is the same as regexp.Regexp.FindStringSubmatchIndex but returns cached result instead.
func (re *Regexp) FindStringSubmatchIndex(s string) []int {
if re.Regexp == nil {
return []int{}
}
// TODO: add cache for FindStringSubmatchIndex
return re.Regexp.FindStringSubmatchIndex(s)
}
// FindReaderSubmatchIndex is the same as regexp.Regexp.FindReaderSubmatchIndex (NO CACHE).
func (re *Regexp) FindReaderSubmatchIndex(r io.RuneReader) []int {
if re.Regexp == nil {
return []int{}
}
return re.Regexp.FindReaderSubmatchIndex(r)
}
// FindAll is the same as regexp.Regexp.FindAll but returns cached result instead.
func (re *Regexp) FindAll(b []byte, n int) [][]byte {
if re.Regexp == nil {
return [][]byte{}
}
// TODO: add cache for FindAll
return re.Regexp.FindAll(b, n)
}
// FindAllIndex is the same as regexp.Regexp.FindAllIndex but returns cached result instead.
func (re *Regexp) FindAllIndex(b []byte, n int) [][]int {
if re.Regexp == nil {
return [][]int{}
}
// TODO: add cache for FindAllIndex
return re.Regexp.FindAllIndex(b, n)
}
// FindAllString is the same as regexp.Regexp.FindAllString but returns cached result instead.
func (re *Regexp) FindAllString(s string, n int) []string {
if re.Regexp == nil {
return []string{}
}
return findAllStringCache.do(re.Regexp, s, n, re.Regexp.FindAllString)
}
// FindAllStringIndex is the same as regexp.Regexp.FindAllStringIndex but returns cached result instead.
func (re *Regexp) FindAllStringIndex(s string, n int) [][]int {
if re.Regexp == nil {
return [][]int{}
}
// TODO: add cache for FindAllStringIndex
return re.Regexp.FindAllStringIndex(s, n)
}
// FindAllSubmatch is the same as regexp.Regexp.FindAllSubmatch but returns cached result instead.
func (re *Regexp) FindAllSubmatch(b []byte, n int) [][][]byte {
if re.Regexp == nil {
return [][][]byte{}
}
// TODO: add cache for FindAllSubmatch
return re.Regexp.FindAllSubmatch(b, n)
}
// FindAllSubmatchIndex is the same as regexp.Regexp.FindAllSubmatchIndex but returns cached result instead.
func (re *Regexp) FindAllSubmatchIndex(b []byte, n int) [][]int {
if re.Regexp == nil {
return [][]int{}
}
// TODO: add cache for FindAllSubmatchIndex
return re.Regexp.FindAllSubmatchIndex(b, n)
}
// FindAllStringSubmatch is the same as regexp.Regexp.FindAllStringSubmatch but returns cached result instead.
func (re *Regexp) FindAllStringSubmatch(s string, n int) [][]string {
if re.Regexp == nil {
return [][]string{}
}
return findAllStringSubmatchCache.do(re.Regexp, s, n, re.Regexp.FindAllStringSubmatch)
}
// FindAllStringSubmatchIndex is the same as regexp.Regexp.FindAllStringSubmatchIndex but returns cached result instead.
func (re *Regexp) FindAllStringSubmatchIndex(s string, n int) [][]int {
if re.Regexp == nil {
return [][]int{}
}
// TODO: add cache for FindAllStringSubmatchIndex
return re.Regexp.FindAllStringSubmatchIndex(s, n)
}
// Split is the same as regexp.Regexp.Split but returns cached result instead.
func (re *Regexp) Split(s string, n int) []string {
if re.Regexp == nil {
return []string{}
}
// TODO: add cache for Split
return re.Regexp.Split(s, n)
}