LevelDB 之 arena

粒度比较大,实现简洁清晰明了。
对比nginx的,nginx从小到大各种尺寸都有,适用性更好一些。相对要精细很多。

Arena.h
//z 2014-06-05 10:48:50 L.209'47470 BG57IV3 T1840949363.K.F1370514324[T6,L108,R4,V118]
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.#ifndef STORAGE_LEVELDB_UTIL_ARENA_H_
#define STORAGE_LEVELDB_UTIL_ARENA_H_#include <cstddef>
#include <vector>
#include <assert.h>
#include <stdint.h>namespace leveldb
{
/*//z
思路:
先在上一次分配的内存块中查找是否剩余空间能否容纳当前申请的空间;如果足以容纳,直接使用剩余空间
否则视其大小重新分配一块空间:如果大于1024,直接分配一块新空间,大小与申请空间大小同
如果小于1024,说明上一块空间剩余空间小于1024,那么重新分配一块4096大小的空间,使用该空间来存放待申请的空间
*/
class Arena
{
public:Arena();~Arena();// Return a pointer to a newly allocated memory block of "bytes" bytes.char* Allocate(size_t bytes);// Allocate memory with the normal alignment guarantees provided by mallocchar* AllocateAligned(size_t bytes);// Returns an estimate of the total memory usage of data allocated// by the arena (including space allocated but not yet used for user// allocations).size_t MemoryUsage() const{return blocks_memory_ + blocks_.capacity() * sizeof(char*);}private:char* AllocateFallback(size_t bytes);char* AllocateNewBlock(size_t block_bytes);// Allocation statechar* alloc_ptr_;size_t alloc_bytes_remaining_;// Array of new[] allocated memory blocksstd::vector<char*> blocks_;// Bytes of memory in blocks allocated so farsize_t blocks_memory_;// No copying allowedArena(const Arena&);void operator=(const Arena&);
};inline char* Arena::Allocate(size_t bytes)
{// The semantics of what to return are a bit messy if we allow// 0-byte allocations, so we disallow them here (we don't need// them for our internal use).assert(bytes > 0);//z 在一块直接分配好的内存上移动一下指针即可;事实上可能会存在很多的浪费。if (bytes <= alloc_bytes_remaining_){char* result = alloc_ptr_;alloc_ptr_ += bytes;alloc_bytes_remaining_ -= bytes;return result;}//z 如果剩余控件不足与容纳,那么根据bytes大小决定是否重新分配一块标准大小的内存(4096),或者要是bytes大于1024,直接//z 分配其大小的内存,原标准块内存仍旧有用。//z 如果小于 1024 ,说明原标准块剩余内存不足以容纳1024,新分配一块标准块内存,用此来为bytes分配对应内存。return AllocateFallback(bytes);
}}#endif  // STORAGE_LEVELDB_UTIL_ARENA_H_

//z 2014-06-05 10:48:50 L.209'47470 BG57IV3 T1840949363.K.F1370514324[T6,L108,R4,V118]
arena.cc
// Copyright (c) 2011 The LevelDB Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file. See the AUTHORS file for names of contributors.#include "util/arena.h"
#include <assert.h>namespace leveldb {//z 常量变量名k开头static const int kBlockSize = 4096;//z 初始化Arena::Arena() {blocks_memory_ = 0;alloc_ptr_ = NULL;  // First allocation will allocate a blockalloc_bytes_remaining_ = 0;}Arena::~Arena() {//z 删除申请的内存for (size_t i = 0; i < blocks_.size(); i++) {delete[] blocks_[i];}}char* Arena::AllocateFallback(size_t bytes) {//z 如果申请的bytes > 1024if (bytes > kBlockSize / 4) {// Object is more than a quarter of our block size.  Allocate it separately// to avoid wasting too much space in leftover bytes.char* result = AllocateNewBlock(bytes);return result;}// We waste the remaining space in the current block.//z 不大于1024时,分配一块标准大小的内存alloc_ptr_ = AllocateNewBlock(kBlockSize);alloc_bytes_remaining_ = kBlockSize;//z 指定返回的位置char* result = alloc_ptr_;//z 移动指针位置至空闲内存开始的地方alloc_ptr_ += bytes;//z 记录还剩下多少内存alloc_bytes_remaining_ -= bytes;return result;}char* Arena::AllocateAligned(size_t bytes) {//z 这个值是固定的,不用每次都求一次?但是代价非常小,求一次也无所为?const int align = sizeof(void*);    // We'll align to pointer sizeassert((align & (align-1)) == 0);   // Pointer size should be a power of 2//z 求的其余数size_t current_mod = reinterpret_cast<uintptr_t>(alloc_ptr_) & (align-1);size_t slop = (current_mod == 0 ? 0 : align - current_mod);size_t needed = bytes + slop;char* result;//z 如果剩余的空间足以容纳所需要的内存if (needed <= alloc_bytes_remaining_) {//z 对齐返回地址result = alloc_ptr_ + slop;alloc_ptr_ += needed;alloc_bytes_remaining_ -= needed;} else {// AllocateFallback always returned aligned memory//z 否则直接分配一块新的内存//z 在这种情况下这块内存可能很小result = AllocateFallback(bytes);}//z 确保返回地址是对齐的assert((reinterpret_cast<uintptr_t>(result) & (align-1)) == 0);return result;}//z 在不小于一个page的时候,直接采用这种方式char* Arena::AllocateNewBlock(size_t block_bytes) {char* result = new char[block_bytes];blocks_memory_ += block_bytes;blocks_.push_back(result);return result;}}
//z 2014-06-05 10:48:50 L.209'47470 BG57IV3 T1840949363.K.F1370514324[T6,L108,R4,V118]

转载于:https://www.cnblogs.com/IS2120/p/6745654.html

本文来自互联网用户投稿,该文观点仅代表作者本人,不代表本站立场。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如若转载,请注明出处:http://www.mzph.cn/news/420888.shtml

如若内容造成侵权/违法违规/事实不符,请联系多彩编程网进行投诉反馈email:809451989@qq.com,一经查实,立即删除!

相关文章

(一)elasticsearch6.1.1安装详细过程

1、配置java环境 检查java环境 满足elasticsearch6.1.1java环境要求&#xff1b; 2、安装ElasticSearch6.1.1 ①为es新生成用户、用户组 su root groupadd esgroup useradd ela -g esgroup -p 5tgbhu8[rootlocalhost fibonacci]# su ela Attempting to create directory /h…

使用jdk DOM,SAX和第三方jar包DOM4J创建,解析xml文件

xml的创建&#xff0c;解析1. 什么是xml文件1.1 什么是xml文件1.2 解析xml的方式&#xff0c;优缺点2. 使用dom操作xml文件2.1 使用dom创建xml文件2.2 使用dom解析xml文件2.3 使用dom对xml文件增删改3. 使用SAX解析xml文件4. 使用DOM4J操作xml文件4.1 使用DOM4J创建xml文件4.2 …

c# 错误 两个输出文件名解析为同一个输出路径

检查同项目的其他文件夹下面已有其他同名窗体,影响设计器 转载于:https://www.cnblogs.com/xiaxiaolu/p/4367166.html

(二)ElasticSearch6.1.1 Python API

0、准备开启数据库 ① 关闭Linux防火墙&#xff0c;这个很重要&#xff0c;否则API总是报错连不上。 # 查看防火墙状态 firewall-cmd --state# 关闭防护墙 systemctl stop firewalld.service# 开启防火墙 systemctl start firewalld.service# 重启防火墙 systemctl restart f…

sqlite3数据库使用

SQLite简介 SQLite是一个软件库&#xff0c;实现了自给自足的、无服务器的、零配置的、事务性的 SQL 数据库引擎。SQLite是一个增长最快的数据库引擎&#xff0c;这是在普及方面的增长&#xff0c;与它的尺寸大小无关。SQLite 源代码不受版权限制。 什么是sqlite SQLite是一…

(三)ElasticSearch的基本概念

0、面向文档 应用中的对象很少只是简单的键值列表&#xff0c;更多时候它拥有复杂的数据结构&#xff0c;比如包含日期、地理位置、另一个对象或者数组。 总有一天你会想到把这些对象存储到数据库中。将这些数据保存到由行和列组成的关系数据库中&#xff0c;就好像是把一个丰…

(四)ElasticSearch之数据

0、概述 在Elasticsearch中&#xff0c;每一个字段的数据都是默认被索引的。也就是说&#xff0c;每个字段专门有一个反向索引用于快速检索。而且&#xff0c;与其它数据库不同&#xff0c;它可以在同一个查询中利用所有的这些反向索引&#xff0c;以惊人的速度返回结果。 1、…

ajax下拉框省市级联动

目录效果sql数据前后台代码实现效果 初始访问页面 选中省会&#xff0c;自动刷新页面 sql数据 -- 省市联动数据CREATE TABLE PROVINCE (PID NUMBER PRIMARY KEY,PNAME VARCHAR(20) NOT NULL )SELECT * FROM PROVINCEINSERT INTO province VALUES (1, 北京市); INSERT I…

emacs中安装markdown-mode

从markdown-mode官网下载markdown-mode.el 将markdown-mode.el文件放到你的emacs loadpath.这里假如是 ~/.emacs.d/ 在 ~/.emacs 中加入如下代码 (autoload markdown-mode "markdown-mode" "Major mode for editing Markdown files" t) (add-to-list auto-…

python的with关键字

with语句适用于对资源进行访问的场合&#xff0c;确保不管使用过程中是否发生异常都会执行必要的“清理”操作&#xff0c;释放资源&#xff0c;比如文件使用后自动关闭、线程中锁的自动获取和释放等。with表达式其实是try-finally的简写形式。但是又不是全相同。 ""…

pgm2

MRF 笔记 我们先讨论引入 MRF 的必要性。经典的例子就是四个 r.v.s 连成一个正方形的结构的时候&#xff0c;我们没法通过 BN 获得给定对角线两个 r.v.s 而剩下的条件独立&#xff08;不都是 d-sep&#xff09;&#xff0c;反过来如果希望通过 MRF 刻画某些 BN 也是不可行的&am…

一步一步学Remoting系列文章

转自&#xff1a;http://www.cnblogs.com/lovecherry/archive/2005/05/24/161437.html (原创)一步一步学Remoting之一&#xff1a;从简单开始 (原创)一步一步学Remoting之二&#xff1a;激活模式 (原创)一步一步学Remoting之三&#xff1a;复杂对象 (原创)一步一步学Remoting之…

(五)ElasticSearch 6.1.1数据类型

1、elasticsearch的数据类型 1.1、核心数据类型 1.1.1、字符串类型&#xff08;string不再支持&#xff09; 当一个字段需要用于全文搜索(会被分词), 比如产品名称、产品描述信息, 就应该使用text类型. text的内容会被分词, 可以设置是否需要存储: “index”: “true|false”…

(六)ElasticSearch 6.1.1聚合查询

1 普通类型 1.1 基本操作 1.1.1 导入实战数据 数据字段如下&#xff1a; 字段类型作用pricelong汽车售价colortext汽车颜色maketext汽车品牌solddate销售日期 # 创建索引 PUT /cars {"mappings" : {"transactions" : {"properties" : {"…

12 Essential Bootstrap Tools for Web Designers

12 Essential Bootstrap Tools for Web Designers Posted by vikas on June 6, 2014, filed in: Tools, Web Design 原文地址&#xff1a;http://designzum.com/2014/06/06/12-best-bootstrap-tools-for-web-designers/Bootstrap is a great front end website development pla…

关于目录操作walk

对于多级目录的文件处理&#xff0c;walk是神器&#xff0c;一个模板如下&#xff1a; root 所指的是当前正在遍历的这个文件夹的本身的地址dirs 是一个 list &#xff0c;内容是该文件夹中所有的目录的名字(不包括子目录)files 同样是 list , 内容是该文件夹中所有的文件(不包…

注册COM组件cmd(管理员权限)

比如&#xff0c;注册这个很老版本的office组件 C:\Windows\system32>regsvr32 d:\dsoframer.ocx转载于:https://www.cnblogs.com/3Tai/p/3779696.html