defmodule Kayrock.OffsetForLeaderEpoch do @api :offset_for_leader_epoch @moduledoc "Kayrock-generated module for the Kafka `#{@api}` API " _ = " THIS CODE IS GENERATED BY KAYROCK" ( @vmin 0 @vmax 3 ) defmodule V0.Request do @vsn 0 @api :offset_for_leader_epoch @schema topics: {:array, topic: :string, partitions: {:array, partition: :int32, leader_epoch: :int32}} @moduledoc "Kayrock-generated request struct for Kafka `#{@api}` v#{@vsn} API messages The schema of this API is ``` #{inspect(@schema, pretty: true)} ``` " _ = " THIS CODE IS GENERATED BY KAYROCK" defstruct topics: [], correlation_id: nil, client_id: nil import Elixir.Kayrock.Serialize @typedoc "Request struct for the Kafka `#{@api}` API v#{@vsn} " @type t :: %__MODULE__{ topics: [ %{ topic: nil | binary(), partitions: [%{partition: nil | integer(), leader_epoch: nil | integer()}] } ], correlation_id: nil | integer(), client_id: nil | binary() } @doc "Returns the Kafka API key for this API" @spec api_key :: integer def api_key do Kayrock.KafkaSchemaMetadata.api_key(:offset_for_leader_epoch) end @doc "Returns the API version (#{@vsn}) implemented by this module" @spec api_vsn :: integer def api_vsn do 0 end @doc "Returns a function that can be used to deserialize the wire response from the\nbroker for this message type\n" @spec response_deserializer :: (binary -> {V0.Response.t(), binary}) def response_deserializer do &V0.Response.deserialize/1 end @doc "Returns the schema of this message\n\nSee [above](#).\n" @spec schema :: term def schema do [ topics: {:array, topic: :string, partitions: {:array, partition: :int32, leader_epoch: :int32}} ] end @doc "Serialize a message to binary data for transfer to a Kafka broker" @spec serialize(t()) :: iodata def serialize(%V0.Request{} = struct) do [ <>, case struct.client_id do nil -> <<-1::16-signed>> id -> <> end, [ case Map.fetch!(struct, :topics) do nil -> <<-1::32-signed>> [] -> <<0::32-signed>> vals when is_list(vals) -> [ <>, for v <- vals do [ serialize(:string, Map.fetch!(v, :topic)), case Map.fetch!(v, :partitions) do nil -> <<-1::32-signed>> [] -> <<0::32-signed>> vals when is_list(vals) -> [ <>, for v <- vals do [ serialize(:int32, Map.fetch!(v, :partition)), serialize(:int32, Map.fetch!(v, :leader_epoch)) ] end ] end ] end ] end ] ] end end defimpl(Elixir.Kayrock.Request, for: V0.Request) do def serialize(%V0.Request{} = struct) do try do V0.Request.serialize(struct) rescue e -> reraise Kayrock.InvalidRequestError, {e, struct}, __STACKTRACE__ end end def api_vsn(%V0.Request{}) do V0.Request.api_vsn() end def response_deserializer(%V0.Request{}) do V0.Request.response_deserializer() end end defmodule V1.Request do @vsn 1 @api :offset_for_leader_epoch @schema topics: {:array, topic: :string, partitions: {:array, partition: :int32, leader_epoch: :int32}} @moduledoc "Kayrock-generated request struct for Kafka `#{@api}` v#{@vsn} API messages The schema of this API is ``` #{inspect(@schema, pretty: true)} ``` " _ = " THIS CODE IS GENERATED BY KAYROCK" defstruct topics: [], correlation_id: nil, client_id: nil import Elixir.Kayrock.Serialize @typedoc "Request struct for the Kafka `#{@api}` API v#{@vsn} " @type t :: %__MODULE__{ topics: [ %{ topic: nil | binary(), partitions: [%{partition: nil | integer(), leader_epoch: nil | integer()}] } ], correlation_id: nil | integer(), client_id: nil | binary() } @doc "Returns the Kafka API key for this API" @spec api_key :: integer def api_key do Kayrock.KafkaSchemaMetadata.api_key(:offset_for_leader_epoch) end @doc "Returns the API version (#{@vsn}) implemented by this module" @spec api_vsn :: integer def api_vsn do 1 end @doc "Returns a function that can be used to deserialize the wire response from the\nbroker for this message type\n" @spec response_deserializer :: (binary -> {V1.Response.t(), binary}) def response_deserializer do &V1.Response.deserialize/1 end @doc "Returns the schema of this message\n\nSee [above](#).\n" @spec schema :: term def schema do [ topics: {:array, topic: :string, partitions: {:array, partition: :int32, leader_epoch: :int32}} ] end @doc "Serialize a message to binary data for transfer to a Kafka broker" @spec serialize(t()) :: iodata def serialize(%V1.Request{} = struct) do [ <>, case struct.client_id do nil -> <<-1::16-signed>> id -> <> end, [ case Map.fetch!(struct, :topics) do nil -> <<-1::32-signed>> [] -> <<0::32-signed>> vals when is_list(vals) -> [ <>, for v <- vals do [ serialize(:string, Map.fetch!(v, :topic)), case Map.fetch!(v, :partitions) do nil -> <<-1::32-signed>> [] -> <<0::32-signed>> vals when is_list(vals) -> [ <>, for v <- vals do [ serialize(:int32, Map.fetch!(v, :partition)), serialize(:int32, Map.fetch!(v, :leader_epoch)) ] end ] end ] end ] end ] ] end end defimpl(Elixir.Kayrock.Request, for: V1.Request) do def serialize(%V1.Request{} = struct) do try do V1.Request.serialize(struct) rescue e -> reraise Kayrock.InvalidRequestError, {e, struct}, __STACKTRACE__ end end def api_vsn(%V1.Request{}) do V1.Request.api_vsn() end def response_deserializer(%V1.Request{}) do V1.Request.response_deserializer() end end defmodule V2.Request do @vsn 2 @api :offset_for_leader_epoch @schema topics: {:array, topic: :string, partitions: {:array, partition: :int32, current_leader_epoch: :int32, leader_epoch: :int32}} @moduledoc "Kayrock-generated request struct for Kafka `#{@api}` v#{@vsn} API messages The schema of this API is ``` #{inspect(@schema, pretty: true)} ``` " _ = " THIS CODE IS GENERATED BY KAYROCK" defstruct topics: [], correlation_id: nil, client_id: nil import Elixir.Kayrock.Serialize @typedoc "Request struct for the Kafka `#{@api}` API v#{@vsn} " @type t :: %__MODULE__{ topics: [ %{ topic: nil | binary(), partitions: [ %{ partition: nil | integer(), current_leader_epoch: nil | integer(), leader_epoch: nil | integer() } ] } ], correlation_id: nil | integer(), client_id: nil | binary() } @doc "Returns the Kafka API key for this API" @spec api_key :: integer def api_key do Kayrock.KafkaSchemaMetadata.api_key(:offset_for_leader_epoch) end @doc "Returns the API version (#{@vsn}) implemented by this module" @spec api_vsn :: integer def api_vsn do 2 end @doc "Returns a function that can be used to deserialize the wire response from the\nbroker for this message type\n" @spec response_deserializer :: (binary -> {V2.Response.t(), binary}) def response_deserializer do &V2.Response.deserialize/1 end @doc "Returns the schema of this message\n\nSee [above](#).\n" @spec schema :: term def schema do [ topics: {:array, topic: :string, partitions: {:array, partition: :int32, current_leader_epoch: :int32, leader_epoch: :int32}} ] end @doc "Serialize a message to binary data for transfer to a Kafka broker" @spec serialize(t()) :: iodata def serialize(%V2.Request{} = struct) do [ <>, case struct.client_id do nil -> <<-1::16-signed>> id -> <> end, [ case Map.fetch!(struct, :topics) do nil -> <<-1::32-signed>> [] -> <<0::32-signed>> vals when is_list(vals) -> [ <>, for v <- vals do [ serialize(:string, Map.fetch!(v, :topic)), case Map.fetch!(v, :partitions) do nil -> <<-1::32-signed>> [] -> <<0::32-signed>> vals when is_list(vals) -> [ <>, for v <- vals do [ serialize(:int32, Map.fetch!(v, :partition)), serialize(:int32, Map.fetch!(v, :current_leader_epoch)), serialize(:int32, Map.fetch!(v, :leader_epoch)) ] end ] end ] end ] end ] ] end end defimpl(Elixir.Kayrock.Request, for: V2.Request) do def serialize(%V2.Request{} = struct) do try do V2.Request.serialize(struct) rescue e -> reraise Kayrock.InvalidRequestError, {e, struct}, __STACKTRACE__ end end def api_vsn(%V2.Request{}) do V2.Request.api_vsn() end def response_deserializer(%V2.Request{}) do V2.Request.response_deserializer() end end defmodule V3.Request do @vsn 3 @api :offset_for_leader_epoch @schema replica_id: :int32, topics: {:array, topic: :string, partitions: {:array, partition: :int32, current_leader_epoch: :int32, leader_epoch: :int32}} @moduledoc "Kayrock-generated request struct for Kafka `#{@api}` v#{@vsn} API messages The schema of this API is ``` #{inspect(@schema, pretty: true)} ``` " _ = " THIS CODE IS GENERATED BY KAYROCK" defstruct replica_id: nil, topics: [], correlation_id: nil, client_id: nil import Elixir.Kayrock.Serialize @typedoc "Request struct for the Kafka `#{@api}` API v#{@vsn} " @type t :: %__MODULE__{ replica_id: nil | integer(), topics: [ %{ topic: nil | binary(), partitions: [ %{ partition: nil | integer(), current_leader_epoch: nil | integer(), leader_epoch: nil | integer() } ] } ], correlation_id: nil | integer(), client_id: nil | binary() } @doc "Returns the Kafka API key for this API" @spec api_key :: integer def api_key do Kayrock.KafkaSchemaMetadata.api_key(:offset_for_leader_epoch) end @doc "Returns the API version (#{@vsn}) implemented by this module" @spec api_vsn :: integer def api_vsn do 3 end @doc "Returns a function that can be used to deserialize the wire response from the\nbroker for this message type\n" @spec response_deserializer :: (binary -> {V3.Response.t(), binary}) def response_deserializer do &V3.Response.deserialize/1 end @doc "Returns the schema of this message\n\nSee [above](#).\n" @spec schema :: term def schema do [ replica_id: :int32, topics: {:array, topic: :string, partitions: {:array, partition: :int32, current_leader_epoch: :int32, leader_epoch: :int32}} ] end @doc "Serialize a message to binary data for transfer to a Kafka broker" @spec serialize(t()) :: iodata def serialize(%V3.Request{} = struct) do [ <>, case struct.client_id do nil -> <<-1::16-signed>> id -> <> end, [ serialize(:int32, Map.fetch!(struct, :replica_id)), case Map.fetch!(struct, :topics) do nil -> <<-1::32-signed>> [] -> <<0::32-signed>> vals when is_list(vals) -> [ <>, for v <- vals do [ serialize(:string, Map.fetch!(v, :topic)), case Map.fetch!(v, :partitions) do nil -> <<-1::32-signed>> [] -> <<0::32-signed>> vals when is_list(vals) -> [ <>, for v <- vals do [ serialize(:int32, Map.fetch!(v, :partition)), serialize(:int32, Map.fetch!(v, :current_leader_epoch)), serialize(:int32, Map.fetch!(v, :leader_epoch)) ] end ] end ] end ] end ] ] end end defimpl(Elixir.Kayrock.Request, for: V3.Request) do def serialize(%V3.Request{} = struct) do try do V3.Request.serialize(struct) rescue e -> reraise Kayrock.InvalidRequestError, {e, struct}, __STACKTRACE__ end end def api_vsn(%V3.Request{}) do V3.Request.api_vsn() end def response_deserializer(%V3.Request{}) do V3.Request.response_deserializer() end end ( @doc "Returns a request struct for this API with the given version" @spec get_request_struct(integer) :: request_t ) def get_request_struct(0) do %V0.Request{} end def get_request_struct(1) do %V1.Request{} end def get_request_struct(2) do %V2.Request{} end def get_request_struct(3) do %V3.Request{} end defmodule V0.Response do @vsn 0 @api :offset_for_leader_epoch @schema topics: {:array, topic: :string, partitions: {:array, error_code: :int16, partition: :int32, end_offset: :int64}} @moduledoc "Kayrock-generated response struct for Kafka `#{@api}` v#{@vsn} API messages The schema of this API is ``` #{inspect(@schema, pretty: true)} ``` " _ = " THIS CODE IS GENERATED BY KAYROCK" defstruct topics: [], correlation_id: nil @typedoc "Response struct for the Kafka `#{@api}` API v#{@vsn} " @type t :: %__MODULE__{ topics: [ %{ topic: nil | binary(), partitions: [ %{ error_code: nil | integer(), partition: nil | integer(), end_offset: nil | integer() } ] } ], correlation_id: integer() } import Elixir.Kayrock.Deserialize @doc "Returns the Kafka API key for this API" @spec api_key :: integer def api_key do Kayrock.KafkaSchemaMetadata.api_key(:offset_for_leader_epoch) end @doc "Returns the API version (#{@vsn}) implemented by this module" @spec api_vsn :: integer def api_vsn do 0 end @doc "Returns the schema of this message\n\nSee [above](#).\n" @spec schema :: term def schema do [ topics: {:array, topic: :string, partitions: {:array, error_code: :int16, partition: :int32, end_offset: :int64}} ] end @doc "Deserialize data for this version of this API\n" @spec deserialize(binary) :: {t(), binary} def deserialize(data) do <> = data deserialize_field(:root, :topics, %__MODULE__{correlation_id: correlation_id}, rest) end defp deserialize_field(:topics, :topic, acc, data) do {val, rest} = deserialize(:string, data) deserialize_field(:topics, :partitions, Map.put(acc, :topic, val), rest) end defp deserialize_field(:partitions, :error_code, acc, data) do {val, rest} = deserialize(:int16, data) deserialize_field(:partitions, :partition, Map.put(acc, :error_code, val), rest) end defp deserialize_field(:partitions, :partition, acc, data) do {val, rest} = deserialize(:int32, data) deserialize_field(:partitions, :end_offset, Map.put(acc, :partition, val), rest) end defp deserialize_field(:partitions, :end_offset, acc, data) do {val, rest} = deserialize(:int64, data) deserialize_field(:partitions, nil, Map.put(acc, :end_offset, val), rest) end defp deserialize_field(:topics, :partitions, acc, data) do <> = data {vals, rest} = if num_elements > 0 do Enum.reduce(1..num_elements, {[], rest}, fn _ix, {acc, d} -> {val, r} = deserialize_field(:partitions, :error_code, %{}, d) {[val | acc], r} end) else {[], rest} end deserialize_field(:topics, nil, Map.put(acc, :partitions, Enum.reverse(vals)), rest) end defp deserialize_field(:root, :topics, acc, data) do <> = data {vals, rest} = if num_elements > 0 do Enum.reduce(1..num_elements, {[], rest}, fn _ix, {acc, d} -> {val, r} = deserialize_field(:topics, :topic, %{}, d) {[val | acc], r} end) else {[], rest} end deserialize_field(:root, nil, Map.put(acc, :topics, Enum.reverse(vals)), rest) end defp deserialize_field(_, nil, acc, rest) do {acc, rest} end end defmodule V1.Response do @vsn 1 @api :offset_for_leader_epoch @schema topics: {:array, topic: :string, partitions: {:array, error_code: :int16, partition: :int32, leader_epoch: :int32, end_offset: :int64}} @moduledoc "Kayrock-generated response struct for Kafka `#{@api}` v#{@vsn} API messages The schema of this API is ``` #{inspect(@schema, pretty: true)} ``` " _ = " THIS CODE IS GENERATED BY KAYROCK" defstruct topics: [], correlation_id: nil @typedoc "Response struct for the Kafka `#{@api}` API v#{@vsn} " @type t :: %__MODULE__{ topics: [ %{ topic: nil | binary(), partitions: [ %{ error_code: nil | integer(), partition: nil | integer(), leader_epoch: nil | integer(), end_offset: nil | integer() } ] } ], correlation_id: integer() } import Elixir.Kayrock.Deserialize @doc "Returns the Kafka API key for this API" @spec api_key :: integer def api_key do Kayrock.KafkaSchemaMetadata.api_key(:offset_for_leader_epoch) end @doc "Returns the API version (#{@vsn}) implemented by this module" @spec api_vsn :: integer def api_vsn do 1 end @doc "Returns the schema of this message\n\nSee [above](#).\n" @spec schema :: term def schema do [ topics: {:array, topic: :string, partitions: {:array, error_code: :int16, partition: :int32, leader_epoch: :int32, end_offset: :int64}} ] end @doc "Deserialize data for this version of this API\n" @spec deserialize(binary) :: {t(), binary} def deserialize(data) do <> = data deserialize_field(:root, :topics, %__MODULE__{correlation_id: correlation_id}, rest) end defp deserialize_field(:topics, :topic, acc, data) do {val, rest} = deserialize(:string, data) deserialize_field(:topics, :partitions, Map.put(acc, :topic, val), rest) end defp deserialize_field(:partitions, :error_code, acc, data) do {val, rest} = deserialize(:int16, data) deserialize_field(:partitions, :partition, Map.put(acc, :error_code, val), rest) end defp deserialize_field(:partitions, :partition, acc, data) do {val, rest} = deserialize(:int32, data) deserialize_field(:partitions, :leader_epoch, Map.put(acc, :partition, val), rest) end defp deserialize_field(:partitions, :leader_epoch, acc, data) do {val, rest} = deserialize(:int32, data) deserialize_field(:partitions, :end_offset, Map.put(acc, :leader_epoch, val), rest) end defp deserialize_field(:partitions, :end_offset, acc, data) do {val, rest} = deserialize(:int64, data) deserialize_field(:partitions, nil, Map.put(acc, :end_offset, val), rest) end defp deserialize_field(:topics, :partitions, acc, data) do <> = data {vals, rest} = if num_elements > 0 do Enum.reduce(1..num_elements, {[], rest}, fn _ix, {acc, d} -> {val, r} = deserialize_field(:partitions, :error_code, %{}, d) {[val | acc], r} end) else {[], rest} end deserialize_field(:topics, nil, Map.put(acc, :partitions, Enum.reverse(vals)), rest) end defp deserialize_field(:root, :topics, acc, data) do <> = data {vals, rest} = if num_elements > 0 do Enum.reduce(1..num_elements, {[], rest}, fn _ix, {acc, d} -> {val, r} = deserialize_field(:topics, :topic, %{}, d) {[val | acc], r} end) else {[], rest} end deserialize_field(:root, nil, Map.put(acc, :topics, Enum.reverse(vals)), rest) end defp deserialize_field(_, nil, acc, rest) do {acc, rest} end end defmodule V2.Response do @vsn 2 @api :offset_for_leader_epoch @schema throttle_time_ms: :int32, topics: {:array, topic: :string, partitions: {:array, error_code: :int16, partition: :int32, leader_epoch: :int32, end_offset: :int64}} @moduledoc "Kayrock-generated response struct for Kafka `#{@api}` v#{@vsn} API messages The schema of this API is ``` #{inspect(@schema, pretty: true)} ``` " _ = " THIS CODE IS GENERATED BY KAYROCK" defstruct throttle_time_ms: nil, topics: [], correlation_id: nil @typedoc "Response struct for the Kafka `#{@api}` API v#{@vsn} " @type t :: %__MODULE__{ throttle_time_ms: nil | integer(), topics: [ %{ topic: nil | binary(), partitions: [ %{ error_code: nil | integer(), partition: nil | integer(), leader_epoch: nil | integer(), end_offset: nil | integer() } ] } ], correlation_id: integer() } import Elixir.Kayrock.Deserialize @doc "Returns the Kafka API key for this API" @spec api_key :: integer def api_key do Kayrock.KafkaSchemaMetadata.api_key(:offset_for_leader_epoch) end @doc "Returns the API version (#{@vsn}) implemented by this module" @spec api_vsn :: integer def api_vsn do 2 end @doc "Returns the schema of this message\n\nSee [above](#).\n" @spec schema :: term def schema do [ throttle_time_ms: :int32, topics: {:array, topic: :string, partitions: {:array, error_code: :int16, partition: :int32, leader_epoch: :int32, end_offset: :int64}} ] end @doc "Deserialize data for this version of this API\n" @spec deserialize(binary) :: {t(), binary} def deserialize(data) do <> = data deserialize_field( :root, :throttle_time_ms, %__MODULE__{correlation_id: correlation_id}, rest ) end defp deserialize_field(:root, :throttle_time_ms, acc, data) do {val, rest} = deserialize(:int32, data) deserialize_field(:root, :topics, Map.put(acc, :throttle_time_ms, val), rest) end defp deserialize_field(:topics, :topic, acc, data) do {val, rest} = deserialize(:string, data) deserialize_field(:topics, :partitions, Map.put(acc, :topic, val), rest) end defp deserialize_field(:partitions, :error_code, acc, data) do {val, rest} = deserialize(:int16, data) deserialize_field(:partitions, :partition, Map.put(acc, :error_code, val), rest) end defp deserialize_field(:partitions, :partition, acc, data) do {val, rest} = deserialize(:int32, data) deserialize_field(:partitions, :leader_epoch, Map.put(acc, :partition, val), rest) end defp deserialize_field(:partitions, :leader_epoch, acc, data) do {val, rest} = deserialize(:int32, data) deserialize_field(:partitions, :end_offset, Map.put(acc, :leader_epoch, val), rest) end defp deserialize_field(:partitions, :end_offset, acc, data) do {val, rest} = deserialize(:int64, data) deserialize_field(:partitions, nil, Map.put(acc, :end_offset, val), rest) end defp deserialize_field(:topics, :partitions, acc, data) do <> = data {vals, rest} = if num_elements > 0 do Enum.reduce(1..num_elements, {[], rest}, fn _ix, {acc, d} -> {val, r} = deserialize_field(:partitions, :error_code, %{}, d) {[val | acc], r} end) else {[], rest} end deserialize_field(:topics, nil, Map.put(acc, :partitions, Enum.reverse(vals)), rest) end defp deserialize_field(:root, :topics, acc, data) do <> = data {vals, rest} = if num_elements > 0 do Enum.reduce(1..num_elements, {[], rest}, fn _ix, {acc, d} -> {val, r} = deserialize_field(:topics, :topic, %{}, d) {[val | acc], r} end) else {[], rest} end deserialize_field(:root, nil, Map.put(acc, :topics, Enum.reverse(vals)), rest) end defp deserialize_field(_, nil, acc, rest) do {acc, rest} end end defmodule V3.Response do @vsn 3 @api :offset_for_leader_epoch @schema throttle_time_ms: :int32, topics: {:array, topic: :string, partitions: {:array, error_code: :int16, partition: :int32, leader_epoch: :int32, end_offset: :int64}} @moduledoc "Kayrock-generated response struct for Kafka `#{@api}` v#{@vsn} API messages The schema of this API is ``` #{inspect(@schema, pretty: true)} ``` " _ = " THIS CODE IS GENERATED BY KAYROCK" defstruct throttle_time_ms: nil, topics: [], correlation_id: nil @typedoc "Response struct for the Kafka `#{@api}` API v#{@vsn} " @type t :: %__MODULE__{ throttle_time_ms: nil | integer(), topics: [ %{ topic: nil | binary(), partitions: [ %{ error_code: nil | integer(), partition: nil | integer(), leader_epoch: nil | integer(), end_offset: nil | integer() } ] } ], correlation_id: integer() } import Elixir.Kayrock.Deserialize @doc "Returns the Kafka API key for this API" @spec api_key :: integer def api_key do Kayrock.KafkaSchemaMetadata.api_key(:offset_for_leader_epoch) end @doc "Returns the API version (#{@vsn}) implemented by this module" @spec api_vsn :: integer def api_vsn do 3 end @doc "Returns the schema of this message\n\nSee [above](#).\n" @spec schema :: term def schema do [ throttle_time_ms: :int32, topics: {:array, topic: :string, partitions: {:array, error_code: :int16, partition: :int32, leader_epoch: :int32, end_offset: :int64}} ] end @doc "Deserialize data for this version of this API\n" @spec deserialize(binary) :: {t(), binary} def deserialize(data) do <> = data deserialize_field( :root, :throttle_time_ms, %__MODULE__{correlation_id: correlation_id}, rest ) end defp deserialize_field(:root, :throttle_time_ms, acc, data) do {val, rest} = deserialize(:int32, data) deserialize_field(:root, :topics, Map.put(acc, :throttle_time_ms, val), rest) end defp deserialize_field(:topics, :topic, acc, data) do {val, rest} = deserialize(:string, data) deserialize_field(:topics, :partitions, Map.put(acc, :topic, val), rest) end defp deserialize_field(:partitions, :error_code, acc, data) do {val, rest} = deserialize(:int16, data) deserialize_field(:partitions, :partition, Map.put(acc, :error_code, val), rest) end defp deserialize_field(:partitions, :partition, acc, data) do {val, rest} = deserialize(:int32, data) deserialize_field(:partitions, :leader_epoch, Map.put(acc, :partition, val), rest) end defp deserialize_field(:partitions, :leader_epoch, acc, data) do {val, rest} = deserialize(:int32, data) deserialize_field(:partitions, :end_offset, Map.put(acc, :leader_epoch, val), rest) end defp deserialize_field(:partitions, :end_offset, acc, data) do {val, rest} = deserialize(:int64, data) deserialize_field(:partitions, nil, Map.put(acc, :end_offset, val), rest) end defp deserialize_field(:topics, :partitions, acc, data) do <> = data {vals, rest} = if num_elements > 0 do Enum.reduce(1..num_elements, {[], rest}, fn _ix, {acc, d} -> {val, r} = deserialize_field(:partitions, :error_code, %{}, d) {[val | acc], r} end) else {[], rest} end deserialize_field(:topics, nil, Map.put(acc, :partitions, Enum.reverse(vals)), rest) end defp deserialize_field(:root, :topics, acc, data) do <> = data {vals, rest} = if num_elements > 0 do Enum.reduce(1..num_elements, {[], rest}, fn _ix, {acc, d} -> {val, r} = deserialize_field(:topics, :topic, %{}, d) {[val | acc], r} end) else {[], rest} end deserialize_field(:root, nil, Map.put(acc, :topics, Enum.reverse(vals)), rest) end defp deserialize_field(_, nil, acc, rest) do {acc, rest} end end ( @doc "Deserializes raw wire data for this API with the given version" @spec deserialize(integer, binary) :: {response_t, binary} ) def deserialize(0, data) do V0.Response.deserialize(data) end def deserialize(1, data) do V1.Response.deserialize(data) end def deserialize(2, data) do V2.Response.deserialize(data) end def deserialize(3, data) do V3.Response.deserialize(data) end ( @typedoc "Union type for all request structs for this API" @type request_t :: Kayrock.OffsetForLeaderEpoch.V3.Request.t() | Kayrock.OffsetForLeaderEpoch.V2.Request.t() | Kayrock.OffsetForLeaderEpoch.V1.Request.t() | Kayrock.OffsetForLeaderEpoch.V0.Request.t() ) ( @typedoc "Union type for all response structs for this API" @type response_t :: Kayrock.OffsetForLeaderEpoch.V3.Response.t() | Kayrock.OffsetForLeaderEpoch.V2.Response.t() | Kayrock.OffsetForLeaderEpoch.V1.Response.t() | Kayrock.OffsetForLeaderEpoch.V0.Response.t() ) ( @doc "Returns the minimum version of this API supported by Kayrock (#{@vmin})" @spec min_vsn :: integer def min_vsn do 0 end ) ( @doc "Returns the maximum version of this API supported by Kayrock (#{@vmax})" @spec max_vsn :: integer def max_vsn do 3 end ) end