
io.aeron.archive.checksum.Crc32 Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of aeron-all Show documentation
Show all versions of aeron-all Show documentation
Efficient reliable UDP unicast, UDP multicast, and IPC transport protocol.
/*
* Copyright 2014-2024 Real Logic Limited.
*
* Licensed 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
*
* https://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.
*/
package io.aeron.archive.checksum;
import org.agrona.LangUtil;
import java.lang.invoke.MethodHandle;
import java.lang.invoke.MethodHandles;
import java.lang.reflect.Method;
import java.util.zip.CRC32;
/**
* Implementation of the {@link Checksum} interface that computes CRC-32 checksum.
*/
final class Crc32 implements Checksum
{
private static final MethodHandle UPDATE_BYTE_BUFFER;
static
{
try
{
final Method method =
CRC32.class.getDeclaredMethod("updateByteBuffer0", int.class, long.class, int.class, int.class);
method.setAccessible(true);
MethodHandle methodHandle = MethodHandles.lookup().unreflect(method);
methodHandle = MethodHandles.insertArguments(methodHandle, 0, 0);
UPDATE_BYTE_BUFFER = methodHandle;
}
catch (final Exception ex)
{
throw new Error(ex);
}
}
public static final Crc32 INSTANCE = new Crc32();
private Crc32()
{
}
public int compute(final long address, final int offset, final int length)
{
try
{
return (int)UPDATE_BYTE_BUFFER.invokeExact(address, offset, length);
}
catch (final Throwable t)
{
LangUtil.rethrowUnchecked(t);
return -1;
}
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy