KOutputStream.kt

  1. package org.knio.core.io

  2. import org.knio.core.lang.KAutoCloseable
  3. import java.io.IOException
  4. import java.nio.ByteBuffer

  5. abstract class KOutputStream: KAutoCloseable {

  6.     /**
  7.      * Writes the specified byte to this file output stream. Implements the write method of OutputStream.
  8.      *
  9.      * @param b the byte to be written.
  10.      * @throws IOException if an I/O error occurs.
  11.      */
  12.     @Throws(IOException::class)
  13.     open suspend fun write(b: Int) = write(byteArrayOf(b.toByte()))

  14.     /**
  15.      * Writes `b.length` bytes from the specified byte array to this output stream. The general contract for `write(b)`
  16.      * is that it should have exactly the same effect as the call `write(b, 0, b.length)`.
  17.      *
  18.      * @param b the data.
  19.      * @throws IOException if an I/O error occurs.
  20.      */
  21.     @Throws(IOException::class)
  22.     open suspend fun write(b: ByteArray): Unit = write(b, 0, b.size)

  23.     /**
  24.      * Writes len bytes from the specified byte array starting at offset off to this file output stream. Implements the
  25.      * write method of OutputStream.
  26.      *
  27.      * @param b the data.
  28.      * @param off the start offset in the data.
  29.      * @param len the number of bytes to write.
  30.      * @throws IOException if an I/O error occurs.
  31.      */
  32.     @Throws(IOException::class)
  33.     open suspend fun write(b: ByteArray, off: Int, len: Int):Unit = write(ByteBuffer.wrap(b, off, len))

  34.     /**
  35.      * Writes `b.remaining()` bytes from the specified byte array to this output stream.
  36.      *
  37.      * @param b the data.
  38.      * @throws IOException if an I/O error occurs.
  39.      */
  40.     @Throws(IOException::class)
  41.     abstract suspend fun write(b: ByteBuffer): Unit

  42.     /**
  43.      * Flushes this output stream and forces any buffered output bytes to be written out.
  44.      *
  45.      * @throws IOException if an I/O error occurs.
  46.      */
  47.     open suspend fun flush() {}

  48.     /**
  49.      * Closes this output stream and releases any system resources associated with the stream.
  50.      *
  51.      * @throws IOException if an I/O error occurs.
  52.      */
  53.     override suspend fun close() {}
  54. }