// Copyright 2015 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.devtools.build.lib.concurrent.ThreadSafety.ThreadSafe; import com.google.devtools.build.lib.events.ExtendedEventHandler; import com.google.devtools.build.skyframe.QueryableGraph.Reason; import java.util.Collection; import java.util.Map; import javax.annotation.Nullable; /** * Read-only graph that exposes the dependents, dependencies (reverse dependents), and value and * exception (if any) of a given node. * *
Certain graph implementations can throw {@link InterruptedException} when trying to retrieve * node entries. Such exceptions should not be caught locally -- they should be allowed to propagate * up. */ @ThreadSafe public interface WalkableGraph { /** * Returns the value of the given key, or {@code null} if it has no value due to an error during * its computation or it is not done in the graph. * *
A node that is done in the graph must have either a non-null getValue, a non-null {@link * #getException}, or a true {@link #isCycle}. * *
These three methods should all be reading the same {@link
* NodeEntry#getValueMaybeWithMetadata} value internally, so once that value is indirectly
* retrieved via one of these methods, the others can read it for free. This is relevant for graph
* implementations that may throw an {@link InterruptedException} on retrieving entries and value.
*/
@Nullable
SkyValue getValue(SkyKey key) throws InterruptedException;
/**
* Returns a map giving the values of the given keys for done keys that were successfully
* computed. Or in other words, it filters out non-existent nodes, pending nodes and nodes that
* produced an exception.
*/
Map Note: An unavailable node does not mean it is not in the graph. It only means it's not ready
* to be fetched immediately.
*/
Iterable