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.
Implement @AutoCodec.Interner code generation.
PiperOrigin-RevId: 587149949 Change-Id: Iaa2a1328ede8e97e4ec67a3a07b9f4961f9ec959
- Loading branch information
1 parent
0226327
commit 9aca477
Showing
6 changed files
with
708 additions
and
0 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
47 changes: 47 additions & 0 deletions
47
src/main/java/com/google/devtools/build/lib/skyframe/serialization/InterningObjectCodec.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,47 @@ | ||
// Copyright 2023 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.skyframe.serialization; | ||
|
||
import com.google.protobuf.CodedInputStream; | ||
import java.io.IOException; | ||
|
||
/** Codec variant that interns the deserialization result. */ | ||
public abstract class InterningObjectCodec<T> implements ObjectCodec<T> { | ||
|
||
@Override | ||
public final MemoizationStrategy getStrategy() { | ||
// There is no fixed reference to an interned object until after it has been constructed and | ||
// passes through the interner. Therefore this is always MEMOIZE_AFTER. | ||
return MemoizationStrategy.MEMOIZE_AFTER; | ||
} | ||
|
||
/** | ||
* Adapter for synchronous contexts. | ||
* | ||
* <p>Deserializes using {@link #deserializeInterned} then calls {@link #intern} on the result. | ||
*/ | ||
@Override | ||
public final T deserialize(DeserializationContext context, CodedInputStream codedIn) | ||
throws SerializationException, IOException { | ||
return intern(deserializeInterned(context, codedIn)); | ||
} | ||
|
||
/** Performs the (async) deserialization work. */ | ||
public abstract T deserializeInterned( | ||
AsyncDeserializationContext context, CodedInputStream codedIn) | ||
throws SerializationException, IOException; | ||
|
||
/** Interns the result of {@link #deserializeInterned}. */ | ||
public abstract T intern(T value); | ||
} |
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
Oops, something went wrong.