rnacos/grpc/
api_model.rs

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
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
use std::{collections::HashMap, sync::Arc};

use serde::{Deserialize, Serialize};

pub const SUCCESS_CODE: u16 = 200u16;
pub const NOT_FOUND: u16 = 300u16;
pub const ERROR_CODE: u16 = 500u16;

pub const INTERNAL_MODEL: &str = "internal";
pub const CONFIG_MODEL: &str = "config";
pub const NAMING_MODEL: &str = "naming";

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct BaseResponse {
    pub result_code: u16,
    pub error_code: u16,
    pub message: Option<String>,
    pub request_id: Option<String>,
}

pub type ErrorResponse = BaseResponse;

impl BaseResponse {
    pub fn build_success_response() -> Self {
        Self {
            result_code: SUCCESS_CODE,
            error_code: 0,
            message: None,
            request_id: None,
        }
    }

    pub fn build_error_response(error_code: u16, error_msg: String) -> Self {
        Self {
            result_code: ERROR_CODE,
            error_code,
            message: Some(error_msg),
            request_id: None,
        }
    }

    pub fn to_json_string(&self) -> String {
        serde_json::to_string(&self).unwrap()
    }
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ServerCheckResponse {
    pub result_code: u16,
    pub error_code: u16,
    pub message: Option<String>,
    pub request_id: Option<String>,
    pub connection_id: Option<String>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ClientDetectionRequest {
    pub module: Option<String>,
    pub request_id: Option<String>,
    pub headers: Option<HashMap<String, String>>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ConnectResetRequest {
    pub module: Option<String>,
    pub request_id: Option<String>,
    pub headers: Option<HashMap<String, String>>,

    pub server_ip: Option<String>,
    pub server_port: Option<String>,
}

// --- config ---

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ConfigPublishRequest {
    pub module: Option<String>,
    pub request_id: Option<String>,
    pub headers: Option<HashMap<String, String>>,
    pub data_id: String,
    pub group: String,
    pub tenant: String,
    pub content: Arc<String>,
    pub cas_md5: Option<String>,
    pub addition_map: Option<HashMap<String, Option<String>>>,
}

impl ConfigPublishRequest {
    pub fn get_addition_param(&self, key: &str) -> Option<&String> {
        if let Some(addition_map) = self.addition_map.as_ref() {
            if let Some(v) = addition_map.get(key) {
                v.as_ref()
            } else {
                None
            }
        } else {
            None
        }
    }
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ConfigQueryRequest {
    pub module: Option<String>,
    pub request_id: Option<String>,
    pub headers: Option<HashMap<String, String>>,
    pub data_id: String,
    pub group: String,
    pub tenant: String,
    pub tag: Option<String>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ConfigQueryResponse {
    pub result_code: u16,
    pub error_code: u16,
    pub message: Option<String>,
    pub request_id: Option<String>,

    pub content: Arc<String>,
    pub encrypted_data_key: Option<String>,
    pub content_type: Option<Arc<String>>,
    pub md5: Option<Arc<String>>,
    pub last_modified: i64,
    pub beta: bool,
    pub tag: Option<String>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ConfigRemoveRequest {
    pub module: Option<String>,
    pub request_id: Option<String>,
    pub headers: Option<HashMap<String, String>>,

    pub data_id: String,
    pub group: String,
    pub tenant: String,
    pub tag: Option<String>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ConfigListenContext {
    pub data_id: String,
    pub group: String,
    pub tenant: String,
    pub md5: Arc<String>,
    pub tag: Option<String>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ConfigBatchListenRequest {
    pub module: Option<String>,
    pub request_id: Option<String>,
    pub headers: Option<HashMap<String, String>>,

    pub listen: bool,
    pub config_listen_contexts: Vec<ConfigListenContext>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ConfigContext {
    pub data_id: Arc<String>,
    pub group: Arc<String>,
    pub tenant: Arc<String>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ConfigChangeBatchListenResponse {
    pub result_code: u16,
    pub error_code: u16,
    pub message: Option<String>,
    pub request_id: Option<String>,

    pub changed_configs: Vec<ConfigContext>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ConfigChangeNotifyRequest {
    pub module: Option<String>,
    pub request_id: Option<String>,
    pub headers: HashMap<String, String>,

    pub data_id: Arc<String>,
    pub group: Arc<String>,
    pub tenant: Arc<String>,
}

// ----- naming model -----

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct Instance {
    pub instance_id: Option<Arc<String>>,
    pub ip: Option<Arc<String>>,
    pub port: u32,
    pub weight: f32,
    pub healthy: bool,
    pub enabled: bool,
    pub ephemeral: bool,
    pub cluster_name: Option<String>,
    pub service_name: Option<Arc<String>>,
    pub metadata: Option<Arc<HashMap<String, String>>>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub instance_heart_beat_interval: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub instance_heart_beat_time_out: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub ip_delete_timeout: Option<i64>,
    #[serde(skip_serializing_if = "Option::is_none")]
    #[serde(default)]
    pub instance_id_generator: Option<String>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct InstanceRequest {
    pub module: Option<String>,
    pub request_id: Option<String>,
    pub headers: Option<HashMap<String, String>>,

    pub namespace: Option<String>,
    pub service_name: Option<String>,
    pub group_name: Option<String>,

    pub r#type: Option<String>,
    pub instance: Option<Instance>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct InstanceResponse {
    pub result_code: u16,
    pub error_code: u16,
    pub message: Option<String>,
    pub request_id: Option<String>,

    pub r#type: Option<String>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SubscribeServiceRequest {
    pub module: Option<String>,
    pub request_id: Option<String>,
    pub headers: Option<HashMap<String, String>>,

    pub namespace: Option<String>,
    pub service_name: Option<String>,
    pub group_name: Option<String>,

    pub subscribe: bool,
    pub clusters: Option<String>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ServiceInfo {
    pub name: Option<Arc<String>>,
    pub group_name: Option<Arc<String>>,
    pub clusters: Option<String>,
    pub cache_millis: i64,
    pub hosts: Option<Vec<Instance>>,
    pub last_ref_time: i64,
    pub checksum: Option<String>,
    #[serde(rename = "allIPs")]
    pub all_ips: bool,
    pub reach_protection_threshold: bool,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct SubscribeServiceResponse {
    pub result_code: u16,
    pub error_code: u16,
    pub message: Option<String>,
    pub request_id: Option<String>,

    pub service_info: Option<ServiceInfo>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct BatchInstanceRequest {
    pub module: Option<String>,
    pub request_id: Option<String>,
    pub headers: Option<HashMap<String, String>>,

    pub namespace: Option<String>,
    pub service_name: Option<String>,
    pub group_name: Option<String>,

    pub r#type: Option<String>,
    pub instances: Option<Vec<Instance>>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct BatchInstanceResponse {
    pub result_code: u16,
    pub error_code: u16,
    pub message: Option<String>,
    pub request_id: Option<String>,

    pub r#type: Option<String>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ServiceQueryRequest {
    pub module: Option<String>,
    pub request_id: Option<String>,
    pub headers: Option<HashMap<String, String>>,

    pub namespace: Option<String>,
    pub service_name: Option<String>,
    pub group_name: Option<String>,

    pub cluster: Option<String>,
    pub healthy_only: Option<bool>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ServiceQueryResponse {
    pub result_code: u16,
    pub error_code: u16,
    pub message: Option<String>,
    pub request_id: Option<String>,

    pub service_info: Option<ServiceInfo>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct NotifySubscriberRequest {
    pub module: Option<String>,
    pub request_id: Option<String>,
    pub headers: HashMap<String, String>,

    pub namespace: Option<Arc<String>>,
    pub service_name: Option<Arc<String>>,
    pub group_name: Option<Arc<String>>,

    pub service_info: Option<ServiceInfo>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ServiceListRequest {
    pub module: Option<String>,
    pub request_id: Option<String>,
    pub headers: Option<HashMap<String, String>>,

    pub namespace: Option<String>,
    pub service_name: Option<String>,
    pub group_name: Option<String>,

    pub page_no: u32,
    pub page_size: u32,
    pub selector: Option<String>,
}

#[derive(Debug, Serialize, Deserialize, Default)]
#[serde(rename_all = "camelCase")]
pub struct ServiceListResponse {
    pub result_code: u16,
    pub error_code: u16,
    pub message: Option<String>,
    pub request_id: Option<String>,

    pub count: usize,
    pub service_names: Option<Vec<Arc<String>>>,
}