forked from bazelbuild/bazel
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Store the maximum source version encountered along with the "hash" of…
… the source versions. Not active for ActionSketchFunction because it uses content hashes, not version hashes. PiperOrigin-RevId: 371137349
- Loading branch information
1 parent
e4cc0b9
commit 21d1bee
Showing
7 changed files
with
168 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
56 changes: 56 additions & 0 deletions
56
src/main/java/com/google/devtools/build/lib/actionsketch/HashAndVersion.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
// Copyright 2021 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.actionsketch; | ||
|
||
import static com.google.common.base.Preconditions.checkState; | ||
import static java.lang.Math.max; | ||
|
||
import com.google.auto.value.AutoValue; | ||
import com.google.devtools.build.lib.util.BigIntegerFingerprintUtils; | ||
import java.math.BigInteger; | ||
import javax.annotation.Nullable; | ||
|
||
/** Container holding a version and a {@link BigInteger} hash that has the version and more. */ | ||
@AutoValue | ||
public abstract class HashAndVersion { | ||
public static final HashAndVersion ZERO = create(BigInteger.ZERO, 0L); | ||
|
||
public abstract BigInteger hash(); | ||
|
||
public abstract long version(); | ||
|
||
@Nullable | ||
public static HashAndVersion create(BigInteger hash, long version) { | ||
if (hash == null) { | ||
checkState(version == Long.MAX_VALUE, "no hash with valid version %s", version); | ||
return null; | ||
} | ||
return new AutoValue_HashAndVersion(hash, version); | ||
} | ||
|
||
public static HashAndVersion createNoVersion(BigInteger hash) { | ||
return create(hash, 0L); | ||
} | ||
|
||
@Nullable | ||
public static HashAndVersion composeNullable(HashAndVersion first, HashAndVersion second) { | ||
if (first == null || second == null) { | ||
return null; | ||
} | ||
return create( | ||
BigIntegerFingerprintUtils.compose(first.hash(), second.hash()), | ||
max(first.version(), second.version())); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters