Netty学习笔记内存管理篇:AbstractByteBuf分析

目录

writeBytes(byte[] src)

readBytes(byte[] dst)

discardReadBytes()


AbstractByteBuf是ByteBuf的第一个子类,这个类定义了一些公共属性(如下),这些公共属性包括:读索引、写索引、mark以及最大容量等。

    public abstract class AbstractByteBuf extends ByteBuf {

        static final ResourceLeakDetector<ByteBuf> leakDetector = new ResourceLeakDetector<ByteBuf>(ByteBuf.class);

        int readerIndex;
        int writerIndex;
        private int markedReaderIndex;
        private int markedWriterIndex;

        private int maxCapacity;

        private SwappedByteBuf swappedBuf;

在AbstractByteBuf中并没有定义ByteBuf的缓冲区实现,这是因为AbstractByteBuf并不清楚子类到底基于何种实现,可能是基于byte数组或者是DirectBytebBuffer。

AbstractByteBuf中定义了读写操作方法:

  • byteBuf.writeBytes(content.getBytes())
  • byteBuf.readBytes(readContent)

writeBytes(byte[] src)

下面来介绍writeBytes方法。

    @Override
    public ByteBuf writeBytes(byte[] src) {
        writeBytes(src, 0, src.length);
        return this;
    }

这个方法调用了如下的重载方法,这个名为writeByte还有很多重载方法,这里不进行介绍。

    @Override
    public ByteBuf writeBytes(byte[] src, int srcIndex, int length) {
        ensureAccessible();
        ensureWritable(length);
        setBytes(writerIndex, src, srcIndex, length);
        writerIndex += length;
        return this;
    }

首先通过调用ensureAccessible()方法来确保该ByteBuf实例是存活的,是可以访问的。

    protected final void ensureAccessible() {
    //根据refCnt()的源码注释得到:refCnt方法返回的是ByteBuf对象的引用计数,如果返回值为零,则说明该对象被摧毁。
        if (refCnt() == 0) {
            throw new IllegalReferenceCountException(0);
        }
    }   

然后通过调用ensureWritable方法来确保可写,该函数的源码如下:

    @Override
    public ByteBuf ensureWritable(int minWritableBytes) {
        if (minWritableBytes < 0) {
            throw new IllegalArgumentException(String.format(
                    "minWritableBytes: %d (expected: >= 0)", minWritableBytes));
        }

        if (minWritableBytes <= writableBytes()) {
            return this;
        }

        if (minWritableBytes > maxCapacity - writerIndex) {
            throw new IndexOutOfBoundsException(String.format(
                    "writerIndex(%d) + minWritableBytes(%d) exceeds maxCapacity(%d): %s",
                    writerIndex, minWritableBytes, maxCapacity, this));
        }

        // Normalize the current capacity to the power of 2.
        int newCapacity = calculateNewCapacity(writerIndex + minWritableBytes);

        // Adjust to the new capacity.
        capacity(newCapacity);
        return this;
    } 

该函数是如何来判断是否可写呢?进行了如下判断: 
如果可写容量大于等于minWritableBytes,则说明可写,直接返回。如果小于,则首先判断是否超过了最大可以容量,如果超过则跑异常,如果没有则扩容。其中首先调用如下的calculateNewCapacity函数来计算自动扩容后的容量,入参为满足要求的最小容量。   

private int calculateNewCapacity(int minNewCapacity) {
        final int maxCapacity = this.maxCapacity;
        final int threshold = 1048576 * 4; // 4 MiB page

        if (minNewCapacity == threshold) {
            return threshold;
        }

        // If over threshold, do not double but just increase by threshold.
        if (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);
    }

在calculateNewCapacity函数中, 有一个阈值:4MB,然后进行了如下的判断来求新的容量:

(1)如果需要的新容量刚好等于此阈值,则直接使用此阈值作为新容量然后返回。如果不等于,则会出现两种情况,第一种是大于,第二种是小于。 这两种对应了两种分配内存的策略。

(2) 如果是大于阈值,则采用的是以阈值threshold为基础歩进的方式来得到新容量,其中与最大容量进行了比较,以防超过最大容量。

(3)如果是小于阈值,则是以64为基础来进行倍增,即64–>128–>256…,直到满足最小容量要求的容量作为新容量。

这两种分配内存的策略结合值得我们学习,很经典,为什么这么说呢?先倍增后步进带来的好处为:当内存比较小的时候倍增操作并不会带来太多的内存浪费,当时在内存增大到一定阈值之后,如果继续倍增则可能会带来额外的内存浪费。

在调用 calculateNewCapacity 计算完目标容量之后,则需要重新创建新的缓冲区,并将原缓冲区的内容复制到新创建的ByteBuf中。这些都是调用capacity(newCapacity)中来完成的。由于不同的子类会对应不同的复制操作,所以AbstractByteBuf类中的该方法是一个抽象方法,留给子类自己来实现。

这里我们看下UnpooledHeapByteBuf子类的该方法的实现:

下面的代码比较简单,就是简单的new的一个新的数组,然后进行了复制。 

@Override
    public ByteBuf capacity(int newCapacity) {
        ensureAccessible();
        if (newCapacity < 0 || newCapacity > maxCapacity()) {
            throw new IllegalArgumentException("newCapacity: " + newCapacity);
        }

        int oldCapacity = array.length;
        if (newCapacity > oldCapacity) { //扩容
            byte[] newArray = new byte[newCapacity];
            System.arraycopy(array, 0, newArray, 0, array.length);
            setArray(newArray);
        } else if (newCapacity < oldCapacity) { //内存的收缩
            byte[] newArray = new byte[newCapacity];
            int readerIndex = readerIndex();
            if (readerIndex < newCapacity) {
                int writerIndex = writerIndex();
                if (writerIndex > newCapacity) {
                    writerIndex(writerIndex = newCapacity);
                }
                System.arraycopy(array, readerIndex, newArray, readerIndex, writerIndex - readerIndex);
            } else {
                setIndex(newCapacity, newCapacity);
            }
            setArray(newArray);
        }
        return this;
    }

到这里,在writeBytes方法中就调用ensureWritable(length)方法确保了ByteBuf可写,继续看writeBytes方法,该方法调用了setBytes(writerIndex, src, srcIndex, length);来完成数据的写入,具体是如何写入的,在AbstractByteBuf类中也没有进行实现,这也是因为由于不同的子类会对应不同的复制操作,所以AbstractByteBuf类中的该方法是一个抽象方法,留给子类自己来实现。

同样这里看下UnpooledHeapByteBuf子类的该方法的实现:

该方法首先首先调用checkSrcIndex方法来检查目标数组的可读空间是否够,也再一次检查是否ByteBuf可写容量是否够,如果不够则跑异常。然后调用System.arraycopy将原数组的数据写入到ByteBuf中。

    @Override
    public ByteBuf setBytes(int index, byte[] src, int srcIndex, int length) {
        checkSrcIndex(index, length, srcIndex, src.length);
        System.arraycopy(src, srcIndex, array, index, length);
        return this;
    } 

readBytes(byte[] dst)

上面分析了writeBytes(byte[] src)方法,这一节就来分析下从缓存中读取数据的方法:readBytes(byte[] dst),其源代码如下:   

@Override
    public ByteBuf readBytes(byte[] dst) {
        readBytes(dst, 0, dst.length);
        return this;
    } 

    @Override
    public ByteBuf readBytes(byte[] dst, int dstIndex, int length) {
        checkReadableBytes(length);
        getBytes(readerIndex, dst, dstIndex, length);
        readerIndex += length;
        return this;
    }


首先调用 checkReadableBytes方法检查ByteBuf是否还有长度为minimumReadableBytes的内容可读。

protected final void checkReadableBytes(int minimumReadableBytes) {
        ensureAccessible();
        if (minimumReadableBytes < 0) {
            throw new IllegalArgumentException("minimumReadableBytes: " + minimumReadableBytes + " (expected: >= 0)");
        }
        if (readerIndex > writerIndex - minimumReadableBytes) {
            throw new IndexOutOfBoundsException(String.format(
                    "readerIndex(%d) + length(%d) exceeds writerIndex(%d): %s",
                    readerIndex, minimumReadableBytes, writerIndex, this));
        }
    } 

校验通过之后,readBytes方法调用getBytes方法来从当前的读索引开始,复制length个字节到目标byte数组中。由于不同的子类会对应不同的复制操作,所以AbstractByteBuf类中的该方法是一个抽象方法,留给子类自己来实现。

这里还是看下UnpooledHeapByteBuf子类的该方法的实现:

该方法首先调用checkDstIndex方法来检查目标数组的存储空间是否够用,也再一次检查了ByteBuf的可读内容是否够。然后调用 System.arraycopy完成从ByteBuf中读取内容到源数组中。

    @Override
    public ByteBuf getBytes(int index, byte[] dst, int dstIndex, int length) {
        checkDstIndex(index, length, dstIndex, dst.length);
        System.arraycopy(array, index, dst, dstIndex, length);
        return this;
    } 

discardReadBytes()

该方法是用来重用缓冲区的。即将0~readerIndex-1之间这个区域重用起来,具体做法就是将[readerIndex,writerIndex)之间的数据拷贝到[0,writerIndex-readerIndex)的位置。具体代码如下:

    @Override
    public ByteBuf discardReadBytes() {
        ensureAccessible();
        if (readerIndex == 0) {
            return this;
        }

        if (readerIndex != writerIndex) {
            setBytes(0, this, readerIndex, writerIndex - readerIndex);
            writerIndex -= readerIndex;
            adjustMarkers(readerIndex);
            readerIndex = 0;
        } else {
            adjustMarkers(readerIndex);
            writerIndex = readerIndex = 0;
        }
        return this;
    }

由于是想将[readerIndex,writerIndex)之间的数据拷贝到[0,writerIndex-readerIndex)的位置,就有如下几种情况:

1)首先判断readerIndex是否等于0,如果等于0,则说明没有可以重用的空间,直接返回。否则则说明有可以重用的缓冲区。继续进行如下的判断。

2)如果读索引不等于0且不等于写索引,则说明此缓冲区中既有已经读取过的被丢弃的缓冲区也有还没有读取的可读缓冲区,则调用setBytes方法将[readerIndex,writerIndex)之间的数据拷贝到[0,writerIndex-readerIndex)的位置,然后调整读写索引以及mark。

3)如果读索引不等于0但等于写索引,则说明缓冲区中则没有可读的数据了,则不需要进行数据的拷贝,只需要调整读写索引以及mark即可。

其中,上面所用到的调整mark的函数的代码如下:

    protected final void adjustMarkers(int decrement) {
        int markedReaderIndex = this.markedReaderIndex;
        if (markedReaderIndex <= decrement) {
            this.markedReaderIndex = 0;
            int markedWriterIndex = this.markedWriterIndex;
            if (markedWriterIndex <= decrement) {
                this.markedWriterIndex = 0;
            } else {
                this.markedWriterIndex = markedWriterIndex - decrement;
            }
        } else {
            this.markedReaderIndex = markedReaderIndex - decrement;
            markedWriterIndex -= decrement;
        }
    } 

adjustMarkers函数中调整markedReaderIndex、markedWriterIndex的逻辑如下:由于markedReaderIndex、markedWriterIndex都不能小于0,因此首先判断markedReaderIndex、markedWriterIndex是否小于需要减少的decrement,如果小于等于,则设置markedReaderIndex、markedWriterIndex为零,如果不小于,则设置其为当前值减去decrement之后的新值。

对于setBytes方法,由于不同的子类会对应不同的复制操作,所以AbstractByteBuf类中的该方法是一个抽象方法,留给子类自己来实现。 下面是UnpooledHeapByteBuf子类的该方法的实现:

    @Override
    public ByteBuf setBytes(int index, ByteBuf src, int srcIndex, int length) {
        checkSrcIndex(index, length, srcIndex, src.capacity());
        if (src.hasMemoryAddress()) {
            PlatformDependent.copyMemory(src.memoryAddress() + srcIndex, array, index, length);
        } else  if (src.hasArray()) {
            setBytes(index, src.array(), src.arrayOffset() + srcIndex, length);
        } else {
            src.getBytes(srcIndex, array, index, length);
        }
        return this;
    }

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值