1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
/// WARNING: CODE GENERATED FILE
/// * This file is generated by kfspec2code.
/// * Any changes applied to this file will be lost when a new spec is generated.
use serde::{Deserialize, Serialize};

use kf_protocol_api::ErrorCode;
use kf_protocol_api::Request;

use kf_protocol_derive::Decode;
use kf_protocol_derive::Encode;
use kf_protocol_derive::KfDefault;

// -----------------------------------
// KfLeaderAndIsrRequest
// -----------------------------------

#[derive(Encode, Decode, Serialize, Deserialize, KfDefault, Debug)]
pub struct KfLeaderAndIsrRequest {
    /// The current controller ID.
    pub controller_id: i32,

    /// The current controller epoch.
    pub controller_epoch: i32,

    /// The current broker epoch.
    #[fluvio_kf(min_version = 2, ignorable)]
    pub broker_epoch: i64,

    /// Each topic.
    #[fluvio_kf(min_version = 2)]
    pub topic_states: Vec<LeaderAndIsrRequestTopicState>,

    /// The state of each partition
    #[fluvio_kf(max_version = 1)]
    pub partition_states_v0: Vec<LeaderAndIsrRequestPartitionStateV0>,

    /// The current live leaders.
    pub live_leaders: Vec<LeaderAndIsrLiveLeader>,
}

#[derive(Encode, Decode, Serialize, Deserialize, KfDefault, Debug)]
pub struct LeaderAndIsrRequestTopicState {
    /// The topic name.
    #[fluvio_kf(min_version = 2)]
    pub name: String,

    /// The state of each partition
    pub partition_states: Vec<LeaderAndIsrRequestPartitionState>,
}

#[derive(Encode, Decode, Serialize, Deserialize, KfDefault, Debug)]
pub struct LeaderAndIsrRequestPartitionStateV0 {
    /// The topic name.
    #[fluvio_kf(max_version = 1)]
    pub topic_name: String,

    /// The partition index.
    #[fluvio_kf(max_version = 1)]
    pub partition_index: i32,

    /// The controller epoch.
    #[fluvio_kf(max_version = 1)]
    pub controller_epoch: i32,

    /// The broker ID of the leader.
    #[fluvio_kf(max_version = 1)]
    pub leader_key: i32,

    /// The leader epoch.
    #[fluvio_kf(max_version = 1)]
    pub leader_epoch: i32,

    /// The in-sync replica IDs.
    #[fluvio_kf(max_version = 1)]
    pub isr_replicas: Vec<i32>,

    /// The ZooKeeper version.
    #[fluvio_kf(max_version = 1)]
    pub zk_version: i32,

    /// The replica IDs.
    #[fluvio_kf(max_version = 1)]
    pub replicas: Vec<i32>,

    /// Whether the replica should have existed on the broker or not.
    #[fluvio_kf(min_version = 1, max_version = 1, ignorable)]
    pub is_new: bool,
}

#[derive(Encode, Decode, Serialize, Deserialize, KfDefault, Debug)]
pub struct LeaderAndIsrLiveLeader {
    /// The leader's broker ID.
    pub broker_id: i32,

    /// The leader's hostname.
    pub host_name: String,

    /// The leader's port.
    pub port: i32,
}

#[derive(Encode, Decode, Serialize, Deserialize, KfDefault, Debug)]
pub struct LeaderAndIsrRequestPartitionState {
    /// The partition index.
    pub partition_index: i32,

    /// The controller epoch.
    pub controller_epoch: i32,

    /// The broker ID of the leader.
    pub leader_key: i32,

    /// The leader epoch.
    pub leader_epoch: i32,

    /// The in-sync replica IDs.
    pub isr_replicas: Vec<i32>,

    /// The ZooKeeper version.
    pub zk_version: i32,

    /// The replica IDs.
    pub replicas: Vec<i32>,

    /// Whether the replica should have existed on the broker or not.
    #[fluvio_kf(min_version = 1, ignorable)]
    pub is_new: bool,
}

// -----------------------------------
// KfLeaderAndIsrResponse
// -----------------------------------

#[derive(Encode, Decode, Serialize, Deserialize, KfDefault, Debug)]
pub struct KfLeaderAndIsrResponse {
    /// The error code, or 0 if there was no error.
    pub error_code: ErrorCode,

    /// Each partition.
    pub partitions: Vec<LeaderAndIsrResponsePartition>,
}

#[derive(Encode, Decode, Serialize, Deserialize, KfDefault, Debug)]
pub struct LeaderAndIsrResponsePartition {
    /// The topic name.
    pub topic_name: String,

    /// The partition index.
    pub partition_index: i32,

    /// The partition error code, or 0 if there was no error.
    pub error_code: ErrorCode,
}

// -----------------------------------
// Implementation - KfLeaderAndIsrRequest
// -----------------------------------

impl Request for KfLeaderAndIsrRequest {
    const API_KEY: u16 = 4;

    const MIN_API_VERSION: i16 = 0;
    const MAX_API_VERSION: i16 = 2;
    const DEFAULT_API_VERSION: i16 = 2;

    type Response = KfLeaderAndIsrResponse;
}