![JAR search and dependency download from the Maven repository](/logo.png)
org.apache.juneau.BeanPropertyMeta Maven / Gradle / Ivy
// ***************************************************************************************************************************
// * Licensed to the Apache Software Foundation (ASF) under one or more contributor license agreements. See the NOTICE file *
// * distributed with this work for additional information regarding copyright ownership. The ASF licenses this file *
// * to you 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.apache.juneau;
import static org.apache.juneau.common.internal.StringUtils.*;
import static org.apache.juneau.common.internal.ThrowableUtils.*;
import static org.apache.juneau.internal.ArrayUtils.*;
import static org.apache.juneau.internal.ClassUtils.*;
import static org.apache.juneau.internal.CollectionUtils.*;
import static org.apache.juneau.internal.ObjectUtils.*;
import java.lang.annotation.*;
import java.lang.reflect.*;
import java.net.*;
import java.net.URI;
import java.util.*;
import java.util.function.*;
import org.apache.juneau.annotation.*;
import org.apache.juneau.collections.*;
import org.apache.juneau.cp.*;
import org.apache.juneau.internal.*;
import org.apache.juneau.parser.*;
import org.apache.juneau.reflect.*;
import org.apache.juneau.serializer.*;
import org.apache.juneau.swap.*;
import org.apache.juneau.swaps.*;
/**
* Contains metadata about a bean property.
*
*
* Contains information such as type of property (e.g. field/getter/setter), class type of property value, and whether
* any transforms are associated with this property.
*
*
* Developers will typically not need access to this class. The information provided by it is already exposed through
* several methods on the {@link BeanMap} API.
*
*
See Also:
*
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
public final class BeanPropertyMeta implements Comparable {
final BeanMeta> beanMeta; // The bean that this property belongs to.
private final BeanContext beanContext; // The context that created this meta.
private final String name; // The name of the property.
private final Field field; // The bean property field (if it has one).
private final Field innerField; // The bean property field (if it has one).
private final Method getter, setter, extraKeys; // The bean property getter and setter.
private final boolean isUri; // True if this is a URL/URI or annotated with @URI.
private final boolean isDyna, isDynaGetterMap; // This is a dyna property (i.e. name="*")
private final ClassMeta>
rawTypeMeta, // The real class type of the bean property.
typeMeta; // The transformed class type of the bean property.
private final String[] properties; // The value of the @Beanp(properties) annotation.
private final ObjectSwap swap; // ObjectSwap defined only via @Beanp annotation.
private final BeanRegistry beanRegistry;
private final Object overrideValue; // The bean property value (if it's an overridden delegate).
private final BeanPropertyMeta delegateFor; // The bean property that this meta is a delegate for.
private final boolean canRead, canWrite, readOnly, writeOnly;
private final int hashCode;
/**
* Creates a builder for {@link #BeanPropertyMeta} objects.
*
* @param beanMeta The metadata on the bean
* @param name The bean property name.
* @return A new builder.
*/
public static Builder builder(BeanMeta> beanMeta, String name) {
return new Builder(beanMeta, name);
}
/**
* BeanPropertyMeta builder class.
*/
public static final class Builder {
BeanMeta> beanMeta;
BeanContext beanContext;
String name;
Field field, innerField;
Method getter, setter, extraKeys;
boolean isConstructorArg, isUri, isDyna, isDynaGetterMap;
ClassMeta> rawTypeMeta, typeMeta;
String[] properties;
ObjectSwap swap;
BeanRegistry beanRegistry;
Object overrideValue;
BeanPropertyMeta delegateFor;
boolean canRead, canWrite, readOnly, writeOnly;
Builder(BeanMeta> beanMeta, String name) {
this.beanMeta = beanMeta;
this.beanContext = beanMeta.ctx;
this.name = name;
}
/**
* Sets the raw metadata type for this bean property.
*
* @param rawMetaType The raw metadata type for this bean property.
* @return This object.
*/
public Builder rawMetaType(ClassMeta> rawMetaType) {
this.rawTypeMeta = rawMetaType;
this.typeMeta = rawTypeMeta;
return this;
}
/**
* Sets the bean registry to use with this bean property.
*
* @param beanRegistry The bean registry to use with this bean property.
* @return This object.
*/
public Builder beanRegistry(BeanRegistry beanRegistry) {
this.beanRegistry = beanRegistry;
return this;
}
/**
* Sets the overridden value of this bean property.
*
* @param overrideValue The overridden value of this bean property.
* @return This object.
*/
public Builder overrideValue(Object overrideValue) {
this.overrideValue = overrideValue;
return this;
}
/**
* Sets the original bean property that this one is overriding.
*
* @param delegateFor The original bean property that this one is overriding.
* @return This object.
*/
public Builder delegateFor(BeanPropertyMeta delegateFor) {
this.delegateFor = delegateFor;
return this;
}
Builder canRead() {
this.canRead = true;
return this;
}
Builder canWrite() {
this.canWrite = true;
return this;
}
boolean validate(BeanContext bc, BeanRegistry parentBeanRegistry, Map,Class>[]> typeVarImpls, Set bpro, Set bpwo) throws Exception {
List> bdClasses = list();
if (field == null && getter == null && setter == null)
return false;
if (field == null && setter == null && bc.isBeansRequireSettersForGetters() && ! isConstructorArg)
return false;
canRead |= (field != null || getter != null);
canWrite |= (field != null || setter != null);
if (innerField != null) {
List lp = list();
bc.forEachAnnotation(Beanp.class, innerField, x -> true, x -> lp.add(x));
if (field != null || lp.size() > 0) {
// Only use field type if it's a bean property or has @Beanp annotation.
// Otherwise, we want to infer the type from the getter or setter.
rawTypeMeta = bc.resolveClassMeta(last(lp), innerField.getGenericType(), typeVarImpls);
isUri |= (rawTypeMeta.isUri());
}
lp.forEach(x -> {
if (! x.properties().isEmpty())
properties = split(x.properties());
addAll(bdClasses, x.dictionary());
if (! x.ro().isEmpty())
readOnly = Boolean.valueOf(x.ro());
if (! x.wo().isEmpty())
writeOnly = Boolean.valueOf(x.wo());
});
bc.forEachAnnotation(Swap.class, innerField, x -> true, x -> swap = getPropertySwap(x));
isUri |= bc.firstAnnotation(Uri.class, innerField, x->true) != null;
}
if (getter != null) {
List lp = list();
bc.forEachAnnotation(Beanp.class, getter, x -> true, x -> lp.add(x));
if (rawTypeMeta == null)
rawTypeMeta = bc.resolveClassMeta(last(lp), getter.getGenericReturnType(), typeVarImpls);
isUri |= (rawTypeMeta.isUri() || bc.hasAnnotation(Uri.class, getter));
lp.forEach(x -> {
if (properties != null && ! x.properties().isEmpty())
properties = split(x.properties());
addAll(bdClasses, x.dictionary());
if (! x.ro().isEmpty())
readOnly = Boolean.valueOf(x.ro());
if (! x.wo().isEmpty())
writeOnly = Boolean.valueOf(x.wo());
});
bc.forEachAnnotation(Swap.class, getter, x -> true, x -> swap = getPropertySwap(x));
}
if (setter != null) {
List lp = list();
bc.forEachAnnotation(Beanp.class, setter, x -> true, x -> lp.add(x));
if (rawTypeMeta == null)
rawTypeMeta = bc.resolveClassMeta(last(lp), setter.getGenericParameterTypes()[0], typeVarImpls);
isUri |= (rawTypeMeta.isUri() || bc.hasAnnotation(Uri.class, setter));
lp.forEach(x -> {
if (swap == null)
swap = getPropertySwap(x);
if (properties != null && ! x.properties().isEmpty())
properties = split(x.properties());
addAll(bdClasses, x.dictionary());
if (! x.ro().isEmpty())
readOnly = Boolean.valueOf(x.ro());
if (! x.wo().isEmpty())
writeOnly = Boolean.valueOf(x.wo());
});
bc.forEachAnnotation(Swap.class, setter, x -> true, x -> swap = getPropertySwap(x));
}
if (rawTypeMeta == null)
return false;
this.beanRegistry = new BeanRegistry(beanContext, parentBeanRegistry, bdClasses.toArray(new Class>[0]));
isDyna = "*".equals(name);
// Do some annotation validation.
ClassInfo ci = rawTypeMeta.getInfo();
if (getter != null) {
Class>[] pt = getter.getParameterTypes();
if (isDyna) {
if (ci.isChildOf(Map.class) && pt.length == 0) {
isDynaGetterMap = true;
} else if (pt.length == 1 && pt[0] == String.class) {
// OK.
} else {
return false;
}
} else {
if (! ci.isChildOf(getter.getReturnType()))
return false;
}
}
if (setter != null) {
Class>[] pt = setter.getParameterTypes();
if (isDyna) {
if (pt.length == 2 && pt[0] == String.class) {
// OK.
} else {
return false;
}
} else {
if (pt.length != 1 || ! ci.isChildOf(pt[0]))
return false;
}
}
if (field != null) {
if (isDyna) {
if (! ClassInfo.of(field.getType()).isChildOf(Map.class))
return false;
} else {
if (! ci.isChildOf(field.getType()))
return false;
}
}
if (isDyna) {
rawTypeMeta = rawTypeMeta.getValueType();
if (rawTypeMeta == null)
rawTypeMeta = beanContext.object();
}
if (rawTypeMeta == null)
return false;
if (typeMeta == null)
typeMeta = (swap != null ? beanContext.getClassMeta(swap.getSwapClass().innerType()) : rawTypeMeta == null ? beanContext.object() : rawTypeMeta);
if (typeMeta == null)
typeMeta = rawTypeMeta;
if (bpro.contains(name) || bpro.contains("*"))
readOnly = true;
if (bpwo.contains(name) || bpwo.contains("*"))
writeOnly = true;
return true;
}
/**
* @return A new BeanPropertyMeta object using this builder.
*/
public BeanPropertyMeta build() {
return new BeanPropertyMeta(this);
}
private ObjectSwap getPropertySwap(Beanp p) {
if (! p.format().isEmpty())
return BeanCreator.of(ObjectSwap.class).type(StringFormatSwap.class).arg(String.class, p.format()).run();
return null;
}
private ObjectSwap getPropertySwap(Swap s) throws RuntimeException {
Class> c = s.value();
if (isVoid(c))
c = s.impl();
if (isVoid(c))
return null;
ClassInfo ci = ClassInfo.of(c);
if (ci.isChildOf(ObjectSwap.class)) {
ObjectSwap ps = BeanCreator.of(ObjectSwap.class).type(c).run();
if (ps.forMediaTypes() != null)
throw new UnsupportedOperationException("TODO - Media types on swaps not yet supported on bean properties.");
if (ps.withTemplate() != null)
throw new UnsupportedOperationException("TODO - Templates on swaps not yet supported on bean properties.");
return ps;
}
if (ci.isChildOf(Surrogate.class))
throw new UnsupportedOperationException("TODO - Surrogate swaps not yet supported on bean properties.");
throw new BasicRuntimeException("Invalid class used in @Swap annotation. Must be a subclass of ObjectSwap or Surrogate. {0}", c);
}
BeanPropertyMeta.Builder setGetter(Method getter) {
setAccessible(getter);
this.getter = getter;
return this;
}
BeanPropertyMeta.Builder setSetter(Method setter) {
setAccessible(setter);
this.setter = setter;
return this;
}
BeanPropertyMeta.Builder setField(Field field) {
setAccessible(field);
this.field = field;
this.innerField = field;
return this;
}
BeanPropertyMeta.Builder setInnerField(Field innerField) {
this.innerField = innerField;
return this;
}
BeanPropertyMeta.Builder setExtraKeys(Method extraKeys) {
setAccessible(extraKeys);
this.extraKeys = extraKeys;
return this;
}
BeanPropertyMeta.Builder setAsConstructorArg() {
this.isConstructorArg = true;
return this;
}
}
/**
* Creates a new BeanPropertyMeta using the contents of the specified builder.
*
* @param b The builder to copy fields from.
*/
protected BeanPropertyMeta(BeanPropertyMeta.Builder b) {
this.field = b.field;
this.innerField = b.innerField;
this.getter = b.getter;
this.setter = b.setter;
this.extraKeys = b.extraKeys;
this.isUri = b.isUri;
this.beanMeta = b.beanMeta;
this.beanContext = b.beanContext;
this.name = b.name;
this.rawTypeMeta = b.rawTypeMeta;
this.typeMeta = b.typeMeta;
this.properties = b.properties;
this.swap = b.swap;
this.beanRegistry = b.beanRegistry;
this.overrideValue = b.overrideValue;
this.delegateFor = b.delegateFor;
this.isDyna = b.isDyna;
this.isDynaGetterMap = b.isDynaGetterMap;
this.canRead = b.canRead;
this.canWrite = b.canWrite;
this.readOnly = b.readOnly;
this.writeOnly = b.writeOnly;
this.hashCode = HashCode.of(beanMeta,name);
}
/**
* Returns the name of this bean property.
*
* @return The name of the bean property.
*/
public String getName() {
return name;
}
/**
* Returns the bean meta that this property belongs to.
*
* @return The bean meta that this property belongs to.
*/
public BeanMeta> getBeanMeta() {
return beanMeta;
}
/**
* Returns the getter method for this property.
*
* @return The getter method for this bean property, or null if there is no getter method.
*/
public Method getGetter() {
return getter;
}
/**
* Returns the setter method for this property.
*
* @return The setter method for this bean property, or null if there is no setter method.
*/
public Method getSetter() {
return setter;
}
/**
* Returns the field for this property.
*
* @return The field for this bean property, or null if there is no field associated with this bean property.
*/
public Field getField() {
return field;
}
/**
* Returns the field for this property even if the field is private.
*
* @return The field for this bean property, or null if there is no field associated with this bean property.
*/
public Field getInnerField() {
return innerField;
}
/**
* Returns the {@link ClassMeta} of the class of this property.
*
*
* If this property or the property type class has a {@link ObjectSwap} associated with it, this method returns the
* transformed class meta.
* This matches the class type that is used by the {@link #get(BeanMap,String)} and
* {@link #set(BeanMap,String,Object)} methods.
*
* @return The {@link ClassMeta} of the class of this property.
*/
public ClassMeta> getClassMeta() {
return typeMeta;
}
/**
* Returns the bean dictionary in use for this bean property.
*
*
* The order of lookup for the dictionary is as follows:
*
* - Dictionary defined via {@link Beanp#dictionary() @Beanp(dictionary)}.
*
- Dictionary defined via {@link BeanContext.Builder#beanDictionary(Class...)}.
*
*
* @return The bean dictionary in use for this bean property. Never null .
*/
public BeanRegistry getBeanRegistry() {
return beanRegistry;
}
/**
* Returns true if this bean property is a URI.
*
*
* A bean property can be considered a URI if any of the following are true:
*
* - Property class type is {@link URL} or {@link URI}.
*
- Property class type is annotated with {@link org.apache.juneau.annotation.Uri @Uri}.
*
- Property getter, setter, or field is annotated with {@link org.apache.juneau.annotation.Uri @Uri}.
*
*
* @return true if this bean property is a URI.
*/
public boolean isUri() {
return isUri;
}
/**
* Returns true if this bean property is named "*" .
*
* @return true if this bean property is named "*" .
*/
public boolean isDyna() {
return isDyna;
}
/**
* Returns the override list of properties defined through a {@link Beanp#properties() @Beanp(properties)} annotation
* on this property.
*
* @return The list of override properties, or null if annotation not specified.
*/
public String[] getProperties() {
return properties;
}
/**
* Returns the metadata on the property that this metadata is a delegate for.
*
* @return the metadata on the property that this metadata is a delegate for, or this object if it's not a delegate.
*/
public BeanPropertyMeta getDelegateFor() {
return delegateFor != null ? delegateFor : this;
}
/**
* Equivalent to calling {@link BeanMap#get(Object)}, but is faster since it avoids looking up the property meta.
*
* @param m The bean map to get the transformed value from.
* @param pName
* The property name if this is a dyna property (i.e. "*" ).
*
Otherwise can be null .
* @return
* The property value.
*
Returns null if this is a write-only property.
*/
public Object get(BeanMap> m, String pName) {
return m.meta.onReadProperty(m.bean, pName, getInner(m, pName));
}
private Object getInner(BeanMap> m, String pName) {
try {
if (writeOnly)
return null;
if (overrideValue != null)
return overrideValue;
// Read-only beans have their properties stored in a cache until getBean() is called.
Object bean = m.bean;
if (bean == null)
return m.propertyCache.get(name);
return toSerializedForm(m.getBeanSession(), getRaw(m, pName));
} catch (Throwable e) {
if (beanContext.isIgnoreInvocationExceptionsOnGetters()) {
if (rawTypeMeta.isPrimitive())
return rawTypeMeta.getPrimitiveDefault();
return null;
}
throw new BeanRuntimeException(e, beanMeta.c, "Exception occurred while getting property ''{0}''", name);
}
}
/**
* Equivalent to calling {@link BeanMap#getRaw(Object)}, but is faster since it avoids looking up the property meta.
*
* @param m The bean map to get the transformed value from.
* @param pName
* The property name if this is a dyna property (i.e. "*" ).
*
Otherwise can be null .
* @return The raw property value.
*/
public Object getRaw(BeanMap> m, String pName) {
try {
// Read-only beans have their properties stored in a cache until getBean() is called.
Object bean = m.bean;
if (bean == null)
return m.propertyCache.get(name);
return invokeGetter(bean, pName);
} catch (Throwable e) {
if (beanContext.isIgnoreInvocationExceptionsOnGetters()) {
if (rawTypeMeta.isPrimitive())
return rawTypeMeta.getPrimitiveDefault();
return null;
}
throw new BeanRuntimeException(e, beanMeta.c, "Exception occurred while getting property ''{0}''", name);
}
}
/**
* Converts a raw bean property value to serialized form.
* Applies transforms and child property filters.
*/
Object toSerializedForm(BeanSession session, Object o) {
try {
o = transform(session, o);
if (o == null)
return null;
if (properties != null) {
if (rawTypeMeta.isArray()) {
Object[] a = (Object[])o;
List l = new DelegateList(rawTypeMeta);
ClassMeta childType = rawTypeMeta.getElementType();
for (Object c : a)
l.add(applyChildPropertiesFilter(session, childType, c));
return l;
} else if (rawTypeMeta.isCollection()) {
Collection c = (Collection)o;
List l = list(c.size());
ClassMeta childType = rawTypeMeta.getElementType();
c.forEach(x -> l.add(applyChildPropertiesFilter(session, childType, x)));
return l;
} else {
return applyChildPropertiesFilter(session, rawTypeMeta, o);
}
}
return o;
} catch (SerializeException e) {
throw new BeanRuntimeException(e);
}
}
/**
* Equivalent to calling {@link BeanMap#put(String, Object)}, but is faster since it avoids looking up the property
* meta.
*
*
* This is a no-op on a read-only property.
*
* @param m The bean map to set the property value on.
* @param pName
* The property name if this is a dyna property (i.e. "*" ).
*
Otherwise can be null .
* @param value The value to set.
* @return The previous property value.
* @throws BeanRuntimeException If property could not be set.
*/
public Object set(BeanMap> m, String pName, Object value) throws BeanRuntimeException {
return setInner(m, pName, m.meta.onWriteProperty(m.bean, pName, value));
}
private Object setInner(BeanMap> m, String pName, Object value) throws BeanRuntimeException {
try {
if (readOnly)
return null;
BeanSession session = m.getBeanSession();
// Convert to raw form.
value = unswap(session, value);
if (m.bean == null) {
// Read-only beans get their properties stored in a cache.
if (m.propertyCache != null)
return m.propertyCache.put(name, value);
throw new BeanRuntimeException("Non-existent bean instance on bean.");
}
boolean isMap = rawTypeMeta.isMap();
boolean isCollection = rawTypeMeta.isCollection();
if ((! isDyna) && field == null && setter == null && ! (isMap || isCollection)) {
if ((value == null && beanContext.isIgnoreUnknownNullBeanProperties()) || beanContext.isIgnoreMissingSetters())
return null;
throw new BeanRuntimeException(beanMeta.c, "Setter or public field not defined on property ''{0}''", name);
}
Object bean = m.getBean(true); // Don't use getBean() because it triggers array creation!
try {
Object r = (beanContext.isBeanMapPutReturnsOldValue() || isMap || isCollection) && (getter != null || field != null) ? get(m, pName) : null;
Class> propertyClass = rawTypeMeta.getInnerClass();
ClassInfo pcInfo = rawTypeMeta.getInfo();
if (value == null && (isMap || isCollection)) {
invokeSetter(bean, pName, null);
return r;
}
Class> vc = value == null ? null : value.getClass();
if (isMap && (setter == null || ! pcInfo.isParentOf(vc))) {
if (! (value instanceof Map)) {
if (value instanceof CharSequence)
value = JsonMap.ofJson((CharSequence)value).session(session);
else
throw new BeanRuntimeException(beanMeta.c, "Cannot set property ''{0}'' of type ''{1}'' to object of type ''{2}''", name, propertyClass.getName(), findClassName(value));
}
Map valueMap = (Map)value;
Map propMap = (Map)r;
ClassMeta> valueType = rawTypeMeta.getValueType();
// If the property type is abstract, then we either need to reuse the existing
// map (if it's not null), or try to assign the value directly.
if (! rawTypeMeta.canCreateNewInstance()) {
if (propMap == null) {
if (setter == null && field == null)
throw new BeanRuntimeException(beanMeta.c, "Cannot set property ''{0}'' of type ''{1}'' to object of type ''{2}'' because no setter or public field is defined, and the current value is null", name, propertyClass.getName(), findClassName(value));
if (propertyClass.isInstance(valueMap)) {
if (! valueType.isObject()) {
Flag needsConversion = Flag.create();
valueMap.forEach((k,v) -> {
if (v != null && ! valueType.getInnerClass().isInstance(v)) {
needsConversion.set();
}
});
if (needsConversion.isSet())
valueMap = (Map)session.convertToType(valueMap, rawTypeMeta);
}
invokeSetter(bean, pName, valueMap);
return r;
}
throw new BeanRuntimeException(beanMeta.c, "Cannot set property ''{0}'' of type ''{2}'' to object of type ''{2}'' because the assigned map cannot be converted to the specified type because the property type is abstract, and the property value is currently null", name, propertyClass.getName(), findClassName(value));
}
} else {
if (propMap == null) {
propMap = BeanCreator.of(Map.class).type(propertyClass).run();
} else {
propMap.clear();
}
}
// Set the values.
Map propMap2 = propMap;
valueMap.forEach((k,v) -> {
if (! valueType.isObject())
v = session.convertToType(v, valueType);
propMap2.put(k, v);
});
if (setter != null || field != null)
invokeSetter(bean, pName, propMap);
} else if (isCollection && (setter == null || ! pcInfo.isParentOf(vc))) {
if (! (value instanceof Collection)) {
if (value instanceof CharSequence)
value = new JsonList((CharSequence)value).setBeanSession(session);
else
throw new BeanRuntimeException(beanMeta.c, "Cannot set property ''{0}'' of type ''{1}'' to object of type ''{2}''", name, propertyClass.getName(), findClassName(value));
}
Collection valueList = (Collection)value;
Collection propList = (Collection)r;
ClassMeta elementType = rawTypeMeta.getElementType();
// If the property type is abstract, then we either need to reuse the existing
// collection (if it's not null), or try to assign the value directly.
if (! rawTypeMeta.canCreateNewInstance()) {
if (propList == null) {
if (setter == null && field == null)
throw new BeanRuntimeException(beanMeta.c, "Cannot set property ''{0}'' of type ''{1}'' to object of type ''{2}'' because no setter or public field is defined, and the current value is null", name, propertyClass.getName(), findClassName(value));
if (propertyClass.isInstance(valueList) || (setter != null && setter.getParameterTypes()[0] == Collection.class)) {
if (! elementType.isObject()) {
List l = new JsonList(valueList);
for (ListIterator