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
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
use Borrow;
use Hash;
use PhantomData;
use NonZeroUsize;
use crateGuard;
use crate;
use crateNever;
/// An instance of this enum defines a limit on the number of entries in a [LockableLruCache](crate::LockableLruCache) or a [LockableHashMap](crate::LockableHashMap).
/// It can be used to cause old entries to be evicted if a limit on the number of entries is exceeded in a call to the following functions:
///
/// | [LockableLruCache](crate::LockableLruCache) | [LockableHashMap](crate::LockableHashMap) |
/// |------------------------------------------------------------------------|----------------------------------------------------------------------|
/// | [async_lock](crate::LockableLruCache::async_lock) | [async_lock](crate::LockableHashMap::async_lock) |
/// | [async_lock_owned](crate::LockableLruCache::async_lock_owned) | [async_lock_owned](crate::LockableHashMap::async_lock_owned) |
/// | [try_lock_async](crate::LockableLruCache::try_lock_async) | [try_lock_async](crate::LockableHashMap::try_lock_async) |
/// | [try_lock_owned_async](crate::LockableLruCache::try_lock_owned_async) | [try_lock_owned_async](crate::LockableHashMap::try_lock_owned_async) |
///
/// The purpose of this class is the same as the purpose of [SyncLimit], but it has an `async` callback
/// to evict entries instead of a synchronous callback.
///
/// # Example (without limit)
/// ```
/// use lockable::{AsyncLimit, LockableHashMap};
///
/// # tokio::runtime::Runtime::new().unwrap().block_on(async {
/// let lockable_map = LockableHashMap::<i64, String>::new();
/// let guard = lockable_map.async_lock(4, AsyncLimit::no_limit()).await?;
/// # Ok::<(), lockable::Never>(())}).unwrap();
/// ```
///
/// # Example (with limit)
/// use lockable::{LockableLruCache, AsyncLimit};
/// use std::cell::RefCell;
/// use std::rc::Rc;
///
/// # tokio::runtime::Runtime::new().unwrap().block_on(async {
///
/// let lockable_map = LockableLruCache::<i64, String>::new();
/// // Insert two entries
/// lockable_map.async_lock(4, AsyncLimit::no_limit()).await?.insert("Value 4".to_string());
/// lockable_map.async_lock(5, AsyncLimit::no_limit()).await?.insert("Value 5".to_string());
///
/// // Lock a third entry but set a limit of 2 entries
/// // Collect any evicted entries in the `evicted` vector
/// let evicted = Rc::new(RefCell::new(vec![]));
/// let guard = lockable_map.async_lock(4, AsyncLimit::SoftLimit {
/// max_entries: 2.try_into().unwrap(),
/// on_evict: async |entries| {
/// let evicted = Rc::clone(&evicted);
/// for mut entry in entries {
/// evicted.borrow_mut().push(*entry.key());
/// // We have to remove the entry from the map, the map doesn't do it for us.
/// // If we don't remove it, we could end up in an infinite loop because the
/// // map is still above the limit.
/// entry.remove();
/// }
/// Ok::<(), lockable::Never>(())
/// }
/// }).await?;
///
/// // We evicted the entry with key 4 because it was the least recently used
/// assert_eq!(evicted.borrow().len(), 1);
/// assert!(evicted.borrow().contains(&4));
/// # Ok::<(), lockable::Never>(())}).unwrap();
/// ```
/// An instance of this enum defines a limit on the number of entries in a [LockableLruCache](crate::LockableLruCache) or a [LockableHashMap](crate::LockableHashMap).
/// It can be used to cause old entries to be evicted if a limit on the number of entries is exceeded in a call to the following functions:
///
/// | [LockableLruCache](crate::LockableLruCache) | [LockableHashMap](crate::LockableHashMap) |
/// |------------------------------------------------------------------------|--------------------------------------------------------------------|
/// | [blocking_lock](crate::LockableLruCache::blocking_lock) | [blocking_lock](crate::LockableHashMap::blocking_lock) |
/// | [blocking_lock_owned](crate::LockableLruCache::blocking_lock_owned) | [blocking_lock_owned](crate::LockableHashMap::blocking_lock_owned) |
/// | [try_lock](crate::LockableLruCache::try_lock) | [try_lock](crate::LockableHashMap::try_lock) |
/// | [try_lock_owned](crate::LockableLruCache::try_lock_owned) | [try_lock_owned](crate::LockableHashMap::try_lock_owned) |
///
/// The purpose of this class is the same as the purpose of [AsyncLimit], but it has a synchronous callback
/// to evict entries instead of an `async` callback.
///
/// # Example (without limit)
/// ```
/// use lockable::{LockableHashMap, SyncLimit};
///
/// # (|| {
/// let lockable_map = LockableHashMap::<i64, String>::new();
/// let guard = lockable_map.blocking_lock(4, SyncLimit::no_limit())?;
/// # Ok::<(), lockable::Never>(())})().unwrap();
/// ```
///
/// # Example (with limit)
/// use lockable::{LockableLruCache, SyncLimit};
/// use std::cell::RefCell;
/// use std::rc::Rc;
///
/// # (|| {
/// let lockable_map = LockableLruCache::<i64, String>::new();
///
/// // Insert two entries
/// lockable_map.blocking_lock(4, SyncLimit::no_limit())?.insert("Value 4".to_string());
/// lockable_map.blocking_lock(5, SyncLimit::no_limit())?.insert("Value 5".to_string());
///
/// // Lock a third entry but set a limit of 2 entries
/// // Collect any evicted entries in the `evicted` vector
/// let mut evicted = vec![];
/// let guard = lockable_map.blocking_lock(4, SyncLimit::SoftLimit {
/// max_entries: 2.try_into().unwrap(),
/// on_evict: |entries| {
/// for mut entry in entries {
/// evicted.push(*entry.key());
/// // We have to remove the entry from the map, the map doesn't do it for us.
/// // If we don't remove it, we could end up in an infinite loop because the
/// // map is still above the limit.
/// entry.remove();
/// }
/// Ok::<(), lockable::Never>(())
/// }
/// })?;
///
/// // We evicted the entry with key 4 because it was the least recently used
/// assert_eq!(evicted.len(), 1);
/// assert!(evicted.contains(&4));
/// # Ok::<(), lockable::Never>(())})().unwrap();
/// ```