Skip to content

Commit fb14a8b

Browse files
committed
Remove deprecated ActionScope methods
1 parent fe42a9c commit fb14a8b

File tree

11 files changed

+55
-66
lines changed

11 files changed

+55
-66
lines changed

.palantir/revapi.yml

+12
Original file line numberDiff line numberDiff line change
@@ -6300,6 +6300,18 @@ acceptedBreaks:
63006300
- code: "java.method.removed"
63016301
old: "method java.lang.String misk.web.metadata.Metadata::getId()"
63026302
justification: "API is unused so change is safe"
6303+
"2024.04.22.213320-ac881d1":
6304+
com.squareup.misk:misk-action-scopes:
6305+
- code: "java.method.removed"
6306+
old: "method java.util.Map<com.google.inject.Key<?>, java.lang.Object> misk.scope.ActionScope.Instance::asImmediateValues$misk_action_scopes()"
6307+
justification: "Removed ActionScope methods that had been deprecated for a month"
6308+
- code: "java.method.removed"
6309+
old: "method java.util.Map<com.google.inject.Key<?>, java.lang.Object> misk.scope.ActionScope::snapshotActionScope()"
6310+
justification: "Removed ActionScope methods that had been deprecated for a month"
6311+
- code: "java.method.removed"
6312+
old: "method misk.scope.ActionScope misk.scope.ActionScope::enter(java.util.Map<com.google.inject.Key<?>,\
6313+
\ ? extends java.lang.Object>)"
6314+
justification: "Removed ActionScope methods that had been deprecated for a month"
63036315
misk-0.18.0:
63046316
com.squareup.misk:misk-gcp:
63056317
- code: "java.method.numberOfParametersChanged"

misk-action-scopes/api/misk-action-scopes.api

-2
Original file line numberDiff line numberDiff line change
@@ -19,15 +19,13 @@ public final class misk/scope/ActionScope : java/lang/AutoCloseable {
1919
public final fun asContextElement ()Lkotlin/coroutines/CoroutineContext$Element;
2020
public fun close ()V
2121
public final fun create (Ljava/util/Map;)Lmisk/scope/ActionScope$Instance;
22-
public final fun enter (Ljava/util/Map;)Lmisk/scope/ActionScope;
2322
public final fun get (Lcom/google/inject/Key;)Ljava/lang/Object;
2423
public final fun inScope ()Z
2524
public final fun propagate (Ljava/util/concurrent/Callable;)Ljava/util/concurrent/Callable;
2625
public final fun propagate (Lkotlin/jvm/functions/Function0;)Lkotlin/jvm/functions/Function0;
2726
public final fun propagate (Lkotlin/reflect/KFunction;)Lkotlin/reflect/KFunction;
2827
public final fun runBlocking (Lkotlin/coroutines/CoroutineContext;Lkotlin/jvm/functions/Function2;)Ljava/lang/Object;
2928
public final fun runBlocking (Lkotlin/jvm/functions/Function2;)Ljava/lang/Object;
30-
public final fun snapshotActionScope ()Ljava/util/Map;
3129
public final fun snapshotActionScopeInstance ()Lmisk/scope/ActionScope$Instance;
3230
}
3331

misk-action-scopes/src/main/kotlin/misk/scope/ActionScope.kt

+1-22
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class ActionScope @Inject internal constructor(
5858
*
5959
* Example usage:
6060
* ```
61-
* scope.enter(seedData).use {
61+
* scope.create(seedData).inScope {
6262
* runBlocking(scope.asContextElement()) {
6363
* async(Dispatchers.IO) {
6464
* tester.fooValue()
@@ -76,26 +76,11 @@ class ActionScope @Inject internal constructor(
7676
return threadLocalInstance.asContextElement(instance)
7777
}
7878

79-
@Deprecated(
80-
"Use snapshotActionScopeInstance instead",
81-
ReplaceWith("this.snapshotActionScopeInstance()"),
82-
)
83-
fun snapshotActionScope(): Map<Key<*>, Any?> {
84-
return snapshotActionScopeInstance().asImmediateValues()
85-
}
86-
8779
fun snapshotActionScopeInstance(): Instance {
8880
check(inScope()) { "not running within an ActionScope" }
8981
return threadLocalInstance.get()
9082
}
9183

92-
@Deprecated("Use create() instead and then call inScope() to enter the scope")
93-
/** Starts the scope on a thread with the provided seed data */
94-
fun enter(seedData: Map<Key<*>, Any?>): ActionScope {
95-
create(seedData).enter()
96-
return this
97-
}
98-
9984
/** Creates a new scope on the current thread with the provided seed data */
10085
fun create(seedData: Map<Key<*>, Any?>): Instance {
10186
check(!inScope()) {
@@ -217,12 +202,6 @@ class ActionScope @Inject internal constructor(
217202
return lazyValues.getValue(key).value as T
218203
}
219204

220-
internal fun asImmediateValues(): Map<Key<*>, Any?> {
221-
return lazyValues
222-
.filterValues { it.isInitialized() }
223-
.mapValues { it.value.value }
224-
}
225-
226205
fun <T> inScope(block: () -> T): T {
227206
return scope.enter(this).use {
228207
block()

misk-action-scopes/src/test/kotlin/misk/scope/ActionScopePropagationTest.kt

+9-9
Original file line numberDiff line numberDiff line change
@@ -34,11 +34,11 @@ internal class ActionScopePropagationTest {
3434
keyOf<String>(Names.named("from-seed")) to "my seed data"
3535
)
3636

37-
val callable = scope.enter(seedData).use {
37+
val callable = scope.create(seedData).inScope {
3838
scope.propagate(Callable { tester.fooValue() })
3939
}
4040

41-
scope.enter(seedData).use {
41+
scope.create(seedData).inScope {
4242
// Submit to same thread after we've already entered the scope
4343
val result = directExecutor.submit(callable).get()
4444
assertThat(result).isEqualTo("my seed data and bar and foo!")
@@ -55,7 +55,7 @@ internal class ActionScopePropagationTest {
5555
keyOf<String>(Names.named("from-seed")) to "my seed data"
5656
)
5757

58-
val callable = scope.enter(seedData).use {
58+
val callable = scope.create(seedData).inScope {
5959
scope.propagate(Callable { tester.fooValue() })
6060
}
6161

@@ -76,11 +76,11 @@ internal class ActionScopePropagationTest {
7676

7777
// Propagate on the the KCallable directly
7878
val f: KFunction<String> = tester::fooValue
79-
val callable = scope.enter(seedData).use {
79+
val callable = scope.create(seedData).inScope {
8080
scope.propagate(f)
8181
}
8282

83-
scope.enter(seedData).use {
83+
scope.create(seedData).inScope {
8484
// Submit to same thread after we've already entered the scope
8585
val result = directExecutor.submit(
8686
Callable {
@@ -103,7 +103,7 @@ internal class ActionScopePropagationTest {
103103

104104
// Propagate on the the KCallable directly
105105
val f: KFunction<String> = tester::fooValue
106-
val callable = scope.enter(seedData).use {
106+
val callable = scope.create(seedData).inScope {
107107
scope.propagate(f)
108108
}
109109

@@ -127,11 +127,11 @@ internal class ActionScopePropagationTest {
127127
)
128128

129129
// Propagate on a lambda directly
130-
val function = scope.enter(seedData).use {
130+
val function = scope.create(seedData).inScope {
131131
scope.propagate { tester.fooValue() }
132132
}
133133

134-
scope.enter(seedData).use {
134+
scope.create(seedData).inScope {
135135
// Submit to same thread after we've already entered the scope
136136
val result = directExecutor.submit(Callable { function() }).get()
137137
assertThat(result).isEqualTo("my seed data and bar and foo!")
@@ -149,7 +149,7 @@ internal class ActionScopePropagationTest {
149149
)
150150

151151
// Propagate on a lambda directly
152-
val function = scope.enter(seedData).use {
152+
val function = scope.create(seedData).inScope {
153153
scope.propagate { tester.fooValue() }
154154
}
155155

misk-action-scopes/src/test/kotlin/misk/scope/ActionScopedTest.kt

+19-19
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ internal class ActionScopedTest {
5858
keyOf<String>(Names.named("from-seed")) to "seed-value"
5959

6060
)
61-
scope.enter(seedData).use { assertThat(foo.get()).isEqualTo("seed-value and bar and foo!") }
61+
scope.create(seedData).inScope { assertThat(foo.get()).isEqualTo("seed-value and bar and foo!") }
6262
}
6363

6464
@Test
@@ -67,7 +67,7 @@ internal class ActionScopedTest {
6767
val injector = Guice.createInjector(TestActionScopedProviderModule())
6868
injector.injectMembers(this)
6969

70-
scope.enter(mapOf()).use { scope.enter(mapOf()).use { } }
70+
scope.create(mapOf()).inScope { scope.create(mapOf()) }
7171
}
7272
}
7373

@@ -88,7 +88,7 @@ internal class ActionScopedTest {
8888
injector.injectMembers(this)
8989

9090
// NB(mmihic): Seed data not specified
91-
scope.enter(mapOf()).use { foo.get() }
91+
scope.create(mapOf()).inScope { foo.get() }
9292
}
9393
}
9494

@@ -98,7 +98,7 @@ internal class ActionScopedTest {
9898
injector.injectMembers(this)
9999

100100
val seedData: Map<Key<*>, Any> = mapOf(keyOf<String>(Names.named("from-seed")) to "null")
101-
val result = scope.enter(seedData).use { nullableFoo.get() }
101+
val result = scope.create(seedData).inScope { nullableFoo.get() }
102102
assertThat(result).isNull()
103103
}
104104

@@ -107,7 +107,7 @@ internal class ActionScopedTest {
107107
val injector = Guice.createInjector(TestActionScopedProviderModule())
108108
injector.injectMembers(this)
109109

110-
scope.enter(mapOf()).use {
110+
scope.create(mapOf()).inScope {
111111
assertThat(constantString.get()).isEqualTo("constant-value")
112112
assertThat(optionalConstantString.get()).isEqualTo(Optional.of("constant-value"))
113113

@@ -127,13 +127,13 @@ internal class ActionScopedTest {
127127
val emptyOptionalSeedData: Map<Key<*>, Any> = mapOf(
128128
optionalStringKey to Optional.empty<String>(),
129129
)
130-
val emptyOptionalResult = scope.enter(emptyOptionalSeedData).use { optional.get() }
130+
val emptyOptionalResult = scope.create(emptyOptionalSeedData).inScope { optional.get() }
131131
assertThat(emptyOptionalResult).isEqualTo("empty")
132132

133133
val presentOptionalSeedData: Map<Key<*>, Any> = mapOf(
134134
optionalStringKey to Optional.of("present"),
135135
)
136-
val presentOptionalResult = scope.enter(presentOptionalSeedData).use { optional.get() }
136+
val presentOptionalResult = scope.create(presentOptionalSeedData).inScope { optional.get() }
137137
assertThat(presentOptionalResult).isEqualTo("present")
138138
}
139139

@@ -143,7 +143,7 @@ internal class ActionScopedTest {
143143
injector.injectMembers(this)
144144

145145
val seedData: Map<Key<*>, Any> = mapOf(keyOf<String>(Names.named("from-seed")) to "null")
146-
val result = scope.enter(seedData).use { nullableBasedOnFoo.get() }
146+
val result = scope.create(seedData).inScope { nullableBasedOnFoo.get() }
147147
assertThat(result).isNull()
148148
}
149149

@@ -158,7 +158,7 @@ internal class ActionScopedTest {
158158
val seedData: Map<Key<*>, Any> = mapOf(
159159
keyOf<String>(Names.named("from-seed")) to "illegal-state"
160160
)
161-
scope.enter(seedData).use { zed.get() }
161+
scope.create(seedData).inScope { zed.get() }
162162
}
163163
}
164164

@@ -171,8 +171,8 @@ internal class ActionScopedTest {
171171
keyOf<String>(Names.named("from-seed")) to "seed-value"
172172

173173
)
174-
scope.enter(seedData).use { actionScope ->
175-
runBlocking(actionScope.asContextElement()) {
174+
scope.create(seedData).inScope {
175+
runBlocking(scope.asContextElement()) {
176176
assertThat(foo.get()).isEqualTo("seed-value and bar and foo!")
177177
}
178178
}
@@ -198,7 +198,7 @@ internal class ActionScopedTest {
198198
)
199199

200200
// exhibit A: trying to access scoped things in a new thread results in exceptions
201-
scope.enter(seedData).use { _ ->
201+
scope.create(seedData).inScope {
202202
var thrown: Throwable? = null
203203

204204
thread {
@@ -213,13 +213,13 @@ internal class ActionScopedTest {
213213

214214
// exhibit B: trying to access scoped things in a new thread can work, if you take
215215
// a snapshot of the scope and use it to instantiate a scope in the new thread.
216-
scope.enter(seedData).use { actionScope ->
216+
scope.create(seedData).inScope {
217217
var thrown: Throwable? = null
218218

219-
val snapshot = actionScope.snapshotActionScope()
219+
val instance = scope.snapshotActionScopeInstance()
220220
thread {
221221
try {
222-
actionScope.enter(snapshot).use {
222+
instance.inScope {
223223
assertThat(foo.get()).isEqualTo("seed-value and bar and foo!")
224224
}
225225
} catch (t: Throwable) {
@@ -240,7 +240,7 @@ internal class ActionScopedTest {
240240
)
241241

242242
// exhibit A: trying to access scoped things in a new thread results in exceptions
243-
scope.enter(seedData).use { _ ->
243+
scope.create(seedData).inScope {
244244
var thrown: Throwable? = null
245245

246246
thread {
@@ -255,13 +255,13 @@ internal class ActionScopedTest {
255255

256256
// exhibit B: trying to access scoped things in a new thread can work, if you take
257257
// a snapshot of the scope and use it to instantiate a scope in the new thread.
258-
scope.enter(seedData).use { actionScope ->
258+
scope.create(seedData).inScope {
259259
var thrown: Throwable? = null
260260

261-
val instance = actionScope.snapshotActionScopeInstance()
261+
val instance = scope.snapshotActionScopeInstance()
262262
thread {
263263
try {
264-
actionScope.enter(instance).use {
264+
instance.inScope {
265265
assertThat(foo.get()).isEqualTo("seed-value and bar and foo!")
266266
}
267267
} catch (t: Throwable) {

misk-action-scopes/src/test/kotlin/misk/scope/coroutine/ActionScopedCoroutineTest.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ internal class ActionScopedCoroutineTest {
3535
keyOf<String>(Names.named("from-seed")) to "my seed data"
3636
)
3737

38-
val value = scope.enter(seedData).use {
38+
val value = scope.create(seedData).inScope {
3939
scope.runBlocking {
4040
tester.fooValue()
4141
}
@@ -57,7 +57,7 @@ internal class ActionScopedCoroutineTest {
5757
keyOf<String>(Names.named("from-seed")) to "my seed data"
5858
)
5959

60-
val value = scope.enter(seedData).use {
60+
val value = scope.create(seedData).inScope {
6161
scope.runBlocking(Dispatchers.IO) {
6262
tester.fooValue()
6363
}

misk-action-scopes/src/test/kotlin/misk/scope/executor/ActionScopedExecutorServiceTest.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ internal class ActionScopedExecutorServiceTest {
4242
keyOf<String>(Names.named("from-seed")) to "my seed data"
4343
)
4444

45-
val future = scope.enter(seedData).use {
45+
val future = scope.create(seedData).inScope {
4646
executor.submit(Callable { tester.fooValue() })
4747
}
4848

misk-admin/src/test/kotlin/misk/web/v2/DashboardPageLayoutTest.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -26,15 +26,15 @@ class DashboardPageLayoutTest {
2626

2727
@Test
2828
fun `happy path`() {
29-
actionScope.enter(mapOf(HttpCall::class.toKey() to fakeHttpCall)).use {
29+
actionScope.create(mapOf(HttpCall::class.toKey() to fakeHttpCall)).inScope {
3030
// No exception thrown on correct usage
3131
layout.get().newBuilder().build()
3232
}
3333
}
3434

3535
@Test
3636
fun `no builder reuse permitted`() {
37-
actionScope.enter(mapOf(HttpCall::class.toKey() to fakeHttpCall)).use {
37+
actionScope.create(mapOf(HttpCall::class.toKey() to fakeHttpCall)).inScope {
3838
// Fresh builder must have newBuilder() called
3939
val e1 = assertFailsWith<IllegalStateException> { layout.get().build() }
4040
assertEquals(

misk-testing/src/main/kotlin/misk/web/MiskCallerExtension.kt

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,11 +15,11 @@ class MiskCallerExtension : BeforeTestExecutionCallback, AfterTestExecutionCallb
1515
val injector = context.retrieve<Injector>("injector")
1616
val actionScopeProvider = injector.getBinding(ActionScope::class.java)
1717
val actionScope = actionScopeProvider.provider.get()
18-
actionScope.enter(
18+
actionScope.create(
1919
mapOf(
2020
keyOf<MiskCaller>() to context.getPrincipal()
2121
)
22-
)
22+
).enter()
2323
}
2424

2525
override fun afterTestExecution(context: ExtensionContext) {

misk/src/main/kotlin/misk/web/BoundAction.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ internal class BoundAction<A : WebAction>(
122122
MDC.clear() // MDC should already be empty, but clear it again just in case
123123

124124
try {
125-
scope.enter(seedData).use {
125+
scope.create(seedData).inScope {
126126
handle(httpCall, pathMatcher)
127127
}
128128
} finally {

0 commit comments

Comments
 (0)