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

de.cubeisland.engine.configuration.MultiConfiguration Maven / Gradle / Ivy

/**
 * The MIT License (MIT)
 *
 * Copyright (c) 2013 Anselm Brehme, Phillip Schichtel
 *
 * 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 de.cubeisland.engine.configuration;

import de.cubeisland.engine.configuration.codec.MultiConfigurationCodec;

import java.io.File;
import java.io.FileInputStream;
import java.io.FileNotFoundException;
import java.io.IOException;
import java.io.InputStream;
import java.lang.reflect.Field;
import java.util.HashSet;

/**
 * This Configuration can have child-configs.
 * A child config will ignore default-set data and instead use the data saved in the parent config
 * Any data set in the configuration file will stay in the file. Even if the data is equal to the parents data.
 */
public class MultiConfiguration extends Configuration
{
    protected MultiConfiguration parent = null;

    /**
     * Saves the fields that got inherited from the parent-configuration
     */
    private HashSet inheritedFields;

    /**
     * Saves this configuration as a child-configuration of the set parent-configuration
     */
    private void saveChild()
    {
        this.saveChild(this.getFile());
    }

    private void saveChild(File target)
    {
        if (this.getCodec() == null)
        {
            throw new IllegalStateException("A configuration cannot be saved without a valid Codec!");
        }
        this.getCodec().saveChildConfig(this.parent, this, target);
        this.onSaved(target);
    }

    /**
     * Loads and saves a child-configuration from given path
     *
     * @param sourceFile the path to the file
     * @param         the ConfigurationType
     *
     * @return the loaded child-configuration
     */
    @SuppressWarnings("unchecked")
    public  T loadChild(File sourceFile)
    {
        MultiConfiguration childConfig;
        try
        {
            childConfig = Configuration.create(this.getClass());
            childConfig.inheritedFields = new HashSet();
            childConfig.setFile(sourceFile);
            childConfig.setParentConfiguration(this);
            childConfig.reload(true);
            return (T)childConfig;
        }
        catch (Exception ex)
        {
            throw new IllegalStateException("Could not load ChildConfig!", ex);
        }
    }

    /**
     * Sets the parent-configuration for this configuration
     * 

if the parent-configuration is null * * @param parentConfiguration the parent-configuration (can be null) */ public void setParentConfiguration(MultiConfiguration parentConfiguration) { if (parentConfiguration != null) { if (!this.getClass().equals(parentConfiguration.getClass())) { throw new IllegalArgumentException("Parent and child-configuration have to be the same type of configuration!"); } } this.parent = parentConfiguration; } @Override public boolean reload(boolean save) { if (this.isChildConfiguration()) // This is a child-config! { boolean result = false; try { InputStream is = new FileInputStream(this.getFile()); try { this.showLoadErrors(this.getCodec().loadChildConfig(this, is)); } catch (InvalidConfigurationException e) { throw e; } catch (RuntimeException e) { throw new InvalidConfigurationException("Could not load configuration from file!", e); } finally { try { is.close(); } catch (IOException ignored) {} } this.onLoaded(this.getFile()); } catch (FileNotFoundException e) // file not found load from parent & save child { result = true; this.showLoadErrors(this.getCodec().loadChildConfig(this, null)); } if (save) { this.saveChild(); } return result; } else { return super.reload(save); } } @Override public void save(File target) { if (this.isChildConfiguration()) { this.saveChild(target); } else { super.save(target); } } /** * Gets the parent-configuration if given * * @return the parent-configuration or null */ public MultiConfiguration getParent() { return parent; } /** * Marks a field as being inherited from the parent configuration and thus not being saved * * @param field the inherited field */ public void addinheritedField(Field field) { this.inheritedFields.add(field); } /** * Marks a field as not being inherited from the parent configuration and thus saved into file * * @param field the not inherited field */ public void removeInheritedField(Field field) { this.inheritedFields.remove(field); } /** * Returns whether the given field-value was inherited from a parent-configuration * * @param field the field to check * * @return true if the field got inherited */ public boolean isInheritedField(Field field) { return inheritedFields.contains(field); } /** * Returns true if this configuration has a parent-configuration set * * @return true if this configuration has a parent-configuration set */ public boolean isChildConfiguration() { return this.parent != null; } }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy