JavaNIO(八)ByteBuffer和ByteBuf解析

2019-07-31  本文已影响0人  清雨季

一 ByteBuffer

1.1 ByteBuffer的内部结构和读写模式

Java nio包提供的原生的缓存区类,基本的使用方式是:

    public static void main(String[] args) {
        ByteBuffer byteBuffer = ByteBuffer.allocate(20);

        byteBuffer.put(((byte) 1));
        byteBuffer.put(((byte) 2));

        byteBuffer.flip();

        System.out.println(byteBuffer.get());
        System.out.println(byteBuffer.get());

        byteBuffer.clear();
    }

这个类中有三个关键的字段:

这个类中还有四个关键的方法:

例如上面的例子:

再写个例子,专门说一下compact方法:

        ByteBuffer byteBuffer = ByteBuffer.allocate(4);
        byteBuffer.put(((byte) 1));
        byteBuffer.put(((byte) 2));
        byteBuffer.flip();

        byteBuffer.get();
        System.out.println(byteBuffer);
        byteBuffer.compact();
        System.out.println(byteBuffer);

两次输出的结果:

java.nio.HeapByteBuffer[pos=1 lim=2 cap=4]
java.nio.HeapByteBuffer[pos=1 lim=4 cap=4]

compact前后的内部结构为:


compact前后对比

注意:compact前为读模式,compact后为写模式

1.2 两种ByteBuffer对象

创建ByteBuffer时,有两种方法:

        ByteBuffer directByteBuffer = ByteBuffer.allocateDirect(4);
        ByteBuffer heapByteBuffer = ByteBuffer.allocate(5);

二 ByteBuf

Java nio包中的ByteBuffer有以下几个缺点:

Netty提供的ByteBuf解决了这两个问题:

2.1 ByteBuf的核心字段和方法

2.1.1 核心字段
2.1.2 创建对象相关的方法

Netty 中使用ByteBufAllocator来创建ByteBuf对象,ByteBufAllocator有两个实现类:PooledByteBufAllocator和UnpooledByteBufAllocator

可以分别有这两个类中的方法,如newDirectBuffer,newHeapBuffer等创建ByteBuf对象。

Netty还把UnpooledByteBufAllocator进一步封装成了Unpooled类,使用这个类的静态方法创建ByteBuf对象更加方便

2.1.3 指针相关方法:
方法名 作用
setIndex(int rIndex, int wIndex) 同时设置readerIndex和writerIndex
writerIndex(int writerIndex) 设置写指针位置
readerIndex(int readerIndex) 设置读指针位置
markReaderIndex() 记录当前的readerIndex位置
resetReaderIndex() 把readerIndex重置为markReaderIndex时的位置
2.1.4 读写相关的方法
方法名 作用
capacity(int nc) 把容量扩容或缩容为新的容量nc即newCapacity
clear() 把readerIndex和writerIndex都置为0
discardReadBytes() 删除已读的数据,这个方法会把0 ~ readerIndex的数据删除,然后把rederIndex~writeIndex的数据往前移,然后把readerIndex和writerIndex的值都减去移除数据的长度。

2.2 实例

    public static void main(String[] args) {
        ByteBuf byteBuf = Unpooled.buffer(10);
        printByteBuf("刚创建对象后", byteBuf);
        byteBuf.writeBytes(new byte[]{1, 2, 3, 4, 5});
        printByteBuf("写入5个数据后", byteBuf);

        byteBuf.readByte();
        byteBuf.readByte();

        printByteBuf("读取两个数据后", byteBuf);

        byteBuf.discardReadBytes();
        printByteBuf("discardReadBytes后", byteBuf);
    }

    private static void printByteBuf(String preMsg, ByteBuf byteBuf) {
        System.out.println(preMsg + ":" + Arrays.toString(byteBuf.array()) + ", rdix=" + byteBuf.readerIndex() + ", wtix=" + byteBuf.writerIndex());
    }

刚创建对象后:[0, 0, 0, 0, 0, 0, 0, 0, 0, 0], rdix=0, wtix=0
写入5个数据后:[1, 2, 3, 4, 5, 0, 0, 0, 0, 0], rdix=0, wtix=5
读取两个数据后:[1, 2, 3, 4, 5, 0, 0, 0, 0, 0], rdix=2, wtix=5
discardReadBytes后:[3, 4, 5, 4, 5, 0, 0, 0, 0, 0], rdix=0, wtix=3

2.3 扩容

2.3.1 何时扩容

在写数据时,会校验ByteBuf的长度,判断ByteBuf中空闲区域的容量是否能容纳新写入的数据,不能时,则需要扩容:

    @Override
    public ByteBuf writeBytes(byte[] src, int srcIndex, int length) {
        ensureWritable(length);
        setBytes(writerIndex, src, srcIndex, length);
        writerIndex += length;
        return this;
    }
2.3.2 扩容长度计算方式

假设写完数据后ByteBuf中数据的总长度是minNewCapacity,则扩容后的容量必需达到或超过这个值。逻辑如下:

代码如下:

    @Override
    public int calculateNewCapacity(int minNewCapacity, int maxCapacity) {
        final int threshold = CALCULATE_THRESHOLD; // 4 MiB page
        //如果刚好等于4Mib,则直接取4Mib
        if (minNewCapacity == threshold) {
            return threshold;
        }

        // If over threshold, do not double but just increase by threshold.
        //如果大于4Mib,则取比minNewCapacity大的最小4Mib整倍数
        if (minNewCapacity > threshold) {
            //minNewCapacity / threshold * threshold其实是计算比minNewCapacity小的最大threshold整倍数
            int newCapacity = minNewCapacity / threshold * threshold;
            if (newCapacity > maxCapacity - threshold) {
                newCapacity = maxCapacity;
            } else {
                newCapacity += threshold;
            }
            return newCapacity;
        }

        // Not over threshold. Double up to 4 MiB, starting from 64.
        int newCapacity = 64;
        while (newCapacity < minNewCapacity) {
            newCapacity <<= 1;
        }

        return Math.min(newCapacity, maxCapacity);
    }

注意:minNewCapacity / threshold * threshold,是计算比minNewCapacity小的最大threshold整倍数。例如 9 / 2 * 2 = 8

上一篇下一篇

猜你喜欢

热点阅读