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
use std::collections::HashMap;
use std::fmt;
use std::str::FromStr;
use bytes::{BufMut, BytesMut};
use crate::err::Error;
use crate::params::Params;
use crate::validators::validate_topic;
#[derive(Debug, Clone, Default)]
pub struct Telegram {
topic: Option<String>,
params: Params
}
impl Telegram {
pub fn new() -> Self {
Telegram {
..Default::default()
}
}
pub fn new_topic(topic: &str) -> Result<Self, Error> {
validate_topic(topic)?;
Ok(Telegram {
topic: Some(topic.to_string()),
..Default::default()
})
}
pub fn clear(&mut self) {
self.topic = None;
self.params.clear();
}
pub fn get_params(&self) -> &Params {
&self.params
}
pub fn get_params_inner(&self) -> &HashMap<String, String> {
&self.params.get_inner()
}
pub fn set_topic(&mut self, topic: &str) -> Result<(), Error> {
validate_topic(topic)?;
self.topic = Some(topic.to_string());
Ok(())
}
pub fn get_topic(&self) -> Option<&str> {
if let Some(t) = &self.topic {
Some(t)
} else {
None
}
}
pub fn add_param<T: ToString, U: ToString>(
&mut self,
key: T,
value: U
) -> Result<(), Error> {
self.params.add_param(key, value)
}
pub fn add_str<T: ToString, U: ToString>(
&mut self,
key: T,
value: U
) -> Result<(), Error> {
self.add_param(key, value)
}
pub fn have_param(&self, key: &str) -> bool {
self.params.have(key)
}
pub fn get_param<T: FromStr>(&self, key: &str) -> Result<T, Error> {
self.params.get_param(key)
}
pub fn get_str(&self, key: &str) -> Option<&str> {
self.params.get_str(key)
}
pub fn get_int<T: FromStr>(&self, key: &str) -> Result<T, Error> {
self.params.get_int(key)
}
pub fn get_int_def<T: FromStr>(
&self,
key: &str,
def: T
) -> Result<T, Error> {
self.params.get_int_def(key, def)
}
pub fn calc_buf_size(&self) -> usize {
let mut size = 0;
if let Some(ref h) = self.topic {
size += h.len() + 1;
}
size + self.params.calc_buf_size()
}
pub fn serialize(&self) -> Result<Vec<u8>, Error> {
let mut buf = Vec::new();
if let Some(ref h) = self.topic {
let b = h.as_bytes();
for a in b {
buf.push(*a);
}
buf.push(b'\n');
} else {
return Err(Error::BadFormat("Missing heading".to_string()));
}
for (key, value) in self.get_params_inner() {
let k = key.as_bytes();
let v = value.as_bytes();
for a in k {
buf.push(*a);
}
buf.push(b' ');
for a in v {
buf.push(*a);
}
buf.push(b'\n');
}
buf.push(b'\n');
Ok(buf)
}
pub fn encoder_write(&self, buf: &mut BytesMut) -> Result<(), Error> {
if self.topic.is_none() {
return Err(Error::SerializeError("Missing Telegram topic".to_string()));
}
let size = self.calc_buf_size();
buf.reserve(size);
if let Some(ref b) = self.topic {
buf.put(b.as_bytes());
}
buf.put_u8(b'\n');
for (key, value) in self.get_params_inner() {
buf.put(key.as_bytes());
buf.put_u8(b' ');
buf.put(value.as_bytes());
buf.put_u8(b'\n');
}
buf.put_u8(b'\n');
Ok(())
}
pub fn into_params(self) -> Params {
self.params
}
}
impl From<String> for Telegram {
fn from(topic: String) -> Self {
Telegram {
topic: Some(topic),
..Default::default()
}
}
}
impl From<Params> for Telegram {
fn from(params: Params) -> Self {
Telegram {
params,
..Default::default()
}
}
}
impl From<HashMap<String, String>> for Telegram {
fn from(hm: HashMap<String, String>) -> Self {
Telegram {
params: Params::from(hm),
..Default::default()
}
}
}
impl fmt::Display for Telegram {
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
let topic: &str = match &self.topic {
Some(s) => s.as_ref(),
None => &"<None>"
};
write!(f, "{}:{}", topic, self.params)
}
}