// Copyright 2018 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.serializers; import com.esotericsoftware.kryo.Kryo; import com.esotericsoftware.kryo.Serializer; import com.esotericsoftware.kryo.io.Input; import com.esotericsoftware.kryo.io.Output; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Sets; /** {@link Serializer} for {@link ImmutableSet}. */ class ImmutableSetSerializer extends Serializer> { private ImmutableSetSerializer() { setImmutable(true); } @Override public void write(Kryo kryo, Output output, ImmutableSet object) { output.writeInt(object.size(), true); for (Object elt : object) { kryo.writeClassAndObject(output, elt); } } @Override public ImmutableSet read(Kryo kryo, Input input, Class> type) { int size = input.readInt(true); ImmutableSet.Builder builder = ImmutableSet.builder(); for (int i = 0; i < size; ++i) { builder.add(kryo.readClassAndObject(input)); } return builder.build(); } static void registerSerializers(Kryo kryo) { // ImmutableList (abstract class) // +- EmptyImmutableSet // | EmptyImmutableSet // +- SingletonImmutableSet // | Optimized for Set with only 1 element. // +- RegularImmutableSet // | RegularImmutableList // +- EnumImmutableSet // | EnumImmutableSet ImmutableSetSerializer serializer = new ImmutableSetSerializer(); kryo.register(ImmutableSet.class, serializer); // Note: // Only registering above is good enough for serializing/deserializing. // but if using Kryo#copy, following is required. kryo.register(ImmutableSet.of().getClass(), serializer); kryo.register(ImmutableSet.of(1).getClass(), serializer); kryo.register(ImmutableSet.of(1, 2, 3).getClass(), serializer); kryo.register(Sets.immutableEnumSet(SomeEnum.A, SomeEnum.B, SomeEnum.C).getClass(), serializer); } private enum SomeEnum { A, B, C } }