Please wait. This can take some minutes ...
Many resources are needed to download a project. Please understand that we have to compensate our server costs. Thank you in advance.
Project price only 1 $
You can buy this project and download/modify it how often you want.
scodec.bits.crc.scala Maven / Gradle / Ivy
package scodec.bits
/**
* Provides support for calculating cyclic redundancy checks.
*
* @see http://www.repairfaq.org/filipg/LINK/F_crc_v3.html
*/
object crc {
/** 32-bit CRC using poly 0x04c11db7, initial 0xffffffff, reflected input/output, and final xor 0xffffffff. */
lazy val crc32: BitVector => BitVector =
int32(0x04c11db7, 0xffffffff, true, true, 0xffffffff) andThen { i => BitVector.fromInt(i) }
/** 32-bit CRC using poly 0x1edc6f41, initial 0xffffffff, reflected input/output, and final xor 0xffffffff. */
lazy val crc32c: BitVector => BitVector =
int32(0x1edc6f41, 0xffffffff, true, true, 0xffffffff) andThen { i => BitVector.fromInt(i) }
/**
* Constructs a table-based CRC function using the specified polynomial.
*
* Each of the input vectors must be the same size.
*
* @return function that calculates a `n`-bit CRC where `n = poly.size`
*/
def apply(poly: BitVector, initial: BitVector, reflectInput: Boolean, reflectOutput: Boolean, finalXor: BitVector): BitVector => BitVector = {
require(poly.nonEmpty, "empty polynomial")
require(initial.size == poly.size && poly.size == finalXor.size, "poly, initial, and finalXor must be same length")
if (poly.size == 32L) {
int32(poly.toInt(), initial.toInt(), reflectInput, reflectOutput, finalXor.toInt()) andThen { i => BitVector.fromInt(i) }
} else {
vectorTable(poly, initial, reflectInput, reflectOutput, finalXor)
}
}
private[bits] def vectorTable(poly: BitVector, initial: BitVector, reflectInput: Boolean, reflectOutput: Boolean, finalXor: BitVector): BitVector => BitVector = {
val table = Array.ofDim[BitVector](256)
val zeroed = BitVector.fill(poly.size - 8)(false)
val m = 8L
@annotation.tailrec
def calculateTableIndex(idx: Int): Unit = {
if (idx < table.size) {
@annotation.tailrec
def shift(k: Int, crcreg: BitVector): BitVector = {
if (k < m) {
shift(k + 1, {
val shifted = crcreg << 1
if (crcreg.head) shifted xor poly else shifted
})
} else crcreg
}
table(idx) = shift(0, ByteVector(idx).bits ++ zeroed).compact
calculateTableIndex(idx + 1)
}
}
calculateTableIndex(0)
def output(crcreg: BitVector): BitVector =
(if (reflectOutput) crcreg.reverse else crcreg) xor finalXor
def calculate(input: BitVector, initial: BitVector): BitVector = {
var crcreg = initial
val size = input.size
val byteAligned = size % 8 == 0
val data = if (byteAligned) input.bytes else input.bytes.init
if (reflectInput) {
data.foreach { inputByte =>
val index = crcreg.take(8) ^ BitVector(inputByte).reverse
val indexAsInt = index.bytes.head.toInt & 0x0ff
crcreg = (crcreg << 8) ^ table(indexAsInt)
}
} else {
data.foreach { inputByte =>
val index = crcreg.take(8) ^ BitVector(inputByte)
val indexAsInt = index.bytes.head.toInt & 0x0ff
crcreg = (crcreg << 8) ^ table(indexAsInt)
}
}
if (byteAligned) {
output(crcreg)
} else {
val trailer = input.takeRight(size % 8)
output(goBitwise(poly, if (reflectInput) trailer.reverseBitOrder else trailer, crcreg))
}
}
if (poly.size < 8) a => output(goBitwise(poly, if (reflectInput) a.reverseBitOrder else a, initial))
else a => calculate(a, initial)
}
private def goBitwise(poly: BitVector, remaining: BitVector, crcreg: BitVector): BitVector =
if (remaining.isEmpty) crcreg
else goBitwise(poly, remaining.tail, {
val shifted = crcreg << 1
if (crcreg.head == remaining.head) shifted else shifted xor poly
})
/**
* Constructs a 32-bit, table-based CRC function using the specified polynomial.
*
* @return function that calculates a 32-bit CRC
*/
def int32(poly: Int, initial: Int, reflectInput: Boolean, reflectOutput: Boolean, finalXor: Int): BitVector => Int = {
val table = Array.ofDim[Int](256)
@annotation.tailrec
def calculateTableIndex(idx: Int): Unit = {
if (idx < table.size) {
@annotation.tailrec
def shift(k: Int, crcreg: Int): Int = {
if (k < 8) {
shift(k + 1, {
val shifted = crcreg << 1
if ((crcreg & 0x80000000) != 0) shifted ^ poly else shifted
})
} else crcreg
}
table(idx) = shift(0, idx << 24)
calculateTableIndex(idx + 1)
}
}
calculateTableIndex(0)
def output(crcreg: Int): Int =
(if (reflectOutput) BitVector.fromInt(crcreg).reverse.toInt() else crcreg) ^ finalXor
def calculate(input: BitVector, initial: Int): Int = {
var crcreg = initial
val size = input.size
val byteAligned = size % 8 == 0
val data = if (byteAligned) input.bytes else input.bytes.init
if (reflectInput) {
data.foreach { inputByte =>
val index = (crcreg >>> 24) ^ (BitVector.reverseBitsInByte(inputByte) & 0xFF)
crcreg = (crcreg << 8) ^ table(index)
}
} else {
data.foreach { inputByte =>
val index = (crcreg >>> 24) ^ (inputByte & 0xFF)
crcreg = (crcreg << 8) ^ table(index)
}
}
if (byteAligned) {
output(crcreg)
} else {
val trailer = input.takeRight(size % 8)
output(goBitwise(poly, if (reflectInput) trailer.reverseBitOrder else trailer, crcreg))
}
}
a => calculate(a, initial)
}
private def goBitwise(poly: Int, remaining: BitVector, crcreg: Int): Int =
if (remaining.isEmpty) crcreg
else goBitwise(poly, remaining.tail, {
val shifted = crcreg << 1
if (((crcreg & 0x80000000) != 0) == remaining.head) shifted else shifted ^ poly
})
/**
* Calculates a bitwise CRC of the specified value.
*
* If calculating a lot of CRCs, prefer the `apply` method, which precomputes a lookup table
* and uses it in each CRC calculation.
*
* @return function that calculates a `n`-bit CRC where `n = poly.size`
*/
def bitwise(poly: BitVector, initial: BitVector, reflectInput: Boolean, reflectOutput: Boolean, finalXor: BitVector, value: BitVector): BitVector = {
val reg = goBitwise(poly, if (reflectInput) value.reverseBitOrder else value, initial)
(if (reflectOutput) reg.reverse else reg) xor finalXor
}
}