Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Invoke onSuccess and onFailure handlers properly for async methods #181

Closed
wants to merge 5 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,17 @@ public interface InvocationEventHandler<C extends InvocationContext> {
*/
boolean isEnabled();

/**
* Returns true if this event handler instance is able to support asynchronous method invocations by being invoked
* on another thread. A handler that relies on {@link ThreadLocal} state, for example, will not be able to support
* async operations.
*
* @return true if the handler supports async operations
*/
default boolean asyncSupport() {
return false;
}

/**
* Invoked before invoking the method on the instance.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,16 @@ public static InvocationEventHandler<InvocationContext> of(
}
}

@Override
public boolean asyncSupport() {
for (InvocationEventHandler<?> handler : handlers) {
if (!handler.asyncSupport()) {
return false;
}
}
return true;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Tritium bundles all handlers together using the composite handler, I think this will disable async support if the tracing handler is enabled.

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I not sure CompositeInvocationEventHandler is the right abstraction for InvocationEventProxy any longer given this change.

}

@Override
public InvocationContext preInvocation(Object instance, Method method, Object[] args) {
InvocationContext[] contexts = new InvocationContext[handlers.size()];
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,7 @@
import java.util.Arrays;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionStage;
import javax.annotation.Nullable;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
Expand Down Expand Up @@ -87,13 +88,19 @@ public String toString() {
private boolean isEnabled(Object instance, Method method, Object[] args) {
try {
return eventHandler.isEnabled()
&& filter.shouldInstrument(instance, method, args);
&& filter.shouldInstrument(instance, method, args)
&& (eventHandler.asyncSupport() || !isAsync(method));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think we want to remove this line. Tracing doesn't support async operations, but the tracing thread state is passed to executors, which will provide valuable information.

} catch (Throwable t) {
logInvocationWarning("isEnabled", instance, method, args, t);
return false;
}
}

private boolean isAsync(Method method) {
Class<?> returnType = method.getReturnType();
return ListenableFuture.class.isAssignableFrom(returnType)
|| CompletionStage.class.isAssignableFrom(returnType);
}

@Override
@Nullable
Expand Down Expand Up @@ -133,14 +140,14 @@ public final Object instrumentInvocation(Object instance, Method method, Object[
private Object handleResult(InvocationContext context, Object result) {
if (result instanceof ListenableFuture) {
return handleFuture(context, (ListenableFuture) result);
} else if (result instanceof CompletableFuture) {
return handleFuture(context, (CompletableFuture) result);
} else if (result instanceof CompletionStage) {
return handleFuture(context, (CompletionStage) result);
} else {
return handleOnSuccess(context, result);
}
}

private CompletableFuture<?> handleFuture(InvocationContext context, CompletableFuture<?> future) {
private CompletionStage<?> handleFuture(InvocationContext context, CompletionStage<?> future) {
future.handleAsync((result, throwable) -> {
if (throwable == null) {
return handleOnSuccess(context, result);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
import static org.mockito.ArgumentMatchers.eq;
import static org.mockito.Mockito.never;
import static org.mockito.Mockito.verify;
import static org.mockito.Mockito.verifyNoMoreInteractions;
import static org.mockito.Mockito.when;

import com.google.common.util.concurrent.ListenableFuture;
Expand Down Expand Up @@ -52,6 +53,7 @@ public void before() {
.build();
when(handler.isEnabled()).thenCallRealMethod();
when(handler.preInvocation(any(), any(), any())).thenCallRealMethod();
when(handler.asyncSupport()).thenReturn(true);
}

@Test
Expand Down Expand Up @@ -83,6 +85,17 @@ public void testCfThrows() {
verify(handler).onFailure(any(), eq(exception));
}

@Test
public void testCf_noAsyncSupport() {
when(handler.asyncSupport()).thenReturn(false);

proxy.cf();

verify(handler).isEnabled();
verify(handler).asyncSupport();
verifyNoMoreInteractions(handler);
}

@Test
public void testLfSuccess() {
SettableFuture<String> future = SettableFuture.create();
Expand Down Expand Up @@ -112,6 +125,17 @@ public void testLfThrows() {
verify(handler).onFailure(any(), eq(exception));
}

@Test
public void testLf_noAsyncSupport() {
when(handler.asyncSupport()).thenReturn(false);

proxy.lf();

verify(handler).isEnabled();
verify(handler).asyncSupport();
verifyNoMoreInteractions(handler);
}

interface AsyncIface {
CompletableFuture<String> cf();

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@ static java.util.function.BooleanSupplier getEnabledSupplier(String serviceName)
return InstrumentationProperties.getSystemPropertySupplier(serviceName);
}

@Override
public boolean asyncSupport() {
return true;
}

@Override
public InvocationContext preInvocation(Object instance, Method method, Object[] args) {
return DefaultInvocationContext.of(instance, method, args);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,11 @@ private static BooleanSupplier getEnabledSupplier(final String serviceName) {
return InstrumentationProperties.getSystemPropertySupplier(serviceName);
}

@Override
public boolean asyncSupport() {
return true;
}

@Override
public final InvocationContext preInvocation(Object instance, Method method, Object[] args) {
return DefaultInvocationContext.of(instance, method, args);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@ public LoggingInvocationEventHandler(Logger logger, LoggingLevel level,
this.durationPredicate = checkNotNull(durationPredicate, "durationPredicate");
}

@Override
public boolean asyncSupport() {
return true;
}

@Override
public final InvocationContext preInvocation(Object instance, Method method, Object[] args) {
return DefaultInvocationContext.of(instance, method, args);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,9 @@ public void onFailure(@Nullable InvocationContext context, @Nonnull Throwable ca
public boolean isEnabled() {
return isEnabled;
}

@Override
public boolean asyncSupport() {
return isEnabled;
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,12 @@ static InvocationEventHandler<InvocationContext> create(String component) {
return new RemotingCompatibleTracingInvocationEventHandler(component, createTracer());
}

@Override
public boolean asyncSupport() {
// Cannot support async operations until the Tracing library stops relying on ThreadLocal state
return false;
}

@Override
public InvocationContext preInvocation(Object instance, Method method, Object[] args) {
InvocationContext context = DefaultInvocationContext.of(instance, method, args);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,12 @@ public static InvocationEventHandler<InvocationContext> create(String component)
return new TracingInvocationEventHandler(component);
}

@Override
public boolean asyncSupport() {
// Cannot support async operations until the Tracing library stops relying on ThreadLocal state
return false;
}

@Override
public InvocationContext preInvocation(Object instance, Method method, Object[] args) {
InvocationContext context = DefaultInvocationContext.of(instance, method, args);
Expand Down