-
Notifications
You must be signed in to change notification settings - Fork 55
Expand file tree
/
Copy pathrexp.go
More file actions
59 lines (48 loc) · 1.09 KB
/
rexp.go
File metadata and controls
59 lines (48 loc) · 1.09 KB
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
// SPDX-FileCopyrightText: Copyright 2015-2025 go-swagger maintainers
// SPDX-License-Identifier: Apache-2.0
package validate
import (
"maps"
re "regexp"
"sync"
"sync/atomic"
)
// Cache for compiled regular expressions
var (
cacheMutex = &sync.Mutex{}
reDict = atomic.Value{} // map[string]*re.Regexp
)
func compileRegexp(pattern string) (*re.Regexp, error) {
if cache, ok := reDict.Load().(map[string]*re.Regexp); ok {
if r := cache[pattern]; r != nil {
return r, nil
}
}
r, err := re.Compile(pattern)
if err != nil {
return nil, err
}
cacheRegexp(r)
return r, nil
}
func mustCompileRegexp(pattern string) *re.Regexp {
if cache, ok := reDict.Load().(map[string]*re.Regexp); ok {
if r := cache[pattern]; r != nil {
return r
}
}
r := re.MustCompile(pattern)
cacheRegexp(r)
return r
}
func cacheRegexp(r *re.Regexp) {
cacheMutex.Lock()
defer cacheMutex.Unlock()
if cache, ok := reDict.Load().(map[string]*re.Regexp); !ok || cache[r.String()] == nil {
newCache := map[string]*re.Regexp{
r.String(): r,
}
maps.Copy(newCache, cache)
reDict.Store(newCache)
}
}