net.morimekta.config.source.FileConfigSupplier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of config-util Show documentation
Show all versions of config-util Show documentation
Configuration Utilities.
NOTE: This module is deprecated and will be removed at the end of the
v2.x versions of the utilities. Preferred config system after that is
either to use true type-safe config with `net.morimekta.providence:providence-config`
or to use a simple JSON or YAML library or java properties files. The
semi-typesafe layered config did not really solve the problems I had
hoped it would, and in essence this was just a helper for merging maps
and getting pre-cast values out of it.
/*
* Copyright (c) 2016, Stein Eldar Johnsen
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 net.morimekta.config.source;
import net.morimekta.config.Config;
import net.morimekta.config.ConfigException;
import net.morimekta.config.format.ConfigParser;
import com.google.common.base.MoreObjects;
import java.io.BufferedInputStream;
import java.io.File;
import java.io.FileInputStream;
import java.io.IOException;
import java.util.concurrent.atomic.AtomicReference;
import java.util.function.Supplier;
import static net.morimekta.config.util.ConfigUtil.getParserForName;
/**
* File source for config objects.
*/
public class FileConfigSupplier implements Supplier {
private final File configFile;
private final ConfigParser parser;
private final AtomicReference config;
public FileConfigSupplier(File configFile) {
this(configFile, getParserForName(configFile.getName()));
}
public FileConfigSupplier(File configFile, ConfigParser format) {
this.configFile = configFile;
this.parser = format;
this.config = new AtomicReference<>(loadInternal());
}
@Override
public Config get() {
return config.get();
}
@Override
public String toString() {
return MoreObjects.toStringHelper(this)
.add("file", configFile)
.toString();
}
/**
* Reload the config value.
*/
public void reload() {
this.config.set(loadInternal());
}
private Config loadInternal() {
try (FileInputStream fis = new FileInputStream(configFile);
BufferedInputStream bis = new BufferedInputStream(fis)) {
return parser.parse(bis);
} catch (IOException e) {
throw new ConfigException(e, e.getMessage());
}
}
}