forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
list.go
154 lines (137 loc) · 4.19 KB
/
list.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
// Copyright 2017 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 chunk
import (
"github.com/juju/errors"
"github.com/pingcap/tidb/types"
"github.com/pingcap/tidb/util/memory"
)
// List holds a slice of chunks, use to append rows with max chunk size properly handled.
type List struct {
fieldTypes []*types.FieldType
maxChunkSize int
length int
chunks []*Chunk
freelist []*Chunk
memTracker *memory.Tracker // track memory usage.
consumedIdx int // chunk index in "chunks", has been consumed.
}
// RowPtr is used to get a row from a list.
// It is only valid for the list that returns it.
type RowPtr struct {
ChkIdx uint32
RowIdx uint32
}
// NewList creates a new List with field types and max chunk size.
func NewList(fieldTypes []*types.FieldType, maxChunkSize int) *List {
l := &List{
fieldTypes: fieldTypes,
maxChunkSize: maxChunkSize,
memTracker: memory.NewTracker("chunk.List", -1),
consumedIdx: -1,
}
return l
}
// GetMemTracker returns the memory tracker of this List.
func (l *List) GetMemTracker() *memory.Tracker {
return l.memTracker
}
// Len returns the length of the List.
func (l *List) Len() int {
return l.length
}
// NumChunks returns the number of chunks in the List.
func (l *List) NumChunks() int {
return len(l.chunks)
}
// GetChunk gets the Chunk by ChkIdx.
func (l *List) GetChunk(chkIdx int) *Chunk {
return l.chunks[chkIdx]
}
// AppendRow appends a row to the List, the row is copied to the List.
func (l *List) AppendRow(row Row) RowPtr {
chkIdx := len(l.chunks) - 1
if chkIdx == -1 || l.chunks[chkIdx].NumRows() >= l.maxChunkSize || chkIdx == l.consumedIdx {
newChk := l.allocChunk()
l.chunks = append(l.chunks, newChk)
if chkIdx != l.consumedIdx {
l.memTracker.Consume(l.chunks[chkIdx].MemoryUsage())
l.consumedIdx = chkIdx
}
chkIdx++
}
chk := l.chunks[chkIdx]
rowIdx := chk.NumRows()
chk.AppendRow(row)
l.length++
return RowPtr{ChkIdx: uint32(chkIdx), RowIdx: uint32(rowIdx)}
}
// Add adds a chunk to the List, the chunk may be modified later by the list.
// Caller must make sure the input chk is not empty and not used any more and has the same field types.
func (l *List) Add(chk *Chunk) {
// FixMe: we should avoid add a Chunk that chk.NumRows() > list.maxChunkSize.
if chk.NumRows() == 0 {
panic("chunk appended to List should have at least 1 row")
}
if chkIdx := len(l.chunks) - 1; l.consumedIdx != chkIdx {
l.memTracker.Consume(l.chunks[chkIdx].MemoryUsage())
l.consumedIdx = chkIdx
}
l.memTracker.Consume(chk.MemoryUsage())
l.consumedIdx++
l.chunks = append(l.chunks, chk)
l.length += chk.NumRows()
return
}
func (l *List) allocChunk() (chk *Chunk) {
if len(l.freelist) > 0 {
lastIdx := len(l.freelist) - 1
chk = l.freelist[lastIdx]
l.freelist = l.freelist[:lastIdx]
l.memTracker.Consume(-chk.MemoryUsage())
chk.Reset()
return
}
return NewChunkWithCapacity(l.fieldTypes, l.maxChunkSize)
}
// GetRow gets a Row from the list by RowPtr.
func (l *List) GetRow(ptr RowPtr) Row {
chk := l.chunks[ptr.ChkIdx]
return chk.GetRow(int(ptr.RowIdx))
}
// Reset resets the List.
func (l *List) Reset() {
if lastIdx := len(l.chunks) - 1; lastIdx != l.consumedIdx {
l.memTracker.Consume(l.chunks[lastIdx].MemoryUsage())
}
l.freelist = append(l.freelist, l.chunks...)
l.chunks = l.chunks[:0]
l.length = 0
l.consumedIdx = -1
}
// ListWalkFunc is used to walk the list.
// If error is returned, it will stop walking.
type ListWalkFunc = func(row Row) error
// Walk iterate the list and call walkFunc for each row.
func (l *List) Walk(walkFunc ListWalkFunc) error {
for i := 0; i < len(l.chunks); i++ {
chk := l.chunks[i]
for j := 0; j < chk.NumRows(); j++ {
err := walkFunc(chk.GetRow(j))
if err != nil {
return errors.Trace(err)
}
}
}
return nil
}