aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/concurrent/FastHotKeyAtomicLongMap.java
blob: 3b64d3821696578a356f1b3f466bcd796fc20225 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
// Copyright 2018 The Bazel Authors. All rights reserved.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//    http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package com.google.devtools.build.lib.concurrent;

import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Maps;
import com.google.devtools.build.lib.concurrent.ThreadSafety.ThreadSafe;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.atomic.AtomicLong;

/**
 * A map of atomic long counters. A key whose counter's value is currently zero is _not_
 * automatically removed from the map; use {@link #clear} to clear the entire map.
 *
 * <p>This is very similar to Guava's AtomicLongMap, but optimized for the case where keys are hot,
 * e.g. a high number of concurrent calls to {@code map.incrementAndGet(k)} and/or
 * {@code map.decrementAndGet(k)}, for the same key {@code k)}. Guava's AtomicLongMap uses
 * ConcurrentHashMap#compute, whose implementation unfortunately has internal synchronization even
 * when there's already an internal entry for the key in question.
 */
@ThreadSafe
public class FastHotKeyAtomicLongMap<T> {
  private final ConcurrentMap<T, AtomicLong> map;

  public static <T> FastHotKeyAtomicLongMap<T> create() {
    return new FastHotKeyAtomicLongMap<>();
  }

  // TODO(kak): Delete this in favor of create()
  public static <T> FastHotKeyAtomicLongMap<T> create(int concurrencyLevel /* ignored */) {
    return new FastHotKeyAtomicLongMap<>();
  }

  private FastHotKeyAtomicLongMap() {
    this.map = new ConcurrentHashMap<>();
  }

  public long incrementAndGet(T key) {
    return getCounter(key).incrementAndGet();
  }

  public long decrementAndGet(T key) {
    return getCounter(key).decrementAndGet();
  }

  public ImmutableMap<T, Long> asImmutableMap() {
    return ImmutableMap.copyOf(Maps.transformValues(map, AtomicLong::get));
  }

  /**
   * Returns the {@link AtomicLong} for the given {@code element}. Mutations to this
   * {@link AtomicLong} will be reflected in the {@link FastHotKeyAtomicLongMap}: for example,
   * {@code map.getCounter(e).incrementAndGet()} has exactly the same side effects as
   * {@code map.incrementAndGet(e)}.
   *
   * <p>Consider using this method when you have a super-hot key that you know about a priori.
   * Prefer {@link #incrementAndGet} and {@link #decrementAndGet} otherwise.
   */
  public AtomicLong getCounter(T element) {
    // Optimize for the case where 'element' is already in our map. See the class javadoc.
    AtomicLong counter = map.get(element);
    return counter != null ? counter : map.computeIfAbsent(element, s -> new AtomicLong(0));
  }

  /**
   * Clears the {@link FastHotKeyAtomicLongMap}.
   *
   * <p>Any {@link AtomicLong} instances previously returned by a call to {@link #getCounter} are
   * now meaningless: mutations to them will not be reflected in the
   * {@link FastHotKeyAtomicLongMap}.
   */
  public void clear() {
    map.clear();
  }
}