de.gesellix.docker.remote.api.PluginJsonAdapter.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of docker-remote-api-model-1-45 Show documentation
Show all versions of docker-remote-api-model-1-45 Show documentation
API model for the Docker remote api v1.45
// Code generated by moshi-kotlin-codegen. Do not edit.
@file:Suppress("DEPRECATION", "unused", "UNUSED_PARAMETER", "ClassName", "REDUNDANT_PROJECTION",
"RedundantExplicitType", "LocalVariableName", "RedundantVisibilityModifier",
"PLATFORM_CLASS_MAPPED_TO_KOTLIN", "IMPLICIT_NOTHING_TYPE_ARGUMENT_IN_RETURN_POSITION")
package de.gesellix.docker.remote.api
import com.squareup.moshi.JsonAdapter
import com.squareup.moshi.JsonReader
import com.squareup.moshi.JsonWriter
import com.squareup.moshi.Moshi
import com.squareup.moshi.`internal`.Util
import java.lang.NullPointerException
import java.lang.reflect.Constructor
import kotlin.Boolean
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.emptySet
import kotlin.jvm.Volatile
import kotlin.text.buildString
public class PluginJsonAdapter(
moshi: Moshi,
) : JsonAdapter() {
private val options: JsonReader.Options = JsonReader.Options.of("Name", "Enabled", "Settings",
"Config", "Id", "PluginReference")
private val stringAdapter: JsonAdapter = moshi.adapter(String::class.java, emptySet(),
"name")
private val booleanAdapter: JsonAdapter = moshi.adapter(Boolean::class.java, emptySet(),
"enabled")
private val pluginSettingsAdapter: JsonAdapter =
moshi.adapter(PluginSettings::class.java, emptySet(), "settings")
private val pluginConfigAdapter: JsonAdapter =
moshi.adapter(PluginConfig::class.java, emptySet(), "config")
private val nullableStringAdapter: JsonAdapter = moshi.adapter(String::class.java,
emptySet(), "id")
@Volatile
private var constructorRef: Constructor? = null
public override fun toString(): String = buildString(28) {
append("GeneratedJsonAdapter(").append("Plugin").append(')') }
public override fun fromJson(reader: JsonReader): Plugin {
var name: String? = null
var enabled: Boolean? = null
var settings: PluginSettings? = null
var config: PluginConfig? = null
var id: String? = null
var pluginReference: String? = null
var mask0 = -1
reader.beginObject()
while (reader.hasNext()) {
when (reader.selectName(options)) {
0 -> name = stringAdapter.fromJson(reader) ?: throw Util.unexpectedNull("name", "Name",
reader)
1 -> enabled = booleanAdapter.fromJson(reader) ?: throw Util.unexpectedNull("enabled",
"Enabled", reader)
2 -> settings = pluginSettingsAdapter.fromJson(reader) ?:
throw Util.unexpectedNull("settings", "Settings", reader)
3 -> config = pluginConfigAdapter.fromJson(reader) ?: throw Util.unexpectedNull("config",
"Config", reader)
4 -> {
id = nullableStringAdapter.fromJson(reader)
// $mask = $mask and (1 shl 4).inv()
mask0 = mask0 and 0xffffffef.toInt()
}
5 -> {
pluginReference = nullableStringAdapter.fromJson(reader)
// $mask = $mask and (1 shl 5).inv()
mask0 = mask0 and 0xffffffdf.toInt()
}
-1 -> {
// Unknown name, skip it.
reader.skipName()
reader.skipValue()
}
}
}
reader.endObject()
if (mask0 == 0xffffffcf.toInt()) {
// All parameters with defaults are set, invoke the constructor directly
return Plugin(
name = name ?: throw Util.missingProperty("name", "Name", reader),
enabled = enabled ?: throw Util.missingProperty("enabled", "Enabled", reader),
settings = settings ?: throw Util.missingProperty("settings", "Settings", reader),
config = config ?: throw Util.missingProperty("config", "Config", reader),
id = id,
pluginReference = pluginReference
)
} else {
// Reflectively invoke the synthetic defaults constructor
@Suppress("UNCHECKED_CAST")
val localConstructor: Constructor = this.constructorRef ?:
Plugin::class.java.getDeclaredConstructor(String::class.java,
Boolean::class.javaPrimitiveType, PluginSettings::class.java, PluginConfig::class.java,
String::class.java, String::class.java, Int::class.javaPrimitiveType,
Util.DEFAULT_CONSTRUCTOR_MARKER).also { this.constructorRef = it }
return localConstructor.newInstance(
name ?: throw Util.missingProperty("name", "Name", reader),
enabled ?: throw Util.missingProperty("enabled", "Enabled", reader),
settings ?: throw Util.missingProperty("settings", "Settings", reader),
config ?: throw Util.missingProperty("config", "Config", reader),
id,
pluginReference,
mask0,
/* DefaultConstructorMarker */ null
)
}
}
public override fun toJson(writer: JsonWriter, value_: Plugin?): Unit {
if (value_ == null) {
throw NullPointerException("value_ was null! Wrap in .nullSafe() to write nullable values.")
}
writer.beginObject()
writer.name("Name")
stringAdapter.toJson(writer, value_.name)
writer.name("Enabled")
booleanAdapter.toJson(writer, value_.enabled)
writer.name("Settings")
pluginSettingsAdapter.toJson(writer, value_.settings)
writer.name("Config")
pluginConfigAdapter.toJson(writer, value_.config)
writer.name("Id")
nullableStringAdapter.toJson(writer, value_.id)
writer.name("PluginReference")
nullableStringAdapter.toJson(writer, value_.pluginReference)
writer.endObject()
}
}