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

commonMain.io.ktor.util.cio.Readers.kt Maven / Gradle / Ivy

There is a newer version: 4.0.0
Show newest version
/*
* Copyright 2014-2021 JetBrains s.r.o and contributors. Use of this source code is governed by the Apache 2.0 license.
*/

package io.ktor.util.cio

import io.ktor.utils.io.*
import io.ktor.utils.io.core.*
import kotlin.contracts.*

/**
 * Convert [ByteReadChannel] to [ByteArray]
 */
public suspend fun ByteReadChannel.toByteArray(limit: Int = Int.MAX_VALUE): ByteArray =
    readRemaining(limit.toLong()).readBytes()

/**
 * Executes [block] on [ByteWriteChannel] and close it down correctly whether an exception
 */
@OptIn(ExperimentalContracts::class)
public inline fun ByteWriteChannel.use(block: ByteWriteChannel.() -> Unit) {
    contract {
        callsInPlace(block, InvocationKind.EXACTLY_ONCE)
    }

    try {
        block()
    } catch (cause: Throwable) {
        close(cause)
        throw cause
    } finally {
        close()
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy