blob: 339ab7c7c1b3a665e23ea5313ad9c26d96f1f92e [file] [log] [blame]
/*
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*
*/
using System;
namespace Lucene.Net.Support
{
internal class CRC32 : IChecksum
{
private static readonly uint[] crcTable = LoadCRCTable();
// LUCENENET: Avoid static constructors (see https://github.com/apache/lucenenet/pull/224#issuecomment-469284006)
private static uint[] LoadCRCTable()
{
uint[] result = new uint[256];
for (uint n = 0; n < 256; n++)
{
uint c = n;
for (int k = 8; --k >= 0;)
{
if ((c & 1) != 0)
c = 0xedb88320 ^ (c >> 1);
else
c = c >> 1;
}
result[n] = c;
}
return result;
}
private uint crc = 0;
public long Value => crc & 0xffffffffL;
public void Reset()
{
crc = 0;
}
public void Update(int bval)
{
uint c = ~crc;
c = crcTable[(c ^ bval) & 0xff] ^ (c >> 8);
crc = ~c;
}
public void Update(byte[] buf, int off, int len)
{
Update(buf.AsSpan(off, len));
}
public void Update(ReadOnlySpan<byte> bytes)
{
int off = 0; int len = bytes.Length;
uint c = ~crc;
while (--len >= 0)
c = crcTable[(c ^ bytes[off++]) & 0xff] ^ (c >> 8);
crc = ~c;
}
}
}