org.opennms.pris.config.InstanceApacheConfiguration.java Source code

Java tutorial

Introduction

Here is the source code for org.opennms.pris.config.InstanceApacheConfiguration.java

Source

/**
 * *****************************************************************************
 * This file is part of OpenNMS(R).
 *
 * Copyright (C) 2014 The OpenNMS Group, Inc. OpenNMS(R) is Copyright (C) 1999-2014 The OpenNMS Group, Inc.
 *
 * OpenNMS(R) is a registered trademark of The OpenNMS Group, Inc.
 *
 * OpenNMS(R) 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.
 *
 * OpenNMS(R) 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 OpenNMS(R). If not, see: http://www.gnu.org/licenses/
 *
 * For more information contact: OpenNMS(R) Licensing <license@opennms.org>
 * http://www.opennms.org/ http://www.opennms.com/ *****************************************************************************
 */
package org.opennms.pris.config;

import java.nio.file.Files;
import java.nio.file.Path;
import org.apache.commons.configuration.ConfigurationException;
import org.apache.commons.configuration.reloading.FileChangedReloadingStrategy;
import org.opennms.pris.api.InstanceConfiguration;

public class InstanceApacheConfiguration extends AbstractApacheConfiguration implements InstanceConfiguration {

    private static org.apache.commons.configuration.Configuration createConfig(final Path basePath) {
        final Path path = basePath.resolve("requisition.properties");

        // Raise wrapped file not found exception if the config file does not exist
        if (!Files.exists(path)) {
            throw new RuntimeException("Config file not found: " + path);
        }

        // Load system and file properties
        try {
            return new org.apache.commons.configuration.PropertiesConfiguration(path.toFile()) {
                {
                    setThrowExceptionOnMissing(true);
                    setReloadingStrategy(new FileChangedReloadingStrategy());
                }
            };

        } catch (final ConfigurationException ex) {
            throw new RuntimeException(ex);
        }
    }

    private final Path basePath;

    private final String instance;

    public InstanceApacheConfiguration(final Path basePath, final String instance) {
        this(basePath, instance, createConfig(basePath));
    }

    private InstanceApacheConfiguration(final Path basePath, final String instance,
            final org.apache.commons.configuration.Configuration config) {
        super(config);

        this.basePath = basePath;
        this.instance = instance;
    }

    @Override
    public Path getBasePath() {
        return this.basePath;
    }

    @Override
    public String getInstanceIdentifier() {
        return this.instance;
    }

    @Override
    public InstanceConfiguration subset(final String prefix) {
        return new InstanceApacheConfiguration(this.basePath, this.instance, this.getConfig().subset(prefix));
    }
}