-
Notifications
You must be signed in to change notification settings - Fork 873
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix context propagation in Executor#execute() for non-capturing lambd…
…as (#9179) Co-authored-by: Trask Stalnaker <[email protected]>
- Loading branch information
Showing
3 changed files
with
93 additions
and
5 deletions.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
.../main/java/io/opentelemetry/javaagent/bootstrap/executors/ContextPropagatingRunnable.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package io.opentelemetry.javaagent.bootstrap.executors; | ||
|
||
import io.opentelemetry.context.Context; | ||
import io.opentelemetry.context.Scope; | ||
|
||
public final class ContextPropagatingRunnable implements Runnable { | ||
|
||
public static boolean shouldDecorateRunnable(Runnable task) { | ||
// We wrap only lambdas' anonymous classes and if given object has not already been wrapped. | ||
// Anonymous classes have '/' in class name which is not allowed in 'normal' classes. | ||
// note: it is always safe to decorate lambdas since downstream code cannot be expecting a | ||
// specific runnable implementation anyways | ||
return task.getClass().getName().contains("/") && !(task instanceof ContextPropagatingRunnable); | ||
} | ||
|
||
public static Runnable propagateContext(Runnable task, Context context) { | ||
return new ContextPropagatingRunnable(task, context); | ||
} | ||
|
||
private final Runnable delegate; | ||
private final Context context; | ||
|
||
private ContextPropagatingRunnable(Runnable delegate, Context context) { | ||
this.delegate = delegate; | ||
this.context = context; | ||
} | ||
|
||
@Override | ||
public void run() { | ||
try (Scope ignored = context.makeCurrent()) { | ||
delegate.run(); | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
44 changes: 44 additions & 0 deletions
44
...va/io/opentelemetry/javaagent/instrumentation/executors/LambdaContextPropagationTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
/* | ||
* Copyright The OpenTelemetry Authors | ||
* SPDX-License-Identifier: Apache-2.0 | ||
*/ | ||
|
||
package io.opentelemetry.javaagent.instrumentation.executors; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
|
||
import io.opentelemetry.api.baggage.Baggage; | ||
import io.opentelemetry.context.Scope; | ||
import java.util.concurrent.ExecutorService; | ||
import java.util.concurrent.Executors; | ||
import java.util.concurrent.atomic.AtomicInteger; | ||
import org.junit.jupiter.api.Test; | ||
|
||
// regression test for #9175 | ||
class LambdaContextPropagationTest { | ||
|
||
// must be static! the lambda that uses that must be non-capturing | ||
private static final AtomicInteger failureCounter = new AtomicInteger(); | ||
|
||
@Test | ||
void shouldCorrectlyPropagateContextToRunnables() { | ||
ExecutorService executor = Executors.newSingleThreadExecutor(); | ||
|
||
Baggage baggage = Baggage.builder().put("test", "test").build(); | ||
try (Scope ignored = baggage.makeCurrent()) { | ||
for (int i = 0; i < 20; i++) { | ||
// must text execute() -- other methods like submit() decorate the Runnable with a | ||
// FutureTask | ||
executor.execute(LambdaContextPropagationTest::assertBaggage); | ||
} | ||
} | ||
|
||
assertThat(failureCounter).hasValue(0); | ||
} | ||
|
||
private static void assertBaggage() { | ||
if (Baggage.current().getEntryValue("test") == null) { | ||
failureCounter.incrementAndGet(); | ||
} | ||
} | ||
} |