1. What is it (coroutines and Kotlin coroutines)1.1 What is a coroutine?Wikipedia: Coroutine \[kəru'tin\] (coroutine) is a type of component in a computer program that generalizes cooperative multitasking subroutines, allowing execution to be suspended and resumed. Kotlin is Google's preferred language for Android development. Coroutine is not a new concept proposed by Kotlin. Currently, programming languages that have the concept of coroutine include Lua, Python, Go, C, etc. It is just a programming idea and is not limited to a specific language. The concept and implementation of coroutines in each programming language are not exactly the same. This sharing mainly talks about Kotlin coroutines. 1.2 What is Kotlin coroutineKotlin official website: Coroutines are lightweight threads It can be simply understood as a thread framework, a new way to handle concurrency, and a convenient way to simplify asynchronous execution of code on Android. Similar to Java: Thread Pool Android: Handler and AsyncTask, RxJava Schedulers Note: Kotlin is not only for JVM platform, but also for JS/Native. If you use Kotlin to write the front-end, then Kotlin's coroutine is the coroutine in the sense of JS. If it is only for JVM platform, then it should indeed be a thread framework. 1.3 Comparison of processes, threads, and coroutinesThe differences and relationships between the three can be understood through the following two pictures A Preliminary Study on Android Kotlin Coroutines | JD Logistics Technology Team_User A Preliminary Study on Android Kotlin Coroutines | JD Logistics Technical Team_User_02 2. Why choose it (what problems does the coroutine solve)Example of asynchronous scenario:
2.1 Implementation of existing solutions How does the existing solution get the data of asynchronous tasks? If it cannot be obtained, it will be destroyed. Hahaha, it is solved through callback functions. 2.2 Coroutine Implementation A Preliminary Study on Android Kotlin Coroutines | JD Logistics Technical Team_Kotlin_03 The red box is a coroutine code block. It can be seen that callbacks are no longer used in coroutine implementations, so callback hell will never occur again. Coroutines solve callback hell. A Preliminary Study on Android Kotlin Coroutines | JD Logistics Technical Team_Kotlin_04 Coroutines allow us to use synchronous code to write asynchronous effects. This is also the biggest advantage of coroutines. Asynchronous code can be written synchronously. Summary: Coroutines can be written synchronously with asynchronous code, solving the callback hell problem, allowing programmers to handle asynchronous business more conveniently, switch threads more conveniently, and ensure the safety of the main thread. How does it do that? 3. How does it work (a brief analysis of the principle of coroutines)3.1 Suspending and resuming coroutinesSuspend (non-blocking suspend) The suspend keyword is the core keyword in the coroutine and is the identifier of suspension. Let's take a look at the process of switching threads in the above sample code: A Preliminary Study on Android Kotlin Coroutines | JD Logistics Technical Team_State Machine_05 Each switch from the main thread to the IO thread is a coroutine suspension operation; Each switch from the IO thread to the main thread is a coroutine recovery operation; Suspend and resume are unique capabilities of the suspend function, which other functions do not have. The content of suspension is the coroutine, not the suspended thread or the suspended function. When the thread executes to the suspend function, it will not continue to execute the code of the current coroutine, so it will not block the thread. It is a non-blocking suspension. If there is a suspension, there must be a recovery process. Recovery means resuming the execution of the suspended target coroutine from the point where it was suspended. In the coroutine, we do not need to handle suspension and recovery manually, these are all done automatically by Kotlin coroutines. So how does Kotlin coroutine help us automatically implement suspend and resume operations? It is achieved through Continuation. \[kənˌtɪnjuˈeɪʃ(ə)n\] (continue; continuation; continuity; subsequent part) 3.2 How coroutine suspension and resumption work (Continuation)CPS + State Machine There is no suspend function in Java. Suspend is a keyword unique to Kotlin. When compiling, the Kotlin compiler will convert the function containing the suspend keyword. This kind of conversion by the compiler is called CPS conversion (cotinuation-passing-style) in Kotlin. The conversion process is as follows The suspend function code written by the programmer: A hypothetical intermediate code (for easy understanding): Converted code: We use the Kotlin bytecode generator to view the bytecode and then decompile it into Java code: This also verifies that the recovery process is indeed implemented by introducing a Continuation object, where the Continuation object contains the Callback form . It has two functions: 1. Pause and remember the execution point; 2. Remember the local variable context at the time the function is paused. So why can we write asynchronous code in a synchronous way? It is because Continuation helps us with the callback process. Let's take a look at the source code of this Continuation A Preliminary Study on Android Kotlin Coroutines | JD Logistics Technical Team_User_06 You can see that this Continuation encapsulates a resumeWith method, which is used for recovery. Continuing with the above example: This is a code before CPS: There are two suspend functions in the current suspend function After compiling with the kotlin compiler: The execution of branch code is controlled by a label tag. When the label is 0, it will first enter the first branch, set the label to the value of the next branch, then execute the first suspend method and pass the current Continuation to get the return value. If it is COROUTINE SUSPENDED, the coroutine framework will directly return and the coroutine will be suspended . When the first suspend method is executed, the invokeSuspend method of Continuation will be called back to enter the second branch for execution, and so on until all suspend methods are executed. Each suspend point and the Continuation corresponding to the initial suspend point will be converted into a state, and the coroutine recovery just jumps to the next state. The suspend function divides the execution process into multiple Continuation fragments, and uses the state machine to ensure that each fragment is executed sequentially. Summary: The essence of coroutine suspension and resumption is CPS + state machine IV. ConclusionHere are some tricky operations that are difficult to implement without coroutines:
The reason why Kotlin coroutine is considered a fake coroutine is that it does not run in the same thread, but actually creates multiple threads. Kotlin coroutines on Android are just a thread pool-like encapsulation, which is really a thread framework. However, it allows us to write asynchronous effects in a synchronous code style. As for how to do it, we don't need to worry about it. Kotlin has taken care of it for us. What we need to care about is how to use it well. It is a thread framework. |
<<: A brief discussion on RabbitMQ's delay queue
>>: iOS 18 new features exposed, finally here!
Introduction to the content of the training course...
A vulnerability appeared in the AppStore, causing...
Baidu's style has changed this year. In the p...
When it comes to lead rate, everyone should under...
background: As a new product manager of Tencent...
This article starts with the topic of communicati...
There are two main ways for enterprises to handle...
This is a brand marketing operation manual that I...
The secret to becoming an industry expert in 100 ...
[[121747]] Jim Gray, an American computer scienti...
This article mainly aims to solve two problems: 1...
How can we make our APP stand out among a large n...
Friends who often listen to music or watch movies ...
I have been independently operating my company...
It's August in a blink of an eye. In just ove...