forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
arena.go
80 lines (64 loc) · 2.17 KB
/
arena.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
// 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 arena
// Allocator pre-allocates memory to reduce memory allocation cost.
// It is not thread-safe.
type Allocator interface {
// Alloc allocates memory with 0 len and capacity cap.
Alloc(capacity int) []byte
// AllocWithLen allocates memory with length and capacity.
AllocWithLen(length int, capacity int) []byte
// Reset resets arena offset.
// Make sure all the allocated memory are not used any more.
Reset()
}
// SimpleAllocator is a simple implementation of ArenaAllocator.
type SimpleAllocator struct {
arena []byte
off int
}
type stdAllocator struct {
}
func (a *stdAllocator) Alloc(capacity int) []byte {
return make([]byte, 0, capacity)
}
func (a *stdAllocator) AllocWithLen(length int, capacity int) []byte {
return make([]byte, length, capacity)
}
func (a *stdAllocator) Reset() {
}
var _ Allocator = &stdAllocator{}
// StdAllocator implements Allocator but do not pre-allocate memory.
var StdAllocator = &stdAllocator{}
// NewAllocator creates an Allocator with a specified capacity.
func NewAllocator(capacity int) *SimpleAllocator {
return &SimpleAllocator{arena: make([]byte, 0, capacity)}
}
// Alloc implements Allocator.AllocBytes interface.
func (s *SimpleAllocator) Alloc(capacity int) []byte {
if s.off+capacity < cap(s.arena) {
slice := s.arena[s.off : s.off : s.off+capacity]
s.off += capacity
return slice
}
return make([]byte, 0, capacity)
}
// AllocWithLen implements Allocator.AllocWithLen interface.
func (s *SimpleAllocator) AllocWithLen(length int, capacity int) []byte {
slice := s.Alloc(capacity)
return slice[:length:capacity]
}
// Reset implements Allocator.Reset interface.
func (s *SimpleAllocator) Reset() {
s.off = 0
}