LinkedHashMap是如何支持LruCache的?

get操作
如果value存在于缓存中,或者可以由create创建,则返回key的对应的value。如果返回了value,它就会被移动到队列的头部。如果value没有被缓存并且不能被创建,则返回null。
public final V get(K key) {
//key不能为null
if (key == null) {
throw new NullPointerException("key == null");
}

    V mapValue;
    synchronized (this) {
        mapValue = map.get(key);
        if (mapValue != null) {

//命中次数
hitCount++;
return mapValue;
}
//未命中次数
missCount++;
}

    /*
     * Attempt to create a value. This may take a long time, and the map
     * may be different when create() returns. If a conflicting value was
     * added to the map while create() was working, we leave that value in
     * the map and release the created value.
     */

//可以自己实现create方法,在miss的时候提供一个value
V createdValue = create(key);
if (createdValue == null) {
return null;
}

    synchronized (this) {

//create次数
createCount++;
mapValue = map.put(key, createdValue);
//如果保存value的时候,发现了一个新值,说明是在create的时候put进来的,那么就把最新的value保存进去。
if (mapValue != null) {
// There was a conflict so undo that last put
map.put(key, mapValue);
} else {
size += safeSizeOf(key, createdValue);
}
}

    if (mapValue != null) {

//createdValue被覆盖了,回调一次以示来过
entryRemoved(false, key, createdValue, mapValue);
//返回最新的值
return mapValue;
} else {
trimToSize(maxSize);
//返回create的value
return createdValue;
}
}

HashMap的put操作
表在第一次使用时初始化,并在必要时进行调整。当分配时,长度总是2的幂。(我们还可以容忍某些操作的长度为0,以允许目前不需要的引导机制。)
public V put(K key, V value) {
return putVal(hash(key), key, value, false, true);
}

final V putVal(int hash, K key, V value, boolean onlyIfAbsent,
boolean evict) {
Node<K,V>[] tab; Node<K,V> p; int n, i;
//如果链表为null或者为空,就进行初始化
if ((tab = table) == null || (n = tab.length) == 0)
n = (tab = resize()).length;
//key的hash值与数组的长度相与,计算出键值的分布索引,如果此索引处没有数据,新建//一个节点
if ((p = tab[i = (n - 1) & hash]) == null)
tab[i] = newNode(hash, key, value, null);
else {
//如果此索引处有数据
Node<K,V> e; K k;
//如果该索引处的首结点的key与put的key相同
if (p.hash == hash &&
((k = p.key) == key || (key != null && key.equals(k))))
e = p;
else if (p instanceof TreeNode)
//树结构在这里不讨论
e = ((TreeNode<K,V>)p).putTreeVal(this, tab, hash, key, value);
else {
//遍历该链表
for (int binCount = 0; ; ++binCount) {
//如果链表遍历完都没有相同的key,就新建一个Node,并添加到链表尾部
if ((e = p.next) == null) {
p.next = newNode(hash, key, value, null);
if (binCount >= TREEIFY_THRESHOLD - 1) // -1 for 1st
treeifyBin(tab, hash);
break;
}
//如果该索引下的链表存在相同的key
if (e.hash == hash &&
((k = e.key) == key || (key != null && key.equals(k))))
break;
//e是等于p.next,将e赋值给p,也就是将p.next赋值给p,是为了遍历链表需要
p = e;
}
}
//如果存在相同的key的node
if (e != null) { // existing mapping for key
V oldValue = e.value;
//如果设置可以覆盖相同key的value,或者原来的value为null,那么就覆盖
if (!onlyIfAbsent || oldValue == null)
e.value = value;
afterNodeAccess(e);
return oldValue;
}
}
++modCount;
if (++size > threshold)
resize();
afterNodeInsertion(evict);
return null;
}

此方法在HashMap中为空实现,具体实现在LinkedHashMap中,此处设计到的设计模式为模板方法模式

LinkedHashMap的newNode方法

Node<K,V> newNode(int hash, K key, V value, Node<K,V> e) {
LinkedHashMapEntry<K,V> p =
new LinkedHashMapEntry<K,V>(hash, key, value, e);
linkNodeLast(p);
return p;
}
链接到列表尾部
private void linkNodeLast(LinkedHashMapEntry<K,V> p) {
LinkedHashMapEntry<K,V> last = tail;
tail = p;
if (last == null)
head = p;
else {
p.before = last;
last.after = p;
}
}

注意:新put的节点,第一次加入HashMap,根本不会走这个方法,因为e = null
void afterNodeAccess(Node<K,V> e) { // move node to last
LinkedHashMapEntry<K,V> last;
//如果访问顺序accessOrder 为true,并且e不在链表尾部
if (accessOrder && (last = tail) != e) {
//put的节点p
LinkedHashMapEntry<K,V> p =
(LinkedHashMapEntry<K,V>)e, b = p.before, a = p.after;
//因为要移动到链表的尾部,所以after=null
p.after = null;
//如果put的e节点的上一个节点为null,那么说明在访问p之前,p为head,此时需要将//p之后的元素设置为head
if (b == null)
head = a;
Else
//如果p上一个节点不为null,那么将p从中断开
b.after = a;
//如果a不为null,将a指向b,也就是p的上一个节点,将p断开
if (a != null)
a.before = b;
else
//如果a为null,那么设置b为last
last = b;
//如果last为null,说明p现在为head
if (last == null)
head = p;
else {
//如果last不为null,将p链接到last之后
p.before = last;
last.after = p;
}
//设置p为尾部节点
tail = p;
//修改次数++
++modCount;
}
}

LinkedHashMap在访问一个元素之后,会将这个元素移动到双向链表的尾部(设置accessOrder 为true时),LruCache的核心思想

LinkedHashMapEntry继承自HashMap.Node
HashMap.Node是一个单链表,LinkedHashMapEntry是一个双向链表,LinkedHashMap就是一个继承自HashMap的双向链表
static class LinkedHashMapEntry<K,V> extends HashMap.Node<K,V> {
LinkedHashMapEntry<K,V> before, after;
LinkedHashMapEntry(int hash, K key, V value, Node<K,V> next) {
super(hash, key, value, next);
}
}

put元素之后

注意:removeEldestEntry方法修饰符为protected,可以被子类重写

void afterNodeInsertion(boolean evict) { // possibly remove eldest
LinkedHashMapEntry<K,V> first;
//如果evict为true,并且有最老的节点head,并且removeEldestEntry返回值为true,就会remove掉最老的节点。
if (evict && (first = head) != null && removeEldestEntry(first)) {
K key = first.key;
removeNode(hash(key), key, null, false, true);
}
}

get操作

public V get(Object key) {
Node<K,V> e;
if ((e = getNode(hash(key), key)) == null)
return null;
if (accessOrder)
//如果设置了访问指令,那么就把该节点移动到双向链表的尾部
afterNodeAccess(e);
return e.value;
}

//调用的是HashMap的getNode方法
final Node<K,V> getNode(int hash, Object key) {
Node<K,V>[] tab; Node<K,V> first, e; int n; K k;
//如果散列链表不为null,也不为空,那么获取hash对应的索引处的第一个节点
if ((tab = table) != null && (n = tab.length) > 0 &&
(first = tab[(n - 1) & hash]) != null) {
//如果查找的key与第一个节点相同,那么就直接返回
if (first.hash == hash && // always check first node
((k = first.key) == key || (key != null && key.equals(k))))
return first;
//如果不等于第一个节点,那么就遍历这个节点所在的单链表
if ((e = first.next) != null) {
//数结构,暂不讨论
if (first instanceof TreeNode)
return ((TreeNode<K,V>)first).getTreeNode(hash, key);
//查找到就返回,找不到就返回null
do {
if (e.hash == hash &&
((k = e.key) == key || (key != null && key.equals(k))))
return e;
} while ((e = e.next) != null);
}
}
return null;
}

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

推荐阅读更多精彩内容