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
use std::fmt::{Debug, Formatter, Result as FmtResult};
use std::sync::{Arc, RwLock};
use super::Credentials;
pub struct RotatingCredentials {
inner: Arc<RwLock<Arc<Credentials>>>,
}
impl RotatingCredentials {
pub fn new(key: String, secret: String, token: Option<String>) -> Self {
let credentials = Credentials::new_with_maybe_token(key, secret, token);
Self {
inner: Arc::new(RwLock::new(Arc::new(credentials))),
}
}
pub fn get(&self) -> Arc<Credentials> {
let lock = self.inner.read().expect("can't be poisoned");
Arc::clone(&lock)
}
pub fn update(&self, key: String, secret: String, token: Option<String>) {
let credentials = Credentials::new_with_maybe_token(key, secret, token);
let mut lock = self.inner.write().expect("can't be poisoned");
match Arc::get_mut(&mut lock) {
Some(arc) => *arc = credentials,
None => *lock = Arc::new(credentials),
};
}
}
impl Debug for RotatingCredentials {
fn fmt(&self, f: &mut Formatter<'_>) -> FmtResult {
let current = self.get();
Debug::fmt(&*current, f)
}
}
impl Clone for RotatingCredentials {
fn clone(&self) -> Self {
Self {
inner: Arc::clone(&self.inner),
}
}
fn clone_from(&mut self, source: &Self) {
self.inner = Arc::clone(&source.inner)
}
}
impl PartialEq for RotatingCredentials {
fn eq(&self, other: &RotatingCredentials) -> bool {
let current1 = self.get();
let current2 = other.get();
*current1 == *current2
}
}
#[cfg(test)]
mod tests {
use pretty_assertions::assert_eq;
use super::*;
#[test]
fn rotate() {
let credentials =
RotatingCredentials::new("abcd".into(), "1234".into(), Some("xyz".into()));
let current = credentials.get();
assert_eq!(current.key(), "abcd");
assert_eq!(current.secret(), "1234");
assert_eq!(current.token(), Some("xyz"));
drop(current);
credentials.update("1234".into(), "5678".into(), Some("9012".into()));
let current = credentials.get();
assert_eq!(current.key(), "1234");
assert_eq!(current.secret(), "5678");
assert_eq!(current.token(), Some("9012"));
drop(current);
credentials.update("dcba".into(), "4321".into(), Some("yxz".into()));
let current = credentials.get();
assert_eq!(current.key(), "dcba");
assert_eq!(current.secret(), "4321");
assert_eq!(current.token(), Some("yxz"));
drop(current);
}
#[test]
fn rotate_cloned() {
let credentials =
RotatingCredentials::new("abcd".into(), "1234".into(), Some("xyz".into()));
let current = credentials.get();
assert_eq!(current.key(), "abcd");
assert_eq!(current.secret(), "1234");
assert_eq!(current.token(), Some("xyz"));
drop(current);
let credentials2 = credentials.clone();
credentials.update("1234".into(), "5678".into(), Some("9012".into()));
let current = credentials2.get();
assert_eq!(current.key(), "1234");
assert_eq!(current.secret(), "5678");
assert_eq!(current.token(), Some("9012"));
drop(current);
assert_eq!(credentials, credentials2);
credentials.update("dcba".into(), "4321".into(), Some("yxz".into()));
let current = credentials.get();
assert_eq!(current.key(), "dcba");
assert_eq!(current.secret(), "4321");
assert_eq!(current.token(), Some("yxz"));
drop(current);
assert_eq!(credentials, credentials2);
}
#[test]
fn debug() {
let credentials =
RotatingCredentials::new("abcd".into(), "1234".into(), Some("xyz".into()));
let debug_output = format!("{credentials:?}");
assert_eq!(debug_output, "Credentials { key: \"abcd\" }");
}
}