forked from open-policy-agent/opa
-
Notifications
You must be signed in to change notification settings - Fork 0
/
regex.go
71 lines (62 loc) · 1.56 KB
/
regex.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
// Copyright 2016 The OPA Authors. All rights reserved.
// Use of this source code is governed by an Apache2
// license that can be found in the LICENSE file.
package topdown
import (
"regexp"
"sync"
"github.com/yashtewari/glob-intersection"
"github.com/open-policy-agent/opa/ast"
"github.com/open-policy-agent/opa/topdown/builtins"
)
var regexpCacheLock = sync.Mutex{}
var regexpCache map[string]*regexp.Regexp
func builtinRegexMatch(a, b ast.Value) (ast.Value, error) {
s1, err := builtins.StringOperand(a, 1)
if err != nil {
return nil, err
}
s2, err := builtins.StringOperand(b, 2)
if err != nil {
return nil, err
}
re, err := getRegexp(string(s1))
if err != nil {
return nil, err
}
return ast.Boolean(re.Match([]byte(s2))), nil
}
func getRegexp(pat string) (*regexp.Regexp, error) {
regexpCacheLock.Lock()
defer regexpCacheLock.Unlock()
re, ok := regexpCache[pat]
if !ok {
var err error
re, err = regexp.Compile(string(pat))
if err != nil {
return nil, err
}
regexpCache[pat] = re
}
return re, nil
}
func builtinGlobsMatch(a, b ast.Value) (ast.Value, error) {
s1, err := builtins.StringOperand(a, 1)
if err != nil {
return nil, err
}
s2, err := builtins.StringOperand(b, 2)
if err != nil {
return nil, err
}
ne, err := gintersect.NonEmpty(string(s1), string(s2))
if err != nil {
return nil, err
}
return ast.Boolean(ne), nil
}
func init() {
regexpCache = map[string]*regexp.Regexp{}
RegisterFunctionalBuiltin2(ast.RegexMatch.Name, builtinRegexMatch)
RegisterFunctionalBuiltin2(ast.GlobsMatch.Name, builtinGlobsMatch)
}