shade.com.alibaba.fastjson2.reader.ObjectReaderImplBoolValueArray Maven / Gradle / Ivy
package com.alibaba.fastjson2.reader;
import com.alibaba.fastjson2.JSONB;
import com.alibaba.fastjson2.JSONException;
import com.alibaba.fastjson2.JSONReader;
import com.alibaba.fastjson2.util.Fnv;
import java.lang.reflect.Type;
import java.util.Arrays;
class ObjectReaderImplBoolValueArray
extends ObjectReaderPrimitive {
static final ObjectReaderImplBoolValueArray INSTANCE = new ObjectReaderImplBoolValueArray();
static final long TYPE_HASH = Fnv.hashCode64("[Z");
ObjectReaderImplBoolValueArray() {
super(boolean[].class);
}
@Override
public Object readObject(JSONReader jsonReader, Type fieldType, Object fieldName, long features) {
if (jsonReader.readIfNull()) {
return null;
}
if (jsonReader.nextIfArrayStart()) {
boolean[] values = new boolean[16];
int size = 0;
while (!jsonReader.nextIfArrayEnd()) {
int minCapacity = size + 1;
if (minCapacity - values.length > 0) {
int oldCapacity = values.length;
int newCapacity = oldCapacity + (oldCapacity >> 1);
if (newCapacity - minCapacity < 0) {
newCapacity = minCapacity;
}
values = Arrays.copyOf(values, newCapacity);
}
values[size++] = jsonReader.readBoolValue();
}
jsonReader.nextIfComma();
return Arrays.copyOf(values, size);
}
if (jsonReader.isString()) {
String str = jsonReader.readString();
if (str.isEmpty()) {
return null;
}
throw new JSONException(jsonReader.info("not support input " + str));
}
throw new JSONException(jsonReader.info("TODO"));
}
@Override
public Object readJSONBObject(JSONReader jsonReader, Type fieldType, Object fieldName, long features) {
if (jsonReader.nextIfMatch(JSONB.Constants.BC_TYPED_ANY)) {
long typeHashCode = jsonReader.readTypeHashCode();
if (typeHashCode != TYPE_HASH) {
throw new JSONException("not support autoType : " + jsonReader.getString());
}
}
int entryCnt = jsonReader.startArray();
if (entryCnt == -1) {
return null;
}
boolean[] array = new boolean[entryCnt];
for (int i = 0; i < entryCnt; i++) {
array[i] = jsonReader.readBoolValue();
}
return array;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy