All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.katharsis.jpa.internal.meta.impl.MetaAttributeImpl Maven / Gradle / Ivy

There is a newer version: 3.0.2
Show newest version
package io.katharsis.jpa.internal.meta.impl;

import java.beans.PropertyDescriptor;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Type;
import java.util.Collection;

import org.apache.commons.beanutils.BeanUtilsBean;
import org.apache.commons.beanutils.PropertyUtilsBean;

import io.katharsis.jpa.internal.meta.MetaAttribute;
import io.katharsis.jpa.internal.meta.MetaDataObject;
import io.katharsis.jpa.internal.meta.MetaElement;
import io.katharsis.jpa.internal.meta.MetaType;

public class MetaAttributeImpl extends MetaElementImpl implements MetaAttribute {

	private String name;
	private Type type;
	private boolean association;

	public MetaAttributeImpl(MetaElement parent, String name, Type type) {
		super(parent);
		this.name = name;
		this.type = type;
	}

	public MetaAttributeImpl(MetaElement parent, PropertyDescriptor desc) {
		super(parent);
		this.name = desc.getName();
		this.type = desc.getReadMethod().getGenericReturnType();
	}

	@Override
	public MetaDataObject getParent() {
		return (MetaDataObject) super.getParent();
	}

	@Override
	public final boolean isAssociation() {
		return association;
	}

	public void setAssociation(boolean association) {
		this.association = association;
	}

	@Override
	public MetaType getType() {
		if(lookup == null){
			throw new IllegalStateException();
		}
		MetaElement meta = lookup.getMeta(type);
		return meta.asType();
	}

	@Override
	public Object getValue(Object dataObject) {
		PropertyUtilsBean utils = BeanUtilsBean.getInstance().getPropertyUtils();
		try {
			return utils.getNestedProperty(dataObject, getName());
		} catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
			throw new IllegalStateException(
					"cannot access field " + getName() + " for " + dataObject.getClass().getName(), e);
		}
	}

	@Override
	public void setValue(Object dataObject, Object value) {
		PropertyUtilsBean utils = BeanUtilsBean.getInstance().getPropertyUtils();
		try {
			utils.setNestedProperty(dataObject, getName(), value);
		} catch (IllegalAccessException | InvocationTargetException | NoSuchMethodException e) {
			throw new IllegalStateException(
					"cannot access field " + getName() + " for " + dataObject.getClass().getName(), e);
		}
	}

	@Override
	public String getId() {
		return getParent().getId() + "." + getName();
	}

	@Override
	public MetaAttribute getOppositeAttribute() {
		return null;
	}

	@Override
	public boolean isDerived() {
		return false;
	}

	@Override
	public boolean isLazy() {
		return false;
	}

	@Override
	public boolean isVersion() {
		return false;
	}

	@Override
	public String getName() {
		return name;
	}

	@SuppressWarnings({ "unchecked", "rawtypes" })
	@Override
	public void addValue(Object dataObject, Object value) {
		Collection col = (Collection) getValue(dataObject);
		col.add(value);
	}

	@SuppressWarnings({ "rawtypes" })
	@Override
	public void removeValue(Object dataObject, Object value) {
		Collection col = (Collection) getValue(dataObject);
		col.remove(value);
	}

	@Override
	public boolean isId() {
		return false;
	}
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy