结构

与 HashMap 类似,使用数组 + 链表 + 红黑树存储键值对
ConcurrentHashMap源码学习基于JDK1.8 - 图1

成员变量

transient volatile Node[] table; // 存放 Node,第一次插入数据时候进行初始化,长度为 2 的倍数

private transient volatile Node[] nextTable; // 仅扩容时用到,将节点迁移到新数组

private static final int MIN_TRANSFER_STRIDE = 16 // 扩容线程每次最少要迁移16 个 hash 桶,在扩容中,参与的单个线程允许处理的最少 table 桶首节点个数,虽然适当添加线程,会使得整个扩容过程变快,但需要考虑多线程内存同时分配的问题

private transient volatile int sizeCtl;

  • 默认为 0

  • -1 表示正在初始化

  • -(1+number) 表示有 number 个线程同时在扩容,线程必须竞争到这个共享变量,才能进行初始化或者扩容。

  • 正数, table 中元素数量阈值,超过这个阈值就会扩容
    ConcurrentHashMap源码学习基于JDK1.8 - 图2
    static final int MOVED = -1; // ForwardingNode 的 hash 值,为 -1

    • ForwardingNode,在扩容时使用,如果 index 处 Node 节点 hash 值为 -1,表示正在扩容。

static final int TREEBIN = -2; // 树节点的 Hash 值

static final int RESERVED = -3; // 临时保留的 Hash 值

static final int HASH_BITS = 0x7fffffff; // usable bits of normal

哈希桶 Table 初始化

  • 根据共享变量 sizeCtl 的值来决定是否由当前线程执行初始化操作(单线程进行初始化),若 sizeCtl < 0 表示正在扩容,该线程需要等待。

  • sizeCtl 为正数时,表示 table 的阈值(= 0.75*n),元素个数超过这个值将会扩容。

  1. private final Node<K,V>[] initTable() {
  2. Node<K,V>[] tab; int sc;
  3. while ((tab = table) == null || tab.length == 0) {
  4. // 如果共享变量 sizeCtl < 0,说明有其它线程正在初始化或者扩容,让出 CPU,让其它线程先执行完
  5. if ((sc = sizeCtl) < 0)
  6. Thread.yield(); // lost initialization race; just spin
  7. // CAS 方式获取到锁,那么由该线程进行初始化
  8. else if (U.compareAndSwapInt(this, SIZECTL, sc, -1)) {
  9. try {
  10. // 将 table 赋值给 tab,判断 tab 是否已经初始化
  11. if ((tab = table) == null || tab.length == 0) {
  12. // sc = sizeCtl > 0 表示已经初始化,否则使用默认容量 16。
  13. int n = (sc > 0) ? sc : DEFAULT_CAPACITY;
  14. @SuppressWarnings("unchecked")
  15. Node<K,V>[] nt = (Node<K,V>[])new Node<?,?>[n];
  16. table = tab = nt;
  17. // sc = 0.75*n,sc 表示阈值
  18. sc = n - (n >>> 2);
  19. }
  20. } finally {
  21. sizeCtl = sc;
  22. }
  23. break;
  24. }
  25. }
  26. return tab;
  27. }

key 对应到哈希桶的过程

  • hash 过程与 HashMap 类似,只是多了与 HASH_BITS 进行位运算

  • HASH_BITS 除了首位是 0,剩下的都是 1,按位与,得正数(首位为0);它的作用就是为了让上面的 hash 值为正数

  1. // index 表示桶的位置
  2. int index = spread(key.hashCode) & (length - 1)
  3. static final int HASH_BITS = 0x7fffffff; // usable bits of normal node hash
  4. static final int spread(int h) {
  5. return (h ^ (h >>> 16)) & HASH_BITS;
  6. }

get 方法

  1. key,value 都不能为 null,key 为 null 时抛出 NullPointerException

  2. 将 key 进行 hash 然后找到数组位置处的索引 index

  3. 比较 Hash 值,并且若 index == key || equals 返回 true,直接返回 index 处元素

  4. 若 index 处的 hash 值小于 0,表示正在扩容,进一步调用 Node 子类的 find 方法

  5. index 处的 hash 值不小于 0,通过链表 Next 指针遍历查找

  1. static final int TREEBIN = -2; // hash for roots of trees
  2. public V get(Object key) {
  3. Node<K,V>[] tab; Node<K,V> e, p; int n, eh; K ek;
  4. // 计算 hash 值
  5. int h = spread(key.hashCode());
  6. // 数组不为空 && 数组长度大于 0 && 该位置已经有元素
  7. if ((tab = table) != null && (n = tab.length) > 0 && (e = tabAt(tab, (n - 1) & h)) != null) {
  8. // 如果 key 的 hash 值一样,则进一步判断
  9. if ((eh = e.hash) == h) {
  10. // 如果是同一个 key 或者 equal 方法返回 true
  11. if ((ek = e.key) == key || (ek != null && key.equals(ek)))
  12. // 返回对应 value
  13. return e.val;
  14. }
  15. // 如果 hash 值小于 0,表示数组正在扩容
  16. // 此处 Node 节点为 ForwardingNode,调用 ForwardingNode 的 find 方法
  17. else if (eh < 0)
  18. return (p = e.find(h, key)) != null ? p.val : null;
  19. // eh > 0 情况,链表遍历
  20. while ((e = e.next) != null) {
  21. if (e.hash == h &&
  22. ((ek = e.key) == key || (ek != null && key.equals(ek))))
  23. return e.val;
  24. }
  25. }
  26. // 没有元素
  27. return null;
  28. }

ForwardingNode 介绍

ForwardingNode 是 Node 子类之一,当节点的 Hash 值为 -1 时,该节点就为 ForwardingNode ,标记此处正在扩容

  • 外层循环用于刷新 ForwardingNode 所在的 table 情况,因为扩容过程中 table 的节点情况在变化
  • 内层循环则去以 next 指针的形式遍历 table,直到找到 hashCode 相同 && (== || equals )返回 true 的节点
  1. static final class ForwardingNode<K,V> extends Node<K,V> {
  2. final Node<K,V>[] nextTable;
  3. ForwardingNode(Node<K,V>[] tab) {
  4. super(MOVED, null, null, null);
  5. this.nextTable = tab;
  6. }
  7. Node<K,V> find(int h, Object k) {
  8. // loop to avoid arbitrarily deep recursion on forwarding nodes
  9. outer: for (Node<K,V>[] tab = nextTable;;) {
  10. Node<K,V> e; int n;
  11. // 先判断 null
  12. if (k == null || tab == null || (n = tab.length) == 0 ||
  13. (e = tabAt(tab, (n - 1) & h)) == null)
  14. return null;
  15. for (;;) {
  16. int eh; K ek;
  17. // 若 Hash 值相同进一步判断变量是否相同,之间返回
  18. if ((eh = e.hash) == h &&
  19. ((ek = e.key) == k || (ek != null && k.equals(ek))))
  20. return e;
  21. if (eh < 0) {
  22. if (e instanceof ForwardingNode) {
  23. tab = ((ForwardingNode<K,V>)e).nextTable;
  24. continue outer;
  25. }
  26. else
  27. return e.find(h, k); // 链表形式遍历
  28. }
  29. if ((e = e.next) == null)
  30. return null;
  31. }
  32. }
  33. }
  34. }

put 方法

  1. table 为 null 或者 tab.size = 0,进行初始化

  2. key 进行 hash 之后取模得到的索引位置,若在桶的位置元素为 null,那么直接插入元素。

  3. 桶位置元素不为 null,那么进行比较

  4. 判断 key 是否相同:

    • 如果 key 相同,e 保存该节点
    • 如果 key 不同,如果该是红黑树节点,那么执行红黑树的 put 方法;如果是链表节点,执行链表遍历操作,找到对应的节点并用 e 保存,如果链表长度大于 >=7,就将链表转为红黑树
  5. Node e 保存找到的节点,如果没有找到返回 null

  6. 如果 size 超过阈值,进行扩容

  1. public V put(K key, V value) {
  2. return putVal(key, value, false);
  3. }
  4. final V putVal(K key, V value, boolean onlyIfAbsent) {
  5. // key value 均不能为 null
  6. if (key == null || value == null) throw new NullPointerException();
  7. int hash = spread(key.hashCode());
  8. int binCount = 0;
  9. // 获取当前 table,进入死循环,直至插入成功
  10. for (Node<K,V>[] tab = table;;) {
  11. Node<K,V> f; int n, i, fh;
  12. // 为空初始化数组
  13. if (tab == null || (n = tab.length) == 0)
  14. tab = initTable();
  15. // 索引所在位置没有元素,通过 casTabAt 方法插入元素并跳出循环
  16. else if ((f = tabAt(tab, i = (n - 1) & hash)) == null) {
  17. if (casTabAt(tab, i, null, new Node<K,V>(hash, key, value, null))){
  18. break; // no lock when adding to empty bin
  19. }
  20. }
  21. // 索引位置处是 ForwardingNode,该线程帮助扩容
  22. else if ((fh = f.hash) == MOVED)
  23. tab = helpTransfer(tab, f);
  24. // 该位置处节点为 普通节点,锁住该链表头结点并在尾部添加节点
  25. else {
  26. V oldVal = null;
  27. synchronized (f) {
  28. // 加锁之后,再判断索引位置处 key 是否相同
  29. if (tabAt(tab, i) == f) {
  30. // hash >= 0,通过链表遍历方式找到并替换节点
  31. if (fh >= 0) {
  32. binCount = 1;
  33. for (Node<K,V> e = f;; ++binCount) {
  34. K ek;
  35. if (e.hash == hash &&
  36. ((ek = e.key) == key ||
  37. (ek != null && key.equals(ek)))) {
  38. oldVal = e.val;
  39. if (!onlyIfAbsent)
  40. // 进行替换
  41. e.val = value;
  42. break;
  43. }
  44. Node<K,V> pred = e;
  45. if ((e = e.next) == null) {
  46. // 链表尾部插入节点
  47. pred.next = new Node<K,V>(hash, key,
  48. value, null);
  49. break;
  50. }
  51. }
  52. }
  53. // index 处索引小于 0 (hash = -2 TREEBIN),并且是树节点,执行树的插入方法
  54. else if (f instanceof TreeBin) {
  55. Node<K,V> p;
  56. binCount = 2;
  57. if ((p = ((TreeBin<K,V>)f).putTreeVal(hash, key,
  58. value)) != null) {
  59. oldVal = p.val;
  60. if (!onlyIfAbsent)
  61. p.val = value;
  62. }
  63. }
  64. }
  65. }
  66. // binCount != 0 说明向链表或者红黑树中添加或修改一个节点成功
  67. // binCount == 0 说明 put 操作将一个新节点添加成为某个桶的首节点
  68. if (binCount != 0) {
  69. // >= 8 执行转红黑树的操作
  70. if (binCount >= TREEIFY_THRESHOLD)
  71. treeifyBin(tab, i);
  72. // oldVal != null 说明此次操作是修改操作,直接返回旧值,无需下面扩容检查
  73. if (oldVal != null)
  74. return oldVal;
  75. break;
  76. }
  77. }
  78. }
  79. // 判断是否需要扩容
  80. addCount(1L, binCount);
  81. return null;
  82. }

helpTransfer 帮助扩容

  1. // 返回二进制最高位到第一个非 0 数字之间 0 的个数
  2. static final int resizeStamp(int n) {
  3. return Integer.numberOfLeadingZeros(n) | (1 << (RESIZE_STAMP_BITS - 1));
  4. }
  5. // 帮助扩容
  6. final Node<K,V>[] helpTransfer(Node<K,V>[] tab, Node<K,V> f) {
  7. Node<K,V>[] nextTab; int sc;
  8. // tab != null && ForwardingNode && ForwardingNode.nextTable != null
  9. if (tab != null && (f instanceof ForwardingNode) &&
  10. (nextTab = ((ForwardingNode<K,V>)f).nextTable) != null) {
  11. // 生成标志位 rs
  12. int rs = resizeStamp(tab.length);
  13. while (nextTab == nextTable && table == tab &&
  14. (sc = sizeCtl) < 0) {
  15. // 如果 sizeCtl 无符号右移 16 位与上面标志位不同
  16. // 或者 sizeCtl == rs + 1 (扩容结束了,不再有线程进行扩容)
  17. // 或者 sizeCtl == rs + 65535 (如果达到最大帮助线程的数量,即 65535)
  18. // 或者转移下标正在调整 (扩容结束)
  19. // 结束循环
  20. if ((sc >>> RESIZE_STAMP_SHIFT) != rs || sc == rs + 1 ||
  21. sc == rs + MAX_RESIZERS || transferIndex <= 0)
  22. break;
  23. // 以上情况不满足, sizeCtl++ ,增加一个线程进行扩容
  24. if (U.compareAndSwapInt(this, SIZECTL, sc, sc + 1)) {
  25. // 复制或者移动 bins 里面的 Node 到新的 table
  26. transfer(tab, nextTab);
  27. break;
  28. }
  29. }
  30. return nextTab;
  31. }
  32. return table;
  33. }
  34. // 移动或者复制 Node 到新的 table
  35. private final void transfer(Node<K,V>[] tab, Node<K,V>[] nextTab) {
  36. int n = tab.length, stride;
  37. // 计算单个线程允许处理的最少 table 桶首节点个数,不能小于 16
  38. if ((stride = (NCPU > 1) ? (n >>> 3) / NCPU : n) < MIN_TRANSFER_STRIDE)
  39. stride = MIN_TRANSFER_STRIDE; // subdivide range
  40. // 如果刚开始扩容,就初始化 nextTab,长度为原来的两倍
  41. if (nextTab == null) { // initiating
  42. try {
  43. @SuppressWarnings("unchecked")
  44. Node<K,V>[] nt = (Node<K,V>[])new Node<?,?>[n << 1];
  45. nextTab = nt;
  46. } catch (Throwable ex) { // try to cope with OOME
  47. sizeCtl = Integer.MAX_VALUE;
  48. return;
  49. }
  50. nextTable = nextTab;
  51. // transferIndex 指向最后一个桶,方便从后向前遍历
  52. transferIndex = n;
  53. }
  54. int nextn = nextTab.length;
  55. // fwd 作为标记,标记那些已经完成迁移的桶
  56. ForwardingNode<K,V> fwd = new ForwardingNode<K,V>(nextTab);
  57. boolean advance = true;
  58. boolean finishing = false; // to ensure sweep before committing nextTab
  59. // i 指向当前桶,bound 指向当前线程需要处理的桶结点的区间下限
  60. for (int i = 0, bound = 0;;) {
  61. Node<K,V> f; int fh;
  62. while (advance) {
  63. int nextIndex, nextBound;
  64. if (--i >= bound || finishing)
  65. advance = false;
  66. // transferIndex 本来指向最后一个桶,小于等于 0 说明处理完成
  67. else if ((nextIndex = transferIndex) <= 0) {
  68. i = -1;
  69. advance = false;
  70. }
  71. // 更新 transferIndex,处理的桶区间为 (nextBound,nextIndex)
  72. else if (U.compareAndSwapInt
  73. (this, TRANSFERINDEX, nextIndex,
  74. nextBound = (nextIndex > stride ?
  75. nextIndex - stride : 0))) {
  76. bound = nextBound;
  77. i = nextIndex - 1;
  78. advance = false;
  79. }
  80. }
  81. // 当前线程任务处理完成
  82. if (i < 0 || i >= n || i + n >= nextn) {
  83. int sc;
  84. if (finishing) {
  85. nextTable = null;
  86. table = nextTab;
  87. sizeCtl = (n << 1) - (n >>> 1);
  88. return;
  89. }
  90. if (U.compareAndSwapInt(this, SIZECTL, sc = sizeCtl, sc - 1)) {
  91. if ((sc - 2) != resizeStamp(n) << RESIZE_STAMP_SHIFT)
  92. return;
  93. finishing = advance = true;
  94. i = n; // recheck before commit
  95. }
  96. }
  97. // 索引位置为 null,设置 ForwardingNode 表示处理过
  98. else if ((f = tabAt(tab, i)) == null)
  99. advance = casTabAt(tab, i, null, fwd);
  100. // 该桶已经处理过
  101. else if ((fh = f.hash) == MOVED)
  102. advance = true; // already processed
  103. else {
  104. // 锁住该桶
  105. synchronized (f) {
  106. // 再判断下桶有没有发生变化
  107. if (tabAt(tab, i) == f) {
  108. Node<K,V> ln, hn;
  109. if (fh >= 0) { // 普通的 Node 节点
  110. int runBit = fh & n; // 移动步长,为 0 或者 N
  111. Node<K,V> lastRun = f;
  112. // 整个 for 循环为了找到整个桶中最后连续的 fh & n 不变的结点
  113. for (Node<K,V> p = f.next; p != null; p = p.next) {
  114. int b = p.hash & n;
  115. if (b != runBit) {
  116. runBit = b;
  117. lastRun = p;
  118. }
  119. }
  120. if (runBit == 0) {
  121. ln = lastRun;
  122. hn = null;
  123. }
  124. else {
  125. hn = lastRun;
  126. ln = null;
  127. }
  128. // 如果 fh&n 不变的链表的 runbit 都是 0,则 nextTab[i] 内元素 ln 前逆序,ln 及其之后顺序
  129. // 否则,nextTab[i+n]内元素全部相对原table逆序
  130. // 这是通过一个节点一个节点的往 nextTab 添加
  131. for (Node<K,V> p = f; p != lastRun; p = p.next) {
  132. int ph = p.hash; K pk = p.key; V pv = p.val;
  133. if ((ph & n) == 0)
  134. ln = new Node<K,V>(ph, pk, pv, ln);
  135. else
  136. hn = new Node<K,V>(ph, pk, pv, hn);
  137. }
  138. // 把两条链表整体迁移到 nextTab 中
  139. setTabAt(nextTab, i, ln);
  140. setTabAt(nextTab, i + n, hn);
  141. // 将原桶标识位已经处理
  142. setTabAt(tab, i, fwd);
  143. advance = true;
  144. }
  145. // 红黑树的复制算法
  146. else if (f instanceof TreeBin) {
  147. TreeBin<K,V> t = (TreeBin<K,V>)f;
  148. TreeNode<K,V> lo = null, loTail = null;
  149. TreeNode<K,V> hi = null, hiTail = null;
  150. int lc = 0, hc = 0;
  151. for (Node<K,V> e = t.first; e != null; e = e.next) {
  152. int h = e.hash;
  153. TreeNode<K,V> p = new TreeNode<K,V>
  154. (h, e.key, e.val, null, null);
  155. if ((h & n) == 0) {
  156. if ((p.prev = loTail) == null)
  157. lo = p;
  158. else
  159. loTail.next = p;
  160. loTail = p;
  161. ++lc;
  162. }
  163. else {
  164. if ((p.prev = hiTail) == null)
  165. hi = p;
  166. else
  167. hiTail.next = p;
  168. hiTail = p;
  169. ++hc;
  170. }
  171. }
  172. // 节点数不够时退化为链表
  173. ln = (lc <= UNTREEIFY_THRESHOLD) ? untreeify(lo) :
  174. (hc != 0) ? new TreeBin<K,V>(lo) : t;
  175. hn = (hc <= UNTREEIFY_THRESHOLD) ? untreeify(hi) :
  176. (lc != 0) ? new TreeBin<K,V>(hi) : t;
  177. setTabAt(nextTab, i, ln);
  178. setTabAt(nextTab, i + n, hn);
  179. setTabAt(tab, i, fwd);
  180. advance = true;
  181. }
  182. }
  183. }
  184. }
  185. }
  186. }
  • sizeCtl == rs + 1 扩容结束了,不再有线程进行扩容,这个判断可以在 addCount 方法中找到答案:默认第一个线程设置 sc == rs 左移 16 位 + 2,当第一个线程结束扩容了,就会将 sc 减一。这个时候,sc 就等于 rs + 1。

如果 sizeCtl == 标识符 + 1 ,说明扩容结束了,没有必要再扩容了。

扩容时机

  • addCount 方法判断节点数量是否达到阈值
  • treeifyBin 转树操作时,当数组长度还未超过 64 时,先进行扩容

size()

主要是 sumCount 的实现,元素个数 = baseCount + counterCells[i].value

当插入或删除数据时,会通过 addCount() 方法以 CAS 方式更新 baseCount 的值,当 CAS 更新失败,会调用 fullAddCount 方法进而更新 counterCells 里面的值。

其中内部类 CounterCell 被 @Contended 注解修饰,是为了防止 伪共享

缓存系统中是以缓存行(cache line)为单位存储的。缓存行是2的整数幂个连续字节,一般为32-256个字节。最常见的缓存行大小是64个字节。当多线程修改互相独立的变量时,如果这些变量共享同一个缓存行,就会无意中影响彼此的性能,这就是伪共享。

JDK 1.8 建议使用 mappingCount 方法(返回 long) 代替 size() 方法返回元素个数,因为元素的个数可能大于 int 表示的范围。

  1. public int size() {
  2. long n = sumCount();
  3. return ((n < 0L) ? 0 :
  4. (n > (long)Integer.MAX_VALUE) ? Integer.MAX_VALUE :
  5. (int)n);
  6. }
  7. final long sumCount() {
  8. CounterCell[] as = counterCells; CounterCell a;
  9. long sum = baseCount;
  10. if (as != null) {
  11. for (int i = 0; i < as.length; ++i) {
  12. if ((a = as[i]) != null)
  13. sum += a.value;
  14. }
  15. }
  16. return sum;
  17. }
  18. @sun.misc.Contended static final class CounterCell {
  19. volatile long value;
  20. CounterCell(long x) { value = x; }
  21. }
  22. public long mappingCount() {
  23. long n = sumCount();
  24. return (n < 0L) ? 0L : n; // ignore transient negative values
  25. }

博客参考

并发编程——ConcurrentHashMap#helpTransfer() 分析

为并发而生的 ConcurrentHashMap(Java 8)

https://www.iteye.com/blog/wujiu-2378812