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

net.morimekta.config.format.PropertiesConfigFormat Maven / Gradle / Ivy

There is a newer version: 2.7.1
Show newest version
package net.morimekta.config.format;

import net.morimekta.config.Config;
import net.morimekta.config.ConfigException;
import net.morimekta.config.Sequence;
import net.morimekta.config.Value;

import java.io.IOException;
import java.io.InputStream;
import java.io.OutputStream;
import java.util.Properties;

/**
 * Format config into properties objects or files.
 */
public class PropertiesConfigFormat implements ConfigFormat {
    public PropertiesConfigFormat() {
    }

    @Override
    public void format(OutputStream out, Config config) throws IOException, ConfigException {
        Properties properties = format(config);
        properties.store(out, " generated by " + getClass().getName());
    }

    public Properties format(Config config) throws IOException, ConfigException {
        Properties properties = new Properties();
        formatTo("", config, properties);
        return properties;
    }

    @Override
    public Config parse(InputStream in) throws ConfigException, IOException {
        throw new IllegalStateException("not implemented");
    }

    // --- INTERNAL ---
    private void formatTo(String prefix, Config config, Properties properties) {
        for (Config.Entry entry : config.entrySet()) {
            String key = makeKey(prefix, entry.key);
            switch (entry.type) {
                case BOOLEAN:
                case NUMBER:
                case STRING:
                    properties.setProperty(key, entry.value.toString());
                    break;
                case SEQUENCE:
                    formatTo(key, (Sequence) entry.value, properties);
                    break;
                case CONFIG:
                    formatTo(key, (Config) entry.value, properties);
                    break;
            }
        }
    }

    private void formatTo(String prefix, Sequence sequence, Properties properties) {
        int i = 0;
        for (Value value : sequence.asValueArray()) {
            String key = makeKey(prefix, Integer.toString(i));
            switch (value.type) {
                case BOOLEAN:
                case NUMBER:
                case STRING:
                    properties.setProperty(key, value.value.toString());
                    break;
                case SEQUENCE:
                    formatTo(key, (Sequence) value.value, properties);
                    break;
                case CONFIG:
                    formatTo(key, (Config) value.value, properties);
                    break;
            }
            ++i;
        }
    }

    private String makeKey(String prefix, String key) {
        if (prefix.length() > 0) {
            return String.format("%s.%s", prefix, key);
        }
        return key;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy