common-pool2数据结构

Apache common-pool2提供了一个通用的对象池技术的实现。

common-pool2主要围绕三个接口来实现,ObjectPool、PooledObject、PooledObjectFactory。

数据结构

官方例子:http://commons.apache.org/proper/commons-pool/examples.html

ReaderUtil readerUtil = new ReaderUtil(new GenericObjectPool<StringBuffer>(new StringBufferFactory()));

先从GenericObjectPool开始分析

成员变量:

common-pool2数据结构_第1张图片

/*
 * All of the objects currently associated with this pool in any state. It
 * excludes objects that have been destroyed. The size of
 * {@link #allObjects} will always be less than or equal to {@link
 * #_maxActive}. Map keys are pooled objects, values are the PooledObject
 * wrappers used internally by the pool.
 */
private final Map<T, PooledObject<T>> allObjects = new ConcurrentHashMap<T, PooledObject<T>>();


private final LinkedBlockingDeque<PooledObject<T>> idleObjects;


allObjects:对象池中所有的对象.

idleObjects:空闲对象.

LinkedBlockingDeque:

common-pool2数据结构_第2张图片

结节的数据结构

/** Doubly-linked list node class */
private static final class Node<E> {
    /**
     * The item, or null if this node has been removed.
     */
    E item;

    /**
     * One of:
     * - the real predecessor Node
     * - this Node, meaning the predecessor is tail
     * - null, meaning there is no predecessor
     */
    Node<E> prev;

    /**
     * One of:
     * - the real successor Node
     * - this Node, meaning the successor is head
     * - null, meaning there is no successor
     */
    Node<E> next;

    /**
     * Create a new list node.
     *
     * @param x The list item
     * @param p Previous item
     * @param n Next item
     */
    Node(E x, Node<E> p, Node<E> n) {
        item = x;
        prev = p;
        next = n;
    }
}


你可能感兴趣的:(common-pool2数据结构)