com.alibaba.fastjson2.reader.FieldReaderInt64Func Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of fastjson2 Show documentation
Show all versions of fastjson2 Show documentation
Fastjson is a JSON processor (JSON parser + JSON generator) written in Java
package com.alibaba.fastjson2.reader;
import com.alibaba.fastjson2.JSONReader;
import com.alibaba.fastjson2.schema.JSONSchema;
import com.alibaba.fastjson2.util.TypeUtils;
import java.lang.reflect.Method;
import java.util.Locale;
import java.util.function.BiConsumer;
final class FieldReaderInt64Func
extends FieldReader {
final BiConsumer function;
public FieldReaderInt64Func(
String fieldName,
Class fieldClass,
int ordinal,
long features,
String format,
Locale locale,
Object defaultValue,
JSONSchema schema,
Method method,
BiConsumer function
) {
super(fieldName, fieldClass, fieldClass, ordinal, features, format, locale, defaultValue, schema, method, null);
this.function = function;
}
@Override
public void accept(T object, Object value) {
Long longValue = TypeUtils.toLong(value);
if (schema != null) {
schema.assertValidate(longValue);
}
function.accept(object, (V) longValue);
}
@Override
public void readFieldValue(JSONReader jsonReader, T object) {
Long fieldValue;
try {
fieldValue = jsonReader.readInt64();
} catch (Exception e) {
if ((jsonReader.features(this.features) & JSONReader.Feature.NullOnError.mask) != 0) {
fieldValue = null;
} else {
throw e;
}
}
if (schema != null) {
schema.assertValidate(fieldValue);
}
function.accept(object, (V) fieldValue);
}
@Override
public Object readFieldValue(JSONReader jsonReader) {
return jsonReader.readInt64();
}
@Override
public BiConsumer getFunction() {
return function;
}
}