将回调代码迁移到挂起的函数
Migrate callback code to suspended function
我正在使用协程将我的 Android 代码从 Java 重构到 Kotlin,但我没有找到一种简单的方法来将基于回调的代码重写为挂起的函数。
一个基本示例是 returns 结果的警报弹出窗口,在 Java 脚本中它会是这样的:
let value = prompt("please insert a value")
console.log("Value:"+value)
我会用 Kotlin 翻译成类似这样的东西:
class MainActivity : Activity() {
override fun onCreate(savedInstanceState: Bundle?) {
//Standard activity initialization
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
//Actual code...
launch {
val value = resolvable<String>(UI) { success, error ->
//Build a simple popup prompt with AlertDialog
val input = EditText(this@MainActivity)
val builder = AlertDialog.Builder(this@MainActivity)
.setTitle("please insert a value")
.setView(input)
.setPositiveButton("Ok",{ dialog, id ->
success(input.text.toString())//This lambda returns the value
})
val dialog = builder.create()
dialog.show()
}
println("Value:"+ value)
}
//...
}
}
resolvable是我为此目的开发的自定义函数,这里是源代码:
import kotlinx.coroutines.experimental.DefaultDispatcher
import kotlinx.coroutines.experimental.cancelAndJoin
import kotlinx.coroutines.experimental.launch
import java.util.concurrent.Semaphore
import kotlin.coroutines.experimental.CoroutineContext
suspend fun <T> resolvable(
context: CoroutineContext = DefaultDispatcher,
block: suspend (success:(T?)->Unit,error:(Throwable)->Unit) -> Unit
):T?{
var result:T? = null
var exception:Throwable? = null
val semaphore = Semaphore(0)
val job = launch(context){
block({r:T? -> {
result=r
semaphore.release()
}},{e:Throwable -> {
exception=e
semaphore.release()
}})
}
semaphore.acquire()
job.cancelAndJoin()
if(exception!=null)
throw exception!!
return result
}
我使用 lambda 和信号量快速开发了 resolvable 函数(请记住这是一个快速草稿),但我不知道是否有任何预先存在的函数(我找不到任何)或可以优化或有任何 drawback/problems.
谢谢。
看来您正在尝试重新发明 suspendCoroutine
功能。我建议用调用 suspendCoroutine
替换你的 resolvable
函数以获得你正在寻找的那种功能:
//Actual code...
launch(UI) {
val value = suspendCoroutine<String> { cont ->
//Build a simple popup prompt with AlertDialog
val input = EditText(this@MainActivity)
val builder = AlertDialog.Builder(this@MainActivity)
.setTitle("please insert a value")
.setView(input)
.setPositiveButton("Ok",{ dialog, id ->
cont.resume(input.text.toString()) //!!! Resume here
})
val dialog = builder.create()
dialog.show()
}
println("Value:"+ value)
}
如果你围绕 suspendCoroutine
块进行 "extract function" 重构,并将生成的挂起函数命名为 prompt
,那么你可以编写与 JS 非常相似的代码。
您也可以考虑使用 suspendCancellebleCoroutine
而不是普通的 suspendCoroutine
。这样你就可以支持取消启动的协同程序并安装一个处理程序来在取消时关闭你的对话框。
我正在使用协程将我的 Android 代码从 Java 重构到 Kotlin,但我没有找到一种简单的方法来将基于回调的代码重写为挂起的函数。
一个基本示例是 returns 结果的警报弹出窗口,在 Java 脚本中它会是这样的:
let value = prompt("please insert a value")
console.log("Value:"+value)
我会用 Kotlin 翻译成类似这样的东西:
class MainActivity : Activity() {
override fun onCreate(savedInstanceState: Bundle?) {
//Standard activity initialization
super.onCreate(savedInstanceState)
setContentView(R.layout.activity_main)
//Actual code...
launch {
val value = resolvable<String>(UI) { success, error ->
//Build a simple popup prompt with AlertDialog
val input = EditText(this@MainActivity)
val builder = AlertDialog.Builder(this@MainActivity)
.setTitle("please insert a value")
.setView(input)
.setPositiveButton("Ok",{ dialog, id ->
success(input.text.toString())//This lambda returns the value
})
val dialog = builder.create()
dialog.show()
}
println("Value:"+ value)
}
//...
}
}
resolvable是我为此目的开发的自定义函数,这里是源代码:
import kotlinx.coroutines.experimental.DefaultDispatcher
import kotlinx.coroutines.experimental.cancelAndJoin
import kotlinx.coroutines.experimental.launch
import java.util.concurrent.Semaphore
import kotlin.coroutines.experimental.CoroutineContext
suspend fun <T> resolvable(
context: CoroutineContext = DefaultDispatcher,
block: suspend (success:(T?)->Unit,error:(Throwable)->Unit) -> Unit
):T?{
var result:T? = null
var exception:Throwable? = null
val semaphore = Semaphore(0)
val job = launch(context){
block({r:T? -> {
result=r
semaphore.release()
}},{e:Throwable -> {
exception=e
semaphore.release()
}})
}
semaphore.acquire()
job.cancelAndJoin()
if(exception!=null)
throw exception!!
return result
}
我使用 lambda 和信号量快速开发了 resolvable 函数(请记住这是一个快速草稿),但我不知道是否有任何预先存在的函数(我找不到任何)或可以优化或有任何 drawback/problems.
谢谢。
看来您正在尝试重新发明 suspendCoroutine
功能。我建议用调用 suspendCoroutine
替换你的 resolvable
函数以获得你正在寻找的那种功能:
//Actual code...
launch(UI) {
val value = suspendCoroutine<String> { cont ->
//Build a simple popup prompt with AlertDialog
val input = EditText(this@MainActivity)
val builder = AlertDialog.Builder(this@MainActivity)
.setTitle("please insert a value")
.setView(input)
.setPositiveButton("Ok",{ dialog, id ->
cont.resume(input.text.toString()) //!!! Resume here
})
val dialog = builder.create()
dialog.show()
}
println("Value:"+ value)
}
如果你围绕 suspendCoroutine
块进行 "extract function" 重构,并将生成的挂起函数命名为 prompt
,那么你可以编写与 JS 非常相似的代码。
您也可以考虑使用 suspendCancellebleCoroutine
而不是普通的 suspendCoroutine
。这样你就可以支持取消启动的协同程序并安装一个处理程序来在取消时关闭你的对话框。