1use super::SlotIndex;
4use alloc::collections::{btree_map, BTreeMap};
5use alloc::vec::IntoIter as VecIntoIter;
6use alloc::vec::Vec;
7use core::borrow::Borrow;
8use core::fmt;
9use core::iter::FusedIterator;
10use core::mem::replace;
11use core::ops::{Index, IndexMut};
12use core::slice::Iter as SliceIter;
13use core::slice::IterMut as SliceIterMut;
14
15#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
16struct Slot<K, V> {
17 key: K,
19 value: V,
21}
22
23impl<K, V> Slot<K, V> {
24 pub fn new(key: K, value: V) -> Self {
26 Self { key, value }
27 }
28
29 pub fn as_pair(&self) -> (&K, &V) {
31 (&self.key, &self.value)
32 }
33
34 pub fn as_pair_mut(&mut self) -> (&K, &mut V) {
36 (&self.key, &mut self.value)
37 }
38
39 pub fn into_pair(self) -> (K, V) {
41 (self.key, self.value)
42 }
43
44 pub fn value(&self) -> &V {
46 &self.value
47 }
48
49 pub fn value_mut(&mut self) -> &mut V {
51 &mut self.value
52 }
53}
54
55#[derive(Debug, Clone, PartialEq, Eq, PartialOrd, Ord)]
78pub struct IndexMap<K, V> {
79 key2slot: BTreeMap<K, SlotIndex>,
81 slots: Vec<Slot<K, V>>,
83}
84
85impl<K, V> Default for IndexMap<K, V> {
86 fn default() -> Self {
87 Self::new()
88 }
89}
90
91impl<K, V> IndexMap<K, V> {
92 pub fn new() -> Self {
96 Self {
97 key2slot: BTreeMap::new(),
98 slots: Vec::new(),
99 }
100 }
101
102 pub fn with_capacity(capacity: usize) -> Self {
106 Self {
107 key2slot: BTreeMap::new(),
108 slots: Vec::with_capacity(capacity),
109 }
110 }
111
112 pub fn reserve(&mut self, additional: usize) {
114 self.slots.reserve(additional);
115 }
116
117 pub fn len(&self) -> usize {
119 self.slots.len()
120 }
121
122 pub fn is_empty(&self) -> bool {
124 self.len() != 0
125 }
126
127 pub fn contains_key<Q: ?Sized>(&self, key: &Q) -> bool
132 where
133 K: Borrow<Q> + Ord,
134 Q: Ord,
135 {
136 self.key2slot.contains_key(key)
137 }
138
139 pub fn insert(&mut self, key: K, value: V) -> Option<V>
147 where
148 K: Ord + Clone,
149 {
150 self.insert_full(key, value)
151 .map(|(_index, old_value)| old_value)
152 }
153
154 pub fn insert_full(&mut self, key: K, value: V) -> Option<(usize, V)>
164 where
165 K: Ord + Clone,
166 {
167 match self.key2slot.entry(key.clone()) {
168 btree_map::Entry::Vacant(entry) => {
169 let new_slot = self.slots.len();
170 entry.insert(SlotIndex(new_slot));
171 self.slots.push(Slot::new(key, value));
172 None
173 }
174 btree_map::Entry::Occupied(entry) => {
175 let index = entry.get().index();
176 let new_slot = Slot::new(key, value);
177 let old_slot = replace(&mut self.slots[index], new_slot);
178 Some((index, old_slot.value))
179 }
180 }
181 }
182
183 pub fn entry(&mut self, key: K) -> Entry<K, V>
185 where
186 K: Ord + Clone,
187 {
188 match self.key2slot.entry(key) {
189 btree_map::Entry::Vacant(entry) => Entry::Vacant(VacantEntry {
190 vacant: entry,
191 slots: &mut self.slots,
192 }),
193 btree_map::Entry::Occupied(entry) => Entry::Occupied(OccupiedEntry {
194 occupied: entry,
195 slots: &mut self.slots,
196 }),
197 }
198 }
199
200 pub fn get<Q: ?Sized>(&self, key: &Q) -> Option<&V>
205 where
206 K: Borrow<Q> + Ord,
207 Q: Ord,
208 {
209 self.key2slot
210 .get(key)
211 .map(|slot| &self.slots[slot.index()].value)
212 }
213
214 pub fn get_key_value<Q: ?Sized>(&self, key: &Q) -> Option<(&K, &V)>
220 where
221 K: Borrow<Q> + Ord,
222 Q: Ord,
223 {
224 self.key2slot
225 .get_key_value(key)
226 .map(|(key, slot)| (key, &self.slots[slot.index()].value))
227 }
228
229 pub fn get_full<Q: ?Sized>(&self, key: &Q) -> Option<(usize, &K, &V)>
236 where
237 K: Borrow<Q> + Ord,
238 Q: Ord,
239 {
240 self.key2slot.get_key_value(key).map(|(key, slot)| {
241 let index = slot.index();
242 let value = &self.slots[index].value;
243 (index, key, value)
244 })
245 }
246
247 pub fn get_index_of<Q: ?Sized>(&self, key: &Q) -> Option<usize>
253 where
254 K: Borrow<Q> + Ord,
255 Q: Ord,
256 {
257 self.key2slot.get(key).copied().map(SlotIndex::index)
258 }
259
260 pub fn get_index(&self, index: usize) -> Option<(&K, &V)> {
262 self.slots.get(index).map(Slot::as_pair)
263 }
264
265 pub fn get_index_mut(&mut self, index: usize) -> Option<(&K, &mut V)> {
267 self.slots.get_mut(index).map(Slot::as_pair_mut)
268 }
269
270 pub fn iter(&self) -> Iter<K, V> {
272 Iter {
273 iter: self.slots.iter(),
274 }
275 }
276
277 pub fn iter_mut(&mut self) -> IterMut<K, V> {
279 IterMut {
280 iter: self.slots.iter_mut(),
281 }
282 }
283
284 pub fn values(&self) -> Values<K, V> {
286 Values {
287 iter: self.slots.iter(),
288 }
289 }
290
291 pub fn values_mut(&mut self) -> ValuesMut<K, V> {
293 ValuesMut {
294 iter: self.slots.iter_mut(),
295 }
296 }
297
298 pub fn clear(&mut self) {
300 self.key2slot.clear();
301 self.slots.clear();
302 }
303}
304
305impl<'a, K, Q, V> Index<&'a Q> for IndexMap<K, V>
306where
307 K: Borrow<Q> + Ord,
308 Q: Ord,
309{
310 type Output = V;
311
312 fn index(&self, key: &'a Q) -> &Self::Output {
313 self.get(key).expect("no entry found for key")
314 }
315}
316
317impl<K, V> Index<usize> for IndexMap<K, V> {
318 type Output = V;
319
320 fn index(&self, index: usize) -> &Self::Output {
321 let (_key, value) = self
322 .get_index(index)
323 .expect("IndexMap: index out of bounds");
324 value
325 }
326}
327
328impl<K, V> IndexMut<usize> for IndexMap<K, V> {
329 fn index_mut(&mut self, index: usize) -> &mut Self::Output {
330 let (_key, value) = self
331 .get_index_mut(index)
332 .expect("IndexMap: index out of bounds");
333 value
334 }
335}
336
337impl<'a, K, V> Extend<(&'a K, &'a V)> for IndexMap<K, V>
338where
339 K: Ord + Copy,
340 V: Copy,
341{
342 fn extend<T>(&mut self, iter: T)
343 where
344 T: IntoIterator<Item = (&'a K, &'a V)>,
345 {
346 self.extend(iter.into_iter().map(|(key, value)| (*key, *value)))
347 }
348}
349
350impl<K, V> Extend<(K, V)> for IndexMap<K, V>
351where
352 K: Ord + Clone,
353{
354 fn extend<T>(&mut self, iter: T)
355 where
356 T: IntoIterator<Item = (K, V)>,
357 {
358 iter.into_iter().for_each(move |(k, v)| {
359 self.insert(k, v);
360 });
361 }
362}
363
364impl<K, V> FromIterator<(K, V)> for IndexMap<K, V>
365where
366 K: Ord + Clone,
367{
368 fn from_iter<T>(iter: T) -> Self
369 where
370 T: IntoIterator<Item = (K, V)>,
371 {
372 let mut map = IndexMap::new();
373 map.extend(iter);
374 map
375 }
376}
377
378impl<K, V, const N: usize> From<[(K, V); N]> for IndexMap<K, V>
379where
380 K: Ord + Clone,
381{
382 fn from(items: [(K, V); N]) -> Self {
383 items.into_iter().collect()
384 }
385}
386
387impl<'a, K, V> IntoIterator for &'a IndexMap<K, V> {
388 type Item = (&'a K, &'a V);
389 type IntoIter = Iter<'a, K, V>;
390
391 fn into_iter(self) -> Self::IntoIter {
392 self.iter()
393 }
394}
395
396impl<'a, K, V> IntoIterator for &'a mut IndexMap<K, V> {
397 type Item = (&'a K, &'a mut V);
398 type IntoIter = IterMut<'a, K, V>;
399
400 fn into_iter(self) -> Self::IntoIter {
401 self.iter_mut()
402 }
403}
404
405impl<K, V> IntoIterator for IndexMap<K, V> {
406 type Item = (K, V);
407 type IntoIter = IntoIter<K, V>;
408
409 fn into_iter(self) -> Self::IntoIter {
410 IntoIter {
411 iter: self.slots.into_iter(),
412 }
413 }
414}
415
416#[derive(Debug, Clone)]
423pub struct Iter<'a, K, V> {
424 iter: SliceIter<'a, Slot<K, V>>,
425}
426
427impl<'a, K, V> Iterator for Iter<'a, K, V> {
428 type Item = (&'a K, &'a V);
429
430 fn size_hint(&self) -> (usize, Option<usize>) {
431 self.iter.size_hint()
432 }
433
434 fn count(self) -> usize {
435 self.iter.count()
436 }
437
438 fn next(&mut self) -> Option<Self::Item> {
439 self.iter.next().map(Slot::as_pair)
440 }
441}
442
443impl<'a, K, V> DoubleEndedIterator for Iter<'a, K, V> {
444 fn next_back(&mut self) -> Option<Self::Item> {
445 self.iter.next_back().map(Slot::as_pair)
446 }
447}
448
449impl<'a, K, V> ExactSizeIterator for Iter<'a, K, V> {
450 fn len(&self) -> usize {
451 self.iter.len()
452 }
453}
454
455impl<'a, K, V> FusedIterator for Iter<'a, K, V> {}
456
457#[derive(Debug)]
464pub struct IterMut<'a, K, V> {
465 iter: SliceIterMut<'a, Slot<K, V>>,
466}
467
468impl<'a, K, V> Iterator for IterMut<'a, K, V> {
469 type Item = (&'a K, &'a mut V);
470
471 fn size_hint(&self) -> (usize, Option<usize>) {
472 self.iter.size_hint()
473 }
474
475 fn count(self) -> usize {
476 self.iter.count()
477 }
478
479 fn next(&mut self) -> Option<Self::Item> {
480 self.iter.next().map(Slot::as_pair_mut)
481 }
482}
483
484impl<'a, K, V> DoubleEndedIterator for IterMut<'a, K, V> {
485 fn next_back(&mut self) -> Option<Self::Item> {
486 self.iter.next_back().map(Slot::as_pair_mut)
487 }
488}
489
490impl<'a, K, V> ExactSizeIterator for IterMut<'a, K, V> {
491 fn len(&self) -> usize {
492 self.iter.len()
493 }
494}
495
496impl<'a, K, V> FusedIterator for IterMut<'a, K, V> {}
497
498#[derive(Debug)]
506pub struct IntoIter<K, V> {
507 iter: VecIntoIter<Slot<K, V>>,
508}
509
510impl<K, V> Iterator for IntoIter<K, V> {
511 type Item = (K, V);
512
513 fn size_hint(&self) -> (usize, Option<usize>) {
514 self.iter.size_hint()
515 }
516
517 fn count(self) -> usize {
518 self.iter.count()
519 }
520
521 fn next(&mut self) -> Option<Self::Item> {
522 self.iter.next().map(Slot::into_pair)
523 }
524}
525
526impl<K, V> DoubleEndedIterator for IntoIter<K, V> {
527 fn next_back(&mut self) -> Option<Self::Item> {
528 self.iter.next_back().map(Slot::into_pair)
529 }
530}
531
532impl<K, V> ExactSizeIterator for IntoIter<K, V> {
533 fn len(&self) -> usize {
534 self.iter.len()
535 }
536}
537
538impl<K, V> FusedIterator for IntoIter<K, V> {}
539
540#[derive(Debug, Clone)]
547pub struct Values<'a, K, V> {
548 iter: SliceIter<'a, Slot<K, V>>,
549}
550
551impl<'a, K, V> Iterator for Values<'a, K, V> {
552 type Item = &'a V;
553
554 fn size_hint(&self) -> (usize, Option<usize>) {
555 self.iter.size_hint()
556 }
557
558 fn count(self) -> usize {
559 self.iter.count()
560 }
561
562 fn next(&mut self) -> Option<Self::Item> {
563 self.iter.next().map(Slot::value)
564 }
565}
566
567impl<'a, K, V> DoubleEndedIterator for Values<'a, K, V> {
568 fn next_back(&mut self) -> Option<Self::Item> {
569 self.iter.next_back().map(Slot::value)
570 }
571}
572
573impl<'a, K, V> ExactSizeIterator for Values<'a, K, V> {
574 fn len(&self) -> usize {
575 self.iter.len()
576 }
577}
578
579impl<'a, K, V> FusedIterator for Values<'a, K, V> {}
580
581#[derive(Debug)]
588pub struct ValuesMut<'a, K, V> {
589 iter: SliceIterMut<'a, Slot<K, V>>,
590}
591
592impl<'a, K, V> Iterator for ValuesMut<'a, K, V> {
593 type Item = &'a mut V;
594
595 fn size_hint(&self) -> (usize, Option<usize>) {
596 self.iter.size_hint()
597 }
598
599 fn count(self) -> usize {
600 self.iter.count()
601 }
602
603 fn next(&mut self) -> Option<Self::Item> {
604 self.iter.next().map(Slot::value_mut)
605 }
606}
607
608impl<'a, K, V> DoubleEndedIterator for ValuesMut<'a, K, V> {
609 fn next_back(&mut self) -> Option<Self::Item> {
610 self.iter.next_back().map(Slot::value_mut)
611 }
612}
613
614impl<'a, K, V> ExactSizeIterator for ValuesMut<'a, K, V> {
615 fn len(&self) -> usize {
616 self.iter.len()
617 }
618}
619
620impl<'a, K, V> FusedIterator for ValuesMut<'a, K, V> {}
621
622pub enum Entry<'a, K, V> {
628 Vacant(VacantEntry<'a, K, V>),
630 Occupied(OccupiedEntry<'a, K, V>),
632}
633
634impl<'a, K: Ord, V> Entry<'a, K, V> {
635 pub fn or_insert(self, default: V) -> &'a mut V
638 where
639 K: Clone,
640 {
641 match self {
642 Self::Occupied(entry) => entry.into_mut(),
643 Self::Vacant(entry) => entry.insert(default),
644 }
645 }
646
647 pub fn or_insert_with<F: FnOnce() -> V>(self, default: F) -> &'a mut V
651 where
652 K: Clone,
653 {
654 match self {
655 Self::Occupied(entry) => entry.into_mut(),
656 Self::Vacant(entry) => entry.insert(default()),
657 }
658 }
659
660 pub fn or_insert_with_key<F: FnOnce(&K) -> V>(self, default: F) -> &'a mut V
671 where
672 K: Clone,
673 {
674 match self {
675 Self::Occupied(entry) => entry.into_mut(),
676 Self::Vacant(entry) => {
677 let value = default(entry.key());
678 entry.insert(value)
679 }
680 }
681 }
682
683 pub fn key(&self) -> &K {
685 match *self {
686 Self::Occupied(ref entry) => entry.key(),
687 Self::Vacant(ref entry) => entry.key(),
688 }
689 }
690
691 pub fn and_modify<F>(self, f: F) -> Self
694 where
695 F: FnOnce(&mut V),
696 {
697 match self {
698 Self::Occupied(mut entry) => {
699 f(entry.get_mut());
700 Self::Occupied(entry)
701 }
702 Self::Vacant(entry) => Self::Vacant(entry),
703 }
704 }
705}
706
707impl<'a, K, V> Entry<'a, K, V>
708where
709 K: Ord + Clone,
710 V: Default,
711{
712 pub fn or_default(self) -> &'a mut V {
715 match self {
716 Self::Occupied(entry) => entry.into_mut(),
717 Self::Vacant(entry) => entry.insert(Default::default()),
718 }
719 }
720}
721
722impl<'a, K, V> fmt::Debug for Entry<'a, K, V>
723where
724 K: fmt::Debug + Ord,
725 V: fmt::Debug,
726{
727 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
728 match self {
729 Entry::Vacant(entry) => entry.fmt(f),
730 Entry::Occupied(entry) => entry.fmt(f),
731 }
732 }
733}
734
735pub struct VacantEntry<'a, K, V> {
737 vacant: btree_map::VacantEntry<'a, K, SlotIndex>,
739 slots: &'a mut Vec<Slot<K, V>>,
741}
742
743impl<'a, K, V> VacantEntry<'a, K, V>
744where
745 K: Ord,
746{
747 pub fn key(&self) -> &K {
749 self.vacant.key()
750 }
751
752 pub fn into_key(self) -> K {
754 self.vacant.into_key()
755 }
756
757 pub fn insert(self, value: V) -> &'a mut V
760 where
761 K: Clone,
762 {
763 let index = self.slots.len();
764 let key = self.vacant.key().clone();
765 self.vacant.insert(SlotIndex(index));
766 self.slots.push(Slot::new(key, value));
767 &mut self.slots[index].value
768 }
769}
770
771impl<'a, K, V> fmt::Debug for VacantEntry<'a, K, V>
772where
773 K: fmt::Debug + Ord,
774{
775 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
776 f.debug_struct("VacantEntry")
777 .field("key", self.key())
778 .finish()
779 }
780}
781
782pub struct OccupiedEntry<'a, K, V> {
784 occupied: btree_map::OccupiedEntry<'a, K, SlotIndex>,
786 slots: &'a mut Vec<Slot<K, V>>,
788}
789
790impl<'a, K, V> OccupiedEntry<'a, K, V>
791where
792 K: Ord,
793{
794 pub fn key(&self) -> &K {
796 self.occupied.key()
797 }
798
799 pub fn get(&self) -> &V {
801 let index = self.occupied.get().index();
802 &self.slots[index].value
803 }
804
805 pub fn get_mut(&mut self) -> &mut V {
812 let index = self.occupied.get().index();
813 &mut self.slots[index].value
814 }
815
816 pub fn into_mut(self) -> &'a mut V {
822 let index = self.occupied.get().index();
823 &mut self.slots[index].value
824 }
825
826 pub fn insert(&mut self, value: V) -> V
829 where
830 K: Clone,
831 {
832 let index = self.occupied.get().index();
833 let key = self.key().clone();
834 let new_slot = Slot::new(key, value);
835 let old_slot = replace(&mut self.slots[index], new_slot);
836 old_slot.value
837 }
838}
839
840impl<'a, K, V> fmt::Debug for OccupiedEntry<'a, K, V>
841where
842 K: fmt::Debug + Ord,
843 V: fmt::Debug,
844{
845 fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
846 f.debug_struct("OccupiedEntry")
847 .field("key", self.key())
848 .field("value", self.get())
849 .finish()
850 }
851}