All Downloads are FREE. Search and download functionalities are using the official Maven repository.

de.gesellix.docker.remote.api.TaskSpecJsonAdapter.kt Maven / Gradle / Ivy

// 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.Types
import com.squareup.moshi.`internal`.Util
import java.lang.NullPointerException
import java.lang.reflect.Constructor
import kotlin.Int
import kotlin.String
import kotlin.Suppress
import kotlin.Unit
import kotlin.collections.MutableList
import kotlin.collections.emptySet
import kotlin.jvm.Volatile
import kotlin.text.buildString

public class TaskSpecJsonAdapter(
  moshi: Moshi,
) : JsonAdapter() {
  private val options: JsonReader.Options = JsonReader.Options.of("PluginSpec", "ContainerSpec",
      "NetworkAttachmentSpec", "Resources", "RestartPolicy", "Placement", "ForceUpdate", "Runtime",
      "Networks", "LogDriver")

  private val nullableTaskSpecPluginSpecAdapter: JsonAdapter =
      moshi.adapter(TaskSpecPluginSpec::class.java, emptySet(), "pluginSpec")

  private val nullableTaskSpecContainerSpecAdapter: JsonAdapter =
      moshi.adapter(TaskSpecContainerSpec::class.java, emptySet(), "containerSpec")

  private val nullableTaskSpecNetworkAttachmentSpecAdapter:
      JsonAdapter =
      moshi.adapter(TaskSpecNetworkAttachmentSpec::class.java, emptySet(), "networkAttachmentSpec")

  private val nullableTaskSpecResourcesAdapter: JsonAdapter =
      moshi.adapter(TaskSpecResources::class.java, emptySet(), "resources")

  private val nullableTaskSpecRestartPolicyAdapter: JsonAdapter =
      moshi.adapter(TaskSpecRestartPolicy::class.java, emptySet(), "restartPolicy")

  private val nullableTaskSpecPlacementAdapter: JsonAdapter =
      moshi.adapter(TaskSpecPlacement::class.java, emptySet(), "placement")

  private val nullableIntAdapter: JsonAdapter = moshi.adapter(Int::class.javaObjectType,
      emptySet(), "forceUpdate")

  private val nullableStringAdapter: JsonAdapter = moshi.adapter(String::class.java,
      emptySet(), "runtime")

  private val nullableMutableListOfNetworkAttachmentConfigAdapter:
      JsonAdapter?> =
      moshi.adapter(Types.newParameterizedType(MutableList::class.java,
      NetworkAttachmentConfig::class.java), emptySet(), "networks")

  private val nullableTaskSpecLogDriverAdapter: JsonAdapter =
      moshi.adapter(TaskSpecLogDriver::class.java, emptySet(), "logDriver")

  @Volatile
  private var constructorRef: Constructor? = null

  public override fun toString(): String = buildString(30) {
      append("GeneratedJsonAdapter(").append("TaskSpec").append(')') }

  public override fun fromJson(reader: JsonReader): TaskSpec {
    var pluginSpec: TaskSpecPluginSpec? = null
    var containerSpec: TaskSpecContainerSpec? = null
    var networkAttachmentSpec: TaskSpecNetworkAttachmentSpec? = null
    var resources: TaskSpecResources? = null
    var restartPolicy: TaskSpecRestartPolicy? = null
    var placement: TaskSpecPlacement? = null
    var forceUpdate: Int? = null
    var runtime: String? = null
    var networks: MutableList? = null
    var logDriver: TaskSpecLogDriver? = null
    var mask0 = -1
    reader.beginObject()
    while (reader.hasNext()) {
      when (reader.selectName(options)) {
        0 -> {
          pluginSpec = nullableTaskSpecPluginSpecAdapter.fromJson(reader)
          // $mask = $mask and (1 shl 0).inv()
          mask0 = mask0 and 0xfffffffe.toInt()
        }
        1 -> {
          containerSpec = nullableTaskSpecContainerSpecAdapter.fromJson(reader)
          // $mask = $mask and (1 shl 1).inv()
          mask0 = mask0 and 0xfffffffd.toInt()
        }
        2 -> {
          networkAttachmentSpec = nullableTaskSpecNetworkAttachmentSpecAdapter.fromJson(reader)
          // $mask = $mask and (1 shl 2).inv()
          mask0 = mask0 and 0xfffffffb.toInt()
        }
        3 -> {
          resources = nullableTaskSpecResourcesAdapter.fromJson(reader)
          // $mask = $mask and (1 shl 3).inv()
          mask0 = mask0 and 0xfffffff7.toInt()
        }
        4 -> {
          restartPolicy = nullableTaskSpecRestartPolicyAdapter.fromJson(reader)
          // $mask = $mask and (1 shl 4).inv()
          mask0 = mask0 and 0xffffffef.toInt()
        }
        5 -> {
          placement = nullableTaskSpecPlacementAdapter.fromJson(reader)
          // $mask = $mask and (1 shl 5).inv()
          mask0 = mask0 and 0xffffffdf.toInt()
        }
        6 -> {
          forceUpdate = nullableIntAdapter.fromJson(reader)
          // $mask = $mask and (1 shl 6).inv()
          mask0 = mask0 and 0xffffffbf.toInt()
        }
        7 -> {
          runtime = nullableStringAdapter.fromJson(reader)
          // $mask = $mask and (1 shl 7).inv()
          mask0 = mask0 and 0xffffff7f.toInt()
        }
        8 -> {
          networks = nullableMutableListOfNetworkAttachmentConfigAdapter.fromJson(reader)
          // $mask = $mask and (1 shl 8).inv()
          mask0 = mask0 and 0xfffffeff.toInt()
        }
        9 -> {
          logDriver = nullableTaskSpecLogDriverAdapter.fromJson(reader)
          // $mask = $mask and (1 shl 9).inv()
          mask0 = mask0 and 0xfffffdff.toInt()
        }
        -1 -> {
          // Unknown name, skip it.
          reader.skipName()
          reader.skipValue()
        }
      }
    }
    reader.endObject()
    if (mask0 == 0xfffffc00.toInt()) {
      // All parameters with defaults are set, invoke the constructor directly
      return  TaskSpec(
          pluginSpec = pluginSpec,
          containerSpec = containerSpec,
          networkAttachmentSpec = networkAttachmentSpec,
          resources = resources,
          restartPolicy = restartPolicy,
          placement = placement,
          forceUpdate = forceUpdate,
          runtime = runtime,
          networks = networks,
          logDriver = logDriver
      )
    } else {
      // Reflectively invoke the synthetic defaults constructor
      @Suppress("UNCHECKED_CAST")
      val localConstructor: Constructor = this.constructorRef ?:
          TaskSpec::class.java.getDeclaredConstructor(TaskSpecPluginSpec::class.java,
          TaskSpecContainerSpec::class.java, TaskSpecNetworkAttachmentSpec::class.java,
          TaskSpecResources::class.java, TaskSpecRestartPolicy::class.java,
          TaskSpecPlacement::class.java, Int::class.javaObjectType, String::class.java,
          MutableList::class.java, TaskSpecLogDriver::class.java, Int::class.javaPrimitiveType,
          Util.DEFAULT_CONSTRUCTOR_MARKER).also { this.constructorRef = it }
      return localConstructor.newInstance(
          pluginSpec,
          containerSpec,
          networkAttachmentSpec,
          resources,
          restartPolicy,
          placement,
          forceUpdate,
          runtime,
          networks,
          logDriver,
          mask0,
          /* DefaultConstructorMarker */ null
      )
    }
  }

  public override fun toJson(writer: JsonWriter, value_: TaskSpec?): Unit {
    if (value_ == null) {
      throw NullPointerException("value_ was null! Wrap in .nullSafe() to write nullable values.")
    }
    writer.beginObject()
    writer.name("PluginSpec")
    nullableTaskSpecPluginSpecAdapter.toJson(writer, value_.pluginSpec)
    writer.name("ContainerSpec")
    nullableTaskSpecContainerSpecAdapter.toJson(writer, value_.containerSpec)
    writer.name("NetworkAttachmentSpec")
    nullableTaskSpecNetworkAttachmentSpecAdapter.toJson(writer, value_.networkAttachmentSpec)
    writer.name("Resources")
    nullableTaskSpecResourcesAdapter.toJson(writer, value_.resources)
    writer.name("RestartPolicy")
    nullableTaskSpecRestartPolicyAdapter.toJson(writer, value_.restartPolicy)
    writer.name("Placement")
    nullableTaskSpecPlacementAdapter.toJson(writer, value_.placement)
    writer.name("ForceUpdate")
    nullableIntAdapter.toJson(writer, value_.forceUpdate)
    writer.name("Runtime")
    nullableStringAdapter.toJson(writer, value_.runtime)
    writer.name("Networks")
    nullableMutableListOfNetworkAttachmentConfigAdapter.toJson(writer, value_.networks)
    writer.name("LogDriver")
    nullableTaskSpecLogDriverAdapter.toJson(writer, value_.logDriver)
    writer.endObject()
  }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy