aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/main/java/com/google/devtools/build/lib/remote/ContentDigests.java
diff options
context:
space:
mode:
authorGravatar olaola <olaola@google.com>2017-06-09 04:33:25 +0200
committerGravatar Jakob Buchgraber <buchgr@google.com>2017-06-09 10:23:23 +0200
commit460a105ea61c23b1553a89d8f7a14170ad359e08 (patch)
tree066f0f98f03536efad02ab5ad0e64d9d4c5e054f /src/main/java/com/google/devtools/build/lib/remote/ContentDigests.java
parent88677dbef8a9a1f88a35229f342fdf8523273456 (diff)
Also refactored away the various *Interface* files, no need since unit testing can be done with mocking the appropriate gRPC Impl classes directly (see tests). This also fixes the RemoteSpawnRunner, which should use different objects for remote caching and remote execution, the same way RemoteSpawnStrategy does. RELNOTES: n/a PiperOrigin-RevId: 158473700
Diffstat (limited to 'src/main/java/com/google/devtools/build/lib/remote/ContentDigests.java')
-rw-r--r--src/main/java/com/google/devtools/build/lib/remote/ContentDigests.java105
1 files changed, 0 insertions, 105 deletions
diff --git a/src/main/java/com/google/devtools/build/lib/remote/ContentDigests.java b/src/main/java/com/google/devtools/build/lib/remote/ContentDigests.java
deleted file mode 100644
index 21a739c468..0000000000
--- a/src/main/java/com/google/devtools/build/lib/remote/ContentDigests.java
+++ /dev/null
@@ -1,105 +0,0 @@
-// Copyright 2016 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.remote;
-
-import com.google.common.hash.HashCode;
-import com.google.common.hash.Hashing;
-import com.google.devtools.build.lib.actions.ActionInput;
-import com.google.devtools.build.lib.actions.ActionInputFileCache;
-import com.google.devtools.build.lib.actions.cache.VirtualActionInput;
-import com.google.devtools.build.lib.concurrent.ThreadSafety.ThreadSafe;
-import com.google.devtools.build.lib.remote.RemoteProtocol.Action;
-import com.google.devtools.build.lib.remote.RemoteProtocol.ContentDigest;
-import com.google.devtools.build.lib.vfs.Path;
-import com.google.protobuf.ByteString;
-import com.google.protobuf.Message;
-import java.io.ByteArrayOutputStream;
-import java.io.IOException;
-
-/** Helper methods relating to computing ContentDigest messages for remote execution. */
-@ThreadSafe
-public final class ContentDigests {
- private ContentDigests() {}
-
- public static ContentDigest computeDigest(byte[] blob) {
- return buildDigest(Hashing.sha1().hashBytes(blob).asBytes(), blob.length);
- }
-
- public static ContentDigest computeDigest(Path file) throws IOException {
- return buildDigest(file.getSHA1Digest(), file.getFileSize());
- }
-
- public static ContentDigest computeDigest(VirtualActionInput input) throws IOException {
- ByteArrayOutputStream buffer = new ByteArrayOutputStream();
- input.writeTo(buffer);
- return computeDigest(buffer.toByteArray());
- }
-
- /**
- * Computes a digest of the given proto message. Currently, we simply rely on message output as
- * bytes, but this implementation relies on the stability of the proto encoding, in particular
- * between different platforms and languages. TODO(olaola): upgrade to a better implementation!
- */
- public static ContentDigest computeDigest(Message message) {
- return computeDigest(message.toByteArray());
- }
-
- /**
- * A special type of ContentDigest that is used only as a remote action cache key. This is a
- * separate type in order to prevent accidentally using other ContentDigests as action keys.
- */
- public static final class ActionKey {
- private final ContentDigest digest;
-
- public ContentDigest getDigest() {
- return digest;
- }
-
- private ActionKey(ContentDigest digest) {
- this.digest = digest;
- }
- }
-
- public static ActionKey computeActionKey(Action action) {
- return new ActionKey(computeDigest(action));
- }
-
- /**
- * Assumes that the given ContentDigest is a valid digest of an Action, and creates an ActionKey
- * wrapper. This should not be called on the client side!
- */
- public static ActionKey unsafeActionKeyFromDigest(ContentDigest digest) {
- return new ActionKey(digest);
- }
-
- public static ContentDigest buildDigest(byte[] digest, long size) {
- ContentDigest.Builder b = ContentDigest.newBuilder();
- b.setDigest(ByteString.copyFrom(digest)).setSizeBytes(size);
- return b.build();
- }
-
- public static ContentDigest getDigestFromInputCache(ActionInput input, ActionInputFileCache cache)
- throws IOException {
- return buildDigest(cache.getDigest(input), cache.getSizeInBytes(input));
- }
-
- public static String toHexString(ContentDigest digest) {
- return HashCode.fromBytes(digest.getDigest().toByteArray()).toString();
- }
-
- public static String toString(ContentDigest digest) {
- return "<digest: " + toHexString(digest) + ", size: " + digest.getSizeBytes() + " bytes>";
- }
-}