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
use crate::io::{BufMutExt, Encode};
use crate::postgres::io::PgBufMutExt;
pub struct Startup<'a> {
pub username: Option<&'a str>,
pub database: Option<&'a str>,
pub params: &'a [(&'a str, &'a str)],
}
impl Encode<'_> for Startup<'_> {
fn encode_with(&self, buf: &mut Vec<u8>, _: ()) {
buf.reserve(120);
buf.put_length_prefixed(|buf| {
buf.extend(&196_608_i32.to_be_bytes());
if let Some(username) = self.username {
encode_startup_param(buf, "user", username);
}
if let Some(database) = self.database {
encode_startup_param(buf, "database", database);
}
for (name, value) in self.params {
encode_startup_param(buf, name, value);
}
buf.push(0);
});
}
}
#[inline]
fn encode_startup_param(buf: &mut Vec<u8>, name: &str, value: &str) {
buf.put_str_nul(name);
buf.put_str_nul(value);
}
#[test]
fn test_encode_startup() {
const EXPECTED: &[u8] = b"\0\0\0)\0\x03\0\0user\0postgres\0database\0postgres\0\0";
let mut buf = Vec::new();
let m = Startup {
username: Some("postgres"),
database: Some("postgres"),
params: &[],
};
m.encode(&mut buf);
assert_eq!(buf, EXPECTED);
}
#[cfg(all(test, not(debug_assertions)))]
#[bench]
fn bench_encode_startup(b: &mut test::Bencher) {
use test::black_box;
let mut buf = Vec::with_capacity(128);
b.iter(|| {
buf.clear();
black_box(Startup {
username: Some("postgres"),
database: Some("postgres"),
params: &[],
})
.encode(&mut buf);
});
}