OkIoKmpIoSource

class OkIoKmpIoSource(source: Source) : IKmpIoSource

Constructors

Link copied to clipboard
constructor(source: Source)

Functions

Link copied to clipboard
open suspend override fun close()

Closes the source. Any further operation will return an error.

Link copied to clipboard
open suspend override fun isExhausted(): Boolean

Returns true if the source has no more bytes

Link copied to clipboard
open suspend override fun read(buffer: ByteArray, bufferOffset: Int, byteCount: Int): Int

Reads bytes into the provided buffer

Link copied to clipboard
open suspend fun readAll(sink: IKmpIoSink, buffer: ByteArray = ByteArray(16384)): Long

Reads all remaining bytes from the source into provided sink

open suspend override fun readAll(): ByteArray

Reads all remaining bytes in the source and returns them as a ByteArray

Link copied to clipboard
open suspend fun readAllUtf8(): String

Reads all remaining bytes from the source and returns them as a UTF-8 encoded string

Link copied to clipboard
open suspend fun readByte(buffer: ByteArray = ByteArray(1)): Byte

Reads a single byte from the source

Link copied to clipboard
open suspend fun readDouble(buffer: ByteArray = ByteArray(8)): Double

Reads a double from the source

Link copied to clipboard
open suspend fun readDoubleLe(buffer: ByteArray = ByteArray(8)): Double

Reads a double in little-endian order from the source

Link copied to clipboard
open suspend fun readFloat(buffer: ByteArray = ByteArray(4)): Float

Reads a float from the source

Link copied to clipboard
open suspend fun readFloatLe(buffer: ByteArray = ByteArray(4)): Float

Reads a float in little-endian order from the source

Link copied to clipboard
open suspend fun readInt(buffer: ByteArray = ByteArray(4)): Int

Reads an int from the source

Link copied to clipboard
open suspend fun readIntLe(buffer: ByteArray = ByteArray(4)): Int

Reads an int in little-endian order from the source

Link copied to clipboard
open suspend fun readLong(buffer: ByteArray = ByteArray(8)): Long

Reads a long from the source

Link copied to clipboard
open suspend fun readLongLe(buffer: ByteArray = ByteArray(8)): Long

Reads a long in little-endian order from the source

Link copied to clipboard
open suspend fun readShort(buffer: ByteArray = ByteArray(2)): Short

Reads a short from the source

Link copied to clipboard
open suspend fun readShortLe(buffer: ByteArray = ByteArray(2)): Short

Reads a short in little-endian order from the source

Link copied to clipboard
open suspend fun readUtf8(byteCount: Int, buffer: ByteArray = ByteArray(byteCount)): String

Reads a UTF-8 encoded string from the source

Link copied to clipboard
open suspend override fun readUtf8Line(buffer: ByteArray): String?

Reads a single Utf8 encoded line from the source

Link copied to clipboard
open suspend override fun require(byteCount: Long)

Returns when the buffer contains at least byteCount bytes. Throws a KmpIoError.Eof if the source is exhausted before the required bytes can be read.