com.hazelcast.config.UrlYamlConfig Maven / Gradle / Ivy
/*
* Copyright (c) 2008-2020, Hazelcast, Inc. All Rights Reserved.
*
* 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 com.hazelcast.config;
import com.hazelcast.logging.ILogger;
import com.hazelcast.logging.Logger;
import java.io.IOException;
import java.io.InputStream;
import java.net.MalformedURLException;
import java.net.URL;
import java.util.Properties;
import static com.hazelcast.internal.util.Preconditions.checkTrue;
/**
* A {@link Config} which is loaded using some url pointing to a Hazelcast YAML file.
*/
public class UrlYamlConfig extends Config {
private static final ILogger LOGGER = Logger.getLogger(UrlYamlConfig.class);
/**
* Creates new Config which is loaded from the given url and uses the System.properties to replace
* variables in the YAML.
*
* @param url the url pointing to the Hazelcast YAML file
* @throws MalformedURLException if the url is not correct
* @throws IOException if something fails while loading the resource
* @throws InvalidConfigurationException if the YAML content is invalid
*/
public UrlYamlConfig(String url) throws IOException {
this(new URL(url));
}
/**
* Creates new Config which is loaded from the given url.
*
* @param url the url pointing to the Hazelcast YAML file
* @param properties the properties for replacing variables
* @throws IllegalArgumentException if properties is {@code null}
* @throws MalformedURLException if the url is not correct
* @throws IOException if something fails while loading the resource
* @throws InvalidConfigurationException if the YAML content is invalid
*/
public UrlYamlConfig(String url, Properties properties) throws IOException {
this(new URL(url), properties);
}
/**
* Creates new Config which is loaded from the given url and uses the System.properties to replace
* variables in the YAML.
*
* @param url the URL pointing to the Hazelcast YAML file
* @throws IOException if something fails while loading the resource
* @throws IllegalArgumentException if the url is {@code null}
* @throws InvalidConfigurationException if the YAML content is invalid
*/
public UrlYamlConfig(URL url) throws IOException {
this(url, System.getProperties());
}
/**
* Creates new Config which is loaded from the given url.
*
* @param url the URL pointing to the Hazelcast YAML file
* @param properties the properties for replacing variables
* @throws IOException if something fails while loading the resource
* @throws IllegalArgumentException if the url or properties is {@code null}
* @throws InvalidConfigurationException if the YAML content is invalid
*/
public UrlYamlConfig(URL url, Properties properties) throws IOException {
checkTrue(url != null, "url can't be null");
checkTrue(properties != null, "properties can't be null");
LOGGER.info("Configuring Hazelcast from '" + url.toString() + "'.");
InputStream in = url.openStream();
new YamlConfigBuilder(in).setProperties(properties).build(this);
}
}