forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbuiltin_vectorized.go
107 lines (94 loc) · 3.07 KB
/
builtin_vectorized.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
// Copyright 2019 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,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package expression
import (
"sync"
"github.com/pingcap/errors"
"github.com/pingcap/tidb/parser/mysql"
"github.com/pingcap/tidb/types"
"github.com/pingcap/tidb/util/chunk"
)
// columnBufferAllocator is used to allocate and release column buffer in vectorized evaluation.
type columnBufferAllocator interface {
// get allocates a column. The allocator is not responsible for initializing the column, so please initialize it before using.
get() (*chunk.Column, error)
// put releases a column buffer.
put(buf *chunk.Column)
}
// localColumnPool implements columnBufferAllocator interface.
// It works like a concurrency-safe deque which is implemented by lock-free sync.Pool.
type localColumnPool struct {
sync.Pool
}
func newLocalColumnPool() *localColumnPool {
newColumn := chunk.NewColumn(types.NewFieldType(mysql.TypeLonglong), chunk.InitialCapacity)
return &localColumnPool{
sync.Pool{
New: func() interface{} {
return newColumn.CopyConstruct(nil)
},
},
}
}
var globalColumnAllocator = newLocalColumnPool()
// GetColumn allocates a column. The allocator is not responsible for initializing the column, so please initialize it before using.
func GetColumn(_ types.EvalType, _ int) (*chunk.Column, error) {
return globalColumnAllocator.get()
}
// PutColumn releases a column buffer.
func PutColumn(buf *chunk.Column) {
globalColumnAllocator.put(buf)
}
func (r *localColumnPool) get() (*chunk.Column, error) {
col, ok := r.Pool.Get().(*chunk.Column)
if !ok {
return nil, errors.New("unexpected object in localColumnPool")
}
return col, nil
}
func (r *localColumnPool) put(col *chunk.Column) {
r.Pool.Put(col)
}
// vecEvalIntByRows uses the non-vectorized(row-based) interface `evalInt` to eval the expression.
func vecEvalIntByRows(sig builtinFunc, input *chunk.Chunk, result *chunk.Column) error {
n := input.NumRows()
result.ResizeInt64(n, false)
i64s := result.Int64s()
for i := 0; i < n; i++ {
res, isNull, err := sig.evalInt(input.GetRow(i))
if err != nil {
return err
}
result.SetNull(i, isNull)
i64s[i] = res
}
return nil
}
// vecEvalStringByRows uses the non-vectorized(row-based) interface `evalString` to eval the expression.
func vecEvalStringByRows(sig builtinFunc, input *chunk.Chunk, result *chunk.Column) error {
n := input.NumRows()
result.ReserveString(n)
for i := 0; i < n; i++ {
res, isNull, err := sig.evalString(input.GetRow(i))
if err != nil {
return err
}
if isNull {
result.AppendNull()
continue
}
result.AppendString(res)
}
return nil
}