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
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
//!
//! # Topic Status
//!
//! Topic Status metadata information cached locally.
//!
use std::collections::BTreeMap;
use std::fmt;

use kf_protocol::derive::{Decode, Encode};

use k8_metadata::topic::TopicStatus as K8TopicStatus;
use k8_metadata::topic::TopicStatusResolution as K8TopicStatusResolution;

use types::{ReplicaMap, SpuId};


// -----------------------------------
// Data Structures
// -----------------------------------

#[derive(Decode, Encode, Debug, Clone, PartialEq)]
pub struct TopicStatus {
    pub resolution: TopicResolution,
    pub replica_map: BTreeMap<i32, Vec<i32>>,
    pub reason: String,
}


impl fmt::Display for TopicStatus {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f,"{:#?}",self.resolution)
    }
}


#[derive(Decode, Encode, Debug, Clone, PartialEq)]
pub enum TopicResolution {
    Init,                       // initializing this is starting state.
    Pending,                    // Has valid config, ready for replica mapping assignment
    InsufficientResources,    // replica map cannot be created due to lack of capacity  
    InvalidConfig,              // invalid configuration
    Provisioned,                // topics are allocated
}

impl TopicResolution {
   
    pub fn resolution_label(&self) -> &'static str {
        match self {
            TopicResolution::Provisioned => "provisioned",
            TopicResolution::Init => "initializing",
            TopicResolution::Pending => "pending",
            TopicResolution::InsufficientResources => "insufficient-resources",
            TopicResolution::InvalidConfig => "invalid-config",
        }
    }

    pub fn is_invalid(&self) -> bool {
        match self {
            Self::InvalidConfig => true,
            _ => false
        }
    }

    pub fn no_resource(&self) -> bool {
        match self {
            Self::InsufficientResources => true,
            _ => false
        }
    }
}

impl std::fmt::Display for TopicResolution {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        write!(f, "resolution::{}", self.resolution_label())
    }
}


// -----------------------------------
// Encode - from KV Topic Status
// -----------------------------------

impl From<K8TopicStatus> for TopicStatus {
    fn from(kv_status: K8TopicStatus) -> Self {
        let resolution = match kv_status.resolution {
            K8TopicStatusResolution::Provisioned => TopicResolution::Provisioned,
            K8TopicStatusResolution::Init => TopicResolution::Init,
            K8TopicStatusResolution::Pending => TopicResolution::Pending,
            K8TopicStatusResolution::InsufficientResources => TopicResolution::InsufficientResources,
            K8TopicStatusResolution::InvalidConfig => TopicResolution::InvalidConfig,
        };

        TopicStatus {
            resolution,
            replica_map: kv_status.replica_map.clone(),
            reason: kv_status.reason.clone(),
        }
    }
}

impl From<TopicStatus> for K8TopicStatus {
    fn from(status: TopicStatus) -> K8TopicStatus {
        let resolution = match status.resolution {
            TopicResolution::Provisioned => K8TopicStatusResolution::Provisioned,
            TopicResolution::Init => K8TopicStatusResolution::Init,
            TopicResolution::Pending => K8TopicStatusResolution::Pending,
            TopicResolution::InsufficientResources => K8TopicStatusResolution::InsufficientResources,
            TopicResolution::InvalidConfig => K8TopicStatusResolution::InvalidConfig,
        };

        K8TopicStatus {
            resolution: resolution,
            replica_map: status.replica_map.clone(),
            reason: status.reason.clone(),
        }
    }
}


/*
// -----------------------------------
// Encode/Decode - Internal API
// -----------------------------------

impl From<&TopicResolution> for u8 {
    fn from(spec: &TopicResolution) -> Self {
        match spec {
            TopicResolution::Init => 0 as u8,
            TopicResolution::Pending => 1 as u8,
            TopicResolution::NoResourceForReplicaMap => 2 as u8,
            TopicResolution::InvalidConfig => 3 as u8,
            TopicResolution::Provisioned => 4 as u8,
        }
    }
}
*/


// -----------------------------------
// Default
// -----------------------------------

impl ::std::default::Default for TopicStatus {
    fn default() -> Self {
        TopicStatus {
            resolution: TopicResolution::Init,
            replica_map: BTreeMap::new(),
            reason: "".to_owned(),
        }
    }
}

impl ::std::default::Default for TopicResolution {
    fn default() -> Self {
        TopicResolution::Init
    }
}

// -----------------------------------
// Implementation
// -----------------------------------


fn create_replica_map(rows: Vec<Vec<i32>>) -> BTreeMap<i32, Vec<i32>> {
    let mut map = BTreeMap::new();
    for (idx, row) in rows.iter().enumerate() {
        map.insert(idx as i32, row.clone());
    }
    map
}


impl TopicStatus {

    pub fn new<S>(
        resolution: TopicResolution,
        replica_map: Vec<Vec<i32>>,
        reason: S,
    ) -> Self where S: Into<String> {
        TopicStatus {
            resolution: resolution,
            replica_map: create_replica_map(replica_map),
            reason: reason.into()
        }
    }

    pub fn resolution(&self) -> &TopicResolution {
        &self.resolution
    }

    pub fn replica_map_cnt(&self) -> i32 {
        self.replica_map.len() as i32
    }

    pub fn set_replica_map(&mut self, replica_map: ReplicaMap) {
        self.replica_map = replica_map;
    }

    pub fn spus_in_replica(&self) -> Vec<SpuId> {
        let mut spu_list: Vec<SpuId> = vec![];

        for (_, replicas) in self.replica_map.iter() {
            for spu in replicas {
                if !spu_list.contains(spu) {
                    spu_list.push(*spu);
                }
            }
        }

        spu_list
    }

    

    pub fn replica_map_str(&self) -> String {
        format!("{:?}", self.replica_map)
    }

    pub fn replica_map_cnt_str(&self) -> String {
        let map_rows = self.replica_map_cnt();
        if map_rows > 0 {
            format!("{}", map_rows)
        } else {
            "-".to_owned()
        }
    }

    pub fn reason_str(&self) -> &String {
        &self.reason
    }

    // -----------------------------------
    // State Machine
    // -----------------------------------

    pub fn is_resolution_initializing(&self) -> bool {
        self.resolution == TopicResolution::Init
    }

    /// need to update the replic map
    pub fn need_replica_map_recal(&self) -> bool {
        self.resolution == TopicResolution::Pending ||
            self.resolution == TopicResolution::InsufficientResources
    }

    pub fn is_resolution_pending(&self) -> bool {
        self.resolution == TopicResolution::Pending
    }

    pub fn is_resolution_transient(&self) -> bool {
        self.resolution == TopicResolution::Init ||
        self.resolution == TopicResolution::Pending
    }

    pub fn is_resolution_provisioned(&self) -> bool {
        self.resolution == TopicResolution::Provisioned
    }

    pub fn next_resolution_provisoned() -> (TopicResolution,String){
        (TopicResolution::Provisioned,"".to_owned())
    }

    /// set to pending mode which means it is waiting for spu resources to be allocated
    pub fn next_resolution_pending() -> (TopicResolution,String) {
        (TopicResolution::Pending,super::PENDING_REASON.to_owned())
    }

    pub fn next_resolution_invalid_config<S>(reason: S) -> (TopicResolution,String) where S: Into<String> {
        (TopicResolution::InvalidConfig,reason.into())
    }

    pub fn set_resolution_no_resource<S>(reason: S) -> (TopicResolution,String) where S: Into<String> {
        (TopicResolution::InsufficientResources, reason.into())
    }

    pub fn set_next_resolution(&mut self,next: (TopicResolution,String)) {
        let (resolution,reason) = next;
        self.resolution = resolution;
        self.reason = reason;
    }
}