// 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; import com.google.common.base.Predicates; import com.google.common.base.Supplier; import com.google.common.base.Suppliers; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableSet; import com.google.common.collect.Ordering; import java.io.IOException; import java.util.ArrayList; import java.util.Collections; import java.util.Comparator; import java.util.HashMap; /** * A lazy, automatically populated registry. * *

Must not be accessed by any {@link CodecRegisterer} or {@link ObjectCodec} constructors or * static initializers. */ public class AutoRegistry { private static final Supplier SUPPLIER = Suppliers.memoize(AutoRegistry::create); /* Common ancestor of common.google.devtools.build and com.google.devtools.common.options, * where Tristate lives. */ private static final String PACKAGE_PREFIX = "com.google.devtools"; /** Package prefixes to blacklist for {@link DynamicCodec}. */ private static final ImmutableList PACKAGE_PREFIX_BLACKLIST = ImmutableList.of("com.google.devtools.build.lib.vfs"); /** Classes outside {@link AutoRegistry#PACKAGE_PREFIX} that need to be serialized. */ private static final ImmutableList EXTERNAL_CLASS_NAMES_TO_REGISTER = ImmutableList.of("java.io.FileNotFoundException", "java.io.IOException"); private static final ImmutableList REFERENCE_CONSTANTS_TO_REGISTER = ImmutableList.of( Predicates.alwaysTrue(), Predicates.alwaysFalse(), Predicates.isNull(), Predicates.notNull(), ImmutableList.of(), ImmutableSet.of(), Comparator.naturalOrder(), Ordering.natural()); private static final ImmutableList VALUE_CONSTANTS_TO_REGISTER = ImmutableList.of( "", Boolean.FALSE, Boolean.TRUE, Collections.unmodifiableMap(new HashMap<>()), Collections.unmodifiableList(new ArrayList<>())); public static ObjectCodecRegistry get() { return SUPPLIER.get(); } private static ObjectCodecRegistry create() { try { ObjectCodecRegistry.Builder registry = CodecScanner.initializeCodecRegistry(PACKAGE_PREFIX, PACKAGE_PREFIX_BLACKLIST); for (String className : EXTERNAL_CLASS_NAMES_TO_REGISTER) { registry.addClassName(className); } for (Object constant : REFERENCE_CONSTANTS_TO_REGISTER) { registry.addReferenceConstant(constant); } for (Object constant : VALUE_CONSTANTS_TO_REGISTER) { registry.addValueConstant(constant); } return registry.build(); } catch (IOException | ReflectiveOperationException e) { throw new IllegalStateException(e); } } }