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

ninja.leaping.configurate.MapConfigValue Maven / Gradle / Ivy

There is a newer version: 3.7.1
Show newest version
/**
 * Configurate
 * Copyright (C) zml and Configurate contributors
 *
 * 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 ninja.leaping.configurate;

import com.google.common.base.Objects;

import java.util.LinkedHashMap;
import java.util.Map;
import java.util.concurrent.ConcurrentMap;

class MapConfigValue extends ConfigValue {
    volatile ConcurrentMap values;

    public MapConfigValue(SimpleConfigurationNode holder) {
        super(holder);
        values = newMap();
    }

    @Override
    public Object getValue() {
        Map value = new LinkedHashMap<>();
        for (Map.Entry ent : values.entrySet()) {
            value.put(ent.getKey(), ent.getValue().getValue());
        }
        return value;
    }

    @Override
    public void setValue(Object value) {
        if (value instanceof Map) {
            final ConcurrentMap newValue = newMap();
            for (Map.Entry ent : ((Map) value).entrySet()) {
                if (ent.getValue() == null) {
                    continue;
                }
                SimpleConfigurationNode child = holder.createNode(ent.getKey());
                newValue.put(ent.getKey(), child);
                child.attached = true;
                child.setValue(ent.getValue());
            }
            synchronized (this) {
                ConcurrentMap oldMap = this.values;
                this.values = newValue;
                detachChildren(oldMap);
            }
        } else {
            throw new IllegalArgumentException("Map configuration values can only be set to values of type Map");
        }

    }

    @Override
    SimpleConfigurationNode putChild(Object key, SimpleConfigurationNode value) {
        if (value == null) {
            return values.remove(key);
        } else {
            return values.put(key, value);
        }
    }

    @Override
    SimpleConfigurationNode putChildIfAbsent(Object key, SimpleConfigurationNode value) {
        if (value == null) {
            return values.remove(key);
        } else {
            return values.putIfAbsent(key, value);
        }
    }

    @Override
    public SimpleConfigurationNode getChild(Object key) {
        return values.get(key);
    }

    @Override
    public Iterable iterateChildren() {
        return values.values();
    }

    private void detachChildren(Map map) {
        for (SimpleConfigurationNode value : map.values()) {
            value.attached = false;
            value.clear();
        }
    }

    @Override
    public void clear() {
        synchronized (this) {
            ConcurrentMap oldMap = this.values;
            this.values = newMap();
            detachChildren(oldMap);
        }
    }

    @SuppressWarnings("unchecked")
    private ConcurrentMap newMap() {
        return holder.getOptions().getMapFactory().create();
    }

    @Override
    public boolean equals(Object o) {
        if (this == o) {
            return true;
        }
        if (o == null || getClass() != o.getClass()) {
            return false;
        }
        MapConfigValue that = (MapConfigValue) o;
        return Objects.equal(values, that.values);
    }

    @Override
    public int hashCode() {
        return Objects.hashCode(values);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy