gitbook/朱涛 · Kotlin编程第一课/docs/501702.md
2022-09-03 22:05:03 +08:00

533 lines
20 KiB
Markdown
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# 30 | CoroutineScope是如何管理协程的
你好,我是朱涛。
通过前面课程的学习我们知道CoroutineScope是实现协程结构化并发的关键。使用CoroutineScope我们可以批量管理同一个作用域下面所有的协程。那么今天这节课我们就来研究一下CoroutineScope是如何管理协程的。
## CoroutineScope VS 结构化并发
在前面的课程中我们学习过CoroutineScope的用法。由于launch、async被定义成了CoroutineScope的扩展函数这就意味着在调用launch之前我们必须先获取CoroutineScope。
```plain
// 代码段1
public fun CoroutineScope.launch(
context: CoroutineContext = EmptyCoroutineContext,
start: CoroutineStart = CoroutineStart.DEFAULT,
block: suspend CoroutineScope.() -> Unit
): Job {}
public fun <T> CoroutineScope.async(
context: CoroutineContext = EmptyCoroutineContext,
start: CoroutineStart = CoroutineStart.DEFAULT,
block: suspend CoroutineScope.() -> T
): Deferred<T> {}
private fun testScope() {
val scope = CoroutineScope(Job())
scope.launch{
// 省略
}
}
```
不过很多初学者可能不知道协程早期的API并不是这么设计的最初的launch、async只是普通的顶层函数我们不需要scope就可以直接创建协程就像这样
```plain
// 代码段2
private fun testScope() {
// 早期协程API的写法
launch{
// 省略
}
}
```
很明显代码段2的写法要比代码段1的简单很多那么Kotlin官方为什么要舍近求远专门设计一个更加复杂的API呢这一切都是因为**结构化并发**。
让我们来看一段代码:
```plain
// 代码段3
private fun testScope() {
val scope = CoroutineScope(Job())
scope.launch{
launch {
delay(1000000L)
logX("Inner")
}
logX("Hello!")
delay(1000000L)
logX("World!") // 不会执行
}
scope.launch{
launch {
delay(1000000L)
logX("Inner")
}
logX("Hello!")
delay(1000000L)
logX("World1!") // 不会执行
}
Thread.sleep(500L)
scope.cancel()
}
```
上面这段代码很简单我们使用scope创建了两个顶层的协程接着在协程的内部我们使用launch又创建了一个子协程。最后我们在协程的外部等待了500毫秒并且调用了scope.cancel()。这样一来我们前面创建的4个协程就全部都取消了。
![](https://static001.geekbang.org/resource/image/7b/80/7b40c302yy14d01d07787dc857a5cf80.jpg?wh=2000x1125)
通过前面[第17讲](https://time.geekbang.org/column/article/488571)的学习我们知道上面的代码其实可以用这样的关系图来表示。父协程是属于Scope的子协程是属于父协程的因此只要调用了scope.cancel()这4个协程都会被取消。
想象一下如果我们将上面的代码用协程最初的API改写的话这一切就完全不一样了
```plain
// 代码段4
// 使用协程最初的API只是伪代码
private fun testScopeJob() {
val job = Job()
launch(job){
launch {
delay(1000000L)
logX("Inner")
}
logX("Hello!")
delay(1000000L)
logX("World!") // 不会执行
}
launch(job){
launch {
delay(1000000L)
logX("Inner")
}
logX("Hello!")
delay(1000000L)
logX("World1!") // 不会执行
}
Thread.sleep(500L)
job.cancel()
}
```
在上面的代码中为了实现结构化并发我们不得不创建一个Job对象然后将其传入launch当中作为参数。
你能感受到其中的差别吗如果使用原始的协程API结构化并发是需要开发者自觉往launch当中传job参数才能实现它是**可选**的开发者也可能疏忽大意忘记传参数。而launch成为CoroutineScope的扩展函数以后这一切就成为**必须**的了,我们开发者不可能忘记。
而且通过对比代码段3和4以后我们也可以发现**CoroutineScope管理协程的能力其实也是源自于Job。**
那么CoroutineScope与Job到底是如何实现结构化并发的呢接下来让我们从源码中寻找答案吧
## 父子关系在哪里建立的?
在分析源码之前我们先来写一个简单的Demo。接下来我们就以这个Demo为例来研究一下CoroutineScope是如何通过Job来管理协程的。
```plain
// 代码段5
private fun testScope() {
// 1
val scope = CoroutineScope(Job())
scope.launch{
launch {
delay(1000000L)
logX("Inner") // 不会执行
}
logX("Hello!")
delay(1000000L)
logX("World!") // 不会执行
}
Thread.sleep(500L)
// 2
scope.cancel()
}
public interface CoroutineScope {
public val coroutineContext: CoroutineContext
}
public interface Job : CoroutineContext.Element {}
```
以上代码的逻辑很简单我们先来看看注释1对应的地方。我们都知道CoroutineScope是一个接口那么我们**为什么可以调用它的构造函数来创建CoroutineScope对象呢**不应该使用object关键字创建匿名内部类吗
其实代码段5当中调用CoroutineScope()并不是构造函数,而是一个顶层函数:
```plain
// 代码段6
// 顶层函数
public fun CoroutineScope(context: CoroutineContext): CoroutineScope =
// 1
ContextScope(if (context[Job] != null) context else context + Job())
// 顶层函数
public fun Job(parent: Job? = null): CompletableJob = JobImpl(parent)
```
在[第1讲](https://time.geekbang.org/column/article/472154)当中我曾提到过Kotlin当中的函数名称在大部分情况下都是遵循“[驼峰命名法](https://zh.wikipedia.org/wiki/%E9%A7%9D%E5%B3%B0%E5%BC%8F%E5%A4%A7%E5%B0%8F%E5%AF%AB)”的而在一些特殊情况下则不遵循这种命名法。上面的顶层函数CoroutineScope()其实就属于特殊的情况因为它虽然是一个普通的顶层函数但它发挥的作用却是“构造函数”。类似的用法还有Job()这个顶层函数。
因此在Kotlin当中当顶层函数作为构造函数使用的时候**它的首字母是要大写的**。
让我们回到代码段6看看其中注释1的地方。这行代码的意思是当我们创建CoroutineScope的时候如果传入的Context是包含Job的那就直接用如果是不包含Job的就会创建一个新的Job。这就意味着**每一个CoroutineScope对象它的Context当中必定存在一个Job对象。**而代码段5当中的CoroutineScope(Job())改成CoroutineScope()也是完全没问题的。
接下来我们再来看看launch的源代码
```plain
// 代码段7
public fun CoroutineScope.launch(
context: CoroutineContext = EmptyCoroutineContext,
start: CoroutineStart = CoroutineStart.DEFAULT,
block: suspend CoroutineScope.() -> Unit
): Job {
// 1
val newContext = newCoroutineContext(context)
// 2
val coroutine = if (start.isLazy)
LazyStandaloneCoroutine(newContext, block) else
StandaloneCoroutine(newContext, active = true)
// 3
coroutine.start(start, coroutine, block)
return coroutine
}
```
在前面两节课里我们已经分析过注释1和注释3当中的逻辑了这节课呢我们来分析注释2处的逻辑。
```plain
// 代码段8
private open class StandaloneCoroutine(
parentContext: CoroutineContext,
active: Boolean
) : AbstractCoroutine<Unit>(parentContext, initParentJob = true, active = active) {
override fun handleJobException(exception: Throwable): Boolean {
handleCoroutineException(context, exception)
return true
}
}
private class LazyStandaloneCoroutine(
parentContext: CoroutineContext,
block: suspend CoroutineScope.() -> Unit
) : StandaloneCoroutine(parentContext, active = false) {
private val continuation = block.createCoroutineUnintercepted(this, this)
override fun onStart() {
continuation.startCoroutineCancellable(this)
}
}
```
可以看到StandaloneCoroutine是AbstractCoroutine的子类而在[第28讲](https://time.geekbang.org/column/article/499826)当中我们就已经遇到过AbstractCoroutine它其实就是代表了**协程的抽象类**。另外这里有一个initParentJob参数它是true代表了协程创建了以后需要初始化协程的父子关系。而LazyStandaloneCoroutine则是StandaloneCoroutine的子类它的active参数是false代表了以懒加载的方式创建协程。
接下来我们就看看它们的父类AbstractCoroutine
```plain
// 代码段9
public abstract class AbstractCoroutine<in T>(
parentContext: CoroutineContext,
initParentJob: Boolean,
active: Boolean
) : JobSupport(active), Job, Continuation<T>, CoroutineScope {
init {
if (initParentJob) initParentJob(parentContext[Job])
}
}
```
可以看到,**AbstractCoroutine其实是JobSupport的子类**在它的init{} 代码块当中会根据initParentJob参数判断是否需要初始化协程的父子关系。这个参数我们在代码段8当中已经分析过了它一定是true所以这里的initParentJob()方法一定会执行而它的参数parentContext\[Job\]取出来的Job其实就是我们在Scope当中的Job。
另外这里的initParentJob()方法是它的父类JobSupport当中的方法我们来看看
```plain
// 代码段10
public open class JobSupport constructor(active: Boolean) : Job, ChildJob, ParentJob, SelectClause0 {
final override val key: CoroutineContext.Key<*> get() = Job
protected fun initParentJob(parent: Job?) {
assert { parentHandle == null }
// 1
if (parent == null) {
parentHandle = NonDisposableHandle
return
}
// 2
parent.start()
@Suppress("DEPRECATION")
// 3
val handle = parent.attachChild(this)
parentHandle = handle
if (isCompleted) {
handle.dispose()
parentHandle = NonDisposableHandle
}
}
}
// Job源码
public interface Job : CoroutineContext.Element {
public val children: Sequence<Job>
public fun attachChild(child: ChildJob): ChildHandle
}
```
上面的代码一共有三个地方需要注意,我们来分析一下:
* 注释1判断传入的parent是否为空如果parent为空说明当前的协程不存在父Job这时候就谈不上创建协程父子关系了。不过如果按照代码段5的逻辑来分析的话此处的parent则是scope当中的Job因此代码会继续执行到注释2。
* 注释2这里是确保parent对应的Job启动了。
* 注释3parent.attachChild(this),这个方法我们在[第16讲](https://time.geekbang.org/column/article/487930)当中提到过它会将当前的Job添加为parent的子Job。**这里其实就是建立协程父子关系的关键代码。**
所以,我们可以将协程的结构当作一颗**N叉树**。每一个协程都对应着一个Job的对象而每一个Job可以有一个父Job也可以有多个子Job。
![](https://static001.geekbang.org/resource/image/30/9a/308decb3a0d5c89d2082673d00f33f9a.jpg?wh=2000x1013)
这样,当我们知道协程的父子关系是如何建立的了以后,父协程如何取消子协程也就很容易理解了。
## 协程是如何“结构化取消”的?
其实,协程的结构化取消,本质上是**事件的传递**,它跟我们平时生活中的场景都是类似的:
![](https://static001.geekbang.org/resource/image/0b/da/0b95644933e584dcdf0e8a24696394da.jpg?wh=2000x986)
就比如,当我们在学校、公司内部,有消息或任务需要传递的时候,总是遵循这样的规则:处理好分内的事情,剩下的部分交给上级和下级。协程的结构化取消,也是通过这样的事件消息模型来实现的。
甚至如果让我们来实现协程API的话都能想象到它的代码该怎么写
```plain
// 代码段11
fun Job.cancelJob() {
// 通知子Job
children.forEach {
cancelJob()
}
// 通知父Job
notifyParentCancel()
}
```
当然以上只是简化后的伪代码真实的协程代码一定比这个复杂很多但只要你能理解这一点我们后面的分析就很简单了。让我们接着代码段5当中的注释2继续分析scope.cancel()后续的流程。
```plain
// 代码段12
public fun CoroutineScope.cancel(cause: CancellationException? = null) {
val job = coroutineContext[Job] ?: error("Scope cannot be cancelled because it does not have a job: $this")
job.cancel(cause)
}
```
可以看到CoroutineScope的cancel()方法本质上是调用了它当中的Job.cancel()。而这个方法的具体实现在JobSupport当中
```plain
// 代码段13
public override fun cancel(cause: CancellationException?) {
cancelInternal(cause ?: defaultCancellationException())
}
public open fun cancelInternal(cause: Throwable) {
cancelImpl(cause)
}
internal fun cancelImpl(cause: Any?): Boolean {
var finalState: Any? = COMPLETING_ALREADY
if (onCancelComplete) {
// 1
finalState = cancelMakeCompleting(cause)
if (finalState === COMPLETING_WAITING_CHILDREN) return true
}
if (finalState === COMPLETING_ALREADY) {
// 2
finalState = makeCancelling(cause)
}
return when {
finalState === COMPLETING_ALREADY -> true
finalState === COMPLETING_WAITING_CHILDREN -> true
finalState === TOO_LATE_TO_CANCEL -> false
else -> {
afterCompletion(finalState)
true
}
}
}
```
可见job.cancel()最终会调用JobSupport的 **cancelImpl()方法**。其中有两个注释代表了两个分支它的判断依据是onCancelComplete这个Boolean类型的成员属性。这个其实就代表了当前的Job是否有协程体需要执行。
另外由于CoroutineScope当中的Job是我们手动创建的并不需要执行任何协程代码所以它会是 **true**。也就是说这里会执行注释1对应的代码。
让我们继续分析cancelMakeCompleting()方法:
```plain
// 代码段14
private fun cancelMakeCompleting(cause: Any?): Any? {
loopOnState { state ->
// 省略部分
val finalState = tryMakeCompleting(state, proposedUpdate)
if (finalState !== COMPLETING_RETRY) return finalState
}
}
private fun tryMakeCompleting(state: Any?, proposedUpdate: Any?): Any? {
if (state !is Incomplete)
return COMPLETING_ALREADY
// 省略部分
return COMPLETING_RETRY
}
return tryMakeCompletingSlowPath(state, proposedUpdate)
}
private fun tryMakeCompletingSlowPath(state: Incomplete, proposedUpdate: Any?): Any? {
// 省略部分
notifyRootCause?.let { notifyCancelling(list, it) }
return finalizeFinishingState(finishing, proposedUpdate)
}
```
从上面的代码中我们可以看到cancelMakeCompleting()会调用tryMakeCompleting()方法最终则会调用tryMakeCompletingSlowPath()当中的notifyCancelling()方法。所以,**它才是最关键的代码。**
```plain
// 代码段15
private fun notifyCancelling(list: NodeList, cause: Throwable) {
onCancelling(cause)
// 1通知子Job
notifyHandlers<JobCancellingNode>(list, cause)
// 2通知父Job
cancelParent(cause)
}
```
可以看到上面代码段15和我们前面写的代码段11当中的伪代码的逻辑是一致的。我们再分别来看看它们具体的逻辑
```plain
// 代码段16
private inline fun <reified T: JobNode> notifyHandlers(list: NodeList, cause: Throwable?) {
var exception: Throwable? = null
list.forEach<T> { node ->
try {
node.invoke(cause)
} catch (ex: Throwable) {
exception?.apply { addSuppressedThrowable(ex) } ?: run {
exception = CompletionHandlerException("Exception in completion handler $node for $this", ex)
}
}
}
exception?.let { handleOnCompletionException(it) }
}
```
代码段16当中的逻辑就是遍历当前Job的子Job并将取消的cause传递过去这里的invoke()最终会调用ChildHandleNode的invoke()方法:
```plain
internal class ChildHandleNode(
@JvmField val childJob: ChildJob
) : JobCancellingNode(), ChildHandle {
override val parent: Job get() = job
override fun invoke(cause: Throwable?) = childJob.parentCancelled(job)
override fun childCancelled(cause: Throwable): Boolean = job.childCancelled(cause)
}
public final override fun parentCancelled(parentJob: ParentJob) {
cancelImpl(parentJob)
}
```
然后从以上代码中我们可以看到ChildHandleNode的invoke()方法会调用parentCancelled()方法而它最终会调用cancelImpl()方法。其实这个就是代码段13当中的cancelImpl()方法也就是Job取消的入口函数。这实际上就相当于在做**递归调用**。
接下来我们看看代码段15当中的注释2通知父Job的流程
```plain
private fun cancelParent(cause: Throwable): Boolean {
if (isScopedCoroutine) return true
val isCancellation = cause is CancellationException
val parent = parentHandle
if (parent === null || parent === NonDisposableHandle) {
return isCancellation
}
// 1
return parent.childCancelled(cause) || isCancellation
}
```
请留意上面代码段的注释1这个函数的返回值是有意义的返回true代表父协程处理了异常而返回false代表父协程没有处理异常。这种类似**责任链的设计模式**在很多领域都有应用比如Android的事件分发机制、OkHttp的拦截器等等。
```plain
public open fun childCancelled(cause: Throwable): Boolean {
if (cause is CancellationException) return true
return cancelImpl(cause) && handlesException
}
```
那么当异常是CancellationException的时候协程是会进行特殊处理的。一般来说父协程会忽略子协程的取消异常这一点我们在[第23讲](https://time.geekbang.org/column/article/493666)当中也提到过。而如果是其他的异常那么父协程就会响应子协程的取消了。这个时候我们的代码又会继续递归调用代码段13当中的cancelImpl()方法了。
至此,协程的“结构化取消”部分的逻辑,我们也分析完了。让我们通过视频来看看它们整体的执行流程。
## 小结
今天的内容到这里就结束了,我们来总结和回顾一下这节课里涉及到的知识点:
* 每次创建CoroutineScope的时候它的内部会确保CoroutineContext当中一定存在Job元素而CoroutineScope就是通过这个Job对象来管理协程的。
* 在我们通过launch、async创建协程的时候会同时创建AbstractCoroutine的子类在它的initParentJob()方法当中会建立协程的父子关系。每个协程都会对应一个Job而每个Job都会有一个父Job多个子Job。最终它们会形成一个N叉树的结构。
* 由于协程是一个N叉树的结构因此协程的取消事件以及异常传播也会按照这个结构进行传递。每个Job取消的时候都会通知自己的子Job和父Job最终以递归的形式传递给每一个协程。另外协程在向上取消父Job的时候还利用了责任链模式确保取消事件可以一步步传播到最顶层的协程。这里还有一个细节就是默认情况下父协程都会忽略子协程的CancellationException。
到这里,我们其实就可以进一步总结出协程的**结构化取消的规律**了。
对于CancellationException引起的取消它只会向下传播取消子协程对于其他的异常引起的取消它既向上传播也向下传播最终会导致所有协程都被取消。
![图片](https://static001.geekbang.org/resource/image/04/35/04a978310f722996c38bd09a00fdae35.gif?wh=1080x608)
## 思考题
在第23讲当中我们学习过SupervisorJob它可以起到隔离异常传播的作用下面是它的源代码请问你能借助这节课学的知识点来分析下它的原理吗
```plain
public fun SupervisorJob(parent: Job? = null) : CompletableJob =
SupervisorJobImpl(parent)
private class SupervisorJobImpl(parent: Job?) : JobImpl(parent) {
override fun childCancelled(cause: Throwable): Boolean = false
}
```