blob: e8c7d3511afb0947e91d91b6aa8aac40ecca8187 [file] [log] [blame]
Janak Ramakrishnan8be7fd02016-05-10 20:01:40 +00001// Copyright 2016 The Bazel Authors. All rights reserved.
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +01002//
3// Licensed under the Apache License, Version 2.0 (the "License");
4// you may not use this file except in compliance with the License.
5// You may obtain a copy of the License at
6//
7// http://www.apache.org/licenses/LICENSE-2.0
8//
9// Unless required by applicable law or agreed to in writing, software
10// distributed under the License is distributed on an "AS IS" BASIS,
11// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12// See the License for the specific language governing permissions and
13// limitations under the License.
14package com.google.devtools.build.skyframe;
15
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010016import java.util.Map;
Janak Ramakrishnan3c0adb22016-08-15 21:54:55 +000017import javax.annotation.Nullable;
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010018
Janak Ramakrishnan8be7fd02016-05-10 20:01:40 +000019/** {@link ProcessableGraph} that exposes the contents of the entire graph. */
janakr129c9302017-07-21 23:49:45 +020020public interface InMemoryGraph extends ProcessableGraph {
Janak Ramakrishnan3c0adb22016-08-15 21:54:55 +000021 @Override
22 Map<SkyKey, ? extends NodeEntry> createIfAbsentBatch(
23 @Nullable SkyKey requestor, Reason reason, Iterable<SkyKey> keys);
24
25 @Nullable
26 @Override
27 NodeEntry get(@Nullable SkyKey requestor, Reason reason, SkyKey key);
28
29 @Override
30 Map<SkyKey, ? extends NodeEntry> getBatch(
ulfjackbe83f132017-07-18 18:12:09 +020031 @Nullable SkyKey requestor, Reason reason, Iterable<? extends SkyKey> keys);
Janak Ramakrishnan3c0adb22016-08-15 21:54:55 +000032
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010033 /**
34 * Returns a read-only live view of the nodes in the graph. All node are included. Dirty values
35 * include their Node value. Values in error have a null value.
36 */
Janak Ramakrishnan8be7fd02016-05-10 20:01:40 +000037 Map<SkyKey, SkyValue> getValues();
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010038
39 /**
40 * Returns a read-only live view of the done values in the graph. Dirty, changed, and error values
41 * are not present in the returned map
42 */
Janak Ramakrishnan8be7fd02016-05-10 20:01:40 +000043 Map<SkyKey, SkyValue> getDoneValues();
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010044
45 // Only for use by MemoizingEvaluator#delete
Janak Ramakrishnan3c0adb22016-08-15 21:54:55 +000046 Map<SkyKey, ? extends NodeEntry> getAllValues();
janakr31654bd2017-03-29 23:05:50 +000047
48 Map<SkyKey, ? extends NodeEntry> getAllValuesMutable();
Han-Wen Nienhuysd08b27f2015-02-25 16:45:20 +010049}