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
use crate::{
consts::{DEFAULT_INTERVAL_MS, DEFAULT_TIMEOUT_MS},
types::{AccessToken, CometdResult},
CometdClient,
};
use arc_swap::ArcSwapOption;
use hyper::Client;
use url::Url;
#[derive(Debug)]
pub struct CometdClientBuilder<'b, 'c, 'd, 'e> {
endpoint: Url,
handshake_base_path: &'b str,
subscribe_base_path: &'c str,
connect_base_path: &'d str,
disconnect_base_path: &'e str,
timeout_ms: Option<u64>,
interval_ms: Option<u64>,
access_token: Option<Box<dyn AccessToken>>,
}
impl<'b, 'c, 'd, 'e> CometdClientBuilder<'b, 'c, 'd, 'e> {
#[inline(always)]
pub fn new(endpoint: Url) -> Self {
Self {
endpoint,
handshake_base_path: "",
subscribe_base_path: "",
connect_base_path: "",
disconnect_base_path: "",
timeout_ms: None,
interval_ms: None,
access_token: None,
}
}
#[inline(always)]
pub fn build(self) -> CometdResult<CometdClient> {
let Self {
endpoint: base_url,
handshake_base_path,
subscribe_base_path,
connect_base_path,
disconnect_base_path,
timeout_ms,
interval_ms,
access_token,
} = self;
let handshake_endpoint =
String::from(base_url.join(handshake_base_path)?.join("handshake")?).try_into()?;
let subscribe_endpoint = String::from(base_url.join(subscribe_base_path)?).try_into()?;
let connect_endpoint =
String::from(base_url.join(connect_base_path)?.join("connect")?).try_into()?;
let disconnect_endpoint =
String::from(base_url.join(disconnect_base_path)?.join("disconnect")?).try_into()?;
let timeout_ms = timeout_ms.unwrap_or(DEFAULT_TIMEOUT_MS);
let interval_ms = interval_ms.unwrap_or(DEFAULT_INTERVAL_MS);
let id = Default::default();
let access_token = access_token
.map(ArcSwapOption::from_pointee)
.unwrap_or_default();
let cookie = Default::default();
let client_id = Default::default();
let http_client = Client::builder().build_http();
Ok(CometdClient {
handshake_endpoint,
subscribe_endpoint,
connect_endpoint,
disconnect_endpoint,
timeout_ms,
interval_ms,
id,
access_token,
cookie,
client_id,
http_client,
})
}
#[inline(always)]
pub fn handshake_base_path(self, url: &'b str) -> Self {
Self {
handshake_base_path: url,
..self
}
}
#[inline(always)]
pub fn subscribe_base_path(self, url: &'c str) -> Self {
Self {
subscribe_base_path: url,
..self
}
}
#[inline(always)]
pub fn connect_base_path(self, url: &'d str) -> Self {
Self {
connect_base_path: url,
..self
}
}
#[inline(always)]
pub fn disconnect_base_path(self, url: &'e str) -> Self {
Self {
disconnect_base_path: url,
..self
}
}
#[inline(always)]
pub fn timeout_ms(self, timeout_ms: u64) -> Self {
Self {
timeout_ms: Some(timeout_ms),
..self
}
}
#[inline(always)]
pub fn interval_ms(self, interval_ms: u64) -> Self {
Self {
interval_ms: Some(interval_ms),
..self
}
}
#[inline(always)]
pub fn access_token<AT>(self, access_token: AT) -> Self
where
AT: AccessToken + 'static,
{
Self {
access_token: Some(Box::new(access_token)),
..self
}
}
}