2012-02-16 10:51:38 +01:00
|
|
|
/**
|
2014-02-02 19:05:45 -06:00
|
|
|
* Copyright (C) 2009-2014 Typesafe Inc. <http://www.typesafe.com>
|
2012-02-16 10:51:38 +01:00
|
|
|
*/
|
|
|
|
|
|
2011-05-22 11:00:51 -06:00
|
|
|
package akka.util
|
|
|
|
|
|
2012-05-17 13:26:18 +02:00
|
|
|
import java.nio.{ ByteBuffer, ByteOrder }
|
2013-01-27 23:46:03 +01:00
|
|
|
import java.lang.{ Iterable ⇒ JIterable }
|
2011-05-22 11:00:51 -06:00
|
|
|
|
2012-01-25 16:23:06 +01:00
|
|
|
import scala.collection.IndexedSeqOptimized
|
2012-01-25 15:38:04 +01:00
|
|
|
import scala.collection.mutable.{ Builder, WrappedArray }
|
2013-01-27 23:46:03 +01:00
|
|
|
import scala.collection.immutable
|
2011-12-31 09:18:37 -07:00
|
|
|
import scala.collection.immutable.{ IndexedSeq, VectorBuilder }
|
2012-01-25 16:23:06 +01:00
|
|
|
import scala.collection.generic.CanBuildFrom
|
2012-07-01 22:31:39 +02:00
|
|
|
import scala.reflect.ClassTag
|
2011-05-22 11:00:51 -06:00
|
|
|
|
|
|
|
|
object ByteString {
|
|
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
|
|
|
|
* Creates a new ByteString by copying a byte array.
|
|
|
|
|
*/
|
2012-04-20 15:13:18 +02:00
|
|
|
def apply(bytes: Array[Byte]): ByteString = CompactByteString(bytes)
|
2011-05-22 11:00:51 -06:00
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
|
|
|
|
* Creates a new ByteString by copying bytes.
|
|
|
|
|
*/
|
2012-04-20 15:13:18 +02:00
|
|
|
def apply(bytes: Byte*): ByteString = CompactByteString(bytes: _*)
|
2011-05-22 13:53:58 -06:00
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
|
|
|
|
* Creates a new ByteString by converting from integral numbers to bytes.
|
|
|
|
|
*/
|
2011-05-22 11:00:51 -06:00
|
|
|
def apply[T](bytes: T*)(implicit num: Integral[T]): ByteString =
|
2012-04-20 15:13:18 +02:00
|
|
|
CompactByteString(bytes: _*)(num)
|
2011-05-22 11:00:51 -06:00
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
|
|
|
|
* Creates a new ByteString by copying bytes from a ByteBuffer.
|
|
|
|
|
*/
|
2012-04-20 15:13:18 +02:00
|
|
|
def apply(bytes: ByteBuffer): ByteString = CompactByteString(bytes)
|
2011-05-22 11:00:51 -06:00
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
|
|
|
|
* Creates a new ByteString by encoding a String as UTF-8.
|
|
|
|
|
*/
|
2011-05-22 11:00:51 -06:00
|
|
|
def apply(string: String): ByteString = apply(string, "UTF-8")
|
|
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
|
|
|
|
* Creates a new ByteString by encoding a String with a charset.
|
|
|
|
|
*/
|
2012-04-20 15:13:18 +02:00
|
|
|
def apply(string: String, charset: String): ByteString = CompactByteString(string, charset)
|
2011-05-22 11:00:51 -06:00
|
|
|
|
2012-12-14 18:25:04 +01:00
|
|
|
/**
|
|
|
|
|
* Creates a new ByteString by copying a byte array.
|
|
|
|
|
*/
|
|
|
|
|
def fromArray(array: Array[Byte]): ByteString = apply(array)
|
|
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
|
|
|
|
* Creates a new ByteString by copying length bytes starting at offset from
|
|
|
|
|
* an Array.
|
|
|
|
|
*/
|
2012-04-20 15:13:18 +02:00
|
|
|
def fromArray(array: Array[Byte], offset: Int, length: Int): ByteString =
|
|
|
|
|
CompactByteString.fromArray(array, offset, length)
|
2011-12-31 09:18:37 -07:00
|
|
|
|
2012-12-14 18:25:04 +01:00
|
|
|
/**
|
|
|
|
|
* Creates a new ByteString which will contain the UTF-8 representation of the given String
|
|
|
|
|
*/
|
|
|
|
|
def fromString(string: String): ByteString = apply(string)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates a new ByteString which will contain the representation of the given String in the given charset
|
|
|
|
|
*/
|
|
|
|
|
def fromString(string: String, charset: String): ByteString = apply(string, charset)
|
|
|
|
|
|
2013-04-01 16:35:43 +02:00
|
|
|
/**
|
|
|
|
|
* Creates a new ByteString by copying bytes out of a ByteBuffer.
|
|
|
|
|
*/
|
|
|
|
|
def fromByteBuffer(buffer: ByteBuffer): ByteString = apply(buffer)
|
|
|
|
|
|
2012-04-20 15:13:18 +02:00
|
|
|
val empty: ByteString = CompactByteString(Array.empty[Byte])
|
2011-05-22 11:00:51 -06:00
|
|
|
|
2012-05-18 19:25:43 +02:00
|
|
|
def newBuilder: ByteStringBuilder = new ByteStringBuilder
|
2011-05-22 11:00:51 -06:00
|
|
|
|
2012-05-18 19:25:43 +02:00
|
|
|
implicit val canBuildFrom: CanBuildFrom[TraversableOnce[Byte], Byte, ByteString] =
|
|
|
|
|
new CanBuildFrom[TraversableOnce[Byte], Byte, ByteString] {
|
|
|
|
|
def apply(ignore: TraversableOnce[Byte]): ByteStringBuilder = newBuilder
|
|
|
|
|
def apply(): ByteStringBuilder = newBuilder
|
|
|
|
|
}
|
2011-05-22 11:00:51 -06:00
|
|
|
|
2012-04-24 22:10:28 +01:00
|
|
|
private[akka] object ByteString1C {
|
2012-05-18 19:25:43 +02:00
|
|
|
def apply(bytes: Array[Byte]): ByteString1C = new ByteString1C(bytes)
|
2012-04-20 15:13:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-05-27 02:34:25 +02:00
|
|
|
* A compact (unsliced) and unfragmented ByteString, implementation of ByteString1C.
|
2012-04-20 15:13:18 +02:00
|
|
|
*/
|
2012-04-24 22:10:28 +01:00
|
|
|
@SerialVersionUID(3956956327691936932L)
|
|
|
|
|
final class ByteString1C private (private val bytes: Array[Byte]) extends CompactByteString {
|
2012-04-20 15:13:18 +02:00
|
|
|
def apply(idx: Int): Byte = bytes(idx)
|
|
|
|
|
|
2012-05-18 19:25:43 +02:00
|
|
|
override def length: Int = bytes.length
|
2012-04-20 15:13:18 +02:00
|
|
|
|
2012-05-26 12:08:44 +02:00
|
|
|
override def iterator: ByteIterator.ByteArrayIterator = ByteIterator.ByteArrayIterator(bytes, 0, bytes.length)
|
2012-04-20 15:13:18 +02:00
|
|
|
|
2012-05-31 00:39:15 +02:00
|
|
|
private[akka] def toByteString1: ByteString1 = ByteString1(bytes)
|
2012-04-20 15:13:18 +02:00
|
|
|
|
2013-01-27 23:46:03 +01:00
|
|
|
def asByteBuffer: ByteBuffer = toByteString1.asByteBuffer
|
2012-04-20 15:13:18 +02:00
|
|
|
|
2013-01-27 23:46:03 +01:00
|
|
|
def asByteBuffers: scala.collection.immutable.Iterable[ByteBuffer] = List(asByteBuffer)
|
|
|
|
|
|
|
|
|
|
def decodeString(charset: String): String =
|
|
|
|
|
if (isEmpty) "" else new String(bytes, charset)
|
2012-04-20 15:13:18 +02:00
|
|
|
|
|
|
|
|
def ++(that: ByteString): ByteString =
|
2012-05-17 22:34:50 +02:00
|
|
|
if (that.isEmpty) this
|
|
|
|
|
else if (this.isEmpty) that
|
|
|
|
|
else toByteString1 ++ that
|
2012-04-20 15:13:18 +02:00
|
|
|
|
|
|
|
|
override def slice(from: Int, until: Int): ByteString =
|
|
|
|
|
if ((from != 0) || (until != length)) toByteString1.slice(from, until)
|
|
|
|
|
else this
|
|
|
|
|
}
|
|
|
|
|
|
2011-12-31 09:18:37 -07:00
|
|
|
private[akka] object ByteString1 {
|
2013-01-27 23:46:03 +01:00
|
|
|
val empty: ByteString1 = new ByteString1(Array.empty[Byte])
|
|
|
|
|
def apply(bytes: Array[Byte]): ByteString1 = ByteString1(bytes, 0, bytes.length)
|
2012-05-26 12:08:44 +02:00
|
|
|
def apply(bytes: Array[Byte], startIndex: Int, length: Int): ByteString1 =
|
2013-01-27 23:46:03 +01:00
|
|
|
if (length == 0) empty else new ByteString1(bytes, startIndex, length)
|
2011-05-24 10:55:38 -06:00
|
|
|
}
|
2011-05-22 11:00:51 -06:00
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
|
|
|
|
* An unfragmented ByteString.
|
|
|
|
|
*/
|
2011-12-31 09:18:37 -07:00
|
|
|
final class ByteString1 private (private val bytes: Array[Byte], private val startIndex: Int, val length: Int) extends ByteString {
|
2011-05-22 11:00:51 -06:00
|
|
|
|
2011-06-05 14:04:18 -06:00
|
|
|
private def this(bytes: Array[Byte]) = this(bytes, 0, bytes.length)
|
2011-05-22 15:16:38 -06:00
|
|
|
|
2011-06-05 14:04:18 -06:00
|
|
|
def apply(idx: Int): Byte = bytes(checkRangeConvert(idx))
|
2011-05-22 11:00:51 -06:00
|
|
|
|
2012-05-26 12:08:44 +02:00
|
|
|
override def iterator: ByteIterator.ByteArrayIterator =
|
|
|
|
|
ByteIterator.ByteArrayIterator(bytes, startIndex, startIndex + length)
|
2012-05-01 18:41:04 +02:00
|
|
|
|
2012-05-18 19:25:43 +02:00
|
|
|
private def checkRangeConvert(index: Int): Int = {
|
2011-12-31 09:18:37 -07:00
|
|
|
if (0 <= index && length > index)
|
|
|
|
|
index + startIndex
|
2011-06-05 14:04:18 -06:00
|
|
|
else
|
|
|
|
|
throw new IndexOutOfBoundsException(index.toString)
|
|
|
|
|
}
|
2011-05-22 11:00:51 -06:00
|
|
|
|
2012-05-26 12:08:44 +02:00
|
|
|
def isCompact: Boolean = (length == bytes.length)
|
2011-05-22 15:16:38 -06:00
|
|
|
|
2012-04-20 15:13:18 +02:00
|
|
|
def compact: CompactByteString =
|
2012-05-31 00:44:21 +02:00
|
|
|
if (isCompact) ByteString1C(bytes) else ByteString1C(toArray)
|
2011-05-24 10:55:38 -06:00
|
|
|
|
2011-06-05 14:04:18 -06:00
|
|
|
def asByteBuffer: ByteBuffer = {
|
|
|
|
|
val buffer = ByteBuffer.wrap(bytes, startIndex, length).asReadOnlyBuffer
|
|
|
|
|
if (buffer.remaining < bytes.length) buffer.slice
|
|
|
|
|
else buffer
|
|
|
|
|
}
|
2011-05-24 10:55:38 -06:00
|
|
|
|
2013-01-27 23:46:03 +01:00
|
|
|
def asByteBuffers: scala.collection.immutable.Iterable[ByteBuffer] = List(asByteBuffer)
|
|
|
|
|
|
2011-12-31 09:18:37 -07:00
|
|
|
def decodeString(charset: String): String =
|
|
|
|
|
new String(if (length == bytes.length) bytes else toArray, charset)
|
2011-05-27 18:53:18 -06:00
|
|
|
|
2012-05-17 22:34:50 +02:00
|
|
|
def ++(that: ByteString): ByteString = {
|
|
|
|
|
if (that.isEmpty) this
|
|
|
|
|
else if (this.isEmpty) that
|
|
|
|
|
else that match {
|
|
|
|
|
case b: ByteString1C ⇒ ByteStrings(this, b.toByteString1)
|
2012-05-27 12:55:48 +02:00
|
|
|
case b: ByteString1 ⇒
|
2012-05-17 22:34:50 +02:00
|
|
|
if ((bytes eq b.bytes) && (startIndex + length == b.startIndex))
|
|
|
|
|
new ByteString1(bytes, startIndex, length + b.length)
|
|
|
|
|
else ByteStrings(this, b)
|
|
|
|
|
case bs: ByteStrings ⇒ ByteStrings(this, bs)
|
2012-05-01 17:05:09 +02:00
|
|
|
}
|
2011-12-31 09:18:37 -07:00
|
|
|
}
|
2011-06-05 14:04:18 -06:00
|
|
|
}
|
2011-05-27 18:53:18 -06:00
|
|
|
|
2011-12-31 09:18:37 -07:00
|
|
|
private[akka] object ByteStrings {
|
|
|
|
|
def apply(bytestrings: Vector[ByteString1]): ByteString = new ByteStrings(bytestrings, (0 /: bytestrings)(_ + _.length))
|
|
|
|
|
|
|
|
|
|
def apply(bytestrings: Vector[ByteString1], length: Int): ByteString = new ByteStrings(bytestrings, length)
|
2011-05-27 18:53:18 -06:00
|
|
|
|
2011-06-05 14:04:18 -06:00
|
|
|
def apply(b1: ByteString1, b2: ByteString1): ByteString = compare(b1, b2) match {
|
2011-12-31 09:18:37 -07:00
|
|
|
case 3 ⇒ new ByteStrings(Vector(b1, b2), b1.length + b2.length)
|
2011-06-05 14:04:18 -06:00
|
|
|
case 2 ⇒ b2
|
|
|
|
|
case 1 ⇒ b1
|
|
|
|
|
case 0 ⇒ ByteString.empty
|
|
|
|
|
}
|
2011-05-27 18:53:18 -06:00
|
|
|
|
2011-06-05 14:04:18 -06:00
|
|
|
def apply(b: ByteString1, bs: ByteStrings): ByteString = compare(b, bs) match {
|
2011-12-31 09:18:37 -07:00
|
|
|
case 3 ⇒ new ByteStrings(b +: bs.bytestrings, bs.length + b.length)
|
2011-06-05 14:04:18 -06:00
|
|
|
case 2 ⇒ bs
|
|
|
|
|
case 1 ⇒ b
|
|
|
|
|
case 0 ⇒ ByteString.empty
|
|
|
|
|
}
|
2011-05-27 18:53:18 -06:00
|
|
|
|
2011-06-05 14:04:18 -06:00
|
|
|
def apply(bs: ByteStrings, b: ByteString1): ByteString = compare(bs, b) match {
|
2011-12-31 09:18:37 -07:00
|
|
|
case 3 ⇒ new ByteStrings(bs.bytestrings :+ b, bs.length + b.length)
|
2011-06-05 14:04:18 -06:00
|
|
|
case 2 ⇒ b
|
|
|
|
|
case 1 ⇒ bs
|
|
|
|
|
case 0 ⇒ ByteString.empty
|
|
|
|
|
}
|
2011-05-27 18:53:18 -06:00
|
|
|
|
2011-06-05 14:04:18 -06:00
|
|
|
def apply(bs1: ByteStrings, bs2: ByteStrings): ByteString = compare(bs1, bs2) match {
|
2011-12-31 09:18:37 -07:00
|
|
|
case 3 ⇒ new ByteStrings(bs1.bytestrings ++ bs2.bytestrings, bs1.length + bs2.length)
|
2011-06-05 14:04:18 -06:00
|
|
|
case 2 ⇒ bs2
|
|
|
|
|
case 1 ⇒ bs1
|
|
|
|
|
case 0 ⇒ ByteString.empty
|
|
|
|
|
}
|
2011-05-27 18:53:18 -06:00
|
|
|
|
2011-06-05 14:04:18 -06:00
|
|
|
// 0: both empty, 1: 2nd empty, 2: 1st empty, 3: neither empty
|
|
|
|
|
def compare(b1: ByteString, b2: ByteString): Int =
|
2012-05-18 19:25:43 +02:00
|
|
|
if (b1.isEmpty)
|
|
|
|
|
if (b2.isEmpty) 0 else 2
|
|
|
|
|
else if (b2.isEmpty) 1 else 3
|
2011-12-31 09:18:37 -07:00
|
|
|
|
2011-05-27 18:53:18 -06:00
|
|
|
}
|
|
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
|
|
|
|
* A ByteString with 2 or more fragments.
|
|
|
|
|
*/
|
2012-05-27 12:56:28 +02:00
|
|
|
final class ByteStrings private (private[akka] val bytestrings: Vector[ByteString1], val length: Int) extends ByteString {
|
2012-05-17 17:52:33 +02:00
|
|
|
if (bytestrings.isEmpty) throw new IllegalArgumentException("bytestrings must not be empty")
|
2011-06-05 14:04:18 -06:00
|
|
|
|
|
|
|
|
def apply(idx: Int): Byte =
|
|
|
|
|
if (0 <= idx && idx < length) {
|
|
|
|
|
var pos = 0
|
|
|
|
|
var seen = 0
|
|
|
|
|
while (idx >= seen + bytestrings(pos).length) {
|
|
|
|
|
seen += bytestrings(pos).length
|
|
|
|
|
pos += 1
|
|
|
|
|
}
|
|
|
|
|
bytestrings(pos)(idx - seen)
|
|
|
|
|
} else throw new IndexOutOfBoundsException(idx.toString)
|
|
|
|
|
|
2012-05-26 12:08:44 +02:00
|
|
|
override def iterator: ByteIterator.MultiByteArrayIterator =
|
2012-05-26 14:11:53 +02:00
|
|
|
ByteIterator.MultiByteArrayIterator(bytestrings.toStream map { _.iterator })
|
2012-05-01 18:41:04 +02:00
|
|
|
|
2012-05-17 22:34:50 +02:00
|
|
|
def ++(that: ByteString): ByteString = {
|
|
|
|
|
if (that.isEmpty) this
|
|
|
|
|
else if (this.isEmpty) that
|
|
|
|
|
else that match {
|
|
|
|
|
case b: ByteString1C ⇒ ByteStrings(this, b.toByteString1)
|
|
|
|
|
case b: ByteString1 ⇒ ByteStrings(this, b)
|
|
|
|
|
case bs: ByteStrings ⇒ ByteStrings(this, bs)
|
2011-05-27 18:53:18 -06:00
|
|
|
}
|
2011-06-05 14:04:18 -06:00
|
|
|
}
|
2011-05-27 18:53:18 -06:00
|
|
|
|
2012-05-27 12:55:48 +02:00
|
|
|
def isCompact: Boolean = if (bytestrings.length == 1) bytestrings.head.isCompact else false
|
2011-05-27 18:53:18 -06:00
|
|
|
|
2012-04-20 15:13:18 +02:00
|
|
|
def compact: CompactByteString = {
|
2012-05-17 17:52:33 +02:00
|
|
|
if (isCompact) bytestrings.head.compact
|
|
|
|
|
else {
|
|
|
|
|
val ar = new Array[Byte](length)
|
|
|
|
|
var pos = 0
|
|
|
|
|
bytestrings foreach { b ⇒
|
|
|
|
|
b.copyToArray(ar, pos, b.length)
|
|
|
|
|
pos += b.length
|
|
|
|
|
}
|
|
|
|
|
ByteString1C(ar)
|
2011-05-27 18:53:18 -06:00
|
|
|
}
|
|
|
|
|
}
|
2011-06-05 14:04:18 -06:00
|
|
|
|
|
|
|
|
def asByteBuffer: ByteBuffer = compact.asByteBuffer
|
|
|
|
|
|
2013-01-27 23:46:03 +01:00
|
|
|
def asByteBuffers: scala.collection.immutable.Iterable[ByteBuffer] = bytestrings map { _.asByteBuffer }
|
|
|
|
|
|
2011-12-31 09:18:37 -07:00
|
|
|
def decodeString(charset: String): String = compact.decodeString(charset)
|
2011-05-27 18:53:18 -06:00
|
|
|
}
|
|
|
|
|
|
2011-06-05 14:04:18 -06:00
|
|
|
}
|
2011-05-27 18:53:18 -06:00
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
2012-07-25 13:26:33 +02:00
|
|
|
* A rope-like immutable data structure containing bytes.
|
|
|
|
|
* The goal of this structure is to reduce copying of arrays
|
|
|
|
|
* when concatenating and slicing sequences of bytes,
|
|
|
|
|
* and also providing a thread safe way of working with bytes.
|
2012-01-20 13:38:22 -07:00
|
|
|
*
|
|
|
|
|
* TODO: Add performance characteristics
|
|
|
|
|
*/
|
2012-04-20 15:13:18 +02:00
|
|
|
sealed abstract class ByteString extends IndexedSeq[Byte] with IndexedSeqOptimized[Byte, ByteString] {
|
2012-06-17 22:11:55 +02:00
|
|
|
def apply(idx: Int): Byte
|
|
|
|
|
|
2012-05-26 12:08:44 +02:00
|
|
|
override protected[this] def newBuilder: ByteStringBuilder = ByteString.newBuilder
|
2012-01-20 13:38:22 -07:00
|
|
|
|
2012-05-22 11:14:02 +02:00
|
|
|
// *must* be overridden by derived classes. This construction is necessary
|
|
|
|
|
// to specialize the return type, as the method is already implemented in
|
|
|
|
|
// a parent trait.
|
|
|
|
|
override def iterator: ByteIterator = throw new UnsupportedOperationException("Method iterator is not implemented in ByteString")
|
2012-05-01 18:41:04 +02:00
|
|
|
|
2012-06-17 22:18:51 +02:00
|
|
|
override def head: Byte = apply(0)
|
|
|
|
|
override def tail: ByteString = drop(1)
|
|
|
|
|
override def last: Byte = apply(length - 1)
|
|
|
|
|
override def init: ByteString = dropRight(1)
|
2012-05-01 19:22:16 +02:00
|
|
|
|
|
|
|
|
override def slice(from: Int, until: Int): ByteString =
|
|
|
|
|
if ((from == 0) && (until == length)) this
|
|
|
|
|
else iterator.slice(from, until).toByteString
|
|
|
|
|
|
|
|
|
|
override def take(n: Int): ByteString = slice(0, n)
|
|
|
|
|
override def takeRight(n: Int): ByteString = slice(length - n, length)
|
|
|
|
|
override def drop(n: Int): ByteString = slice(n, length)
|
|
|
|
|
override def dropRight(n: Int): ByteString = slice(0, length - n)
|
|
|
|
|
|
2012-05-26 12:08:44 +02:00
|
|
|
override def takeWhile(p: Byte ⇒ Boolean): ByteString = iterator.takeWhile(p).toByteString
|
|
|
|
|
override def dropWhile(p: Byte ⇒ Boolean): ByteString = iterator.dropWhile(p).toByteString
|
2012-05-01 19:22:16 +02:00
|
|
|
override def span(p: Byte ⇒ Boolean): (ByteString, ByteString) =
|
|
|
|
|
{ val (a, b) = iterator.span(p); (a.toByteString, b.toByteString) }
|
|
|
|
|
|
|
|
|
|
override def splitAt(n: Int): (ByteString, ByteString) = (take(n), drop(n))
|
|
|
|
|
|
|
|
|
|
override def indexWhere(p: Byte ⇒ Boolean): Int = iterator.indexWhere(p)
|
|
|
|
|
override def indexOf[B >: Byte](elem: B): Int = iterator.indexOf(elem)
|
|
|
|
|
|
2012-12-14 18:25:04 +01:00
|
|
|
/**
|
2013-03-07 09:05:55 +01:00
|
|
|
* Java API: copy this ByteString into a fresh byte array
|
|
|
|
|
*
|
2012-12-14 18:25:04 +01:00
|
|
|
* @return this ByteString copied into a byte array
|
|
|
|
|
*/
|
|
|
|
|
protected[ByteString] def toArray: Array[Byte] = toArray[Byte] // protected[ByteString] == public to Java but hidden to Scala * fnizz *
|
|
|
|
|
|
2012-07-01 22:31:39 +02:00
|
|
|
override def toArray[B >: Byte](implicit arg0: ClassTag[B]): Array[B] = iterator.toArray
|
2012-05-26 12:08:44 +02:00
|
|
|
override def copyToArray[B >: Byte](xs: Array[B], start: Int, len: Int): Unit =
|
|
|
|
|
iterator.copyToArray(xs, start, len)
|
2012-05-01 19:22:16 +02:00
|
|
|
|
2012-06-17 22:22:40 +02:00
|
|
|
override def foreach[@specialized U](f: Byte ⇒ U): Unit = iterator foreach f
|
2012-01-20 13:38:22 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Efficiently concatenate another ByteString.
|
|
|
|
|
*/
|
2011-06-05 14:04:18 -06:00
|
|
|
def ++(that: ByteString): ByteString
|
2012-01-20 13:38:22 -07:00
|
|
|
|
2013-04-01 16:35:43 +02:00
|
|
|
/**
|
|
|
|
|
* Java API: efficiently concatenate another ByteString.
|
|
|
|
|
*/
|
|
|
|
|
def concat(that: ByteString): ByteString = this ++ that
|
|
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
|
|
|
|
* Copy as many bytes as possible to a ByteBuffer, starting from it's
|
|
|
|
|
* current position. This method will not overflow the buffer.
|
|
|
|
|
*
|
|
|
|
|
* @param buffer a ByteBuffer to copy bytes to
|
|
|
|
|
* @return the number of bytes actually copied
|
|
|
|
|
*/
|
2012-05-01 19:22:16 +02:00
|
|
|
def copyToBuffer(buffer: ByteBuffer): Int = iterator.copyToBuffer(buffer)
|
2012-01-20 13:38:22 -07:00
|
|
|
|
|
|
|
|
/**
|
2012-05-02 01:40:42 +02:00
|
|
|
* Create a new ByteString with all contents compacted into a single,
|
|
|
|
|
* full byte array.
|
2012-05-26 12:29:03 +02:00
|
|
|
* If isCompact returns true, compact is an O(1) operation, but
|
|
|
|
|
* might return a different object with an optimized implementation.
|
2012-01-20 13:38:22 -07:00
|
|
|
*/
|
2012-04-20 15:13:18 +02:00
|
|
|
def compact: CompactByteString
|
2012-01-20 13:38:22 -07:00
|
|
|
|
2012-05-17 17:52:33 +02:00
|
|
|
/**
|
2012-05-26 12:29:03 +02:00
|
|
|
* Check whether this ByteString is compact in memory.
|
|
|
|
|
* If the ByteString is compact, it might, however, not be represented
|
2012-05-27 02:34:25 +02:00
|
|
|
* by an object that takes full advantage of that fact. Use compact to
|
2012-05-26 12:29:03 +02:00
|
|
|
* get such an object.
|
2012-05-17 17:52:33 +02:00
|
|
|
*/
|
|
|
|
|
def isCompact: Boolean
|
|
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
|
|
|
|
* Returns a read-only ByteBuffer that directly wraps this ByteString
|
|
|
|
|
* if it is not fragmented.
|
|
|
|
|
*/
|
2011-06-05 14:04:18 -06:00
|
|
|
def asByteBuffer: ByteBuffer
|
2012-01-20 13:38:22 -07:00
|
|
|
|
2013-01-27 23:46:03 +01:00
|
|
|
/**
|
2013-03-07 09:05:55 +01:00
|
|
|
* Scala API: Returns an immutable Iterable of read-only ByteBuffers that directly wraps this ByteStrings
|
2013-01-27 23:46:03 +01:00
|
|
|
* all fragments. Will always have at least one entry.
|
|
|
|
|
*/
|
|
|
|
|
def asByteBuffers: immutable.Iterable[ByteBuffer]
|
|
|
|
|
|
|
|
|
|
/**
|
2013-03-07 09:05:55 +01:00
|
|
|
* Java API: Returns an Iterable of read-only ByteBuffers that directly wraps this ByteStrings
|
2013-01-27 23:46:03 +01:00
|
|
|
* all fragments. Will always have at least one entry.
|
|
|
|
|
*/
|
|
|
|
|
def getByteBuffers(): JIterable[ByteBuffer] = {
|
|
|
|
|
import scala.collection.JavaConverters.asJavaIterableConverter
|
|
|
|
|
asByteBuffers.asJava
|
|
|
|
|
}
|
|
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
|
|
|
|
* Creates a new ByteBuffer with a copy of all bytes contained in this
|
|
|
|
|
* ByteString.
|
|
|
|
|
*/
|
2012-06-17 22:22:40 +02:00
|
|
|
def toByteBuffer: ByteBuffer = ByteBuffer.wrap(toArray)
|
2012-01-20 13:38:22 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Decodes this ByteString as a UTF-8 encoded String.
|
|
|
|
|
*/
|
2011-12-31 09:18:37 -07:00
|
|
|
final def utf8String: String = decodeString("UTF-8")
|
2012-01-20 13:38:22 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Decodes this ByteString using a charset to produce a String.
|
|
|
|
|
*/
|
2011-12-31 09:18:37 -07:00
|
|
|
def decodeString(charset: String): String
|
2012-01-20 13:38:22 -07:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* map method that will automatically cast Int back into Byte.
|
|
|
|
|
*/
|
2011-12-31 09:18:37 -07:00
|
|
|
final def mapI(f: Byte ⇒ Int): ByteString = map(f andThen (_.toByte))
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-20 15:13:18 +02:00
|
|
|
object CompactByteString {
|
|
|
|
|
/**
|
|
|
|
|
* Creates a new CompactByteString by copying a byte array.
|
|
|
|
|
*/
|
2012-07-04 15:25:30 +02:00
|
|
|
def apply(bytes: Array[Byte]): CompactByteString =
|
|
|
|
|
if (bytes.isEmpty) empty else ByteString.ByteString1C(bytes.clone)
|
2012-04-20 15:13:18 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates a new CompactByteString by copying bytes.
|
|
|
|
|
*/
|
|
|
|
|
def apply(bytes: Byte*): CompactByteString = {
|
2012-04-24 23:38:48 +02:00
|
|
|
if (bytes.isEmpty) empty
|
|
|
|
|
else {
|
|
|
|
|
val ar = new Array[Byte](bytes.size)
|
|
|
|
|
bytes.copyToArray(ar)
|
|
|
|
|
CompactByteString(ar)
|
|
|
|
|
}
|
2012-04-20 15:13:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates a new CompactByteString by converting from integral numbers to bytes.
|
|
|
|
|
*/
|
2012-04-24 23:38:48 +02:00
|
|
|
def apply[T](bytes: T*)(implicit num: Integral[T]): CompactByteString = {
|
|
|
|
|
if (bytes.isEmpty) empty
|
|
|
|
|
else ByteString.ByteString1C(bytes.map(x ⇒ num.toInt(x).toByte)(collection.breakOut))
|
|
|
|
|
}
|
2012-04-20 15:13:18 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates a new CompactByteString by copying bytes from a ByteBuffer.
|
|
|
|
|
*/
|
|
|
|
|
def apply(bytes: ByteBuffer): CompactByteString = {
|
2012-04-24 23:38:48 +02:00
|
|
|
if (bytes.remaining < 1) empty
|
|
|
|
|
else {
|
|
|
|
|
val ar = new Array[Byte](bytes.remaining)
|
|
|
|
|
bytes.get(ar)
|
|
|
|
|
ByteString.ByteString1C(ar)
|
|
|
|
|
}
|
2012-04-20 15:13:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates a new CompactByteString by encoding a String as UTF-8.
|
|
|
|
|
*/
|
|
|
|
|
def apply(string: String): CompactByteString = apply(string, "UTF-8")
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates a new CompactByteString by encoding a String with a charset.
|
|
|
|
|
*/
|
2012-07-04 15:25:30 +02:00
|
|
|
def apply(string: String, charset: String): CompactByteString =
|
|
|
|
|
if (string.isEmpty) empty else ByteString.ByteString1C(string.getBytes(charset))
|
2012-04-20 15:13:18 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Creates a new CompactByteString by copying length bytes starting at offset from
|
|
|
|
|
* an Array.
|
|
|
|
|
*/
|
|
|
|
|
def fromArray(array: Array[Byte], offset: Int, length: Int): CompactByteString = {
|
|
|
|
|
val copyOffset = math.max(offset, 0)
|
|
|
|
|
val copyLength = math.max(math.min(array.length - copyOffset, length), 0)
|
|
|
|
|
if (copyLength == 0) empty
|
|
|
|
|
else {
|
|
|
|
|
val copyArray = new Array[Byte](copyLength)
|
|
|
|
|
Array.copy(array, copyOffset, copyArray, 0, copyLength)
|
2012-04-24 22:10:28 +01:00
|
|
|
ByteString.ByteString1C(copyArray)
|
2012-04-20 15:13:18 +02:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-04-24 22:10:28 +01:00
|
|
|
val empty: CompactByteString = ByteString.ByteString1C(Array.empty[Byte])
|
2012-04-20 15:13:18 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
2012-05-26 11:40:23 +02:00
|
|
|
* A compact ByteString.
|
2012-05-02 01:40:42 +02:00
|
|
|
*
|
2012-05-26 11:40:23 +02:00
|
|
|
* The ByteString is guarantied to be contiguous in memory and to use only
|
2012-05-02 01:40:42 +02:00
|
|
|
* as much memory as required for its contents.
|
2012-04-20 15:13:18 +02:00
|
|
|
*/
|
2012-05-26 11:40:23 +02:00
|
|
|
sealed abstract class CompactByteString extends ByteString with Serializable {
|
2012-05-26 12:08:44 +02:00
|
|
|
def isCompact: Boolean = true
|
|
|
|
|
def compact: this.type = this
|
2012-05-02 01:40:42 +02:00
|
|
|
}
|
2012-04-20 15:13:18 +02:00
|
|
|
|
2012-01-20 13:38:22 -07:00
|
|
|
/**
|
|
|
|
|
* A mutable builder for efficiently creating a [[akka.util.ByteString]].
|
|
|
|
|
*
|
|
|
|
|
* The created ByteString is not automatically compacted.
|
|
|
|
|
*/
|
2011-12-31 09:18:37 -07:00
|
|
|
final class ByteStringBuilder extends Builder[Byte, ByteString] {
|
2012-05-26 12:59:48 +02:00
|
|
|
builder ⇒
|
|
|
|
|
|
2012-04-24 22:10:28 +01:00
|
|
|
import ByteString.{ ByteString1C, ByteString1, ByteStrings }
|
2012-05-26 12:08:44 +02:00
|
|
|
private var _length: Int = 0
|
|
|
|
|
private val _builder: VectorBuilder[ByteString1] = new VectorBuilder[ByteString1]()
|
2011-12-31 09:18:37 -07:00
|
|
|
private var _temp: Array[Byte] = _
|
2012-05-26 12:08:44 +02:00
|
|
|
private var _tempLength: Int = 0
|
|
|
|
|
private var _tempCapacity: Int = 0
|
2011-12-31 09:18:37 -07:00
|
|
|
|
2012-05-17 13:26:18 +02:00
|
|
|
protected def fillArray(len: Int)(fill: (Array[Byte], Int) ⇒ Unit): this.type = {
|
|
|
|
|
ensureTempSize(_tempLength + len)
|
|
|
|
|
fill(_temp, _tempLength)
|
|
|
|
|
_tempLength += len
|
|
|
|
|
_length += len
|
|
|
|
|
this
|
|
|
|
|
}
|
|
|
|
|
|
2012-07-04 15:25:30 +02:00
|
|
|
@inline protected final def fillByteBuffer(len: Int, byteOrder: ByteOrder)(fill: ByteBuffer ⇒ Unit): this.type = {
|
2012-05-17 13:26:18 +02:00
|
|
|
fillArray(len) {
|
|
|
|
|
case (array, start) ⇒
|
|
|
|
|
val buffer = ByteBuffer.wrap(array, start, len)
|
|
|
|
|
buffer.order(byteOrder)
|
|
|
|
|
fill(buffer)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-02 21:16:49 +02:00
|
|
|
def length: Int = _length
|
|
|
|
|
|
2012-05-26 12:08:44 +02:00
|
|
|
override def sizeHint(len: Int): Unit = {
|
2012-05-02 21:16:49 +02:00
|
|
|
resizeTemp(len - (_length - _tempLength))
|
|
|
|
|
}
|
2011-12-31 09:18:37 -07:00
|
|
|
|
2012-05-18 19:25:43 +02:00
|
|
|
private def clearTemp(): Unit = {
|
2011-12-31 09:18:37 -07:00
|
|
|
if (_tempLength > 0) {
|
|
|
|
|
val arr = new Array[Byte](_tempLength)
|
|
|
|
|
Array.copy(_temp, 0, arr, 0, _tempLength)
|
|
|
|
|
_builder += ByteString1(arr)
|
|
|
|
|
_tempLength = 0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-18 19:25:43 +02:00
|
|
|
private def resizeTemp(size: Int): Unit = {
|
2011-12-31 09:18:37 -07:00
|
|
|
val newtemp = new Array[Byte](size)
|
|
|
|
|
if (_tempLength > 0) Array.copy(_temp, 0, newtemp, 0, _tempLength)
|
|
|
|
|
_temp = newtemp
|
2012-04-18 21:57:58 +02:00
|
|
|
_tempCapacity = _temp.length
|
2011-12-31 09:18:37 -07:00
|
|
|
}
|
|
|
|
|
|
2012-05-18 19:25:43 +02:00
|
|
|
private def ensureTempSize(size: Int): Unit = {
|
2011-12-31 09:18:37 -07:00
|
|
|
if (_tempCapacity < size || _tempCapacity == 0) {
|
|
|
|
|
var newSize = if (_tempCapacity == 0) 16 else _tempCapacity * 2
|
|
|
|
|
while (newSize < size) newSize *= 2
|
|
|
|
|
resizeTemp(newSize)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def +=(elem: Byte): this.type = {
|
|
|
|
|
ensureTempSize(_tempLength + 1)
|
|
|
|
|
_temp(_tempLength) = elem
|
|
|
|
|
_tempLength += 1
|
|
|
|
|
_length += 1
|
|
|
|
|
this
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
override def ++=(xs: TraversableOnce[Byte]): this.type = {
|
|
|
|
|
xs match {
|
2012-04-24 22:10:28 +01:00
|
|
|
case b: ByteString1C ⇒
|
2012-04-20 15:13:18 +02:00
|
|
|
clearTemp()
|
|
|
|
|
_builder += b.toByteString1
|
|
|
|
|
_length += b.length
|
2011-12-31 09:18:37 -07:00
|
|
|
case b: ByteString1 ⇒
|
|
|
|
|
clearTemp()
|
|
|
|
|
_builder += b
|
|
|
|
|
_length += b.length
|
|
|
|
|
case bs: ByteStrings ⇒
|
|
|
|
|
clearTemp()
|
|
|
|
|
_builder ++= bs.bytestrings
|
|
|
|
|
_length += bs.length
|
|
|
|
|
case xs: WrappedArray.ofByte ⇒
|
2014-04-17 14:22:30 +02:00
|
|
|
putByteArrayUnsafe(xs.array.clone)
|
2012-06-12 14:12:46 +09:00
|
|
|
case seq: collection.IndexedSeq[_] ⇒
|
2011-12-31 09:18:37 -07:00
|
|
|
ensureTempSize(_tempLength + xs.size)
|
|
|
|
|
xs.copyToArray(_temp, _tempLength)
|
2012-06-12 14:12:46 +09:00
|
|
|
_tempLength += seq.length
|
|
|
|
|
_length += seq.length
|
2011-12-31 09:18:37 -07:00
|
|
|
case _ ⇒
|
|
|
|
|
super.++=(xs)
|
|
|
|
|
}
|
|
|
|
|
this
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-17 14:22:30 +02:00
|
|
|
private[akka] def putByteArrayUnsafe(xs: Array[Byte]): this.type = {
|
|
|
|
|
clearTemp()
|
|
|
|
|
_builder += ByteString1(xs)
|
|
|
|
|
_length += xs.length
|
|
|
|
|
this
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-01 16:35:43 +02:00
|
|
|
/**
|
|
|
|
|
* Java API: append a ByteString to this builder.
|
|
|
|
|
*/
|
|
|
|
|
def append(bs: ByteString): this.type = this ++= bs
|
|
|
|
|
|
2012-05-17 23:14:46 +02:00
|
|
|
/**
|
|
|
|
|
* Add a single Byte to this builder.
|
|
|
|
|
*/
|
|
|
|
|
def putByte(x: Byte): this.type = this += x
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a single Short to this builder.
|
|
|
|
|
*/
|
2012-05-17 19:23:29 +02:00
|
|
|
def putShort(x: Int)(implicit byteOrder: ByteOrder): this.type = {
|
2012-05-17 23:14:46 +02:00
|
|
|
if (byteOrder == ByteOrder.BIG_ENDIAN) {
|
|
|
|
|
this += (x >>> 8).toByte
|
|
|
|
|
this += (x >>> 0).toByte
|
|
|
|
|
} else if (byteOrder == ByteOrder.LITTLE_ENDIAN) {
|
|
|
|
|
this += (x >>> 0).toByte
|
|
|
|
|
this += (x >>> 8).toByte
|
|
|
|
|
} else throw new IllegalArgumentException("Unknown byte order " + byteOrder)
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a single Int to this builder.
|
|
|
|
|
*/
|
2012-05-17 19:23:29 +02:00
|
|
|
def putInt(x: Int)(implicit byteOrder: ByteOrder): this.type = {
|
2013-04-01 16:35:43 +02:00
|
|
|
fillArray(4) { (target, offset) ⇒
|
|
|
|
|
if (byteOrder == ByteOrder.BIG_ENDIAN) {
|
|
|
|
|
target(offset + 0) = (x >>> 24).toByte
|
|
|
|
|
target(offset + 1) = (x >>> 16).toByte
|
|
|
|
|
target(offset + 2) = (x >>> 8).toByte
|
|
|
|
|
target(offset + 3) = (x >>> 0).toByte
|
|
|
|
|
} else if (byteOrder == ByteOrder.LITTLE_ENDIAN) {
|
|
|
|
|
target(offset + 0) = (x >>> 0).toByte
|
|
|
|
|
target(offset + 1) = (x >>> 8).toByte
|
|
|
|
|
target(offset + 2) = (x >>> 16).toByte
|
|
|
|
|
target(offset + 3) = (x >>> 24).toByte
|
|
|
|
|
} else throw new IllegalArgumentException("Unknown byte order " + byteOrder)
|
2012-05-17 23:14:46 +02:00
|
|
|
}
|
|
|
|
|
this
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a single Long to this builder.
|
|
|
|
|
*/
|
2012-05-17 19:23:29 +02:00
|
|
|
def putLong(x: Long)(implicit byteOrder: ByteOrder): this.type = {
|
2013-04-01 16:35:43 +02:00
|
|
|
fillArray(8) { (target, offset) ⇒
|
|
|
|
|
if (byteOrder == ByteOrder.BIG_ENDIAN) {
|
|
|
|
|
target(offset + 0) = (x >>> 56).toByte
|
|
|
|
|
target(offset + 1) = (x >>> 48).toByte
|
|
|
|
|
target(offset + 2) = (x >>> 40).toByte
|
|
|
|
|
target(offset + 3) = (x >>> 32).toByte
|
|
|
|
|
target(offset + 4) = (x >>> 24).toByte
|
|
|
|
|
target(offset + 5) = (x >>> 16).toByte
|
|
|
|
|
target(offset + 6) = (x >>> 8).toByte
|
|
|
|
|
target(offset + 7) = (x >>> 0).toByte
|
|
|
|
|
} else if (byteOrder == ByteOrder.LITTLE_ENDIAN) {
|
|
|
|
|
target(offset + 0) = (x >>> 0).toByte
|
|
|
|
|
target(offset + 1) = (x >>> 8).toByte
|
|
|
|
|
target(offset + 2) = (x >>> 16).toByte
|
|
|
|
|
target(offset + 3) = (x >>> 24).toByte
|
|
|
|
|
target(offset + 4) = (x >>> 32).toByte
|
|
|
|
|
target(offset + 5) = (x >>> 40).toByte
|
|
|
|
|
target(offset + 6) = (x >>> 48).toByte
|
|
|
|
|
target(offset + 7) = (x >>> 56).toByte
|
|
|
|
|
} else throw new IllegalArgumentException("Unknown byte order " + byteOrder)
|
2012-05-17 23:14:46 +02:00
|
|
|
}
|
|
|
|
|
this
|
|
|
|
|
}
|
|
|
|
|
|
2013-04-01 16:35:43 +02:00
|
|
|
/**
|
|
|
|
|
* Add the `n` least significant bytes of the given Long to this builder.
|
|
|
|
|
*/
|
|
|
|
|
def putLongPart(x: Long, n: Int)(implicit byteOrder: ByteOrder): this.type = {
|
|
|
|
|
fillArray(n) { (target, offset) ⇒
|
|
|
|
|
if (byteOrder == ByteOrder.BIG_ENDIAN) {
|
|
|
|
|
val start = n * 8 - 8
|
2013-07-23 11:59:36 +02:00
|
|
|
(0 until n) foreach { i ⇒ target(offset + i) = (x >>> start - 8 * i).toByte }
|
2013-04-01 16:35:43 +02:00
|
|
|
} else if (byteOrder == ByteOrder.LITTLE_ENDIAN) {
|
2013-07-23 11:59:36 +02:00
|
|
|
(0 until n) foreach { i ⇒ target(offset + i) = (x >>> 8 * i).toByte }
|
2013-04-01 16:35:43 +02:00
|
|
|
} else throw new IllegalArgumentException("Unknown byte order " + byteOrder)
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-17 23:14:46 +02:00
|
|
|
/**
|
|
|
|
|
* Add a single Float to this builder.
|
|
|
|
|
*/
|
2012-05-17 19:23:29 +02:00
|
|
|
def putFloat(x: Float)(implicit byteOrder: ByteOrder): this.type =
|
2012-05-11 19:36:13 +02:00
|
|
|
putInt(java.lang.Float.floatToRawIntBits(x))(byteOrder)
|
2012-05-17 23:14:46 +02:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a single Double to this builder.
|
|
|
|
|
*/
|
2012-05-17 19:23:29 +02:00
|
|
|
def putDouble(x: Double)(implicit byteOrder: ByteOrder): this.type =
|
2012-05-11 19:36:13 +02:00
|
|
|
putLong(java.lang.Double.doubleToRawLongBits(x))(byteOrder)
|
2012-05-17 23:14:46 +02:00
|
|
|
|
2012-05-17 19:23:29 +02:00
|
|
|
/**
|
|
|
|
|
* Add a number of Bytes from an array to this builder.
|
|
|
|
|
*/
|
|
|
|
|
def putBytes(array: Array[Byte]): this.type =
|
|
|
|
|
putBytes(array, 0, array.length)
|
|
|
|
|
|
2012-05-17 13:26:18 +02:00
|
|
|
/**
|
|
|
|
|
* Add a number of Bytes from an array to this builder.
|
|
|
|
|
*/
|
|
|
|
|
def putBytes(array: Array[Byte], start: Int, len: Int): this.type =
|
|
|
|
|
fillArray(len) { case (target, targetOffset) ⇒ Array.copy(array, start, target, targetOffset, len) }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a number of Shorts from an array to this builder.
|
|
|
|
|
*/
|
2012-05-17 19:23:29 +02:00
|
|
|
def putShorts(array: Array[Short])(implicit byteOrder: ByteOrder): this.type =
|
|
|
|
|
putShorts(array, 0, array.length)(byteOrder)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a number of Shorts from an array to this builder.
|
|
|
|
|
*/
|
|
|
|
|
def putShorts(array: Array[Short], start: Int, len: Int)(implicit byteOrder: ByteOrder): this.type =
|
2012-05-17 13:26:18 +02:00
|
|
|
fillByteBuffer(len * 2, byteOrder) { _.asShortBuffer.put(array, start, len) }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a number of Ints from an array to this builder.
|
|
|
|
|
*/
|
2012-05-17 19:23:29 +02:00
|
|
|
def putInts(array: Array[Int])(implicit byteOrder: ByteOrder): this.type =
|
|
|
|
|
putInts(array, 0, array.length)(byteOrder)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a number of Ints from an array to this builder.
|
|
|
|
|
*/
|
|
|
|
|
def putInts(array: Array[Int], start: Int, len: Int)(implicit byteOrder: ByteOrder): this.type =
|
2012-05-17 13:26:18 +02:00
|
|
|
fillByteBuffer(len * 4, byteOrder) { _.asIntBuffer.put(array, start, len) }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a number of Longs from an array to this builder.
|
|
|
|
|
*/
|
2012-05-17 19:23:29 +02:00
|
|
|
def putLongs(array: Array[Long])(implicit byteOrder: ByteOrder): this.type =
|
|
|
|
|
putLongs(array, 0, array.length)(byteOrder)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a number of Longs from an array to this builder.
|
|
|
|
|
*/
|
|
|
|
|
def putLongs(array: Array[Long], start: Int, len: Int)(implicit byteOrder: ByteOrder): this.type =
|
2012-05-17 13:26:18 +02:00
|
|
|
fillByteBuffer(len * 8, byteOrder) { _.asLongBuffer.put(array, start, len) }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a number of Floats from an array to this builder.
|
|
|
|
|
*/
|
2012-05-17 19:23:29 +02:00
|
|
|
def putFloats(array: Array[Float])(implicit byteOrder: ByteOrder): this.type =
|
|
|
|
|
putFloats(array, 0, array.length)(byteOrder)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a number of Floats from an array to this builder.
|
|
|
|
|
*/
|
|
|
|
|
def putFloats(array: Array[Float], start: Int, len: Int)(implicit byteOrder: ByteOrder): this.type =
|
2012-05-17 13:26:18 +02:00
|
|
|
fillByteBuffer(len * 4, byteOrder) { _.asFloatBuffer.put(array, start, len) }
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a number of Doubles from an array to this builder.
|
|
|
|
|
*/
|
2012-05-17 19:23:29 +02:00
|
|
|
def putDoubles(array: Array[Double])(implicit byteOrder: ByteOrder): this.type =
|
|
|
|
|
putDoubles(array, 0, array.length)(byteOrder)
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* Add a number of Doubles from an array to this builder.
|
|
|
|
|
*/
|
|
|
|
|
def putDoubles(array: Array[Double], start: Int, len: Int)(implicit byteOrder: ByteOrder): this.type =
|
2012-05-17 13:26:18 +02:00
|
|
|
fillByteBuffer(len * 8, byteOrder) { _.asDoubleBuffer.put(array, start, len) }
|
|
|
|
|
|
2012-05-18 19:25:43 +02:00
|
|
|
def clear(): Unit = {
|
2011-12-31 09:18:37 -07:00
|
|
|
_builder.clear
|
|
|
|
|
_length = 0
|
|
|
|
|
_tempLength = 0
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
def result: ByteString =
|
|
|
|
|
if (_length == 0) ByteString.empty
|
|
|
|
|
else {
|
|
|
|
|
clearTemp()
|
|
|
|
|
val bytestrings = _builder.result
|
|
|
|
|
if (bytestrings.size == 1)
|
|
|
|
|
bytestrings.head
|
|
|
|
|
else
|
|
|
|
|
ByteStrings(bytestrings, _length)
|
|
|
|
|
}
|
|
|
|
|
|
2012-05-02 22:19:09 +02:00
|
|
|
/**
|
|
|
|
|
* Directly wraps this ByteStringBuilder in an OutputStream. Write
|
|
|
|
|
* operations on the stream are forwarded to the builder.
|
|
|
|
|
*/
|
2012-06-17 17:58:20 +02:00
|
|
|
def asOutputStream: java.io.OutputStream = new java.io.OutputStream {
|
|
|
|
|
def write(b: Int): Unit = builder += b.toByte
|
|
|
|
|
|
|
|
|
|
override def write(b: Array[Byte], off: Int, len: Int): Unit = { builder.putBytes(b, off, len) }
|
|
|
|
|
}
|
2011-05-27 18:53:18 -06:00
|
|
|
}
|