Skip to content

Commit

Permalink
Merge pull request #34219 from mkouba/arc-interceptor-configurator-id
Browse files Browse the repository at this point in the history
ArC: add InterceptorConfigurator#identifier() method
  • Loading branch information
mkouba authored Jun 22, 2023
2 parents 94c34c2 + fbf1465 commit afbb315
Show file tree
Hide file tree
Showing 4 changed files with 36 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -1416,6 +1416,13 @@ private void addSyntheticBean(BeanInfo bean) {
}

void addSyntheticInterceptor(InterceptorInfo interceptor) {
for (InterceptorInfo i : interceptors) {
if (i.getIdentifier().equals(interceptor.getIdentifier())) {
throw new IllegalStateException(
"A synthetic interceptor with identifier " + interceptor.getIdentifier() + " is already registered: "
+ i);
}
}
interceptors.add(interceptor);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
import org.jboss.jandex.AnnotationInstance;
import org.jboss.jandex.Type;

import io.quarkus.arc.InjectableInterceptor;
import io.quarkus.arc.InterceptorCreator;
import io.quarkus.arc.processor.InjectionPointInfo.TypeAndQualifiers;

Expand All @@ -24,6 +25,7 @@ public final class InterceptorConfigurator extends ConfiguratorBase<InterceptorC
final InterceptionType type;
final Set<TypeAndQualifiers> injectionPoints;
final Set<AnnotationInstance> bindings;
String identifier;
int priority;

InterceptorConfigurator(BeanDeployment beanDeployment, InterceptionType type) {
Expand All @@ -39,6 +41,19 @@ public InterceptorConfigurator priority(int priority) {
return this;
}

/**
* The identifier becomes a part of the {@link InterceptorInfo#getIdentifier()} and
* {@link InjectableInterceptor#getIdentifier()}. An identifier can be used to register multiple synthetic interceptors with
* the same {@link InterceptorCreator} class.
*
* @param identifier
* @return self
*/
public InterceptorConfigurator identifier(String identifier) {
this.identifier = identifier;
return this;
}

public InterceptorConfigurator bindings(AnnotationInstance... bindings) {
Collections.addAll(this.bindings, bindings);
return this;
Expand All @@ -53,7 +68,7 @@ public InterceptorConfigurator addInjectionPoint(Type requiredType, AnnotationIn

public void creator(Class<? extends InterceptorCreator> creatorClass) {
beanDeployment.addSyntheticInterceptor(new InterceptorInfo(creatorClass, beanDeployment, bindings,
List.of(Injection.forSyntheticInterceptor(injectionPoints)), priority, type, params));
List.of(Injection.forSyntheticInterceptor(injectionPoints)), priority, type, params, identifier));
}

}
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ public class InterceptorInfo extends BeanInfo implements Comparable<InterceptorI

InterceptorInfo(Class<? extends InterceptorCreator> creatorClass, BeanDeployment beanDeployment,
Set<AnnotationInstance> bindings, List<Injection> injections, int priority, InterceptionType interceptionType,
Map<String, Object> params) {
Map<String, Object> params, String identifier) {
super(null, ClassType.create(InterceptFunction.class), null, beanDeployment, BuiltinScope.DEPENDENT.getInfo(),
Sets.singletonHashSet(Type.create(DotName.OBJECT_NAME, Kind.CLASS)), new HashSet<>(), injections, null,
null, false,
Expand All @@ -64,7 +64,7 @@ public class InterceptorInfo extends BeanInfo implements Comparable<InterceptorI
creatorClass.getName() + "#create() must not return null");
mc.returnValue(ret);
},
null, params, true, false, null, priority, creatorClass.getName());
null, params, true, false, null, priority, creatorClass.getName() + (identifier != null ? identifier : ""));
this.bindings = bindings;
this.interceptionType = interceptionType;
this.creatorClass = creatorClass;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,12 @@ public void testSyntheticInterceptor() {
InstanceHandle<MyBean> handle = Arc.container().instance(MyBean.class);
assertEquals("ok", handle.get().ping());
handle.destroy();
assertEquals(4, EVENTS.size());
assertEquals(5, EVENTS.size());
assertEquals(TestAroundConstruct.class.getName(), EVENTS.get(0));
assertEquals(TestPostConstruct.class.getName(), EVENTS.get(1));
assertEquals(TestAroundInvoke.class.getName(), EVENTS.get(2));
assertEquals(TestPreDestroy.class.getName(), EVENTS.get(3));
assertEquals(TestPostConstruct.class.getName(), EVENTS.get(2));
assertEquals(TestAroundInvoke.class.getName(), EVENTS.get(3));
assertEquals(TestPreDestroy.class.getName(), EVENTS.get(4));
}

@SimpleBinding
Expand Down Expand Up @@ -155,6 +156,13 @@ public void register(RegistrationContext context) {
AnnotationInstance.builder(Intercepted.class).build())
.creator(TestPostConstruct.class);

context.configureInterceptor(InterceptionType.POST_CONSTRUCT)
.bindings(AnnotationInstance.builder(SimpleBinding.class).build())
.addInjectionPoint(ParameterizedType.create(Bean.class, WildcardType.UNBOUNDED),
AnnotationInstance.builder(Intercepted.class).build())
.identifier("foo")
.creator(TestPostConstruct.class);

context.configureInterceptor(InterceptionType.PRE_DESTROY)
.bindings(AnnotationInstance.builder(SimpleBinding.class).build())
.addInjectionPoint(ParameterizedType.create(Bean.class, WildcardType.UNBOUNDED),
Expand Down

0 comments on commit afbb315

Please sign in to comment.