
org.killbill.commons.eventbus.Subscriber Maven / Gradle / Ivy
/*
* Copyright (C) 2007 The Guava Authors
* Copyright 2020-2022 Equinix, Inc
* Copyright 2014-2022 The Billing Project, LLC
*
* The Billing Project 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.killbill.commons.eventbus;
import java.lang.reflect.InvocationTargetException;
import java.lang.reflect.Method;
import java.util.concurrent.Executor;
import javax.annotation.CheckForNull;
import org.killbill.commons.utils.Preconditions;
import org.killbill.commons.utils.annotation.VisibleForTesting;
/**
* A subscriber method on a specific object, plus the executor that should be used for dispatching
* events to it.
*
* Two subscribers are equivalent when they refer to the same method on the same object (not
* class). This property is used to ensure that no subscriber method is registered more than once.
*
* @author Colin Decker
*/
class Subscriber {
/**
* The object with the subscriber method.
*/
@VisibleForTesting
final Object target;
/**
* Subscriber method.
*/
private final Method method;
/**
* Executor to use for dispatching events to this subscriber.
*/
private final Executor executor;
/**
* The event bus this subscriber belongs to.
*/
private final EventBus bus;
private Subscriber(final EventBus bus, final Object target, final Method method) {
this.bus = bus;
this.target = Preconditions.checkNotNull(target);
this.method = method;
method.setAccessible(true);
this.executor = bus.executor();
}
/**
* Creates a {@code Subscriber} for {@code method} on {@code listener}.
*/
static Subscriber create(final EventBus bus, final Object listener, final Method method) {
return isDeclaredThreadSafe(method)
? new Subscriber(bus, listener, method)
: new SynchronizedSubscriber(bus, listener, method);
}
/**
* Checks whether {@code method} is thread-safe, as indicated by the presence of the {@link
* AllowConcurrentEvents} annotation.
*/
private static boolean isDeclaredThreadSafe(final Method method) {
return method.getAnnotation(AllowConcurrentEvents.class) != null;
}
/**
* Dispatches {@code event} to this subscriber using the proper executor.
*/
final void dispatchEvent(final Object event) {
executor.execute(
() -> {
try {
invokeSubscriberMethod(event);
} catch (final InvocationTargetException e) {
bus.handleSubscriberException(e.getCause(), context(event));
}
});
}
/**
* Invokes the subscriber method. This method can be overridden to make the invocation
* synchronized.
*/
@VisibleForTesting
void invokeSubscriberMethod(final Object event) throws InvocationTargetException {
try {
method.invoke(target, Preconditions.checkNotNull(event));
} catch (final IllegalArgumentException e) {
throw new Error("Method rejected target/argument: " + event, e);
} catch (final IllegalAccessException e) {
throw new Error("Method became inaccessible: " + event, e);
} catch (final InvocationTargetException e) {
if (e.getCause() instanceof Error) {
throw (Error) e.getCause();
}
throw e;
}
}
/**
* Gets the context for the given event.
*/
private SubscriberExceptionContext context(final Object event) {
return new SubscriberExceptionContext(bus, event, target, method);
}
@Override
public final int hashCode() {
return (31 + method.hashCode()) * 31 + System.identityHashCode(target);
}
@Override
public final boolean equals(@CheckForNull final Object obj) {
if (obj instanceof Subscriber) {
final Subscriber that = (Subscriber) obj;
// Use == so that different equal instances will still receive events.
// We only guard against the case that the same object is registered
// multiple times
return target == that.target && method.equals(that.method);
}
return false;
}
/**
* Subscriber that synchronizes invocations of a method to ensure that only one thread may enter
* the method at a time.
*/
@VisibleForTesting
static final class SynchronizedSubscriber extends Subscriber {
private SynchronizedSubscriber(final EventBus bus, final Object target, final Method method) {
super(bus, target, method);
}
@Override
void invokeSubscriberMethod(final Object event) throws InvocationTargetException {
synchronized (this) {
super.invokeSubscriberMethod(event);
}
}
}
}