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
use json::{array, JsonValue, object};
use log::info;
use redis::{Commands, RedisResult, Connection, Client};
use crate::CacheBase;


#[derive(Clone)]
pub struct Redis {
    client: Client,
    db: i8,
}

impl Redis {
    pub fn connect(dsn: String) -> Self {
        // 读取配置
        let client = Client::open(dsn);
        return match client {
            Ok(client) => {
                Self {
                    client,
                    db: 0,
                }
            }
            Err(e) => {
                info!("开启错误: {}", e);
                Self {
                    client: None.unwrap(),
                    db: 0,
                }
            }
        };
    }
    pub fn con(&mut self) -> Connection {
        let mut conn = self.client.get_connection().unwrap();
        redis::pipe().cmd("SELECT").arg(self.db).execute(&mut conn);
        conn
    }
}

impl CacheBase for Redis {
    /// 切换到指定的数据库
    fn db(&mut self, db: i8) -> &mut Self {
        self.db = db;
        self
    }

    /// 设置
    ///
    /// * time 过期时间 s 秒
    fn set(&mut self, key: &str, value: JsonValue, time: usize) -> bool {
        let data: RedisResult<bool> = {
            if time > 0 {
                self.con().set_ex(key, value.to_string(), time)
            } else {
                self.con().set(key, value.to_string())
            }
        };
        return match data {
            Ok(_) => {
                true
            }
            Err(e) => {
                info!("{}", e);
                false
            }
        };
    }
    /// 集合 添加
    fn set_list(&mut self, key: &str, value: JsonValue) -> bool {
        let data: RedisResult<bool> = self.con().sadd(key, value.to_string());
        return match data {
            Ok(_) => {
                true
            }
            Err(_e) => {
                false
            }
        };
    }

    /// 删除
    fn del(&mut self, key: &str) -> bool {
        let data: RedisResult<bool> = self.con().del(key);
        return match data {
            Ok(_) => {
                true
            }
            Err(e) => {
                info!("{}", e);
                false
            }
        };
    }
    /// 获取
    fn get(&mut self, key: &str) -> JsonValue {
        let data: RedisResult<String> = self.con().get(key);
        return match data {
            Ok(e) => {
                JsonValue::from(e)
            }
            Err(_) => {
                JsonValue::from("")
            }
        };
    }
    /// 获取
    fn keys(&mut self, key: &str) -> JsonValue {
        let data: RedisResult<Vec<String>> = self.con().keys(key);
        return match data {
            Ok(e) => {
                JsonValue::from(e)
            }
            Err(_) => {
                array![]
            }
        };
    }
    /// 集合 获取
    fn get_list(&mut self, key: &str) -> JsonValue {
        let data: RedisResult<Vec<String>> = self.con().smembers(key);
        return match data {
            Ok(e) => {
                JsonValue::from(e)
            }
            Err(_) => {
                array![]
            }
        };
    }
    /// 设置消息队列
    fn set_message_queue(&mut self, key: &str, value: JsonValue) -> bool {
        let data: RedisResult<String> = self.con().xadd(key, "*", &[(value.to_string(), value.to_string())]);
        match data {
            Ok(_) => {
                return true;
            }
            Err(_) => {
                return false;
            }
        }
    }

    /// 消息队列获取
    fn get_message_queue(&mut self, key: &str) -> JsonValue {
        let data: RedisResult<Vec<String>> = self.con().xread(&[key], &[0]);
        return match data {
            Ok(e) => {
                JsonValue::from(e)
            }
            Err(_) => {
                array![]
            }
        };
    }
    // /// 订阅消息
    // pub fn subscribe_s(&mut self, channel: &str, fun: fn(channel: &str, data: &str)) {
    //     let mut pubsub = self.con.as_pubsub();
    //     pubsub.subscribe(channel).unwrap();
    //     loop {
    //         let msg = pubsub.get_message().unwrap();
    //         // 消息处理
    //         let data: String = msg.get_payload().unwrap();
    //         let channel = msg.get_channel_name();
    //         fun(channel, data.as_str())
    //     }
    // }
    // /// 发布消息
    // pub fn publish(&mut self, key: &str, value: JsonValue) -> bool {
    //     let data = self.con.publish(key, value.to_string());
    //     return match data {
    //         Ok(e) => {
    //             e
    //         }
    //         Err(_e) => {
    //             false
    //         }
    //     };
    // }

    /// 获取对象集合
    fn get_object(&mut self, key: &str) -> JsonValue {
        let data: RedisResult<Vec<String>> = self.con().hgetall(key);
        match data {
            Ok(e) => {
                let mut list = object! {};
                let mut index = 0;
                while index < e.len() {
                    list[e[index.clone()].to_string()] = e[index + 1].clone().into();
                    index += 2;
                }
                return list;
            }
            Err(_e) => {
                return object! {};
            }
        }
    }
    /// 设置对象集合
    fn set_object(&mut self, key: &str, field: &str, value: JsonValue) -> bool {
        let data: RedisResult<bool> = self.con().hset(key, field, value.to_string());
        return match data {
            Ok(_) => {
                true
            }
            Err(e) => {
                info!("{}", e);
                false
            }
        };
    }
}