当初使用C#时,研究过好一阵它的ThreadLocal,以及可以跨线程传递的LogicalCallContext(ExecutionContext),无奈C#不开源(所幸有了.Net Core),只能满世界找文档,找博客。切换到Java后,终于接触到了另一种研究问题的方法:相比于查资料,更可以看代码,调试代码。然后,一切都不那么神秘了。
在我看来,Thread Local主要提供两个功能:
This class provides thread-local variables . These variables differ from their normal counterparts in that each thread that accesses one (via its get or set method) has its own, independently initialized copy of the variable. ThreadLocal instances are typically private static fields in classes that wish to associate state with a thread (e.g., a user ID or Transaction ID)
代码的注释太到位了。ThreadLocal应该翻译为【线程本地变量】,意为和普通变量相对。ThreadLocal通常是一个静态变量,但其 get()
得到的值在各个线程中互不相干。
ThreadLocal的几个核心方法:
get()
得到变量的值。如果此ThreadLocal在当前线程中被设置过值,则返回该值;否则,间接地调用 initialValue()
初始化当前线程中的变量,再返回初始值。 set()
设置当前线程中的变量值。 protected initialValue()
初始化方法。默认实现是返回null。 remove()
删除当前线程中的变量。 public class Thread implements Runnable { ThreadLocal.ThreadLocalMap threadLocals = null; } 复制代码
public void set(T value) { Thread t = Thread.currentThread(); ThreadLocalMap map = getMap(t); if (map != null) map.set(this, value); else createMap(t, value); } 复制代码
public T get() { Thread t = Thread.currentThread(); ThreadLocalMap map = getMap(t); if (map != null) { ThreadLocalMap.Entry e = map.getEntry(this); if (e != null) { @SuppressWarnings("unchecked") T result = (T)e.value; return result; } } return setInitialValue(); } 复制代码
ThreadLocalMap is a customized hash map suitable only for maintaining thread local values. To help deal with very large and long-lived usages, the hash table entries use WeakReferences for keys. However, since reference queues are not used, stale entries are guaranteed to be removed only when the table starts running out of space.
ThreadLocalMap是一个定制的Hash map,使用开放寻址法解决冲突。
WeakReference
,准确地说是继承了 WeakReference
WeakReference
的 reference
中, entry.get()
被当作map元素的key,而Entry还多了一个字段 value
,用来存放ThreadLocal变量实际的值。 entry.get()
会变为null。然而,GC只会清除被引用对象, Entry
还被线程的ThreadLocalMap引用着,因而不会被清除。因而, value
对象就不会被清除。除非线程退出,造成该线程的ThreadLocalMap整体释放,否则 value
的内存就无法释放, 内存泄漏 ! expungeStaleEntries()
清除 entry.get() == null
的元素,将Entry的value释放。 expungeStaleEntries()
就无能为力, value
的内存也不会被释放。而在我们确实用完了ThreadLocal后,可以主动调用 remove()
方法,主动删掉entry。 然而,真的有必要调用 remove()
方法吗?通常我们的场景是服务端,线程在不断地处理请求,每个请求到来会导致某线程中的Thread Local变量被赋予一个新的值,而原来的值对象自然地就失去了引用,被GC清理。所以 不存在泄露 !
Thread Local是不能跨线程传递的,线程隔离嘛!但有些场景中我们又想传递。例如:
下面我们就来看一下有哪些方法。
原理:InheritableThreadLocal这个类继承了ThreadLocal,重写了3个方法。
public class InheritableThreadLocal<T> extends ThreadLocal<T> { // 可以忽略 protected T childValue(T parentValue) { return parentValue; } /** * Get the map associated with a ThreadLocal. * * @param t the current thread */ ThreadLocalMap getMap(Thread t) { return t.inheritableThreadLocals; } /** * Create the map associated with a ThreadLocal. * * @param t the current thread * @param firstValue value for the initial entry of the table. */ void createMap(Thread t, T firstValue) { t.inheritableThreadLocals = new ThreadLocalMap(this, firstValue); } } 复制代码
可以看到使用 InheritableThreadLocal
时,map使用了线程的 inheritableThreadLocals
字段,而不是之前的 threadLocals
字段。
而 inheritableThreadLocals
字段既然叫可继承的,自然在创建新线程的时候会传递。代码在Thread的 init()
方法中:
if (inheritThreadLocals && parent.inheritableThreadLocals != null) this.inheritableThreadLocals = ThreadLocal.createInheritedMap(parent.inheritableThreadLocals); 复制代码
到此为止,通过inheritableThreadLocals我们可以在父线程创建子线程的时候将ThreadLocal中的值传递给子线程,这个特性已经能够满足大部分的需求了[1]。但是还有一个很严重的问题会出现在线程复用的情况下[2],比如线程池中去使用inheritableThreadLocals 进行传值,因为inheritableThreadLocals 只是会在新创建线程的时候进行传值,线程复用并不会做这个操作。
到这里JDK就无能为力了。C#提供了LogicalCallContext(以及Execution Context机制)来解决,Java要解决这个问题就得自己去扩展线程类,实现这个功能。
GitHub地址 。
transmittable-thread-local使用方式分为三种:(装饰器模式哦!)
具体使用方式官方文档非常清楚。
下面简析原理:
代码层面,以修饰 Runnable
举例:
capture()
捕获当前线程中的ThreadLocal private TtlCallable(@Nonnull Callable<V> callable, boolean releaseTtlValueReferenceAfterCall) { this.capturedRef = new AtomicReference<Object>(capture()); ... } 复制代码
capture()
方法是 Transmitter
类的静态方法: public static Object capture() { Map<TransmittableThreadLocal<?>, Object> captured = new HashMap<TransmittableThreadLocal<?>, Object>(); for (TransmittableThreadLocal<?> threadLocal : holder.get().keySet()) { captured.put(threadLocal, threadLocal.copyValue()); } return captured; } 复制代码
run()
中,先放出之前捕获的ThreadLocal。 public void run() { Object captured = capturedRef.get(); ... Object backup = replay(captured); try { runnable.run(); } finally { restore(backup); } } 复制代码
时序图: