blob: b6ccbfa38aa48732e0d1721505d7b0eda885a4c9 [file] [log] [blame]
// 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 com.google.protobuf.CodedOutputStream;
import java.io.IOException;
/**
* A codec that directly deserializes from the {@link CodedInputStream}.
*
* <p>{@link LeafObjectCodec}s may only delegate to other {@link LeafObjectCodec}s and are
* restricted from using any asynchronous features. By construction, they can only be used to
* serialize acyclic values and are always synchronous.
*/
public abstract class LeafObjectCodec<T> implements ObjectCodec<T> {
@Override
public final void serialize(SerializationContext context, T obj, CodedOutputStream codedOut)
throws SerializationException, IOException {
serialize((LeafSerializationContext) context, obj, codedOut);
}
/**
* This has the same contract as {@link #serialize}, but may only depend on {@link
* LeafSerializationContext} instead of the full {@link SerializationContext}.
*/
public abstract void serialize(
LeafSerializationContext context, T obj, CodedOutputStream codedOut)
throws SerializationException, IOException;
@Override
public final T deserialize(DeserializationContext context, CodedInputStream codedIn)
throws SerializationException, IOException {
return deserialize((LeafDeserializationContext) context, codedIn);
}
/**
* This has the same contract as {@link #deserialize}, but may only depend on {@link
* LeafDeserializationContext} instead of the full {@link DeserializationContext}.
*/
public abstract T deserialize(LeafDeserializationContext context, CodedInputStream codedIn)
throws SerializationException, IOException;
}