1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/hanchuanchuan-goInception

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Это зеркальный репозиторий, синхронизируется ежедневно с исходного репозитория.
Клонировать/Скачать
arena.go 2.2 КБ
Копировать Редактировать Исходные данные Просмотреть построчно История
hanchuanchuan Отправлено 6 лет назад 0f09d27
// 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
}

Комментарий ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://gitlife.ru/oschina-mirror/hanchuanchuan-goInception.git
git@gitlife.ru:oschina-mirror/hanchuanchuan-goInception.git
oschina-mirror
hanchuanchuan-goInception
hanchuanchuan-goInception
v1.2.2