
org.joda.convert.StringConvert Maven / Gradle / Ivy
/*
* Copyright 2010-present Stephen Colebourne
*
* 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 org.joda.convert;
import java.lang.reflect.Constructor;
import java.lang.reflect.Method;
import java.lang.reflect.Modifier;
import java.time.ZoneId;
import java.util.Arrays;
import java.util.Optional;
import java.util.SimpleTimeZone;
import java.util.TimeZone;
import java.util.concurrent.ConcurrentHashMap;
import java.util.concurrent.ConcurrentMap;
import java.util.concurrent.CopyOnWriteArrayList;
import org.joda.convert.factory.BooleanArrayStringConverterFactory;
import org.joda.convert.factory.BooleanObjectArrayStringConverterFactory;
import org.joda.convert.factory.ByteObjectArrayStringConverterFactory;
import org.joda.convert.factory.CharObjectArrayStringConverterFactory;
import org.joda.convert.factory.NumericArrayStringConverterFactory;
import org.joda.convert.factory.NumericObjectArrayStringConverterFactory;
/**
* Manager for conversion to and from a {@code String}, acting as the main client interface.
*
* Support is provided for conversions based on the {@link StringConverter} interface
* or the {@link ToString} and {@link FromString} annotations.
*
* StringConvert is thread-safe with concurrent caches.
*/
public final class StringConvert {
// NOTE!
// There must be no references (direct or indirect) to RenameHandler
// This class must be loaded first to avoid horrid loops in class initialization
/**
* Errors in class initialization are hard to debug.
* Set -Dorg.joda.convert.debug=true on the command line to add extra logging to System.err
*/
static final boolean LOG;
static {
String log = null;
try {
log = System.getProperty("org.joda.convert.debug");
} catch (SecurityException ex) {
// ignore
}
LOG = "true".equalsIgnoreCase(log);
}
/**
* The cached null object. Ensure this is above public constants.
*/
private static final TypedStringConverter> CACHED_NULL = new TypedStringConverter<>() {
@Override
public String convertToString(Object object) {
return null;
}
@Override
public Object convertFromString(Class extends Object> cls, String str) {
return null;
}
@Override
public Class> getEffectiveType() {
return null;
}
};
/**
* An immutable global instance.
*
* This instance cannot be added to using {@link #register}, however annotated classes
* are picked up. To register your own converters, simply create an instance of this class.
*/
public static final StringConvert INSTANCE = new StringConvert();
/**
* The list of factories.
*/
private final CopyOnWriteArrayList factories = new CopyOnWriteArrayList<>();
/**
* The cache of converters.
*/
private final ConcurrentMap, TypedStringConverter>> registered = new ConcurrentHashMap<>();
/**
* The cache of from-strings.
*/
private final ConcurrentMap, TypedFromStringConverter>> fromStrings = new ConcurrentHashMap<>();
//-----------------------------------------------------------------------
/**
* Creates a new conversion manager including the extended standard set of converters.
*
* The returned converter is a new instance that includes additional converters:
*
* - JDK converters
*
- {@link NumericArrayStringConverterFactory}
*
- {@link NumericObjectArrayStringConverterFactory}
*
- {@link CharObjectArrayStringConverterFactory}
*
- {@link ByteObjectArrayStringConverterFactory}
*
- {@link BooleanArrayStringConverterFactory}
*
- {@link BooleanObjectArrayStringConverterFactory}
*
*
* The convert instance is mutable in a thread-safe manner.
* Converters may be altered at any time, including the JDK converters.
* It is strongly recommended to only alter the converters before performing
* actual conversions.
*
* @return the new converter, not null
* @since 1.5
*/
public static StringConvert create() {
return new StringConvert(true,
NumericArrayStringConverterFactory.INSTANCE,
NumericObjectArrayStringConverterFactory.INSTANCE,
CharObjectArrayStringConverterFactory.INSTANCE,
ByteObjectArrayStringConverterFactory.INSTANCE,
BooleanArrayStringConverterFactory.INSTANCE,
BooleanObjectArrayStringConverterFactory.INSTANCE);
}
//-----------------------------------------------------------------------
/**
* Creates a new conversion manager including the JDK converters.
*
* The convert instance is mutable in a thread-safe manner.
* Converters may be altered at any time, including the JDK converters.
* It is strongly recommended to only alter the converters before performing
* actual conversions.
*/
public StringConvert() {
this(true);
}
/**
* Creates a new conversion manager.
*
* The convert instance is mutable in a thread-safe manner.
* Converters may be altered at any time, including the JDK converters.
* It is strongly recommended to only alter the converters before performing
* actual conversions.
*
* If specified, the factories will be queried in the order specified.
*
* @param includeJdkConverters true to include the JDK converters
* @param factories optional array of factories to use, not null
*/
public StringConvert(boolean includeJdkConverters, StringConverterFactory... factories) {
if (factories == null) {
throw new IllegalArgumentException("StringConverterFactory array must not be null");
}
for (var factory : factories) {
if (factory == null) {
throw new IllegalArgumentException("StringConverterFactory array must not contain a null element");
}
}
if (includeJdkConverters) {
for (var conv : JDKStringConverter.values()) {
registered.put(conv.getEffectiveType(), conv);
}
registered.put(Boolean.TYPE, JDKStringConverter.BOOLEAN);
registered.put(Byte.TYPE, JDKStringConverter.BYTE);
registered.put(Short.TYPE, JDKStringConverter.SHORT);
registered.put(Integer.TYPE, JDKStringConverter.INTEGER);
registered.put(Long.TYPE, JDKStringConverter.LONG);
registered.put(Float.TYPE, JDKStringConverter.FLOAT);
registered.put(Double.TYPE, JDKStringConverter.DOUBLE);
registered.put(Character.TYPE, JDKStringConverter.CHARACTER);
tryRegisterGuava();
tryRegisterZoneSubclasses();
tryRegisterThreeTenBackport();
}
if (factories.length > 0) {
this.factories.addAll(Arrays.asList(factories));
}
this.factories.add(AnnotationStringConverterFactory.INSTANCE);
if (includeJdkConverters) {
this.factories.add(EnumStringConverterFactory.INSTANCE);
this.factories.add(TypeStringConverterFactory.INSTANCE);
}
}
/**
* Tries to register the Guava converters class.
*/
private void tryRegisterGuava() {
try {
var conv = new TypeTokenStringConverter();
registered.put(conv.getEffectiveType(), conv);
} catch (Throwable ex) {
if (LOG) {
System.err.println("Joda-Convert: Unable to register Guava: " + ex);
}
}
}
/**
* Tries to register the subclasses of TimeZone and ZoneId.
* Try various things, doesn't matter if the map entry gets overwritten.
*/
private void tryRegisterZoneSubclasses() {
try {
registered.put(SimpleTimeZone.class, JDKStringConverter.TIME_ZONE);
} catch (Throwable ex) {
if (LOG) {
System.err.println("Joda-Convert: Error registering SimpleTimeZone: " + ex);
}
}
try {
var zone = TimeZone.getDefault();
registered.put(zone.getClass(), JDKStringConverter.TIME_ZONE);
} catch (Throwable ex) {
if (LOG) {
System.err.println("Joda-Convert: Error registering TimeZone.getDefault(): " + ex);
}
}
try {
var zone = TimeZone.getTimeZone("Europe/London");
registered.put(zone.getClass(), JDKStringConverter.TIME_ZONE);
} catch (Throwable ex) {
if (LOG) {
System.err.println("Joda-Convert: Error registering TimeZone.getTimeZone(zoneId): " + ex);
}
}
try {
var zone = ZoneId.of("Europe/London");
registered.put(zone.getClass(), JDKStringConverter.ZONE_ID);
} catch (Throwable ex) {
if (LOG) {
System.err.println("Joda-Convert: Error registering ZoneId.of(zoneId): " + ex);
}
}
}
/**
* Tries to register ThreeTen-Backport classes.
*/
private void tryRegisterThreeTenBackport() {
try {
for (var conv : ThreeTenBpStringConverter.values()) {
registered.put(conv.getEffectiveType(), conv);
}
var zone = org.threeten.bp.ZoneId.of("Europe/London");
registered.put(zone.getClass(), ThreeTenBpStringConverter.ZONE_ID);
} catch (Throwable ex) {
if (LOG) {
System.err.println("Joda-Convert: Unable to register ThreeTen-Backport: " + ex);
}
}
}
//-----------------------------------------------------------------------
/**
* Converts the specified object to a {@code String}.
*
* This uses {@link #findConverter} to provide the converter.
*
* @param object the object to convert, null returns null
* @return the converted string, may be null
* @throws RuntimeException (or subclass) if unable to convert
*/
public String convertToString(Object object) {
if (object == null) {
return null;
}
var cls = object.getClass();
var conv = findConverterNoGenerics(cls);
return conv.convertToString(object);
}
/**
* Converts the specified object to a {@code String}.
*
* This uses {@link #findConverter} to provide the converter.
* The class can be provided to select a more specific converter.
*
* @param cls the class to convert from, not null
* @param object the object to convert, null returns null
* @return the converted string, may be null
* @throws RuntimeException (or subclass) if unable to convert
*/
public String convertToString(Class> cls, Object object) {
if (object == null) {
return null;
}
var conv = findConverterNoGenerics(cls);
return conv.convertToString(object);
}
/**
* Converts the specified object from a {@code String}.
*
* This uses {@link #findFromStringConverter} to provide the converter.
*
* @param the type to convert to
* @param cls the class to convert to, not null
* @param str the string to convert, null returns null
* @return the converted object, may be null
* @throws RuntimeException (or subclass) if unable to convert
*/
public T convertFromString(Class cls, String str) {
if (str == null) {
return null;
}
var conv = findFromStringConverter(cls);
return conv.convertFromString(cls, str);
}
//-----------------------------------------------------------------------
/**
* Checks if a suitable converter exists for the type.
*
* This performs the same checks as the {@code findConverter} methods.
* Calling this before {@code findConverter} will cache the converter.
*
* Note that all exceptions, including developer errors are caught and hidden.
*
* @param cls the class to find a converter for, null returns false
* @return true if convertible
* @since 1.5
*/
public boolean isConvertible(Class> cls) {
try {
return cls != null && findConverterQuiet(cls) != null;
} catch (RuntimeException ex) {
return false;
}
}
/**
* Finds a suitable converter for the type.
*
* This returns an instance of {@code TypedStringConverter} for the specified class.
* This is designed for user code where the {@code Class} object generics is known.
*
* The search algorithm first searches the registered converters.
* It then searches for {@code ToString} and {@code FromString} annotations on the
* specified class, class hierarchy or immediate parent interfaces.
* Finally, it handles {@code Enum} instances.
*
* The returned converter may be queried for the effective type of the conversion.
* This can be used to find the best type to send in a serialized form.
*
* Unusually for a method returning {@code Optional}, the method can also throw an exception.
* An empty result indicates that there is no converter for the specified class.
* An exception indicates there is a developer error in one of the converter factories.
*
* @param the type of the converter
* @param cls the class to find a converter for, not null
* @return the converter, empty if not found
* @throws IllegalArgumentException if the input class is null
* @throws RuntimeException (or subclass) if there is a developer error in one of the converter factories
* @since 3.0
*/
public Optional> converterFor(Class cls) {
// NOTE: ideally this method would have been called findConverter(), but that method name is already in use
return Optional.ofNullable(findConverterQuiet(cls));
}
/**
* Finds a suitable from-string converter for the type.
*
* This returns an instance of {@code FromStringConverter} for the specified class.
* In most cases this is identical to {@link #findConverter(Class)}.
* However, it is permitted to have a {@code FromString} annotation without a {@code ToString} annotation,
* and this method handles that use case.
*
* Unusually for a method returning {@code Optional}, the method can also throw an exception.
* An empty result indicates that there is no converter for the specified class.
* An exception indicates there is a developer error in one of the converter factories.
*
* @param the type of the converter
* @param cls the class to find a converter for, not null
* @return the converter, not null
* @throws IllegalArgumentException if the input class is null
* @throws RuntimeException (or subclass) if there is a developer error in one of the converters
* @since 3.0
*/
@SuppressWarnings("unchecked")
public Optional> fromStringConverterFor(Class cls) {
var converter = findConverterQuiet(cls);
if (converter == null) {
var fromStringConverter = (TypedFromStringConverter) fromStrings.get(cls);
return fromStringConverter == CACHED_NULL ? Optional.empty() : Optional.of(fromStringConverter);
}
return Optional.of(converter);
}
//-------------------------------------------------------------------------
/**
* Finds a suitable converter for the type.
*
* This returns an instance of {@code StringConverter} for the specified class.
* This is designed for user code where the {@code Class} object generics is known.
*
* The search algorithm first searches the registered converters.
* It then searches for {@code ToString} and {@code FromString} annotations on the
* specified class, class hierarchy or immediate parent interfaces.
* Finally, it handles {@code Enum} instances.
*
* @param the type of the converter
* @param cls the class to find a converter for, not null
* @return the converter, not null
* @throws RuntimeException (or subclass) if no converter found
*/
public StringConverter findConverter(Class cls) {
return findTypedConverter(cls);
}
/**
* Finds a suitable converter for the type with open generics.
*
* This returns an instance of {@code StringConverter} for the specified class.
* This is designed for framework usage where the {@code Class} object generics are unknown'?'.
* The returned type is declared with {@code Object} instead of '?' to
* allow the {@link ToStringConverter} to be invoked.
*
* The search algorithm first searches the registered converters.
* It then searches for {@code ToString} and {@code FromString} annotations on the
* specified class, class hierarchy or immediate parent interfaces.
* Finally, it handles {@code Enum} instances.
*
* @param cls the class to find a converter for, not null
* @return the converter, using {@code Object} to avoid generics, not null
* @throws RuntimeException (or subclass) if no converter found
* @since 1.5
*/
public StringConverter