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

org.jetbrains.kotlinx.jupyter.startup.portsGenerating.kt Maven / Gradle / Ivy

Go to download

Implementation of REPL compiler and preprocessor for Jupyter dialect of Kotlin (IDE-compatible)

There is a newer version: 0.12.0-290
Show newest version
package org.jetbrains.kotlinx.jupyter.startup

import java.io.IOException
import java.net.DatagramSocket
import java.net.ServerSocket
import java.util.concurrent.ConcurrentHashMap
import kotlin.random.Random

object GeneratedPortsHolder {
    private val usedPorts: MutableSet = ConcurrentHashMap.newKeySet()

    private fun isPortAvailable(port: Int): Boolean {
        var tcpSocket: ServerSocket? = null
        var udpSocket: DatagramSocket? = null
        try {
            tcpSocket = ServerSocket(port)
            tcpSocket.reuseAddress = true
            udpSocket = DatagramSocket(port)
            udpSocket.reuseAddress = true
            return true
        } catch (_: IOException) {
        } finally {
            tcpSocket?.close()
            udpSocket?.close()
        }
        return false
    }

    fun addPort(port: Int): Boolean = (port !in usedPorts) && isPortAvailable(port) && usedPorts.add(port)
}

fun randomIntsInRange(rangeStart: Int, rangeEnd: Int, limit: Int = rangeEnd - rangeStart): Sequence {
    return generateSequence { Random.nextInt(rangeStart, rangeEnd) }.take(limit)
}

class PortsGenerator(
    private val portsToTry: () -> Sequence,
) {
    fun randomPort() =
        portsToTry().find {
            GeneratedPortsHolder.addPort(it)
        } ?: throw RuntimeException("No free port found")

    companion object
}

fun PortsGenerator.Companion.create(portRangeStart: Int, portRangeEnd: Int) = PortsGenerator { randomIntsInRange(portRangeStart, portRangeEnd) }

fun createRandomKernelPorts() = PortsGenerator.create(32768, 65536)
    .let { generator -> createKernelPorts { generator.randomPort() } }




© 2015 - 2024 Weber Informatics LLC | Privacy Policy