Janak Ramakrishnan | 8be7fd0 | 2016-05-10 20:01:40 +0000 | [diff] [blame] | 1 | // Copyright 2016 The Bazel Authors. All rights reserved. |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 2 | // |
| 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. |
| 14 | package com.google.devtools.build.skyframe; |
| 15 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 16 | import java.util.Map; |
Janak Ramakrishnan | 3c0adb2 | 2016-08-15 21:54:55 +0000 | [diff] [blame] | 17 | import javax.annotation.Nullable; |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 18 | |
Janak Ramakrishnan | 8be7fd0 | 2016-05-10 20:01:40 +0000 | [diff] [blame] | 19 | /** {@link ProcessableGraph} that exposes the contents of the entire graph. */ |
janakr | 129c930 | 2017-07-21 23:49:45 +0200 | [diff] [blame] | 20 | public interface InMemoryGraph extends ProcessableGraph { |
Janak Ramakrishnan | 3c0adb2 | 2016-08-15 21:54:55 +0000 | [diff] [blame] | 21 | @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( |
ulfjack | be83f13 | 2017-07-18 18:12:09 +0200 | [diff] [blame] | 31 | @Nullable SkyKey requestor, Reason reason, Iterable<? extends SkyKey> keys); |
Janak Ramakrishnan | 3c0adb2 | 2016-08-15 21:54:55 +0000 | [diff] [blame] | 32 | |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 33 | /** |
| 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 Ramakrishnan | 8be7fd0 | 2016-05-10 20:01:40 +0000 | [diff] [blame] | 37 | Map<SkyKey, SkyValue> getValues(); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 38 | |
| 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 Ramakrishnan | 8be7fd0 | 2016-05-10 20:01:40 +0000 | [diff] [blame] | 43 | Map<SkyKey, SkyValue> getDoneValues(); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 44 | |
| 45 | // Only for use by MemoizingEvaluator#delete |
Janak Ramakrishnan | 3c0adb2 | 2016-08-15 21:54:55 +0000 | [diff] [blame] | 46 | Map<SkyKey, ? extends NodeEntry> getAllValues(); |
janakr | 31654bd | 2017-03-29 23:05:50 +0000 | [diff] [blame] | 47 | |
| 48 | Map<SkyKey, ? extends NodeEntry> getAllValuesMutable(); |
Han-Wen Nienhuys | d08b27f | 2015-02-25 16:45:20 +0100 | [diff] [blame] | 49 | } |