package io.dropwizard.configuration;
import io.dropwizard.util.ByteStreams;
import java.io.ByteArrayInputStream;
import java.io.IOException;
import java.io.InputStream;
import java.nio.charset.StandardCharsets;
import org.apache.commons.text.StringSubstitutor;
import static java.util.Objects.requireNonNull;
A delegating ConfigurationSourceProvider
which replaces variables in the underlying configuration source according to the rules of a custom StringSubstitutor
. /**
* A delegating {@link ConfigurationSourceProvider} which replaces variables in the underlying configuration
* source according to the rules of a custom {@link org.apache.commons.text.StringSubstitutor}.
*/
public class SubstitutingSourceProvider implements ConfigurationSourceProvider {
private final ConfigurationSourceProvider delegate;
private final StringSubstitutor substitutor;
Create a new instance.
Params: - delegate – The underlying
ConfigurationSourceProvider
. - substitutor – The custom
StringSubstitutor
implementation.
/**
* Create a new instance.
*
* @param delegate The underlying {@link io.dropwizard.configuration.ConfigurationSourceProvider}.
* @param substitutor The custom {@link org.apache.commons.text.StringSubstitutor} implementation.
*/
public SubstitutingSourceProvider(ConfigurationSourceProvider delegate, StringSubstitutor substitutor) {
this.delegate = requireNonNull(delegate);
this.substitutor = requireNonNull(substitutor);
}
{@inheritDoc}
/**
* {@inheritDoc}
*/
@Override
public InputStream open(String path) throws IOException {
try (InputStream in = delegate.open(path);) {
final String config = new String(ByteStreams.toByteArray(in), StandardCharsets.UTF_8);
final String substituted = substitutor.replace(config);
return new ByteArrayInputStream(substituted.getBytes(StandardCharsets.UTF_8));
}
}
}