более быстрый isMarkedNullable
This commit is contained in:
parent
89fbbadec3
commit
c3756b259a
@ -8,5 +8,7 @@ class DynamicItemDefinition(def: RegistryObject<IItemDefinition>) : DynamicDefin
|
|||||||
override fun sanitize(saveInput: JsonObject) {
|
override fun sanitize(saveInput: JsonObject) {
|
||||||
saveInput.remove("itemName")
|
saveInput.remove("itemName")
|
||||||
saveInput.remove("pickupQuestTemplates")
|
saveInput.remove("pickupQuestTemplates")
|
||||||
|
saveInput.remove("scripts")
|
||||||
|
saveInput.remove("scriptDelta")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -60,6 +60,7 @@ class BuilderAdapter<T : Any> private constructor(
|
|||||||
val stringInterner: Interner<String> = Interner { it },
|
val stringInterner: Interner<String> = Interner { it },
|
||||||
) : TypeAdapter<T>() {
|
) : TypeAdapter<T>() {
|
||||||
private val loggedMisses = ObjectOpenHashSet<String>()
|
private val loggedMisses = ObjectOpenHashSet<String>()
|
||||||
|
private val flatProperties = properties.values.filter { it.isFlat }
|
||||||
|
|
||||||
override fun write(writer: JsonWriter, value: T) {
|
override fun write(writer: JsonWriter, value: T) {
|
||||||
TODO("Not yet implemented")
|
TODO("Not yet implemented")
|
||||||
@ -69,13 +70,16 @@ class BuilderAdapter<T : Any> private constructor(
|
|||||||
@Suppress("name_shadowing")
|
@Suppress("name_shadowing")
|
||||||
var reader = reader
|
var reader = reader
|
||||||
|
|
||||||
|
// загружаем указатели на стек
|
||||||
|
val properties = properties
|
||||||
|
|
||||||
val missing = ObjectOpenHashSet<IResolvedMutableProperty<T, *>>()
|
val missing = ObjectOpenHashSet<IResolvedMutableProperty<T, *>>()
|
||||||
missing.addAll(properties.values)
|
missing.addAll(properties.values)
|
||||||
|
|
||||||
val instance = factory.invoke()
|
val instance = factory.invoke()
|
||||||
var json: JsonObject by Delegates.notNull()
|
var json: JsonObject by Delegates.notNull()
|
||||||
|
|
||||||
if (instance is IJsonHolder || properties.values.any { it.isFlat }) {
|
if (instance is IJsonHolder || flatProperties.isNotEmpty()) {
|
||||||
json = TypeAdapters.JSON_ELEMENT.read(reader) as JsonObject
|
json = TypeAdapters.JSON_ELEMENT.read(reader) as JsonObject
|
||||||
reader = JsonTreeReader(json)
|
reader = JsonTreeReader(json)
|
||||||
|
|
||||||
@ -86,6 +90,12 @@ class BuilderAdapter<T : Any> private constructor(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// загружаем указатели на стек
|
||||||
|
val logMisses = logMisses
|
||||||
|
val extraPropertiesAreFatal = extraPropertiesAreFatal
|
||||||
|
val loggedMisses = loggedMisses
|
||||||
|
val ignoreKeys = ignoreKeys
|
||||||
|
|
||||||
reader.beginObject()
|
reader.beginObject()
|
||||||
|
|
||||||
while (reader.hasNext()) {
|
while (reader.hasNext()) {
|
||||||
@ -102,15 +112,15 @@ class BuilderAdapter<T : Any> private constructor(
|
|||||||
try {
|
try {
|
||||||
val peek = reader.peek()
|
val peek = reader.peek()
|
||||||
|
|
||||||
if (!property.type.isMarkedNullable && peek == JsonToken.NULL) {
|
if (!property.isMarkedNullable && peek === JsonToken.NULL) {
|
||||||
throw NullPointerException("Property ${property.name} of ${instance::class.qualifiedName} does not accept nulls (JSON contains null)")
|
throw NullPointerException("Property ${property.name} of ${instance::class.qualifiedName} does not accept nulls (JSON contains null)")
|
||||||
} else if (peek == JsonToken.NULL) {
|
} else if (peek === JsonToken.NULL) {
|
||||||
property.set(instance, null)
|
property.set(instance, null)
|
||||||
reader.nextNull()
|
reader.nextNull()
|
||||||
} else {
|
} else {
|
||||||
val readValue = property.adapter.read(reader)
|
val readValue = property.adapter.read(reader)
|
||||||
|
|
||||||
if (!property.type.isMarkedNullable && readValue == null)
|
if (!property.isMarkedNullable && readValue == null)
|
||||||
throw JsonSyntaxException("Property ${property.name} of ${instance::class.qualifiedName} does not accept nulls (Type provider returned null)")
|
throw JsonSyntaxException("Property ${property.name} of ${instance::class.qualifiedName} does not accept nulls (Type provider returned null)")
|
||||||
|
|
||||||
property.set(instance, readValue)
|
property.set(instance, readValue)
|
||||||
@ -134,14 +144,14 @@ class BuilderAdapter<T : Any> private constructor(
|
|||||||
|
|
||||||
reader.endObject()
|
reader.endObject()
|
||||||
|
|
||||||
for (property in properties.values) {
|
for (property in flatProperties) {
|
||||||
if (!property.isFlat || !missing.remove(property))
|
if (!missing.remove(property))
|
||||||
continue
|
continue
|
||||||
|
|
||||||
try {
|
try {
|
||||||
val read = property.adapter.read(JsonTreeReader(json))
|
val read = property.adapter.read(JsonTreeReader(json))
|
||||||
|
|
||||||
if (!property.type.isMarkedNullable && read == null) {
|
if (!property.isMarkedNullable && read == null) {
|
||||||
throw NullPointerException("Property ${property.name} of ${instance::class.qualifiedName} does not accept nulls (flat property adapter returned NULL)")
|
throw NullPointerException("Property ${property.name} of ${instance::class.qualifiedName} does not accept nulls (flat property adapter returned NULL)")
|
||||||
} else if (read == null) {
|
} else if (read == null) {
|
||||||
property.set(instance, null)
|
property.set(instance, null)
|
||||||
@ -157,7 +167,7 @@ class BuilderAdapter<T : Any> private constructor(
|
|||||||
if (property.mustBePresent == true) {
|
if (property.mustBePresent == true) {
|
||||||
throw JsonSyntaxException("${instance::class.qualifiedName} demands for ${property.name} to be present, however, it is missing from JSON structure")
|
throw JsonSyntaxException("${instance::class.qualifiedName} demands for ${property.name} to be present, however, it is missing from JSON structure")
|
||||||
} else if (property.mustBePresent == null) {
|
} else if (property.mustBePresent == null) {
|
||||||
if (property.type.isMarkedNullable) {
|
if (property.isMarkedNullable) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -296,7 +296,7 @@ class FactoryAdapter<T : Any> private constructor(
|
|||||||
val (field) = tuple
|
val (field) = tuple
|
||||||
|
|
||||||
if (readValues[i] == null) {
|
if (readValues[i] == null) {
|
||||||
if (!tuple.type.isMarkedNullable) {
|
if (!tuple.isMarkedNullable) {
|
||||||
throw JsonSyntaxException("Field ${field.name} of ${bound.qualifiedName} does not accept nulls")
|
throw JsonSyntaxException("Field ${field.name} of ${bound.qualifiedName} does not accept nulls")
|
||||||
}
|
}
|
||||||
|
|
||||||
@ -350,7 +350,7 @@ class FactoryAdapter<T : Any> private constructor(
|
|||||||
throw JsonSyntaxException("Field ${field.name} of ${bound.qualifiedName} is missing")
|
throw JsonSyntaxException("Field ${field.name} of ${bound.qualifiedName} is missing")
|
||||||
}
|
}
|
||||||
|
|
||||||
if (tuple.type.isMarkedNullable) {
|
if (tuple.isMarkedNullable) {
|
||||||
continue
|
continue
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -28,6 +28,7 @@ interface IResolvableProperty<T : Any, V> : IReferencedProperty<T, V> {
|
|||||||
interface IResolvedProperty<T : Any, V> : IReferencedProperty<T, V> {
|
interface IResolvedProperty<T : Any, V> : IReferencedProperty<T, V> {
|
||||||
val type: KType
|
val type: KType
|
||||||
val adapter: TypeAdapter<V>
|
val adapter: TypeAdapter<V>
|
||||||
|
val isMarkedNullable: Boolean
|
||||||
|
|
||||||
operator fun component1() = property
|
operator fun component1() = property
|
||||||
operator fun component2() = adapter
|
operator fun component2() = adapter
|
||||||
@ -39,6 +40,7 @@ class ResolvedProperty<T : Any, V>(
|
|||||||
override val isFlat: Boolean
|
override val isFlat: Boolean
|
||||||
) : IResolvableProperty<T, V>, IResolvedProperty<T, V> {
|
) : IResolvableProperty<T, V>, IResolvedProperty<T, V> {
|
||||||
override val type: KType = property.returnType
|
override val type: KType = property.returnType
|
||||||
|
override val isMarkedNullable: Boolean = type.isMarkedNullable
|
||||||
|
|
||||||
override fun resolve(gson: Gson?): IResolvedProperty<T, V> {
|
override fun resolve(gson: Gson?): IResolvedProperty<T, V> {
|
||||||
return this
|
return this
|
||||||
@ -74,6 +76,7 @@ interface IResolvableMutableProperty<T : Any, V> : IReferencedMutableProperty<T,
|
|||||||
interface IResolvedMutableProperty<T : Any, V> : IResolvableMutableProperty<T, V> {
|
interface IResolvedMutableProperty<T : Any, V> : IResolvableMutableProperty<T, V> {
|
||||||
val type: KType
|
val type: KType
|
||||||
val adapter: TypeAdapter<V>
|
val adapter: TypeAdapter<V>
|
||||||
|
val isMarkedNullable: Boolean
|
||||||
|
|
||||||
operator fun component1() = property
|
operator fun component1() = property
|
||||||
operator fun component2() = adapter
|
operator fun component2() = adapter
|
||||||
@ -91,6 +94,7 @@ class ResolvedMutableProperty<T : Any, V>(
|
|||||||
override val mustBePresent: Boolean?
|
override val mustBePresent: Boolean?
|
||||||
) : IResolvableMutableProperty<T, V>, IResolvedMutableProperty<T, V> {
|
) : IResolvableMutableProperty<T, V>, IResolvedMutableProperty<T, V> {
|
||||||
override val type: KType = property.returnType
|
override val type: KType = property.returnType
|
||||||
|
override val isMarkedNullable: Boolean = type.isMarkedNullable
|
||||||
|
|
||||||
override fun resolve(gson: Gson?): IResolvedMutableProperty<T, V> {
|
override fun resolve(gson: Gson?): IResolvedMutableProperty<T, V> {
|
||||||
return this
|
return this
|
||||||
|
Loading…
Reference in New Issue
Block a user