blob: 4965a39522ba1764094e12e1356fad061a16359d [file] [log] [blame]
// Copyright 2014 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.skyframe;
import com.google.common.collect.Maps;
import com.google.devtools.build.lib.profiler.AutoProfiler;
import com.google.devtools.build.lib.profiler.GoogleAutoProfilerUtils;
import com.google.devtools.build.lib.supplier.InterruptibleSupplier;
import com.google.devtools.build.skyframe.SkyKey.SkyKeyInterner;
import com.google.errorprone.annotations.CanIgnoreReturnValue;
import com.google.errorprone.annotations.ForOverride;
import java.time.Duration;
import java.util.Collection;
import java.util.Collections;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import java.util.concurrent.ConcurrentHashMap;
import java.util.function.Consumer;
import javax.annotation.Nullable;
/**
* An in-memory graph implementation. All operations are thread-safe with ConcurrentMap semantics.
* Also see {@link NodeEntry}.
*
* <p>This class is public only for use in alternative graph implementations.
*/
public class InMemoryGraphImpl implements InMemoryGraph {
private static final int PARALLELISM_THRESHOLD = 1024;
protected final ConcurrentHashMap<SkyKey, InMemoryNodeEntry> nodeMap;
private final NodeBatch getBatch;
private final NodeBatch createIfAbsentBatch;
private final boolean usePooledSkyKeyInterning;
InMemoryGraphImpl() {
this(/* initialCapacity= */ 1 << 10);
}
/**
* For some shell integration tests, we don't want to apply {@link SkyKeyInterner} created and
* bind {@code SkyKeyInterner#globalPool} to the second {@link InMemoryGraph}.
*/
InMemoryGraphImpl(boolean usePooledSkyKeyInterning) {
this(/* initialCapacity= */ 1 << 10, usePooledSkyKeyInterning);
}
protected InMemoryGraphImpl(int initialCapacity) {
this(initialCapacity, /* usePooledSkyKeyInterning= */ true);
}
private InMemoryGraphImpl(int initialCapacity, boolean usePooledSkyKeyInterning) {
this.nodeMap = new ConcurrentHashMap<>(initialCapacity);
this.getBatch = nodeMap::get;
this.createIfAbsentBatch = this::createIfAbsent;
this.usePooledSkyKeyInterning = usePooledSkyKeyInterning;
if (usePooledSkyKeyInterning) {
SkyKeyInterner.setGlobalPool(this);
}
}
@Override
public void remove(SkyKey skyKey) {
weakIntern(skyKey);
nodeMap.remove(skyKey);
}
private void weakIntern(SkyKey skyKey) {
if (!usePooledSkyKeyInterning) {
return;
}
SkyKeyInterner<?> interner = skyKey.getSkyKeyInterner();
if (interner != null) {
interner.weakIntern(skyKey);
}
}
@Override
public NodeEntry get(@Nullable SkyKey requestor, Reason reason, SkyKey skyKey) {
return nodeMap.get(skyKey);
}
@Override
public NodeBatch getBatch(
@Nullable SkyKey requestor, Reason reason, Iterable<? extends SkyKey> keys) {
return getBatch;
}
@Override
public InterruptibleSupplier<NodeBatch> getBatchAsync(
@Nullable SkyKey requestor, Reason reason, Iterable<? extends SkyKey> keys) {
return () -> getBatch;
}
@Override
public Map<SkyKey, NodeEntry> getBatchMap(
SkyKey requestor, Reason reason, Iterable<? extends SkyKey> keys) {
// Use a HashMap, not an ImmutableMap.Builder, because we have not yet deduplicated these keys
// and ImmutableMap.Builder does not tolerate duplicates. The map will be thrown away shortly.
HashMap<SkyKey, NodeEntry> result = new HashMap<>();
for (SkyKey key : keys) {
NodeEntry entry = get(null, Reason.OTHER, key);
if (entry != null) {
result.put(key, entry);
}
}
return result;
}
@ForOverride
protected InMemoryNodeEntry newNodeEntry(SkyKey key) {
return new InMemoryNodeEntry(key);
}
@Override
@CanIgnoreReturnValue
public NodeBatch createIfAbsentBatch(
@Nullable SkyKey requestor, Reason reason, Iterable<? extends SkyKey> keys) {
for (SkyKey key : keys) {
createIfAbsent(key);
}
return createIfAbsentBatch;
}
@CanIgnoreReturnValue
private InMemoryNodeEntry createIfAbsent(SkyKey skyKey) {
SkyKeyInterner<?> interner = skyKey.getSkyKeyInterner();
if (!usePooledSkyKeyInterning || interner == null) {
return nodeMap.computeIfAbsent(skyKey, this::newNodeEntry);
}
// The key is typically already present. Record whether this thread newly created a node so that
// we can skip calling removeWeak if it was already present.
boolean[] newlyCreated = new boolean[1];
InMemoryNodeEntry nodeEntry =
nodeMap.computeIfAbsent(
skyKey,
k -> {
newlyCreated[0] = true;
return newNodeEntry(k);
});
if (newlyCreated[0]) {
interner.removeWeak(skyKey);
}
return nodeEntry;
}
@Override
public DepsReport analyzeDepsDoneness(SkyKey parent, Collection<SkyKey> deps) {
return DepsReport.NO_INFORMATION;
}
@Override
public int valuesSize() {
return nodeMap.size();
}
@Override
public Map<SkyKey, SkyValue> getValues() {
return Collections.unmodifiableMap(Maps.transformValues(nodeMap, InMemoryNodeEntry::toValue));
}
@Override
public Map<SkyKey, SkyValue> getDoneValues() {
return Collections.unmodifiableMap(
Maps.filterValues(
Maps.transformValues(nodeMap, entry -> entry.isDone() ? entry.getValue() : null),
Objects::nonNull));
}
@Override
public Collection<InMemoryNodeEntry> getAllNodeEntries() {
return Collections.unmodifiableCollection(nodeMap.values());
}
@Override
public void parallelForEach(Consumer<InMemoryNodeEntry> consumer) {
nodeMap.forEachValue(PARALLELISM_THRESHOLD, consumer);
}
@Override
public SkyKey getOrWeakIntern(SkyKey key) {
// Use computeIfAbsent not to mutate the map, but to call weakIntern under synchronization. This
// ensures that the canonical instance isn't being transferred to the node map concurrently in
// createIfAbsent. In the common case that the key is already present in the node map, this is a
// lock-free lookup.
SkyKey[] weakInterned = new SkyKey[1];
InMemoryNodeEntry nodeEntry =
nodeMap.computeIfAbsent(
key,
k -> {
weakInterned[0] = k.getSkyKeyInterner().weakIntern(k);
return null; // Don't actually store a mapping.
});
return nodeEntry != null ? nodeEntry.getKey() : weakInterned[0];
}
/**
* Re-interns {@link SkyKey} instances that use {@link SkyKeyInterner} in node map back to the
* {@link SkyKeyInterner}'s weak interner.
*
* <p>Also uninstalls this {@link InMemoryGraphImpl} instance from being {@link SkyKeyInterner}'s
* static global pool.
*/
@Override
public void cleanupPool() {
if (!usePooledSkyKeyInterning) {
// No clean up is needed when `usePooledSkyKeyInterning` is false for shell integration tests.
return;
}
try (AutoProfiler ignored =
GoogleAutoProfilerUtils.logged(
"re-interning Skykeys back to bazel regular weak interner from SkyKeyPool",
Duration.ofMillis(2L))) {
parallelForEach(e -> weakIntern(e.getKey()));
}
SkyKeyInterner.setGlobalPool(null);
}
static final class EdgelessInMemoryGraphImpl extends InMemoryGraphImpl {
public EdgelessInMemoryGraphImpl(boolean usePooledSkyKeyInterning) {
super(usePooledSkyKeyInterning);
}
@Override
protected InMemoryNodeEntry newNodeEntry(SkyKey key) {
return new EdgelessInMemoryNodeEntry(key);
}
}
}