forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuiltin_like.go
207 lines (183 loc) · 5.77 KB
/
builtin_like.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
// Copyright 2015 PingCAP, Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// See the License for the specific language governing permissions and
// limitations under the License.
package expression
import (
"regexp"
"sync"
"github.com/pingcap/parser/charset"
"github.com/pingcap/tidb/sessionctx"
"github.com/pingcap/tidb/types"
"github.com/pingcap/tidb/util/chunk"
"github.com/pingcap/tidb/util/collate"
"github.com/pingcap/tipb/go-tipb"
)
var (
_ functionClass = &likeFunctionClass{}
_ functionClass = ®expFunctionClass{}
)
var (
_ builtinFunc = &builtinLikeSig{}
_ builtinFunc = &builtinRegexpSig{}
_ builtinFunc = &builtinRegexpUTF8Sig{}
)
type likeFunctionClass struct {
baseFunctionClass
}
func (c *likeFunctionClass) getFunction(ctx sessionctx.Context, args []Expression) (builtinFunc, error) {
if err := c.verifyArgs(args); err != nil {
return nil, err
}
argTp := []types.EvalType{types.ETString, types.ETString, types.ETInt}
bf, err := newBaseBuiltinFuncWithTp(ctx, c.funcName, args, types.ETInt, argTp...)
if err != nil {
return nil, err
}
bf.tp.Flen = 1
sig := &builtinLikeSig{bf, nil, false, sync.Once{}}
sig.setPbCode(tipb.ScalarFuncSig_LikeSig)
return sig, nil
}
type builtinLikeSig struct {
baseBuiltinFunc
// pattern and isMemorizedPattern is not serialized with builtinLikeSig, treat them as a cache to accelerate
// the evaluation of builtinLikeSig.
pattern collate.WildcardPattern
isMemorizedPattern bool
once sync.Once
}
func (b *builtinLikeSig) Clone() builtinFunc {
newSig := &builtinLikeSig{}
newSig.cloneFrom(&b.baseBuiltinFunc)
newSig.pattern = b.pattern
newSig.isMemorizedPattern = b.isMemorizedPattern
return newSig
}
// evalInt evals a builtinLikeSig.
// See https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html#operator_like
func (b *builtinLikeSig) evalInt(row chunk.Row) (int64, bool, error) {
valStr, isNull, err := b.args[0].EvalString(b.ctx, row)
if isNull || err != nil {
return 0, isNull, err
}
patternStr, isNull, err := b.args[1].EvalString(b.ctx, row)
if isNull || err != nil {
return 0, isNull, err
}
escape, isNull, err := b.args[2].EvalInt(b.ctx, row)
if isNull || err != nil {
return 0, isNull, err
}
memorization := func() {
if b.pattern == nil {
b.pattern = b.collator().Pattern()
if b.args[1].ConstItem(b.ctx.GetSessionVars().StmtCtx) && b.args[2].ConstItem(b.ctx.GetSessionVars().StmtCtx) {
b.pattern.Compile(patternStr, byte(escape))
b.isMemorizedPattern = true
}
}
}
// Only be executed once to achieve thread-safe
b.once.Do(memorization)
if !b.isMemorizedPattern {
// Must not use b.pattern to avoid data race
pattern := b.collator().Pattern()
pattern.Compile(patternStr, byte(escape))
return boolToInt64(pattern.DoMatch(valStr)), false, nil
}
return boolToInt64(b.pattern.DoMatch(valStr)), false, nil
}
type regexpFunctionClass struct {
baseFunctionClass
}
func (c *regexpFunctionClass) getFunction(ctx sessionctx.Context, args []Expression) (builtinFunc, error) {
if err := c.verifyArgs(args); err != nil {
return nil, err
}
bf, err := newBaseBuiltinFuncWithTp(ctx, c.funcName, args, types.ETInt, types.ETString, types.ETString)
if err != nil {
return nil, err
}
bf.tp.Flen = 1
var sig builtinFunc
if bf.collation == charset.CollationBin {
sig = newBuiltinRegexpSig(bf)
sig.setPbCode(tipb.ScalarFuncSig_RegexpSig)
} else {
sig = newBuiltinRegexpUTF8Sig(bf)
sig.setPbCode(tipb.ScalarFuncSig_RegexpUTF8Sig)
}
return sig, nil
}
type builtinRegexpSharedSig struct {
baseBuiltinFunc
compile func(string) (*regexp.Regexp, error)
memorizedRegexp *regexp.Regexp
memorizedErr error
}
func (b *builtinRegexpSharedSig) clone(from *builtinRegexpSharedSig) {
b.cloneFrom(&from.baseBuiltinFunc)
b.compile = from.compile
if from.memorizedRegexp != nil {
b.memorizedRegexp = from.memorizedRegexp.Copy()
}
b.memorizedErr = from.memorizedErr
}
// evalInt evals `expr REGEXP pat`, or `expr RLIKE pat`.
// See https://dev.mysql.com/doc/refman/5.7/en/regexp.html#operator_regexp
func (b *builtinRegexpSharedSig) evalInt(row chunk.Row) (int64, bool, error) {
expr, isNull, err := b.args[0].EvalString(b.ctx, row)
if isNull || err != nil {
return 0, true, err
}
pat, isNull, err := b.args[1].EvalString(b.ctx, row)
if isNull || err != nil {
return 0, true, err
}
re, err := b.compile(pat)
if err != nil {
return 0, true, ErrRegexp.GenWithStackByArgs(err.Error())
}
return boolToInt64(re.MatchString(expr)), false, nil
}
type builtinRegexpSig struct {
builtinRegexpSharedSig
}
func newBuiltinRegexpSig(bf baseBuiltinFunc) *builtinRegexpSig {
shared := builtinRegexpSharedSig{baseBuiltinFunc: bf}
shared.compile = regexp.Compile
return &builtinRegexpSig{builtinRegexpSharedSig: shared}
}
func (b *builtinRegexpSig) Clone() builtinFunc {
newSig := &builtinRegexpSig{}
newSig.clone(&b.builtinRegexpSharedSig)
return newSig
}
type builtinRegexpUTF8Sig struct {
builtinRegexpSharedSig
}
func newBuiltinRegexpUTF8Sig(bf baseBuiltinFunc) *builtinRegexpUTF8Sig {
shared := builtinRegexpSharedSig{baseBuiltinFunc: bf}
if collate.IsCICollation(bf.collation) {
shared.compile = func(pat string) (*regexp.Regexp, error) {
return regexp.Compile("(?i)" + pat)
}
} else {
shared.compile = regexp.Compile
}
return &builtinRegexpUTF8Sig{builtinRegexpSharedSig: shared}
}
func (b *builtinRegexpUTF8Sig) Clone() builtinFunc {
newSig := &builtinRegexpUTF8Sig{}
newSig.clone(&b.builtinRegexpSharedSig)
return newSig
}