org.eclipse.rdf4j.rio.RioConfig Maven / Gradle / Ivy
/*******************************************************************************
* Copyright (c) 2015 Eclipse RDF4J contributors, Aduna, and others.
*
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Distribution License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/org/documents/edl-v10.php.
*
* SPDX-License-Identifier: BSD-3-Clause
*******************************************************************************/
package org.eclipse.rdf4j.rio;
import java.io.Serializable;
import java.util.Objects;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import org.eclipse.rdf4j.rio.helpers.RioConfigurationException;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
/**
* Superclass for {@link ParserConfig} and {@link WriterConfig}.
*
* A RioConfig is a container for several {@link RioSetting} objects, each of which has a default value. You can
* override the default value for a {@link RioSetting} in one of two ways:
*
* - You can programmatically set its value using {@link RioConfig#set(RioSetting, Object)}
* - You can set a Java system property (e.g. by means of a
-D
jvm command line switch). The property
* name should corresponds to the {@link RioSetting#getKey() key} of the setting. Note that this method is not supported
* by every type of {@link RioSetting}: boolean values, strings, and numeric (long) values are supported, but more
* complex types are not
*
*
* @author Peter Ansell
* @see RioSetting
*/
public class RioConfig implements Serializable {
/**
*
*/
private static final long serialVersionUID = 2714L;
/**
* A map containing mappings from settings to their values.
*/
protected final ConcurrentMap, Object> settings = new ConcurrentHashMap<>();
/**
* A map containing mappings from settings to system properties that have been discovered since the last call to
* {@link #useDefaults()}.
*/
protected final ConcurrentMap, Object> systemPropertyCache = new ConcurrentHashMap<>();
protected final Logger log = LoggerFactory.getLogger(this.getClass());
/**
*
*/
public RioConfig() {
super();
}
/**
* Return the value for a given {@link RioSetting} or the default value if it has not been set.
*
* @param setting The {@link RioSetting} to fetch a value for.
* @return The value for the parser setting, or the default value if it is not set.
*/
@SuppressWarnings("unchecked")
public T get(RioSetting setting) {
Object result = settings.get(setting);
if (result == null) {
result = systemPropertyCache.get(setting);
}
if (result == null) {
String stringRepresentation = System.getProperty(setting.getKey());
if (stringRepresentation != null) {
try {
T typesafeSystemProperty = setting.convert(stringRepresentation);
systemPropertyCache.put((RioSetting