Support ORM/HR+Panache
- Allow `@Find`/`@*QL` methods on `native` methods - Look at session getters to find their session types, but never make DAOs for Panache entities or repositories (we want generated static methods)
This commit is contained in:
parent
36c9ce9d20
commit
1f3aed022c
|
@ -30,6 +30,7 @@ import org.hibernate.query.sqm.tree.SqmStatement;
|
||||||
import org.hibernate.query.sqm.tree.expression.SqmParameter;
|
import org.hibernate.query.sqm.tree.expression.SqmParameter;
|
||||||
import org.hibernate.query.sqm.tree.select.SqmSelectStatement;
|
import org.hibernate.query.sqm.tree.select.SqmSelectStatement;
|
||||||
|
|
||||||
|
import javax.annotation.processing.ProcessingEnvironment;
|
||||||
import javax.lang.model.element.AnnotationMirror;
|
import javax.lang.model.element.AnnotationMirror;
|
||||||
import javax.lang.model.element.AnnotationValue;
|
import javax.lang.model.element.AnnotationValue;
|
||||||
import javax.lang.model.element.Element;
|
import javax.lang.model.element.Element;
|
||||||
|
@ -342,16 +343,7 @@ public class AnnotationMetaEntity extends AnnotationMeta {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
jakartaDataRepository = hasAnnotation( element, JD_REPOSITORY );
|
setupSession();
|
||||||
findSessionGetter( element );
|
|
||||||
if ( !repository && jakartaDataRepository) {
|
|
||||||
repository = true;
|
|
||||||
sessionType = HIB_STATELESS_SESSION;
|
|
||||||
addDaoConstructor( null );
|
|
||||||
}
|
|
||||||
if ( jakartaDataRepository && !quarkusInjection ) {
|
|
||||||
addDefaultConstructor();
|
|
||||||
}
|
|
||||||
|
|
||||||
if ( managed && !jakartaDataStaticModel ) {
|
if ( managed && !jakartaDataStaticModel ) {
|
||||||
putMember( "class", new AnnotationMetaType(this) );
|
putMember( "class", new AnnotationMetaType(this) );
|
||||||
|
@ -395,31 +387,91 @@ public class AnnotationMetaEntity extends AnnotationMeta {
|
||||||
}
|
}
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
private void setupSession() {
|
||||||
|
jakartaDataRepository = hasAnnotation( element, JD_REPOSITORY );
|
||||||
|
ExecutableElement getter = findSessionGetter( element );
|
||||||
|
if ( getter != null ) {
|
||||||
|
// Never make a DAO for Panache subtypes
|
||||||
|
if ( !isPanacheType( element ) ) {
|
||||||
|
repository = true;
|
||||||
|
sessionType = addDaoConstructor( getter );
|
||||||
|
}
|
||||||
|
else {
|
||||||
|
// For Panache subtypes, we look at the session type, but no DAO, we want static methods
|
||||||
|
sessionType = getter.getReturnType().toString();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
if ( !repository && jakartaDataRepository ) {
|
||||||
|
repository = true;
|
||||||
|
sessionType = HIB_STATELESS_SESSION;
|
||||||
|
addDaoConstructor( null );
|
||||||
|
}
|
||||||
|
if ( jakartaDataRepository && !quarkusInjection ) {
|
||||||
|
addDefaultConstructor();
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
private void findSessionGetter(TypeElement type) {
|
private @Nullable ExecutableElement findSessionGetter(TypeElement type) {
|
||||||
if ( !hasAnnotation( type, Constants.ENTITY )
|
if ( ( !hasAnnotation( type, Constants.ENTITY )
|
||||||
&& !hasAnnotation( type, Constants.MAPPED_SUPERCLASS )
|
&& !hasAnnotation( type, Constants.MAPPED_SUPERCLASS )
|
||||||
&& !hasAnnotation( type, Constants.EMBEDDABLE ) ) {
|
&& !hasAnnotation( type, Constants.EMBEDDABLE ) )
|
||||||
|
|| isPanacheType( type ) ) {
|
||||||
for ( ExecutableElement method : methodsIn( type.getEnclosedElements() ) ) {
|
for ( ExecutableElement method : methodsIn( type.getEnclosedElements() ) ) {
|
||||||
if ( isSessionGetter( method ) ) {
|
if ( isSessionGetter( method ) ) {
|
||||||
repository = true;
|
return method;
|
||||||
sessionType = addDaoConstructor( method );
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if ( !repository) {
|
final TypeMirror superclass = type.getSuperclass();
|
||||||
final TypeMirror superclass = type.getSuperclass();
|
if ( superclass.getKind() == TypeKind.DECLARED ) {
|
||||||
if ( superclass.getKind() == TypeKind.DECLARED ) {
|
final DeclaredType declaredType = (DeclaredType) superclass;
|
||||||
final DeclaredType declaredType = (DeclaredType) superclass;
|
ExecutableElement ret = findSessionGetter( (TypeElement) declaredType.asElement() );
|
||||||
findSessionGetter( (TypeElement) declaredType.asElement() );
|
if ( ret != null ) {
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
for ( TypeMirror superinterface : type.getInterfaces() ) {
|
}
|
||||||
if ( superinterface.getKind() == TypeKind.DECLARED ) {
|
for ( TypeMirror superinterface : type.getInterfaces() ) {
|
||||||
final DeclaredType declaredType = (DeclaredType) superinterface;
|
if ( superinterface.getKind() == TypeKind.DECLARED ) {
|
||||||
findSessionGetter( (TypeElement) declaredType.asElement() );
|
final DeclaredType declaredType = (DeclaredType) superinterface;
|
||||||
|
ExecutableElement ret = findSessionGetter( (TypeElement) declaredType.asElement() );
|
||||||
|
if ( ret != null ) {
|
||||||
|
return ret;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isPanacheType(TypeElement type) {
|
||||||
|
return isOrmPanacheType( type ) || isReactivePanacheType( type );
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isOrmPanacheType(TypeElement type) {
|
||||||
|
ProcessingEnvironment processingEnvironment = this.context.getProcessingEnvironment();
|
||||||
|
TypeElement panacheRepositorySuperType = processingEnvironment.getElementUtils().getTypeElement( Constants.PANACHE_ORM_REPOSITORY_BASE );
|
||||||
|
TypeElement panacheEntitySuperType = processingEnvironment.getElementUtils().getTypeElement( Constants.PANACHE_ORM_ENTITY_BASE );
|
||||||
|
if ( panacheRepositorySuperType == null || panacheEntitySuperType == null ) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Types types = processingEnvironment.getTypeUtils();
|
||||||
|
// check against a raw supertype of PanacheRepositoryBase, which .asType() is not
|
||||||
|
return processingEnvironment.getTypeUtils().isSubtype( type.asType(), types.getDeclaredType( panacheRepositorySuperType ) )
|
||||||
|
|| processingEnvironment.getTypeUtils().isSubtype( type.asType(), panacheEntitySuperType.asType() );
|
||||||
|
}
|
||||||
|
|
||||||
|
private boolean isReactivePanacheType(TypeElement type) {
|
||||||
|
ProcessingEnvironment processingEnvironment = this.context.getProcessingEnvironment();
|
||||||
|
TypeElement panacheRepositorySuperType = processingEnvironment.getElementUtils().getTypeElement( Constants.PANACHE_REACTIVE_REPOSITORY_BASE );
|
||||||
|
TypeElement panacheEntitySuperType = processingEnvironment.getElementUtils().getTypeElement( Constants.PANACHE_REACTIVE_ENTITY_BASE );
|
||||||
|
|
||||||
|
if ( panacheRepositorySuperType == null || panacheEntitySuperType == null ) {
|
||||||
|
return false;
|
||||||
|
}
|
||||||
|
Types types = processingEnvironment.getTypeUtils();
|
||||||
|
// check against a raw supertype of PanacheRepositoryBase, which .asType() is not
|
||||||
|
return types.isSubtype( type.asType(), types.getDeclaredType( panacheRepositorySuperType ) )
|
||||||
|
|| types.isSubtype( type.asType(), panacheEntitySuperType.asType());
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -557,7 +609,7 @@ public class AnnotationMetaEntity extends AnnotationMeta {
|
||||||
|
|
||||||
private void addQueryMethods(List<ExecutableElement> queryMethods) {
|
private void addQueryMethods(List<ExecutableElement> queryMethods) {
|
||||||
for ( ExecutableElement method : queryMethods) {
|
for ( ExecutableElement method : queryMethods) {
|
||||||
if ( method.getModifiers().contains(Modifier.ABSTRACT) ) {
|
if ( method.getModifiers().contains(Modifier.ABSTRACT) || method.getModifiers().contains(Modifier.NATIVE) ) {
|
||||||
addQueryMethod( method );
|
addQueryMethod( method );
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -115,6 +115,11 @@ public final class Constants {
|
||||||
public static final String OPTIONAL = "java.util.Optional";
|
public static final String OPTIONAL = "java.util.Optional";
|
||||||
public static final String STREAM = "java.util.stream.Stream";
|
public static final String STREAM = "java.util.stream.Stream";
|
||||||
|
|
||||||
|
public static final String PANACHE_ORM_REPOSITORY_BASE = "io.quarkus.hibernate.orm.panache.PanacheRepositoryBase";
|
||||||
|
public static final String PANACHE_ORM_ENTITY_BASE = "io.quarkus.hibernate.orm.panache.PanacheEntityBase";
|
||||||
|
public static final String PANACHE_REACTIVE_REPOSITORY_BASE = "io.quarkus.hibernate.reactive.panache.PanacheRepositoryBase";
|
||||||
|
public static final String PANACHE_REACTIVE_ENTITY_BASE = "io.quarkus.hibernate.reactive.panache.PanacheEntityBase";
|
||||||
|
|
||||||
public static final Map<String, String> COLLECTIONS = Map.of(
|
public static final Map<String, String> COLLECTIONS = Map.of(
|
||||||
COLLECTION, Constants.COLLECTION_ATTRIBUTE,
|
COLLECTION, Constants.COLLECTION_ATTRIBUTE,
|
||||||
SET, Constants.SET_ATTRIBUTE,
|
SET, Constants.SET_ATTRIBUTE,
|
||||||
|
|
Loading…
Reference in New Issue