liquibase.configuration.ConfigurationValueConverter Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of liquibase-core Show documentation
Show all versions of liquibase-core Show documentation
Liquibase is a tool for managing and executing database changes.
package liquibase.configuration;
import liquibase.Scope;
import java.util.logging.Level;
/**
* Used by {@link ConfigurationDefinition#getCurrentConfiguredValue()} to translate whatever object type a {@link ConfigurationValueProvider} is returning
* into the object type the definition uses.
*/
public interface ConfigurationValueConverter {
/**
* Standard value -> java.util.logging.Level converter
*/
ConfigurationValueConverter LOG_LEVEL = value -> {
if (value == null) {
return null;
}
if (value instanceof Level) {
return (Level) value;
}
String stringLevel = String.valueOf(value).toUpperCase();
if (stringLevel.equals("DEBUG")) {
return Level.FINE;
} else if (stringLevel.equals("WARN")) {
return Level.WARNING;
} else if (stringLevel.equals("ERROR")) {
return Level.SEVERE;
}
try {
return Level.parse(stringLevel);
} catch (IllegalArgumentException e) {
Scope.getCurrentScope().getUI().sendErrorMessage("WARNING: Unknown log level " + stringLevel + ". Defaulting to 'INFO'");
return Level.INFO;
}
};
ConfigurationValueConverter STRING = value -> {
if (value == null) {
return null;
}
return String.valueOf(value);
};
ConfigurationValueConverter CLASS = value -> {
if (value == null) {
return null;
}
try {
return Class.forName(String.valueOf(value));
} catch (ClassNotFoundException e) {
throw new IllegalArgumentException("Cannot instantiate "+value+": "+e.getMessage(), e);
}
};
/**
* Converts an arbitrary object into the correct type.
* Implementations should be able to handle any type passed them, often types by calling toString() on the incoming value and parsing the string.
* Normally, a null value will be returned as a null value, but that is up to the implementation.
*
* @throws IllegalArgumentException if the value cannot be parsed or is an invalid value.
*/
DataType convert(Object value) throws IllegalArgumentException;
}