将回调代码迁移到挂起的函数

时间:2018-01-22 10:10:30

标签: android kotlin suspend kotlin-coroutines

我正在使用协同程序将我的Android代码从Java重新分解为Kotlin,但我没有找到一种简单的方法来将基于回调的代码重写为暂停的函数。

一个基本的例子是一个返回结果的警告弹出窗口,在Javascript中它会是这样的:

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 是我为这个purpuse开发的自定义函数,这里是源代码:

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
}

我使用lambdas和semaphores快速开发了 resolvable 函数(请记住它是快速草稿),但我不知道是否有任何预先存在的函数(我找不到任何函数)或者可以优化或有任何缺点/问题。

感谢。

1 个答案:

答案 0 :(得分:4)

看起来您正在尝试重新发明suspendCoroutine功能。我建议您通过调用resolvable来替换suspendCoroutine函数,以获得您正在寻找的功能:

    //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)
    }

如果你执行&#34;提取功能&#34;围绕suspendCoroutine块进行重构并命名生成的挂起函数prompt,然后您可以用与JS非常相似的样式编写代码。

您还可以考虑使用suspendCancellebleCoroutine而不是普通suspendCoroutine。这样,您可以支持取消已启动的协同程序,并安装处理程序以在取消对话时关闭对话框。