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

org.hibernate.cfg.InheritanceState Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
//$Id: InheritanceState.java 9795 2006-04-26 06:41:18Z epbernard $
package org.hibernate.cfg;

import java.util.Map;
import javax.persistence.Inheritance;
import javax.persistence.InheritanceType;
import javax.persistence.MappedSuperclass;

import org.hibernate.reflection.ReflectionManager;
import org.hibernate.reflection.XAnnotatedElement;
import org.hibernate.reflection.XClass;

/**
 * Some extra data to the inheritance position of a class
 *
 * @author Emmanuel Bernard
 */
public class InheritanceState {
	public InheritanceState(XClass clazz) {
		this.clazz = clazz;
		extractInheritanceType();
	}

	public XClass clazz;
	/**
	 * has son either mappedsuperclass son or entity son
	 */
	public boolean hasSons = false;
	/**
	 * a mother entity is available
	 */
	public boolean hasParents = false;
	public InheritanceType type;
	public boolean isEmbeddableSuperclass = false;

	/**
	 * only defined on embedded superclasses
	 */
	public String accessType = null;
	public Boolean isPropertyAnnotated;

	private void extractInheritanceType() {
		XAnnotatedElement element = clazz;
		Inheritance inhAnn = element.getAnnotation( Inheritance.class );
		MappedSuperclass mappedSuperClass = element.getAnnotation( MappedSuperclass.class );
		if ( mappedSuperClass != null ) {
			isEmbeddableSuperclass = true;
			type = inhAnn == null ? null : inhAnn.strategy();
		}
		else {
			type = inhAnn == null ? InheritanceType.SINGLE_TABLE : inhAnn.strategy();
		}
	}

	boolean hasTable() {
		return !hasParents || !InheritanceType.SINGLE_TABLE.equals( type );
	}

	boolean hasDenormalizedTable() {
		return hasParents && InheritanceType.TABLE_PER_CLASS.equals( type );
	}

	public static InheritanceState getSuperEntityInheritanceState(
			XClass clazz, Map states,
			ReflectionManager reflectionManager
	) {
		XClass superclass = clazz;
		do {
			superclass = superclass.getSuperclass();
			InheritanceState currentState = states.get( superclass );
			if ( currentState != null && ! currentState.isEmbeddableSuperclass ) return currentState;
		}
		while ( ! reflectionManager.equals( superclass, Object.class ) );
		return null;
	}

	public static InheritanceState getSuperclassInheritanceState(
			XClass clazz, Map states,
			ReflectionManager reflectionManager
	) {
		XClass superclass = clazz;
		do {
			superclass = superclass.getSuperclass();
			InheritanceState currentState = states.get( superclass );
			if ( currentState != null ) return currentState;
		}
		while ( ! reflectionManager.equals( superclass, Object.class ) );
		return null;
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy