-
Notifications
You must be signed in to change notification settings - Fork 5.8k
/
builtin_vectorized.go
148 lines (134 loc) · 4.42 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
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
// 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,
// 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/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 buffer with the specific eval type and capacity.
// the allocator is not responsible for initializing the column, so please initialize it before using.
get(evalType types.EvalType, capacity int) (*chunk.Column, error)
// put releases a column buffer.
put(buf *chunk.Column)
}
// localSliceBuffer implements columnBufferAllocator interface.
// It works like a concurrency-safe deque which is implemented by a lock + slice.
type localSliceBuffer struct {
sync.Mutex
buffers []*chunk.Column
head int
tail int
size int
}
func newLocalSliceBuffer(initCap int) *localSliceBuffer {
return &localSliceBuffer{buffers: make([]*chunk.Column, initCap)}
}
var globalColumnAllocator = newLocalSliceBuffer(1024)
func newBuffer(evalType types.EvalType, capacity int) (*chunk.Column, error) {
switch evalType {
case types.ETInt:
return chunk.NewColumn(types.NewFieldType(mysql.TypeLonglong), capacity), nil
case types.ETReal:
return chunk.NewColumn(types.NewFieldType(mysql.TypeDouble), capacity), nil
case types.ETDecimal:
return chunk.NewColumn(types.NewFieldType(mysql.TypeNewDecimal), capacity), nil
case types.ETDuration:
return chunk.NewColumn(types.NewFieldType(mysql.TypeDuration), capacity), nil
case types.ETDatetime, types.ETTimestamp:
return chunk.NewColumn(types.NewFieldType(mysql.TypeDatetime), capacity), nil
case types.ETString:
return chunk.NewColumn(types.NewFieldType(mysql.TypeString), capacity), nil
case types.ETJson:
return chunk.NewColumn(types.NewFieldType(mysql.TypeJSON), capacity), nil
}
return nil, errors.Errorf("get column buffer for unsupported EvalType=%v", evalType)
}
// GetColumn allocates a column buffer with the specific eval type and capacity.
// the allocator is not responsible for initializing the column, so please initialize it before using.
func GetColumn(evalType types.EvalType, capacity int) (*chunk.Column, error) {
return globalColumnAllocator.get(evalType, capacity)
}
// PutColumn releases a column buffer.
func PutColumn(buf *chunk.Column) {
globalColumnAllocator.put(buf)
}
func (r *localSliceBuffer) get(evalType types.EvalType, capacity int) (*chunk.Column, error) {
r.Lock()
if r.size > 0 {
buf := r.buffers[r.head]
r.head++
if r.head == len(r.buffers) {
r.head = 0
}
r.size--
r.Unlock()
return buf, nil
}
r.Unlock()
return newBuffer(evalType, capacity)
}
func (r *localSliceBuffer) put(buf *chunk.Column) {
r.Lock()
if r.size == len(r.buffers) {
buffers := make([]*chunk.Column, len(r.buffers)*2)
copy(buffers, r.buffers[r.head:])
copy(buffers[r.size-r.head:], r.buffers[:r.tail])
r.head = 0
r.tail = len(r.buffers)
r.buffers = buffers
}
r.buffers[r.tail] = buf
r.tail++
if r.tail == len(r.buffers) {
r.tail = 0
}
r.size++
r.Unlock()
}
// 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
}