Java tutorial
/* * This file is part of LanternServer, licensed under the MIT License (MIT). * * Copyright (c) LanternPowered <https://www.lanternpowered.org> * Copyright (c) SpongePowered <https://www.spongepowered.org> * Copyright (c) contributors * * Permission is hereby granted, free of charge, to any person obtaining a copy * of this software and associated documentation files (the Software), to deal * in the Software without restriction, including without limitation the rights * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell * copies of the Software, and to permit persons to whom the Software is * furnished to do so, subject to the following conditions * * The above copyright notice and this permission notice shall be included in * all copies or substantial portions of the Software. * * THE SOFTWARE IS PROVIDED AS IS, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE * AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN * THE SOFTWARE. */ package org.lanternpowered.server.data.property; import static com.google.common.base.Preconditions.checkNotNull; import static com.google.common.base.Preconditions.checkState; import com.google.common.collect.ImmutableList; import com.google.inject.Inject; import com.google.inject.Singleton; import org.lanternpowered.server.block.provider.property.PropertyProviderCollection; import org.lanternpowered.server.data.property.block.BlockPropertyStore; import org.lanternpowered.server.data.property.item.ItemPropertyStore; import org.spongepowered.api.data.Property; import org.spongepowered.api.data.property.PropertyHolder; import org.spongepowered.api.data.property.PropertyRegistry; import org.spongepowered.api.data.property.PropertyStore; import java.util.ArrayList; import java.util.Collection; import java.util.Collections; import java.util.List; import java.util.Map; import java.util.Optional; import java.util.concurrent.ConcurrentHashMap; @Singleton public final class LanternPropertyRegistry implements PropertyRegistry { private final Map<Class<? extends Property<?, ?>>, List<PropertyStore<?>>> propertyStoreMap = new ConcurrentHashMap<>(); private final Map<Class<? extends Property<?, ?>>, PropertyStoreDelegate<?>> delegateMap = new ConcurrentHashMap<>(); private boolean allowRegistrations = true; @Inject private LanternPropertyRegistry() { } @SuppressWarnings({ "unchecked", "Convert2streamapi", "SuspiciousMethodCalls" }) public void registerBlockPropertyStores(PropertyProviderCollection collection) { for (Class<? extends Property> entry : collection.keys()) { if (!this.propertyStoreMap.containsKey(entry)) { register(entry, new BlockPropertyStore(entry)); } } } @SuppressWarnings({ "unchecked", "Convert2streamapi", "SuspiciousMethodCalls" }) public void registerItemPropertyStores(org.lanternpowered.server.item.PropertyProviderCollection collection) { for (Class<? extends Property> entry : collection.keys()) { if (!this.propertyStoreMap.containsKey(entry)) { register(entry, new ItemPropertyStore(entry)); } } } @SuppressWarnings("unchecked") public void completeRegistration() { this.allowRegistrations = false; for (Map.Entry<Class<? extends Property<?, ?>>, List<PropertyStore<?>>> entry : this.propertyStoreMap .entrySet()) { final ImmutableList.Builder<PropertyStore<?>> propertyStoreBuilder = ImmutableList.builder(); Collections.sort(entry.getValue(), (o1, o2) -> Integer.compare(o2.getPriority(), o1.getPriority())); propertyStoreBuilder.addAll(entry.getValue()); this.delegateMap.put(entry.getKey(), new PropertyStoreDelegate(propertyStoreBuilder.build())); } this.propertyStoreMap.clear(); } @Override public <T extends Property<?, ?>> void register(Class<T> propertyClass, PropertyStore<T> propertyStore) { checkState(this.allowRegistrations, "Registrations are no longer allowed!"); checkNotNull(propertyClass, "propertyClass"); checkNotNull(propertyStore, "propertyStore"); final List<PropertyStore<?>> propertyStores = this.propertyStoreMap.computeIfAbsent(propertyClass, c -> new ArrayList<>()); propertyStores.add(propertyStore); } @SuppressWarnings("unchecked") @Override public <T extends Property<?, ?>> Optional<PropertyStore<T>> getStore(Class<T> propertyClass) { checkNotNull(propertyClass, "propertyClass"); if (!this.delegateMap.containsKey(propertyClass)) { return Optional.empty(); } else { return Optional.of((PropertyStore<T>) this.delegateMap.get(propertyClass)); } } public Collection<Property<?, ?>> getPropertiesFor(PropertyHolder holder) { final ImmutableList.Builder<Property<?, ?>> builder = ImmutableList.builder(); for (Map.Entry<Class<? extends Property<?, ?>>, PropertyStoreDelegate<?>> entry : this.delegateMap .entrySet()) { final Optional<? extends Property<?, ?>> optional = entry.getValue().getFor(holder); if (optional.isPresent()) { builder.add(optional.get()); } } return builder.build(); } }