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
use crate::{
resp::{cmd, Array, BulkString, CommandArgs, FromValue, IntoArgs, Value},
CommandResult, Error, PrepareCommand, Result,
};
use std::collections::HashMap;
pub trait ConnectionCommands<T>: PrepareCommand<T> {
#[must_use]
fn hello(&self, options: HelloOptions) -> CommandResult<T, HelloResult> {
self.prepare_command(cmd("HELLO").arg(options))
}
#[must_use]
fn ping<R>(&self, options: PingOptions) -> CommandResult<T, R>
where
R: FromValue,
{
self.prepare_command(cmd("PING").arg(options))
}
#[must_use]
fn quit(&self) -> CommandResult<T, ()> {
self.prepare_command(cmd("QUIT"))
}
#[must_use]
fn reset(&self) -> CommandResult<T, ()> {
self.prepare_command(cmd("RESET"))
}
#[must_use]
fn select(&self, index: usize) -> CommandResult<T, ()> {
self.prepare_command(cmd("SELECT").arg(index))
}
}
#[derive(Default)]
pub struct HelloOptions {
command_args: CommandArgs,
}
impl HelloOptions {
#[must_use]
pub fn new(protover: usize) -> Self {
Self {
command_args: CommandArgs::default().arg(protover),
}
}
#[must_use]
pub fn auth<U, P>(self, username: U, password: P) -> Self
where
U: Into<BulkString>,
P: Into<BulkString>,
{
Self {
command_args: self.command_args.arg("AUTH").arg(username).arg(password),
}
}
#[must_use]
pub fn set_name<C>(self, client_name: C) -> Self
where
C: Into<BulkString>,
{
Self {
command_args: self.command_args.arg("SETNAME").arg(client_name),
}
}
}
impl IntoArgs for HelloOptions {
fn into_args(self, args: CommandArgs) -> CommandArgs {
args.arg(self.command_args)
}
}
pub struct HelloResult {
pub server: String,
pub version: String,
pub proto: usize,
pub id: i64,
pub mode: String,
pub role: String,
pub modules: Vec<String>,
}
impl FromValue for HelloResult {
fn from_value(value: Value) -> Result<Self> {
match &value {
Value::Array(Array::Vec(v)) if v.len() == 14 => {
fn into_result(values: &mut HashMap<String, Value>) -> Option<HelloResult> {
Some(HelloResult {
server: values.remove("server")?.into().ok()?,
version: values.remove("version")?.into().ok()?,
proto: values.remove("proto")?.into().ok()?,
id: values.remove("id")?.into().ok()?,
mode: values.remove("mode")?.into().ok()?,
role: values.remove("role")?.into().ok()?,
modules: values.remove("modules")?.into().ok()?,
})
}
into_result(&mut value.into()?)
.ok_or_else(|| Error::Internal("Cannot parse HelloResult".to_owned()))
}
_ => Err(Error::Internal("Cannot parse HelloResult".to_owned())),
}
}
}
#[derive(Default)]
pub struct PingOptions {
command_args: CommandArgs,
}
impl PingOptions {
pub fn message<M: Into<BulkString>>(self, message: M) -> Self
{
Self {
command_args: self.command_args.arg(message),
}
}
}
impl IntoArgs for PingOptions {
fn into_args(self, args: CommandArgs) -> CommandArgs {
args.arg(self.command_args)
}
}