rnacos 0.8.3

Nacos server re-implemented in Rust.
Documentation
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
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
use rsql_builder::{IBuilder, B};
use rusqlite::{Connection, Row};
use serde::{Deserialize, Serialize};
use std::rc::Rc;

use crate::common::rusqlite_utils::{
    get_row_value, sqlite_execute, sqlite_fetch, sqlite_fetch_count,
};

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct ConfigDO {
    pub id: Option<i64>,
    pub data_id: Option<String>,
    pub group: Option<String>,
    pub tenant: Option<String>,
    pub content: Option<String>,
    pub content_md5: Option<String>,
    pub last_time: Option<i64>,
}

impl ConfigDO {
    fn from_row(r: &Row) -> Self {
        Self {
            id: get_row_value(r, "id"),
            data_id: get_row_value(r, "data_id"),
            group: get_row_value(r, "group"),
            tenant: get_row_value(r, "tenant"),
            content: get_row_value(r, "content"),
            content_md5: get_row_value(r, "content_md5"),
            last_time: get_row_value(r, "last_time"),
        }
    }
}

#[derive(Debug, Default)]
pub struct ConfigParam {
    pub id: Option<i64>,
    pub data_id: Option<String>,
    pub group: Option<String>,
    pub tenant: Option<String>,
    pub limit: Option<i64>,
    pub offset: Option<i64>,
}
pub struct ConfigSql {}

impl ConfigSql {
    fn conditions(&self, param: &ConfigParam) -> B<'_> {
        let mut whr = B::new_where();
        if let Some(id) = &param.id {
            whr.eq("id", id);
        }
        if let Some(data_id) = &param.data_id {
            whr.eq("data_id", data_id);
        }
        if let Some(group) = &param.group {
            whr.eq("`group`", group);
        }
        if let Some(tenant) = &param.tenant {
            whr.eq("tenant", tenant);
        }
        whr
    }

    pub fn query_prepare(&self, param: &ConfigParam) -> (String, Vec<serde_json::Value>) {
        B::prepare(
            B::new_sql("select id, data_id, `group`, tenant, content, content_md5, last_time from tb_config")
            .push_build(&mut self.conditions(param))
        )
    }

    pub fn insert_prepare(&self, record: &ConfigDO) -> (String, Vec<serde_json::Value>) {
        let mut field_builder = B::new_comma_paren();
        let mut value_builder = B::new_comma_paren();
        if let Some(id) = &record.id {
            field_builder.push_sql("id");
            value_builder.push("?", id);
        }
        if let Some(data_id) = &record.data_id {
            field_builder.push_sql("data_id");
            value_builder.push("?", data_id);
        }
        if let Some(group) = &record.group {
            field_builder.push_sql("`group`");
            value_builder.push("?", group);
        }
        if let Some(tenant) = &record.tenant {
            field_builder.push_sql("tenant");
            value_builder.push("?", tenant);
        }
        if let Some(content) = &record.content {
            field_builder.push_sql("content");
            value_builder.push("?", content);
        }
        if let Some(content_md5) = &record.content_md5 {
            field_builder.push_sql("content_md5");
            value_builder.push("?", content_md5);
        }
        if let Some(last_time) = &record.last_time {
            field_builder.push_sql("last_time");
            value_builder.push("?", last_time);
        }
        B::prepare(
            B::new_sql("insert into tb_config")
                .push_build(&mut field_builder)
                .push_sql("values")
                .push_build(&mut value_builder),
        )
    }

    pub fn update_prepare(
        &self,
        record: &ConfigDO,
        param: &ConfigParam,
    ) -> (String, Vec<serde_json::Value>) {
        let mut set_builder = B::new_comma();
        if let Some(id) = &record.id {
            set_builder.eq("id", id);
        }
        if let Some(data_id) = &record.data_id {
            set_builder.eq("data_id", data_id);
        }
        if let Some(group) = &record.group {
            set_builder.eq("`group`", group);
        }
        if let Some(tenant) = &record.tenant {
            set_builder.eq("tenant", tenant);
        }
        if let Some(content) = &record.content {
            set_builder.eq("content", content);
        }
        if let Some(content_md5) = &record.content_md5 {
            set_builder.eq("content_md5", content_md5);
        }
        if let Some(last_time) = &record.last_time {
            set_builder.eq("last_time", last_time);
        }
        let mut whr = self.conditions(param);
        if whr.is_empty() {
            panic!("update conditions is empty");
        }
        B::prepare(
            B::new_sql("update tb_config set ")
                .push_build(&mut set_builder)
                .push_build(&mut whr),
        )
    }

    pub fn delete_prepare(&self, param: &ConfigParam) -> (String, Vec<serde_json::Value>) {
        B::prepare(B::new_sql("delete from tb_config").push_build(&mut self.conditions(param)))
    }
}

pub struct ConfigDao {
    conn: Rc<Connection>,
    inner: ConfigSql,
}

impl ConfigDao {
    pub fn new(conn: Rc<Connection>) -> Self {
        Self {
            conn,
            inner: ConfigSql {},
        }
    }

    pub fn execute(&self, sql: &str, args: &[serde_json::Value]) -> anyhow::Result<usize> {
        sqlite_execute(&self.conn, sql, args)
    }

    pub fn fetch(&self, sql: &str, args: &[serde_json::Value]) -> anyhow::Result<Vec<ConfigDO>> {
        sqlite_fetch(&self.conn, sql, args, ConfigDO::from_row)
    }

    pub fn insert(&self, record: &ConfigDO) -> anyhow::Result<usize> {
        let (sql, args) = self.inner.insert_prepare(record);
        self.execute(&sql, &args)
    }

    pub fn update(&self, record: &ConfigDO, param: &ConfigParam) -> anyhow::Result<usize> {
        let (sql, args) = self.inner.update_prepare(record, param);
        self.execute(&sql, &args)
    }

    pub fn delete(&self, param: &ConfigParam) -> anyhow::Result<usize> {
        let (sql, args) = self.inner.delete_prepare(param);
        self.execute(&sql, &args)
    }

    pub fn query(&self, param: &ConfigParam) -> anyhow::Result<Vec<ConfigDO>> {
        let (sql, args) = self.inner.query_prepare(param);
        self.fetch(&sql, &args)
    }
}

#[derive(Debug, Default, Serialize, Deserialize)]
pub struct ConfigHistoryDO {
    pub id: Option<i64>,
    pub data_id: Option<String>,
    pub group: Option<String>,
    pub tenant: Option<String>,
    pub content: Option<String>,
    pub last_time: Option<i64>,
}

impl ConfigHistoryDO {
    fn from_row(r: &Row) -> Self {
        Self {
            id: get_row_value(r, "id"),
            data_id: get_row_value(r, "data_id"),
            group: get_row_value(r, "group"),
            tenant: get_row_value(r, "tenant"),
            content: get_row_value(r, "content"),
            last_time: get_row_value(r, "last_time"),
        }
    }
}

#[derive(Debug, Default)]
pub struct ConfigHistoryParam {
    pub id: Option<i64>,
    pub data_id: Option<String>,
    pub group: Option<String>,
    pub tenant: Option<String>,
    pub order_by: Option<String>,
    pub order_by_desc: Option<bool>,
    pub limit: Option<i64>,
    pub offset: Option<i64>,
}
pub struct ConfigHistorySql {}

impl ConfigHistorySql {
    fn conditions(&self, param: &ConfigHistoryParam) -> B<'_> {
        let mut whr = B::new_where();
        if let Some(id) = &param.id {
            whr.eq("id", id);
        }
        if let Some(data_id) = &param.data_id {
            whr.eq("data_id", data_id);
        }
        if let Some(group) = &param.group {
            whr.eq("`group`", group);
        }
        if let Some(tenant) = &param.tenant {
            whr.eq("tenant", tenant);
        }
        whr
    }

    fn offset_conditions(&self, param: &ConfigHistoryParam) -> B<'_> {
        let mut whr = B::new();
        if let Some(field) = &param.order_by {
            let desc = param.order_by_desc.to_owned().unwrap_or(false);
            if field.eq_ignore_ascii_case("last_time") {
                whr.order_by("last_time", desc);
            }
            if field.eq_ignore_ascii_case("id") {
                whr.order_by("id", desc);
            }
        }
        if let Some(limit) = &param.limit {
            whr.limit(limit);
        }
        if let Some(offset) = &param.offset {
            whr.offset(offset);
        }
        whr
    }

    pub fn query_prepare(&self, param: &ConfigHistoryParam) -> (String, Vec<serde_json::Value>) {
        B::new_sql("select id, data_id, `group`, tenant, content, last_time from tb_config_history")
            .push_build(&mut self.conditions(param))
            .push_build(&mut self.offset_conditions(param))
            .build()
    }

    pub fn query_count_prepare(
        &self,
        param: &ConfigHistoryParam,
    ) -> (String, Vec<serde_json::Value>) {
        B::prepare(
            B::new_sql("select count(1) from tb_config_history")
                .push_build(&mut self.conditions(param)),
        )
    }

    pub fn insert_prepare(&self, record: &ConfigHistoryDO) -> (String, Vec<serde_json::Value>) {
        let mut field_builder = B::new_comma_paren();
        let mut value_builder = B::new_comma_paren();
        if let Some(id) = &record.id {
            field_builder.push_sql("id");
            value_builder.push("?", id);
        }
        if let Some(data_id) = &record.data_id {
            field_builder.push_sql("data_id");
            value_builder.push("?", data_id);
        }
        if let Some(group) = &record.group {
            field_builder.push_sql("`group`");
            value_builder.push("?", group);
        }
        if let Some(tenant) = &record.tenant {
            field_builder.push_sql("tenant");
            value_builder.push("?", tenant);
        }
        if let Some(content) = &record.content {
            field_builder.push_sql("content");
            value_builder.push("?", content);
        }
        if let Some(last_time) = &record.last_time {
            field_builder.push_sql("last_time");
            value_builder.push("?", last_time);
        }
        B::prepare(
            B::new_sql("insert into tb_config_history")
                .push_build(&mut field_builder)
                .push_sql("values")
                .push_build(&mut value_builder),
        )
    }

    pub fn update_prepare(
        &self,
        record: &ConfigHistoryDO,
        param: &ConfigHistoryParam,
    ) -> (String, Vec<serde_json::Value>) {
        let mut set_builder = B::new_comma();
        if let Some(id) = &record.id {
            set_builder.eq("id", id);
        }
        if let Some(data_id) = &record.data_id {
            set_builder.eq("data_id", data_id);
        }
        if let Some(group) = &record.group {
            set_builder.eq("`group`", group);
        }
        if let Some(tenant) = &record.tenant {
            set_builder.eq("tenant", tenant);
        }
        if let Some(content) = &record.content {
            set_builder.eq("content", content);
        }
        if let Some(last_time) = &record.last_time {
            set_builder.eq("last_time", last_time);
        }
        let mut whr = self.conditions(param);
        if whr.is_empty() {
            panic!("update conditions is empty");
        }
        B::prepare(
            B::new_sql("update tb_config_history set ")
                .push_build(&mut set_builder)
                .push_build(&mut whr),
        )
    }

    pub fn delete_prepare(&self, param: &ConfigHistoryParam) -> (String, Vec<serde_json::Value>) {
        B::prepare(
            B::new_sql("delete from tb_config_history").push_build(&mut self.conditions(param)),
        )
    }
}

pub struct ConfigHistoryDao {
    conn: Rc<Connection>,
    inner: ConfigHistorySql,
}

impl ConfigHistoryDao {
    pub fn new(conn: Rc<Connection>) -> Self {
        Self {
            conn,
            inner: ConfigHistorySql {},
        }
    }

    pub fn execute(&self, sql: &str, args: &[serde_json::Value]) -> anyhow::Result<usize> {
        sqlite_execute(&self.conn, sql, args)
    }

    pub fn fetch(
        &self,
        sql: &str,
        args: &[serde_json::Value],
    ) -> anyhow::Result<Vec<ConfigHistoryDO>> {
        sqlite_fetch(&self.conn, sql, args, ConfigHistoryDO::from_row)
    }

    pub fn fetch_count(&self, sql: &str, args: &[serde_json::Value]) -> anyhow::Result<u64> {
        sqlite_fetch_count(&self.conn, sql, args)
    }

    pub fn insert(&self, record: &ConfigHistoryDO) -> anyhow::Result<usize> {
        let (sql, args) = self.inner.insert_prepare(record);
        self.execute(&sql, &args)
    }

    pub fn update(
        &self,
        record: &ConfigHistoryDO,
        param: &ConfigHistoryParam,
    ) -> anyhow::Result<usize> {
        let (sql, args) = self.inner.update_prepare(record, param);
        self.execute(&sql, &args)
    }

    pub fn delete(&self, param: &ConfigHistoryParam) -> anyhow::Result<usize> {
        let (sql, args) = self.inner.delete_prepare(param);
        self.execute(&sql, &args)
    }

    pub fn query(&self, param: &ConfigHistoryParam) -> anyhow::Result<Vec<ConfigHistoryDO>> {
        let (sql, args) = self.inner.query_prepare(param);
        self.fetch(&sql, &args)
    }

    pub fn query_count(&self, param: &ConfigHistoryParam) -> anyhow::Result<u64> {
        let (sql, args) = self.inner.query_count_prepare(param);
        self.fetch_count(&sql, &args)
    }
}