All Downloads are FREE. Search and download functionalities are using the official Maven repository.

cn.nukkit.utils.collection.ConvertingMapWrapper Maven / Gradle / Ivy

Go to download

A Minecraft Bedrock Edition server software implementation made in Java from scratch which supports all new features.

There is a newer version: 1.6.0.1-PN
Show newest version
/*
 * https://PowerNukkit.org - The Nukkit you know but Powerful!
 * Copyright (C) 2020  José Roberto de Araújo Júnior
 *
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see .
 */

package cn.nukkit.utils.collection;

import cn.nukkit.api.PowerNukkitOnly;
import cn.nukkit.api.Since;

import java.util.AbstractMap;
import java.util.Map;
import java.util.Objects;
import java.util.Set;
import java.util.function.Function;

/**
 * @author joserobjr
 * @since 2020-10-05
 */
@PowerNukkitOnly
@Since("1.4.0.0-PN")
public class ConvertingMapWrapper extends AbstractMap {
    private final Function converter;
    private final Function reverseConverter;
    private final Map proxied;
    private final ConvertingSetWrapper, Entry> entrySet;
    private final boolean convertReturnedNulls;

    public ConvertingMapWrapper(Map proxied, Function converter, Function reverseConverter, boolean convertReturnedNulls) {
        this.proxied = proxied;
        this.converter = converter;
        this.reverseConverter = reverseConverter;
        this.convertReturnedNulls = convertReturnedNulls;
        entrySet = new ConvertingSetWrapper<>(
                proxied.entrySet(),
                entry -> new EntryWrapper<>(entry, reverseConverter, converter),
                entry -> new EntryWrapper<>(entry, converter, reverseConverter)
        );
    }

    public ConvertingMapWrapper(Map proxied, Function converter, Function reverseConverter) {
        this(proxied, converter, reverseConverter, false);
    }
    

    @Override
    public Set> entrySet() {
        return entrySet;
    }

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

    @Override
    public boolean isEmpty() {
        return proxied.isEmpty();
    }

    @Override
    public boolean containsValue(Object value) {
        Function uncheckedConverter = converter;
        Object converted = uncheckedConverter.apply(value);
        return proxied.containsValue(converted);
    }

    @Override
    public boolean containsKey(Object key) {
        return proxied.containsKey(key);
    }

    @Override
    public V1 get(Object key) {
        V2 found = proxied.get(key);
        if (found == null && !convertReturnedNulls) {
            return null;
        }
        return reverseConverter.apply(found);
    }

    @Override
    public V1 put(K key, V1 value) {
        V2 removed = proxied.put(key, converter.apply(value));
        if (removed == null && !convertReturnedNulls) {
            return null;
        }
        return reverseConverter.apply(removed);
    }

    @Override
    public V1 remove(Object key) {
        V2 removed = proxied.remove(key);
        if (removed == null && !convertReturnedNulls) {
            return null;
        }
        return reverseConverter.apply(removed);
    }

    @Override
    public boolean remove(Object key, Object value) {
        Function uncheckedConverter = converter;
        Object converted = uncheckedConverter.apply(value);
        return proxied.remove(key, converted);
    }

    @Override
    public void clear() {
        proxied.clear();
    }

    @Override
    public Set keySet() {
        return proxied.keySet();
    }

    private class EntryWrapper implements Map.Entry {
        private final Function entryConverter;
        private final Function entryReverseConverter;
        private final Map.Entry entryProxied;

        public EntryWrapper(Entry entryProxied, Function entryConverter, Function entryReverseConverter) {
            this.entryConverter = entryConverter;
            this.entryReverseConverter = entryReverseConverter;
            this.entryProxied = entryProxied;
        }

        @Override
        public K getKey() {
            return entryProxied.getKey();
        }

        @Override
        public E1 getValue() {
            E2 value = entryProxied.getValue();
            if (value == null && !convertReturnedNulls) {
                return null;
            }
            return entryReverseConverter.apply(value);
        }

        @Override
        public E1 setValue(E1 value) {
            E2 newValue = entryConverter.apply(value);
            E2 oldValue = entryProxied.setValue(newValue);
            if (oldValue == null && !convertReturnedNulls) {
                return null;
            }
            return entryReverseConverter.apply(oldValue);
        }

        @Override
        public String toString() {
            return entryProxied.getKey()+"="+getValue();
        }

        @Override
        public boolean equals(Object o) {
            if (o == this) {
                return true;
            }
            if (o instanceof Map.Entry) {
                Map.Entry e = (Map.Entry)o;
                return Objects.equals(entryProxied.getKey(), e.getKey()) && Objects.equals(getValue(), e.getValue());
            }
            return false;
        }

        @Override
        public int hashCode() {
            return Objects.hashCode(entryProxied.getKey()) ^ Objects.hashCode(getValue());
        }
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy