io.knotx.launcher.SystemPropsConfiguration Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of knotx-core Show documentation
Show all versions of knotx-core Show documentation
Core Knot.x module consisting of Server, Repositories, Splitter, Assembler and
Gateway.
/*
* Copyright (C) 2016 Cognifide Limited
*
* 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 io.knotx.launcher;
import com.google.common.collect.Maps;
import io.vertx.core.json.JsonObject;
import io.vertx.core.logging.Logger;
import io.vertx.core.logging.LoggerFactory;
import java.io.File;
import java.util.Map;
import java.util.Map.Entry;
import java.util.stream.Collectors;
import org.apache.commons.io.FileUtils;
import org.apache.commons.lang3.StringUtils;
public class SystemPropsConfiguration {
private static final Logger LOGGER = LoggerFactory.getLogger(SystemPropsConfiguration.class);
private Map envConfig = Maps.newHashMap();
public SystemPropsConfiguration(String identifier) {
envConfig = System.getProperties()
.entrySet()
.stream()
.filter(entry -> onlyPropertyForIdentifier(entry, identifier))
.collect(Collectors.toMap(
entry -> StringUtils.substringAfter((String) entry.getKey(), identifier + "."),
entry -> new Value((String) entry.getValue())
));
}
private boolean onlyPropertyForIdentifier(Entry