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
use crate::{
agent::{agent_config::AgentConfig, Agent, ReplicaV2Transport},
AgentError, Identity, NonceFactory, NonceGenerator,
};
use std::sync::Arc;
#[derive(Debug, Default)]
pub struct AgentBuilder {
config: AgentConfig,
}
impl AgentBuilder {
pub fn build(self) -> Result<Agent, AgentError> {
Agent::new(self.config)
}
#[cfg(feature = "reqwest")]
#[deprecated(since = "0.3.0", note = "Prefer using with_transport().")]
pub fn with_url<S: Into<String>>(self, url: S) -> Self {
use crate::agent::http_transport::ReqwestHttpReplicaV2Transport;
self.with_transport(ReqwestHttpReplicaV2Transport::create(url).unwrap())
}
pub fn with_transport<T: 'static + ReplicaV2Transport>(self, transport: T) -> Self {
self.with_arc_transport(Arc::new(transport))
}
pub fn with_arc_transport(mut self, transport: Arc<dyn ReplicaV2Transport>) -> Self {
self.config.transport = Some(transport);
self
}
pub fn with_nonce_factory(self, nonce_factory: NonceFactory) -> AgentBuilder {
self.with_nonce_generator(nonce_factory)
}
pub fn with_nonce_generator<N: 'static + NonceGenerator>(
self,
nonce_factory: N,
) -> AgentBuilder {
self.with_arc_nonce_generator(Arc::new(nonce_factory))
}
pub fn with_arc_nonce_generator(
mut self,
nonce_factory: Arc<dyn NonceGenerator>,
) -> AgentBuilder {
self.config.nonce_factory = Arc::new(nonce_factory);
self
}
pub fn with_identity<I>(self, identity: I) -> Self
where
I: 'static + Identity,
{
self.with_arc_identity(Arc::new(identity))
}
pub fn with_boxed_identity(self, identity: Box<dyn Identity>) -> Self {
self.with_arc_identity(Arc::from(identity))
}
pub fn with_arc_identity(mut self, identity: Arc<dyn Identity>) -> Self {
self.config.identity = identity;
self
}
pub fn with_ingress_expiry(self, duration: Option<std::time::Duration>) -> Self {
AgentBuilder {
config: AgentConfig {
ingress_expiry_duration: duration,
..self.config
},
}
}
}