org.lanternpowered.server.data.value.immutable.ImmutableLanternMapValue.java Source code

Java tutorial

Introduction

Here is the source code for org.lanternpowered.server.data.value.immutable.ImmutableLanternMapValue.java

Source

/*
 * 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.value.immutable;

import static com.google.common.base.Preconditions.checkNotNull;

import com.google.common.collect.ImmutableCollection;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.ImmutableSet;
import com.google.common.collect.Iterables;
import org.lanternpowered.server.data.value.mutable.LanternMapValue;
import org.spongepowered.api.data.key.Key;
import org.spongepowered.api.data.value.BaseValue;
import org.spongepowered.api.data.value.immutable.ImmutableMapValue;
import org.spongepowered.api.data.value.mutable.MapValue;

import java.util.Map;
import java.util.function.Function;
import java.util.function.Predicate;

public class ImmutableLanternMapValue<K, V> extends ImmutableLanternValue<Map<K, V>>
        implements ImmutableMapValue<K, V> {

    public ImmutableLanternMapValue(Key<? extends BaseValue<Map<K, V>>> key) {
        this(key, ImmutableMap.of());
    }

    public ImmutableLanternMapValue(Key<? extends BaseValue<Map<K, V>>> key, Map<K, V> defaultValue,
            Map<K, V> actualValue) {
        super(key, ImmutableMap.copyOf(defaultValue), ImmutableMap.copyOf(actualValue));
    }

    public ImmutableLanternMapValue(Key<? extends BaseValue<Map<K, V>>> key, Map<K, V> actualValue) {
        super(key, ImmutableMap.of(), ImmutableMap.copyOf(actualValue));
    }

    @Override
    public ImmutableMapValue<K, V> with(Map<K, V> value) {
        return new ImmutableLanternMapValue<>(getKey(), getDefault(), checkNotNull(value));
    }

    @Override
    public ImmutableMapValue<K, V> transform(Function<Map<K, V>, Map<K, V>> function) {
        return new ImmutableLanternMapValue<>(getKey(), getDefault(),
                checkNotNull(checkNotNull(function).apply(getActualValue())));
    }

    @Override
    public MapValue<K, V> asMutable() {
        return new LanternMapValue<>(getKey(), getDefault(), getActualValue());
    }

    @Override
    public int size() {
        return getActualValue().size();
    }

    @Override
    public ImmutableMapValue<K, V> with(K key, V value) {
        return new ImmutableLanternMapValue<>(getKey(), getDefault(), ImmutableMap.<K, V>builder()
                .putAll(getActualValue()).put(checkNotNull(key), checkNotNull(value)).build());
    }

    @Override
    public ImmutableMapValue<K, V> withAll(Map<K, V> map) {
        return new ImmutableLanternMapValue<>(getKey(), getDefault(),
                ImmutableMap.<K, V>builder().putAll(getActualValue()).putAll(map).build());
    }

    @Override
    public ImmutableMapValue<K, V> without(K key) {
        final ImmutableMap.Builder<K, V> builder = ImmutableMap.builder();
        getActualValue().entrySet().stream().filter(entry -> !entry.getKey().equals(key))
                .forEach(entry -> builder.put(entry.getKey(), entry.getValue()));
        return new ImmutableLanternMapValue<>(getKey(), getDefault(), builder.build());
    }

    @Override
    public ImmutableMapValue<K, V> withoutAll(Iterable<K> keys) {
        final ImmutableMap.Builder<K, V> builder = ImmutableMap.builder();
        getActualValue().entrySet().stream().filter(entry -> !Iterables.contains(keys, entry.getKey()))
                .forEach(entry -> builder.put(entry.getKey(), entry.getValue()));
        return new ImmutableLanternMapValue<>(getKey(), getDefault(), builder.build());
    }

    @Override
    public ImmutableMapValue<K, V> withoutAll(Predicate<Map.Entry<K, V>> predicate) {
        final ImmutableMap.Builder<K, V> builder = ImmutableMap.builder();
        getActualValue().entrySet().stream().filter(entry -> checkNotNull(predicate).test(entry))
                .forEach(entry -> builder.put(entry.getKey(), entry.getValue()));
        return new ImmutableLanternMapValue<>(getKey(), getDefault(), builder.build());
    }

    @Override
    public boolean containsKey(K key) {
        return getActualValue().containsKey(checkNotNull(key));
    }

    @Override
    public boolean containsValue(V value) {
        return getActualValue().containsValue(checkNotNull(value));
    }

    @Override
    public ImmutableSet<K> keySet() {
        return (ImmutableSet<K>) getActualValue().keySet();
    }

    @Override
    public ImmutableSet<Map.Entry<K, V>> entrySet() {
        return (ImmutableSet<Map.Entry<K, V>>) getActualValue().entrySet();
    }

    @Override
    public ImmutableCollection<V> values() {
        return (ImmutableCollection<V>) getActualValue().values();
    }
}