All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.jetbrains.kotlin.daemon.common.ReplStateFacadeRMIWrapper.kt Maven / Gradle / Ivy

There is a newer version: 2.0.20-RC
Show newest version
/*
 * Copyright 2000-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license
 * that can be found in the license/LICENSE.txt file.
 */

package org.jetbrains.kotlin.daemon.common

import kotlinx.coroutines.runBlocking
import org.jetbrains.kotlin.cli.common.repl.ILineId
import java.io.Serializable

class ReplStateFacadeRMIWrapper(val clientSide: ReplStateFacadeAsync) : ReplStateFacade, Serializable {

    override fun getId() = runBlocking { clientSide.getId() }

    override fun getHistorySize() = runBlocking { clientSide.getHistorySize() }

    override fun historyGet(index: Int) = runBlocking { clientSide.historyGet(index) }

    override fun historyReset() = runBlocking { clientSide.historyReset() }

    override fun historyResetTo(id: ILineId) = runBlocking { clientSide.historyResetTo(id) }
    
}

fun ReplStateFacadeAsync.toRMI() = ReplStateFacadeRMIWrapper(this)
fun CompileService.CallResult.toRMI() = when (this) {
    is CompileService.CallResult.Good -> CompileService.CallResult.Good(this.result.toRMI())
    is CompileService.CallResult.Dying -> this
    is CompileService.CallResult.Error -> this
    is CompileService.CallResult.Ok -> this
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy