90 Star 484 Fork 143

平凯星辰(北京)科技有限公司 / tidb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
arena.go 2.17 KB
一键复制 编辑 原始数据 按行查看 历史
goroutine 提交于 2018-02-22 18:47 . *: Update go version (#5885)
// 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
}
Go
1
https://gitee.com/pingcap/tidb.git
git@gitee.com:pingcap/tidb.git
pingcap
tidb
tidb
v2.0.11

搜索帮助