io.parsingdata.metal.Util Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of metal-core Show documentation
Show all versions of metal-core Show documentation
Core building blocks and API for the Metal library.
The newest version!
/*
* Copyright 2013-2024 Netherlands Forensic Institute
* Copyright 2021-2024 Infix Technologies B.V.
*
* 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
*
* 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.
*/
package io.parsingdata.metal;
import static java.math.BigInteger.ZERO;
import java.io.ByteArrayOutputStream;
import java.math.BigInteger;
import java.util.Locale;
import java.util.Optional;
import java.util.zip.DataFormatException;
import java.util.zip.Inflater;
import io.parsingdata.metal.data.ParseState;
import io.parsingdata.metal.data.Slice;
import io.parsingdata.metal.encoding.Encoding;
import io.parsingdata.metal.expression.value.CoreValue;
import io.parsingdata.metal.expression.value.UnaryValueExpression;
import io.parsingdata.metal.expression.value.Value;
import io.parsingdata.metal.expression.value.ValueExpression;
public final class Util {
private static final char[] HEX_ARRAY = "0123456789ABCDEF".toCharArray(); // Private because array content is mutable.
private Util() {}
public static T checkNotNull(final T argument, final String name) {
if (argument == null) {
throw new IllegalArgumentException(format("Argument %s may not be null.", name));
}
return argument;
}
public static T[] checkContainsNoNulls(final T[] arguments, final String name) {
checkNotNull(arguments, name);
for (final T argument : arguments) {
if (argument == null) {
throw new IllegalArgumentException(format("Value in array %s may not be null.", name));
}
}
return arguments;
}
public static String checkNotEmpty(final String argument, final String name) {
if (checkNotNull(argument, name).isEmpty()) {
throw new IllegalArgumentException(format("Argument %s may not be empty.", name));
}
return argument;
}
public static boolean notNullAndSameClass(final Object object, final Object other) {
return other != null
&& object.getClass() == other.getClass();
}
public static BigInteger checkNotNegative(final BigInteger argument, final String name) {
if (checkNotNull(argument, name).compareTo(ZERO) < 0) {
throw new IllegalArgumentException(format("Argument %s may not be negative.", name));
}
return argument;
}
public static String format(final String format, final Object... args) {
return String.format(Locale.ENGLISH, format, args);
}
public static String bytesToHexString(final byte[] bytes) {
checkNotNull(bytes, "bytes");
char[] hexChars = new char[bytes.length * 2];
for (int j = 0; j < bytes.length; j++) {
final int v = bytes[j] & 0xFF;
hexChars[j * 2] = HEX_ARRAY[v >>> 4];
hexChars[j * 2 + 1] = HEX_ARRAY[v & 0x0F];
}
return new String(hexChars);
}
public static ValueExpression inflate(final ValueExpression target) {
return new UnaryValueExpression(target) {
@Override
public Optional eval(final Value value, final ParseState parseState, final Encoding encoding) {
final Inflater inf = new Inflater(true);
inf.setInput(value.value());
final byte[] dataReceiver = new byte[512];
final ByteArrayOutputStream out = new ByteArrayOutputStream();
while(!inf.finished()) {
try {
final int processed = inf.inflate(dataReceiver);
out.write(dataReceiver, 0, processed);
} catch (final DataFormatException e) {
return Optional.empty();
}
}
return Optional.of(new CoreValue(Slice.createFromBytes(out.toByteArray()), encoding));
}
};
}
public static Optional success(final ParseState parseState) {
return Optional.of(parseState);
}
public static Optional failure() {
return Optional.empty();
}
}