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
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
/* Notice
lib.rs: lending-library

Copyright 2018 Thomas Bytheway <thomas.bytheway@cl.cam.ac.uk>

This file is part of the lending-library open-source project: github.com/harkonenbade/lending-library;
Its licensing is governed by the LICENSE file at the root of the project.
*/
#![warn(missing_docs)]

//! A data store that lends temporary ownership of stored values.
//!
//! # Example
//! ```
//! use lending_library::*;
//!
//! struct Processor;
//! struct Item(String);
//!
//! impl Item {
//!     fn gen(dat: &str) -> Self { Item(dat.to_string()) }
//! }
//!
//! impl Processor {
//!     fn link(&self, _first: &Item, _second: &Item) {}
//! }
//!
//! enum Event {
//!     Foo {
//!         id: i64,
//!         dat: &'static str,
//!     },
//!     Bar {
//!         id: i64,
//!         o_id: i64,
//!         o_dat: &'static str,
//!     }
//! }
//!
//! const EVTS: &[Event] = &[Event::Foo {id:1, dat:"a_val"},
//!                          Event::Foo {id:2, dat:"b_val"},
//!                          Event::Bar {id:1, o_id: 2, o_dat:"B_val"},
//!                          Event::Bar {id:1, o_id: 3, o_dat:"c_val"}];
//!
//! struct Store {
//!     id_gen: Box<Iterator<Item = i64>>,
//!     id_to_dat: LendingLibrary<i64, Item>,
//! }
//!
//! impl Store {
//!     fn new() -> Self {
//!         Store {
//!             id_gen: Box::new(0..),
//!             id_to_dat: LendingLibrary::new(),
//!         }
//!     }
//!
//!     pub fn declare(&mut self, uid: i64, dat: &str) -> Loan<i64, Item> {
//!         if !self.id_to_dat.contains_key(&uid) {
//!             self.id_to_dat.insert(uid, Item::gen(dat));
//!         }
//!         self.id_to_dat.lend(&uid).unwrap()
//!     }
//! }
//!
//! fn main() {
//!     let mut store = Store::new();
//!     let pro = Processor;
//!     for evt in EVTS {
//!         match *evt {
//!             Event::Foo { id, dat } => {
//!                 store.declare(id, dat);
//!             }
//!             Event::Bar { id, o_id, o_dat } => {
//!                 let i = store.declare(id, "");
//!                 let o = store.declare(o_id, o_dat);
//!                 pro.link(&i, &o);
//!             }
//!         }
//!     }
//! }
//! ```

pub mod iter;
mod loan;
#[cfg(test)]
mod tests;

pub use loan::Loan;

use std::{
    collections::{hash_map::DefaultHasher, HashMap},
    hash::{Hash, Hasher},
    sync::atomic::{AtomicUsize, Ordering},
    thread,
};

enum State<K, V> {
    Present(K, V),
    Loaned(K),
    AwaitingDrop(K),
}

use self::State::{AwaitingDrop, Loaned, Present};

/// A key-value data store that allows you to loan temporary ownership of values.
///
/// # Assumptions
/// The store does it's best to ensure that no unsafe behaviour occurs, however as a result it may
/// trigger several panics rather than allow an unsafe condition to arise.
///
/// The main panic condition is that a `Loan` object derived from the `lend` method on a store may
/// never outlive the store it originated from. If this condition happens the store will generate a
/// panic as it goes out of scope, noting the number of outstanding `Loan` objects.
pub struct LendingLibrary<K, V>
where
    K: Hash,
{
    store: HashMap<u64, State<K, V>>,
    outstanding: AtomicUsize,
}

fn _hash<K: Hash>(val: &K) -> u64 {
    let mut hasher = DefaultHasher::new();
    (*val).hash(&mut hasher);
    hasher.finish()
}

impl<K, V> LendingLibrary<K, V>
where
    K: Hash,
{
    /// Creates a new empty `LendingLibrary`.
    /// # Example
    /// ```
    /// use lending_library::LendingLibrary;
    /// let mut lib: LendingLibrary<i32, i32> = LendingLibrary::new();
    /// ```
    pub fn new() -> LendingLibrary<K, V> {
        LendingLibrary {
            store: HashMap::new(),
            outstanding: AtomicUsize::new(0),
        }
    }

    /// Creates an empty `LendingLibrary` with at least the specified capacity.
    /// The library will be able to hold at least `capacity` elements without reallocating.
    /// # Example
    /// ```
    /// use lending_library::LendingLibrary;
    /// let mut lib: LendingLibrary<i32, i32> = LendingLibrary::with_capacity(100);
    /// ```
    pub fn with_capacity(capacity: usize) -> LendingLibrary<K, V> {
        LendingLibrary {
            store: HashMap::with_capacity(capacity),
            outstanding: AtomicUsize::new(0),
        }
    }

    /// Returns the number of elements the library can store without reallocating.
    /// The same bounds as [`HashMap::capacity()`] apply.
    ///
    /// [`HashMap::capacity()`]: https://doc.rust-lang.org/stable/std/collections/struct.HashMap.html#method.capacity
    /// # Example
    /// ```
    /// use lending_library::LendingLibrary;
    /// let mut lib: LendingLibrary<i32, i32> = LendingLibrary::with_capacity(100);
    /// assert!(lib.capacity() >= 100);
    /// ```
    pub fn capacity(&self) -> usize {
        self.store.capacity()
    }

    /// Reserves space such that the library can store at least `additional` new records without reallocating.
    /// # Example
    /// ```
    /// use lending_library::LendingLibrary;
    /// let mut lib: LendingLibrary<i32, i32> = LendingLibrary::with_capacity(0);
    /// assert_eq!(lib.capacity(), 0);
    /// lib.reserve(10);
    /// assert!(lib.capacity() >= 10);
    /// ```
    pub fn reserve(&mut self, additional: usize) {
        self.store.reserve(additional)
    }

    /// Reduces the stores capacity to the minimum currently required.
    /// # Example
    /// ```
    /// use lending_library::LendingLibrary;
    /// let mut lib: LendingLibrary<i32, i32> = LendingLibrary::with_capacity(10);
    /// assert!(lib.capacity() >= 10);
    /// lib.shrink_to_fit();
    /// assert_eq!(lib.capacity(), 0);
    /// ```
    pub fn shrink_to_fit(&mut self) {
        self.store.shrink_to_fit()
    }

    /// An iterator visiting all key/value pairs in arbitary order.
    /// The item type is `(&'a K, &'a V)`
    /// # Panics
    /// The iterator will panic if it encounters an item that is currently loaned from the store,
    /// so this should only be used where you are sure you have returned all loaned items.
    pub fn iter(&self) -> impl Iterator<Item = (&K, &V)> {
        self.into_iter()
    }

    /// An iterator visiting all key/value pairs in arbitary order, with mutable references to the
    /// values. The item type is `(&'a K, &'a mut V)`
    /// # Panics
    /// The iterator will panic if it encounters an item that is currently loaned from the store,
    /// so this should only be used where you are sure you have returned all loaned items.
    pub fn iter_mut(&mut self) -> impl Iterator<Item = (&K, &mut V)> {
        self.into_iter()
    }

    /// Returns the number of items in the store.
    /// # Example
    /// ```
    /// use lending_library::LendingLibrary;
    /// let mut lib: LendingLibrary<i32, i32> = LendingLibrary::new();
    /// lib.insert(1, 1);
    /// lib.insert(2, 1);
    /// assert_eq!(lib.len(), 2);
    /// ```
    pub fn len(&self) -> usize {
        self.store
            .iter()
            .map(|(_k, v)| match v {
                Present(..) | Loaned(_) => 1,
                AwaitingDrop(_) => 0,
            })
            .sum()
    }

    /// Returns true if the store is empty and false otherwise.
    /// # Example
    /// ```
    /// use lending_library::LendingLibrary;
    /// let mut lib: LendingLibrary<i32, i32> = LendingLibrary::new();
    /// assert!(lib.is_empty());
    /// lib.insert(1, 1);
    /// lib.insert(2, 1);
    /// assert!(!lib.is_empty());
    /// ```
    pub fn is_empty(&self) -> bool {
        self.len() == 0
    }

    /// Removes all items from the store.
    /// # Example
    /// ```
    /// use lending_library::LendingLibrary;
    /// let mut lib: LendingLibrary<i32, i32> = LendingLibrary::new();
    /// lib.insert(1, 1);
    /// lib.insert(2, 1);
    /// {
    ///     let v = lib.lend(&2).unwrap();
    ///     assert_eq!(*v, 1);
    /// }
    /// lib.clear();
    /// assert_eq!(lib.lend(&1), None);
    /// ```
    pub fn clear(&mut self) {
        let new_store = self
            .store
            .drain()
            .filter(|&(_k, ref v)| match v {
                Present(..) => false,
                Loaned(_) | AwaitingDrop(_) => true,
            })
            .map(|(h, v)| match v {
                Loaned(k) | AwaitingDrop(k) => (h, AwaitingDrop(k)),
                Present(..) => unreachable!(),
            })
            .collect();
        self.store = new_store;
    }

    /// Returns true if a record with key `key` exists in the store, and false otherwise.
    /// # Example
    /// ```
    /// use lending_library::LendingLibrary;
    /// let mut lib: LendingLibrary<i32, i32> = LendingLibrary::new();
    /// assert!(!lib.contains_key(&1));
    /// lib.insert(1, 1);
    /// assert!(lib.contains_key(&1));
    /// ```
    pub fn contains_key(&self, key: &K) -> bool {
        let h = _hash(key);
        match self.store.get(&h) {
            Some(v) => match v {
                Present(..) | Loaned(_) => true,
                AwaitingDrop(_) => false,
            },
            None => false,
        }
    }

    /// Inserts a new key/value pair into the store. If a pair with that key already exists, the
    /// previous values will be returned as `Some(V)`, otherwise the method returns `None`.
    /// # Panics
    /// The method will panic if you attempt to overwrite a key/value pair that is currently loaned.
    /// # Example
    /// ```
    /// use lending_library::LendingLibrary;
    /// let mut lib: LendingLibrary<i32, i32> = LendingLibrary::new();
    /// lib.insert(1, 1);
    /// lib.insert(2, 1);
    /// ```
    pub fn insert(&mut self, key: K, val: V) -> Option<V> {
        let h = _hash(&key);
        match self.store.insert(h, Present(key, val)) {
            Some(v) => match v {
                Present(_, v) => Some(v),
                Loaned(_) => panic!("Cannot overwrite loaned value"),
                AwaitingDrop(_) => panic!("Cannot overwrite value awaiting drop"),
            },
            None => None,
        }
    }

    /// Removes a key/value pair from the store. Returning true if the key was present in the store
    /// and false otherwise.
    /// # Example
    /// ```
    /// use lending_library::LendingLibrary;
    /// let mut lib: LendingLibrary<i32, i32> = LendingLibrary::new();
    /// assert!(!lib.remove(&1));
    /// lib.insert(1, 1);
    /// assert!(lib.contains_key(&1));
    /// assert!(lib.remove(&1));
    /// assert!(!lib.contains_key(&1));
    /// assert!(!lib.remove(&1));
    /// ```
    pub fn remove(&mut self, key: &K) -> bool {
        let h = _hash(key);
        match self.store.remove(&h) {
            Some(v) => match v {
                Present(..) => true,
                Loaned(k) => {
                    self.store.insert(h, AwaitingDrop(k));
                    true
                }
                AwaitingDrop(k) => {
                    self.store.insert(h, AwaitingDrop(k));
                    false
                }
            },
            None => false,
        }
    }

    /// Loans a value from the library, returning `Some(Loan<K, V>)` if the value is present, and `None` if it is not.
    /// # Panics
    /// Will panic if you try and loan a value that still has an outstanding loan.
    /// # Examples
    /// ```
    /// use lending_library::LendingLibrary;
    /// let mut lib: LendingLibrary<i32, i32> = LendingLibrary::with_capacity(0);
    /// lib.insert(1, 1);
    /// {
    ///     let mut v = lib.lend(&1).unwrap();
    ///     *v += 5;
    /// }
    /// ```
    pub fn lend(&mut self, key: &K) -> Option<Loan<K, V>> {
        let h = _hash(key);
        let ptr: *mut Self = self;
        match self.store.remove(&h) {
            Some(v) => match v {
                Present(k, v) => {
                    self.outstanding.fetch_add(1, Ordering::Relaxed);
                    self.store.insert(h, Loaned(k));
                    Some(Loan {
                        owner: ptr,
                        key: h,
                        inner: Some(v),
                    })
                }
                Loaned(_) => panic!("Lending already loaned value"),
                AwaitingDrop(_) => panic!("Lending value awaiting drop"),
            },
            None => None,
        }
    }

    fn checkin(&mut self, key: u64, val: V) {
        match self.store.remove(&key) {
            Some(v) => {
                self.outstanding.fetch_sub(1, Ordering::Relaxed);
                match v {
                    Present(..) => panic!("Returning replaced item"),
                    Loaned(k) => {
                        self.store.insert(key, Present(k, val));
                    }
                    AwaitingDrop(_) => {}
                }
            }
            None => panic!("Returning item not from store"),
        }
    }
}

impl<K, V> Drop for LendingLibrary<K, V>
where
    K: Hash,
{
    fn drop(&mut self) {
        if !thread::panicking() {
            let count = self.outstanding.load(Ordering::SeqCst);
            if count != 0 {
                panic!("{} value loans outlived store.", count)
            }
        }
    }
}

impl<K, V> Default for LendingLibrary<K, V>
where
    K: Hash,
{
    fn default() -> Self {
        LendingLibrary::new()
    }
}