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

im.actor.server.mtproto.codecs.StringCodec.scala Maven / Gradle / Ivy

package im.actor.server.mtproto.codecs

import scodec._
import scodec.bits._

object StringCodec extends Codec[String] {
  def sizeBound = SizeBound.unknown

  def encode(str: String) = {
    val strBytes = str.getBytes
    for { length ← varint.encode(strBytes.length.toLong) }
      yield length ++ BitVector(strBytes)
  }

  def decode(buf: BitVector) = {
    for { t ← varint.decode(buf) } yield {
      val length = t.value * byteSize
      DecodeResult(new String(t.remainder.take(length).toByteArray, "UTF-8"), t.remainder.drop(length))
    }
  }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy