24
24
/**
25
25
* Holds values extracted from {@link ThreadLocal} and other types of context and exposes
26
26
* methods to propagate those values.
27
- *
27
+ * <p>
28
+ * Use {@link ContextSnapshotFactory#builder()} to configure a factory to work with
29
+ * snapshots.
28
30
* <p>
29
31
* Implementations are disallowed to store {@code null} values. If a {@link ThreadLocal}
30
32
* is not set, or it's value is {@code null}, there is no way of distinguishing one from
34
36
* {@link ContextAccessor#readValues(Object, Predicate, Map)}, and should likewise ignore
35
37
* {@code null} values from {@link ContextAccessor#readValue(Object, Object)}.
36
38
*
37
- * <p>
38
- * Use static factory methods on this interface to create a snapshot.
39
- *
40
39
* @author Rossen Stoyanchev
41
40
* @author Brian Clozel
41
+ * @author Dariusz Jędrzejczyk
42
42
* @since 1.0.0
43
43
*/
44
44
public interface ContextSnapshot {
@@ -72,6 +72,7 @@ public interface ContextSnapshot {
72
72
/**
73
73
* Variant of {@link #setThreadLocals()} with a predicate to select context values by
74
74
* key.
75
+ * @param keyPredicate selects keys for use when setting {@link ThreadLocal} values
75
76
* @return an object that can be used to reset {@link ThreadLocal} values at the end
76
77
* of the context scope, either removing them or restoring their previous values, if
77
78
* any.
@@ -82,6 +83,7 @@ public interface ContextSnapshot {
82
83
* Return a new {@code Runnable} that sets {@code ThreadLocal} values from the
83
84
* snapshot around the invocation of the given {@code Runnable}.
84
85
* @param runnable the runnable to instrument
86
+ * @return wrapped instance
85
87
*/
86
88
default Runnable wrap (Runnable runnable ) {
87
89
return () -> {
@@ -96,6 +98,7 @@ default Runnable wrap(Runnable runnable) {
96
98
* snapshot around the invocation of the given {@code Callable}.
97
99
* @param callable the callable to instrument
98
100
* @param <T> the type of value produced by the {@code Callable}
101
+ * @return wrapped instance
99
102
*/
100
103
default <T > Callable <T > wrap (Callable <T > callable ) {
101
104
return () -> {
@@ -110,6 +113,7 @@ default <T> Callable<T> wrap(Callable<T> callable) {
110
113
* snapshot around the invocation of the given {@code Consumer}.
111
114
* @param consumer the callable to instrument
112
115
* @param <T> the type of value produced by the {@code Callable}
116
+ * @return wrapped instance
113
117
*/
114
118
default <T > Consumer <T > wrap (Consumer <T > consumer ) {
115
119
return value -> {
@@ -123,6 +127,7 @@ default <T> Consumer<T> wrap(Consumer<T> consumer) {
123
127
* Return a new {@code Executor} that sets {@code ThreadLocal} values from the
124
128
* snapshot around the invocation of any executed, {@code Runnable}.
125
129
* @param executor the executor to instrument
130
+ * @return wrapped instance
126
131
* @see ContextExecutorService
127
132
* @see ContextScheduledExecutorService
128
133
*/
@@ -139,7 +144,10 @@ default Executor wrapExecutor(Executor executor) {
139
144
* instance.
140
145
* @param contexts one more context objects to extract values from
141
146
* @return a snapshot with saved context values
147
+ * @deprecated use {@link ContextSnapshotFactory#captureAll(Object...)} on a factory
148
+ * obtained via a {@link ContextSnapshotFactory#builder()}.
142
149
*/
150
+ @ Deprecated
143
151
static ContextSnapshot captureAll (Object ... contexts ) {
144
152
return captureAll (ContextRegistry .getInstance (), contexts );
145
153
}
@@ -151,7 +159,11 @@ static ContextSnapshot captureAll(Object... contexts) {
151
159
* @param registry the registry to use
152
160
* @param contexts one more context objects to extract values from
153
161
* @return a snapshot with saved context values
162
+ * @deprecated use {@link ContextSnapshotFactory#captureAll(Object...)} on a factory
163
+ * obtained via a {@link ContextSnapshotFactory#builder()} combined with
164
+ * {@link ContextSnapshotFactory.Builder#contextRegistry(ContextRegistry)}.
154
165
*/
166
+ @ Deprecated
155
167
static ContextSnapshot captureAll (ContextRegistry registry , Object ... contexts ) {
156
168
return captureAllUsing (key -> true , registry , contexts );
157
169
}
@@ -163,61 +175,23 @@ static ContextSnapshot captureAll(ContextRegistry registry, Object... contexts)
163
175
* @param registry the registry with the accessors to use
164
176
* @param contexts one more context objects to extract values from
165
177
* @return a snapshot with saved context values
178
+ * @deprecated use {@link ContextSnapshotFactory#captureAll(Object...)} on a factory
179
+ * obtained via a {@link ContextSnapshotFactory#builder()} and configure
180
+ * {@link ContextSnapshotFactory.Builder#captureKeyPredicate(Predicate)} and
181
+ * {@link ContextSnapshotFactory.Builder#contextRegistry(ContextRegistry)}.
166
182
*/
183
+ @ Deprecated
167
184
static ContextSnapshot captureAllUsing (Predicate <Object > keyPredicate , ContextRegistry registry ,
168
185
Object ... contexts ) {
169
-
170
- return DefaultContextSnapshot .captureAll (registry , keyPredicate , contexts );
171
- }
172
-
173
- /**
174
- * Create a {@link ContextSnapshot} by reading values from the given context objects.
175
- * <p>
176
- * Values captured multiple times are overridden in the snapshot by the order of
177
- * contexts given as arguments.
178
- * @param contexts the contexts to read values from
179
- * @return the created {@link ContextSnapshot}
180
- * @since 1.0.3
181
- */
182
- static ContextSnapshot captureFromContext (Object ... contexts ) {
183
- return DefaultContextSnapshot .captureFromContext (key -> true , ContextRegistry .getInstance (), null , contexts );
184
- }
185
-
186
- /**
187
- * Create a {@link ContextSnapshot} by reading values from the given context objects.
188
- * <p>
189
- * Values captured multiple times are overridden in the snapshot by the order of
190
- * contexts given as arguments.
191
- * @param registry the registry to use
192
- * @param contexts the contexts to read values from
193
- * @return the created {@link ContextSnapshot}
194
- * @since 1.0.3
195
- */
196
- static ContextSnapshot captureFromContext (ContextRegistry registry , Object ... contexts ) {
197
- return DefaultContextSnapshot .captureFromContext (key -> true , registry , null , contexts );
198
- }
199
-
200
- /**
201
- * Create a {@link ContextSnapshot} by reading values from the given context objects.
202
- * <p>
203
- * Values captured multiple times are overridden in the snapshot by the order of
204
- * contexts given as arguments.
205
- * @param keyPredicate predicate for context value keys
206
- * @param registry the registry to use
207
- * @param contexts the contexts to read values from
208
- * @return the created {@link ContextSnapshot}
209
- * @since 1.0.3
210
- */
211
- static ContextSnapshot captureFromContext (Predicate <Object > keyPredicate , ContextRegistry registry ,
212
- Object ... contexts ) {
213
- return DefaultContextSnapshot .captureFromContext (keyPredicate , registry , null , contexts );
186
+ return DefaultContextSnapshotFactory .captureAll (registry , keyPredicate , false , contexts );
214
187
}
215
188
216
189
/**
217
190
* Create a {@link ContextSnapshot} by reading values from the given context object.
218
191
* @param context the context to read values from
219
192
* @return the created {@link ContextSnapshot}
220
- * @deprecated as of 1.0.3 in favor of {@link #captureFromContext(Object...)}
193
+ * @deprecated use {@link ContextSnapshotFactory#captureFrom(Object...)} on a factory
194
+ * obtained via a {@link ContextSnapshotFactory#builder()}.
221
195
*/
222
196
@ Deprecated
223
197
static ContextSnapshot captureFrom (Object context ) {
@@ -229,12 +203,13 @@ static ContextSnapshot captureFrom(Object context) {
229
203
* @param context the context to read values from
230
204
* @param registry the registry to use
231
205
* @return the created {@link ContextSnapshot}
232
- * @deprecated as of 1.0.3 in favor of
233
- * {@link #captureFromContext(ContextRegistry, Object...)}
206
+ * @deprecated use {@link ContextSnapshotFactory#captureFrom(Object...)} on a factory
207
+ * obtained via a {@link ContextSnapshotFactory#builder()} combined with
208
+ * {@link ContextSnapshotFactory.Builder#contextRegistry(ContextRegistry)}.
234
209
*/
235
210
@ Deprecated
236
211
static ContextSnapshot captureFrom (Object context , ContextRegistry registry ) {
237
- return DefaultContextSnapshot .captureFromContext (key -> true , registry , null , context );
212
+ return DefaultContextSnapshotFactory .captureFromContext (key -> true , false , registry , null , context );
238
213
}
239
214
240
215
/**
@@ -243,12 +218,14 @@ static ContextSnapshot captureFrom(Object context, ContextRegistry registry) {
243
218
* @param keyPredicate predicate for context value keys
244
219
* @param registry the registry to use
245
220
* @return the created {@link ContextSnapshot}
246
- * @deprecated as of 1.0.3 in favor of
247
- * {@link #captureFromContext(Predicate, ContextRegistry, Object...)}
221
+ * @deprecated use {@link ContextSnapshotFactory#captureFrom(Object...)} on a factory
222
+ * obtained via a {@link ContextSnapshotFactory#builder()} and configure
223
+ * {@link ContextSnapshotFactory.Builder#captureKeyPredicate(Predicate)} and
224
+ * {@link ContextSnapshotFactory.Builder#contextRegistry(ContextRegistry)}.
248
225
*/
249
226
@ Deprecated
250
227
static ContextSnapshot captureFrom (Object context , Predicate <Object > keyPredicate , ContextRegistry registry ) {
251
- return DefaultContextSnapshot .captureFromContext (keyPredicate , registry , null , context );
228
+ return DefaultContextSnapshotFactory .captureFromContext (keyPredicate , false , registry , null , context );
252
229
}
253
230
254
231
/**
@@ -258,9 +235,14 @@ static ContextSnapshot captureFrom(Object context, Predicate<Object> keyPredicat
258
235
* @return an object that can be used to reset {@link ThreadLocal} values at the end
259
236
* of the context scope, either removing them or restoring their previous values, if
260
237
* any.
238
+ * @deprecated use
239
+ * {@link ContextSnapshotFactory#setThreadLocalsFrom(Object, String...)} with no keys
240
+ * on a factory obtained via a {@link ContextSnapshotFactory#builder()}.
261
241
*/
242
+ @ Deprecated
262
243
static Scope setAllThreadLocalsFrom (Object sourceContext ) {
263
- return DefaultContextSnapshot .setAllThreadLocalsFrom (sourceContext , ContextRegistry .getInstance ());
244
+ return DefaultContextSnapshotFactory .setAllThreadLocalsFrom (sourceContext , ContextRegistry .getInstance (),
245
+ false );
264
246
}
265
247
266
248
/**
@@ -271,9 +253,14 @@ static Scope setAllThreadLocalsFrom(Object sourceContext) {
271
253
* @return an object that can be used to reset {@link ThreadLocal} values at the end
272
254
* of the context scope, either removing them or restoring their previous values, if
273
255
* any.
256
+ * @deprecated use
257
+ * {@link ContextSnapshotFactory#setThreadLocalsFrom(Object, String...)} with no keys
258
+ * on a factory obtained via a {@link ContextSnapshotFactory#builder()} combined with
259
+ * {@link ContextSnapshotFactory.Builder#contextRegistry(ContextRegistry)}.
274
260
*/
261
+ @ Deprecated
275
262
static Scope setAllThreadLocalsFrom (Object sourceContext , ContextRegistry contextRegistry ) {
276
- return DefaultContextSnapshot .setAllThreadLocalsFrom (sourceContext , contextRegistry );
263
+ return DefaultContextSnapshotFactory .setAllThreadLocalsFrom (sourceContext , contextRegistry , false );
277
264
}
278
265
279
266
/**
@@ -286,7 +273,11 @@ static Scope setAllThreadLocalsFrom(Object sourceContext, ContextRegistry contex
286
273
* @return an object that can be used to reset {@link ThreadLocal} values at the end
287
274
* of the context scope, either removing them or restoring their previous values, if
288
275
* any.
276
+ * @deprecated use
277
+ * {@link ContextSnapshotFactory#setThreadLocalsFrom(Object, String...)} on a factory
278
+ * obtained via a {@link ContextSnapshotFactory#builder()}.
289
279
*/
280
+ @ Deprecated
290
281
static Scope setThreadLocalsFrom (Object sourceContext , String ... keys ) {
291
282
return setThreadLocalsFrom (sourceContext , ContextRegistry .getInstance (), keys );
292
283
}
@@ -300,9 +291,14 @@ static Scope setThreadLocalsFrom(Object sourceContext, String... keys) {
300
291
* @return an object that can be used to reset {@link ThreadLocal} values at the end
301
292
* of the context scope, either removing them or restoring their previous values, if
302
293
* any.
294
+ * @deprecated use
295
+ * {@link ContextSnapshotFactory#setThreadLocalsFrom(Object, String...)} on a factory
296
+ * obtained via a {@link ContextSnapshotFactory#builder()} combined with
297
+ * {@link ContextSnapshotFactory.Builder#contextRegistry(ContextRegistry)}.
303
298
*/
299
+ @ Deprecated
304
300
static Scope setThreadLocalsFrom (Object sourceContext , ContextRegistry contextRegistry , String ... keys ) {
305
- return DefaultContextSnapshot .setThreadLocalsFrom (sourceContext , contextRegistry , keys );
301
+ return DefaultContextSnapshotFactory .setThreadLocalsFrom (sourceContext , contextRegistry , false , keys );
306
302
}
307
303
308
304
/**
0 commit comments