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
pub use fixed_map_derive::Key;
/// A value that can be statically stored in the hash map.
pub trait Key<K, V> {
type Storage: Storage<K, V>;
}
/// The trait defining how storage works.
///
/// # Type Arguments
///
/// - `K` is the key being stored.
/// - `V` is the value being stored.
pub trait Storage<K, V>: Default {
fn insert(&mut self, key: K, value: V) -> Option<V>;
fn get(&self, key: &K) -> Option<&V>;
fn get_mut(&mut self, key: &K) -> Option<&mut V>;
fn remove(&mut self, key: &K) -> Option<V>;
/// Call the given closure for each key and value combination that is present in storage.
fn for_each_value<F>(&self, f: F)
where
F: FnMut(&V);
}
/// A map with a fixed, pre-determined size.
pub struct Map<K, V>
where
K: Key<K, V>,
{
storage: K::Storage,
}
/// A map implementation that uses fixed storage.
///
/// # Examples
///
/// ```rust
/// use fixed_map::Map;
///
/// #[derive(fixed_map::Key)]
/// enum MyKey {
/// Foo,
/// Bar,
/// }
///
/// let mut m = Map::new();
/// m.insert(MyKey::Foo, 42);
///
/// assert_eq!(m.get(&MyKey::Foo), Some(&42));
/// assert_eq!(m.get(&MyKey::Bar), None);
/// ```
impl<K, V> Map<K, V>
where
K: Key<K, V>,
{
pub fn new() -> Map<K, V> {
Map {
storage: K::Storage::default(),
}
}
/// Returns a reference to the value corresponding to the key.
///
/// # Examples
///
/// ```
/// use fixed_map::Map;
///
/// #[derive(fixed_map::Key)]
/// enum Key {
/// One,
/// Two,
/// }
///
/// let mut map = Map::new();
/// map.insert(Key::One, "a");
/// assert_eq!(map.get(&Key::One), Some(&"a"));
/// assert_eq!(map.get(&Key::Two), None);
/// ```
pub fn get(&self, key: &K) -> Option<&V> {
self.storage.get(key)
}
/// Returns a mutable reference to the value corresponding to the key.
///
/// # Examples
///
/// ```
/// use fixed_map::Map;
///
/// #[derive(fixed_map::Key)]
/// enum Key {
/// One,
/// Two,
/// }
///
/// let mut map = Map::new();
/// map.insert(Key::One, "a");
/// if let Some(x) = map.get_mut(&Key::One) {
/// *x = "b";
/// }
/// assert_eq!(map.get(&Key::One), Some(&"b"));
/// ```
pub fn get_mut(&mut self, key: &K) -> Option<&mut V> {
self.storage.get_mut(key)
}
/// Inserts a key-value pair into the map.
///
/// If the map did not have this key present, [`None`] is returned.
///
/// If the map did have this key present, the value is updated, and the old
/// value is returned.
///
/// # Examples
///
/// ```
/// use fixed_map::Map;
///
/// #[derive(fixed_map::Key)]
/// enum Key {
/// One,
/// Two,
/// }
///
/// let mut map = Map::new();
/// assert_eq!(map.insert(Key::One, "a"), None);
/// assert_eq!(map.is_empty(), false);
///
/// map.insert(Key::Two, "b");
/// assert_eq!(map.insert(Key::Two, "c"), Some("b"));
/// assert_eq!(map.get(&Key::Two), Some(&"c"));
/// ```
pub fn insert(&mut self, key: K, value: V) -> Option<V> {
self.storage.insert(key, value)
}
/// Removes a key from the map, returning the value at the key if the key
/// was previously in the map.
///
/// # Examples
///
/// ```
/// use fixed_map::Map;
///
/// #[derive(fixed_map::Key)]
/// enum Key {
/// One,
/// Two,
/// }
///
/// let mut map = Map::new();
/// map.insert(Key::One, "a");
/// assert_eq!(map.remove(&Key::One), Some("a"));
/// assert_eq!(map.remove(&Key::One), None);
/// ```
pub fn remove(&mut self, key: &K) -> Option<V> {
self.storage.remove(key)
}
/// Returns true if the map contains no elements.
///
/// # Examples
///
/// ```
/// use fixed_map::Map;
///
/// #[derive(fixed_map::Key)]
/// enum Key {
/// One,
/// Two,
/// }
///
/// let mut map = Map::new();
/// assert!(map.is_empty());
/// map.insert(Key::One, "a");
/// assert!(!map.is_empty());
/// ```
pub fn is_empty(&self) -> bool {
let mut empty = true;
self.storage.for_each_value(|_| {
empty = false;
});
empty
}
/// Returns the number of elements in the map.
///
/// # Examples
///
/// ```
/// use fixed_map::Map;
///
/// #[derive(fixed_map::Key)]
/// enum Key {
/// One,
/// Two,
/// }
///
/// let mut map = Map::new();
/// assert_eq!(map.len(), 0);
/// map.insert(Key::One, "a");
/// assert_eq!(map.len(), 1);
/// ```
pub fn len(&self) -> usize {
let mut len = 0;
self.storage.for_each_value(|_| {
len += 1;
});
len
}
}