Constants.kt

  1. package org.knio.core.context

  2. internal const val BYTES_PER_BYTE   = 1
  3. internal const val BYTES_PER_CHAR   = 2
  4. internal const val BYTES_PER_SHORT  = 2
  5. internal const val BYTES_PER_INT    = 4
  6. internal const val BYTES_PER_LONG   = 8
  7. internal const val BYTES_PER_FLOAT  = 4
  8. internal const val BYTES_PER_DOUBLE = 8


  9. internal const val DEFAULT_TASK_BUFFER_SIZE = 1024
  10. internal const val DEFAULT_STREAM_BUFFER_SIZE = 8 * 1024

  11. /**
  12.  * Gets the size of a buffer for a given unit type (byte, char, int,... etc.)
  13.  */
  14. internal fun getBufferSize(size: Int, bytesPerUnit: Int): Int {
  15.     if(size < 0) {
  16.         throw IllegalArgumentException("size must be greater than or equal to 0")
  17.     }
  18.     val unitSize = size * bytesPerUnit
  19.     if (unitSize < 0) {
  20.         throw IllegalArgumentException("size is too large")
  21.     }
  22.     return unitSize
  23. }

  24. internal fun getCharBufferSize(size: Int): Int = getBufferSize(size, BYTES_PER_CHAR)
  25. internal fun getShortBufferSize(size: Int): Int = getBufferSize(size, BYTES_PER_SHORT)
  26. internal fun getIntBufferSize(size: Int): Int = getBufferSize(size, BYTES_PER_INT)
  27. internal fun getLongBufferSize(size: Int): Int = getBufferSize(size, BYTES_PER_LONG)
  28. internal fun getFloatBufferSize(size: Int): Int = getBufferSize(size, BYTES_PER_FLOAT)
  29. internal fun getDoubleBufferSize(size: Int): Int = getBufferSize(size, BYTES_PER_DOUBLE)