ByteBuf

体系结构

1563803296721.png

从图可以看出来,ByteBuf分类主要是三个维度:

  • Unpooled和Pooled
  • Unsafe和非Unsafe
  • Heap和Direct

访问索引

从图示中可以容易理解ByteBuf的读写区域

1563801077089.png

内存分配

策略

1563805578302.png
1563805646415.png
1563805753773.png

可以看到在接口方法里面已经区分了是direct还是heap,在继承体系上区分了是Pooled还是Unpooled

而在具体的逻辑中,再根据系统底层是否支持Unsafe来决定是否要返回Unsafe的实现。

UnpooledByteBufAllocator

heap内存的分配

1563806190062.png
protected ByteBuf newHeapBuffer(int initialCapacity, int maxCapacity) {
    // 根据是否支持Unsafe与否来返回具体的UnpooledHeapByteBuf
    return PlatformDependent.hasUnsafe() ? new UnpooledUnsafeHeapByteBuf(this, initialCapacity, maxCapacity)
            : new UnpooledHeapByteBuf(this, initialCapacity, maxCapacity);
}

初始化

UnpooledUnsafeHeapByteBuf(ByteBufAllocator alloc, int initialCapacity, int maxCapacity) {
    // 直接去调用父类UnpooledHeapByteBuf的构造函数
    // 说明底层的内存分配是一样的,只不过数据操作的方式不一样,会用Unsafe的方式,更快,更直接。
    super(alloc, initialCapacity, maxCapacity);
}

protected UnpooledHeapByteBuf(ByteBufAllocator alloc, int initialCapacity, int maxCapacity) {
    // 直接新建byte数组,长度为initialCapacity,readindex和writeindex为0
    this(alloc, new byte[initialCapacity], 0, 0, maxCapacity);
}

private UnpooledHeapByteBuf(
        ByteBufAllocator alloc, byte[] initialArray, int readerIndex, int writerIndex, int maxCapacity) {

    super(maxCapacity);

    ...

    this.alloc = alloc;
    // 保存上面的byte数组作为ByteBuf的存储
    setArray(initialArray);
    // read和write index归零
    setIndex(readerIndex, writerIndex);
}

getByte

Unsafe
// Unsafe的方式操作数据
protected byte _getByte(int index) {
    return UnsafeByteBufUtil.getByte(array, index);
}

static byte getByte(byte[] data, int index) {
    // 可以看到,这里直接通过byte数组的内存偏移量加上数组的index来获取数据
    return UNSAFE.getByte(data, BYTE_ARRAY_BASE_OFFSET + index);
}
非Unsafe
// 非Unsafe的方式操作数据
protected byte _getByte(int index) {
    return HeapByteBufUtil.getByte(array, index);
}

// 通过数组下标的方式来操作数组
static byte getByte(byte[] memory, int index) {
    return memory[index];
}

direct内存分配

1563807731297.png
protected ByteBuf newDirectBuffer(int initialCapacity, int maxCapacity) {
    // 根据底层对Unsafe的支持与否来决定最终的UnpooledDirectByteBuf
    ByteBuf buf = PlatformDependent.hasUnsafe() ?
            UnsafeByteBufUtil.newUnsafeDirectByteBuf(this, initialCapacity, maxCapacity) :
            new UnpooledDirectByteBuf(this, initialCapacity, maxCapacity);

    return disableLeakDetector ? buf : toLeakAwareBuffer(buf);
}

初始化

static UnpooledUnsafeDirectByteBuf newUnsafeDirectByteBuf(
        ByteBufAllocator alloc, int initialCapacity, int maxCapacity) {
    if (PlatformDependent.useDirectBufferNoCleaner()) {
        return new UnpooledUnsafeNoCleanerDirectByteBuf(alloc, initialCapacity, maxCapacity);
    }
    return new UnpooledUnsafeDirectByteBuf(alloc, initialCapacity, maxCapacity);
}
非Unsafe
protected UnpooledDirectByteBuf(ByteBufAllocator alloc, int initialCapacity, int maxCapacity) {
    super(maxCapacity);
    ...

    this.alloc = alloc;
    // NIO的方法,这里直接去堆外分配内存
    setByteBuffer(ByteBuffer.allocateDirect(initialCapacity));
}

private void setByteBuffer(ByteBuffer buffer) {
    ByteBuffer oldBuffer = this.buffer;
    // 而这里对老的buffer进行回收,TODO
    if (oldBuffer != null) {
        if (doNotFree) {
            doNotFree = false;
        } else {
            freeDirect(oldBuffer);
        }
    }
    // 将前面创建的堆外内存保存下来
    this.buffer = buffer;
    tmpNioBuf = null;
    capacity = buffer.remaining();
}
Unsafe
protected UnpooledUnsafeDirectByteBuf(ByteBufAllocator alloc, int initialCapacity, int maxCapacity) {
    super(maxCapacity);
    ...

    this.alloc = alloc;
    // 直接堆外内存分配
    setByteBuffer(allocateDirect(initialCapacity), false);
}

// 跟非Unsafe类似
final void setByteBuffer(ByteBuffer buffer, boolean tryFree) {
    if (tryFree) {
        ByteBuffer oldBuffer = this.buffer;
        if (oldBuffer != null) {
            if (doNotFree) {
                doNotFree = false;
            } else {
                freeDirect(oldBuffer);
            }
        }
    }
    this.buffer = buffer;
    // Unsafe不一样的地方在于,需要知道buffer的内存偏移量,而这个偏移量在allocateDirect会生成
    memoryAddress = PlatformDependent.directBufferAddress(buffer);
    tmpNioBuf = null;
    capacity = buffer.remaining();
}

static long directBufferAddress(ByteBuffer buffer) {
    // 可以看到这个偏移量会去找ADDRESS_FIELD_OFFSET
    // final Field field = Buffer.class.getDeclaredField("address");
    // 而堆外内存的偏移量早在allocateDirect的时候就已经自动赋给buffer的address了,直接反射去拿就好
    // 这个address只代表堆外内存的偏移量,
    return getLong(buffer, ADDRESS_FIELD_OFFSET);
}

getByte

Unsafe
protected byte _getByte(int index) {
    return UnsafeByteBufUtil.getByte(addr(index));
}

long addr(int index) {
    // 根据上面保存下来的偏移量来去拿到index的地址
    return memoryAddress + index;
}
非Unsafe
protected byte _getByte(int index) {
    // 直接通过api来对buffer进行读取
    return buffer.get(index);
}

PooledByteBufAllocator

direct内存分配

protected ByteBuf newDirectBuffer(int initialCapacity, int maxCapacity) {
    // 拿到当前线程绑定的PoolThreadCache
    PoolThreadCache cache = threadCache.get();
    // 进而拿到PoolThreadCache的堆外内存
    PoolArena<ByteBuffer> directArena = cache.directArena;

    ByteBuf buf;
    if (directArena != null) {
        // 在当前线程绑定的堆外内存区域请求一块空间
        buf = directArena.allocate(cache, initialCapacity, maxCapacity);
    } else {
        if (PlatformDependent.hasUnsafe()) {
            buf = UnsafeByteBufUtil.newUnsafeDirectByteBuf(this, initialCapacity, maxCapacity);
        } else {
            buf = new UnpooledDirectByteBuf(this, initialCapacity, maxCapacity);
        }
    }

    return toLeakAwareBuffer(buf);
}
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 201,784评论 5 474
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 84,745评论 2 378
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 148,702评论 0 335
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 54,229评论 1 272
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 63,245评论 5 363
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 48,376评论 1 281
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 37,798评论 3 393
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 36,471评论 0 256
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 40,655评论 1 295
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 35,485评论 2 318
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 37,535评论 1 329
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 33,235评论 3 318
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 38,793评论 3 304
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 29,863评论 0 19
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 31,096评论 1 258
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 42,654评论 2 348
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 42,233评论 2 341

推荐阅读更多精彩内容

  • 内存分配概述 介绍netty内存分配,最为底层,负责从底层读据到ByteBuf。 三个问题+内存类别有哪些+如何减...
    横渡阅读 778评论 0 1
  • Netty之ByteBuf深入分析 [TOC] 分析思路 内存与内存管理器的抽象 ByteBuf 结构以及重要的A...
    石家志远阅读 2,279评论 0 1
  • 欢迎关注公众号:【爱编码】如果有需要后台回复2019赠送1T的学习资料哦!! 简介 所有的网路通信都涉及字节序列的...
    xbmchina阅读 2,569评论 0 1
  • 从今天起,做个儒雅、睿智的人!
    知农之乐阅读 177评论 1 0
  • 首先cocoaPods是多应用于 macOSX的框架管理工具,类似PHP中 composer cocoaPods ...
    暗香min阅读 256评论 0 1