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
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
//! Collections of objects with typed indices and buildin identifier support.
//!
//! # Features
//!
//! With the feature `expose-inner`, you might be able to access information
//! on some of the internals of the implementation.

use crate::error::Error;
use derivative::Derivative;
use std::{
    borrow::Borrow,
    cmp::Ordering,
    collections::{hash_map::Entry::*, HashMap},
    iter,
    marker::PhantomData,
    ops, slice,
};
use tracing::warn;

/// An object that can be assigned an identifier.
pub trait WithId {
    /// Set an identifier and returns the object.
    fn with_id(id: &str) -> Self;
}

/// An object that has a unique identifier.
pub trait Id<T> {
    /// Returns the unique identifier.
    fn id(&self) -> &str;

    /// Set the identifier
    fn set_id(&mut self, id: String);
}

/// Typed index.
#[derive(Derivative, Debug)]
#[derivative(
    Copy(bound = ""),
    Clone(bound = ""),
    PartialEq(bound = ""),
    Eq(bound = ""),
    Hash(bound = "")
)]
pub struct Idx<T>(u32, PhantomData<T>);

impl<T> Idx<T> {
    fn new(idx: usize) -> Self {
        Idx(idx as u32, PhantomData)
    }
    #[cfg(not(feature = "expose-inner"))]
    fn get(self) -> usize {
        self.0 as usize
    }
    #[cfg(feature = "expose-inner")]
    /// Get the inner `usize` index of the object pointed to by the [`Idx<T>`] instance.
    ///
    /// Under the hood, [`CollectionWithId`] stores all the object in a [`Vec`],
    /// the index being returned is therefore the position of the object inside this [`Vec`].
    ///
    /// # Warning
    ///
    /// Note that the real inner value is a [`u32`], then cast to a [`usize]`.
    /// This might cause a `panic` on some platforms if the size of [`usize`] is smaller than a [`u32`].
    pub fn get(self) -> usize {
        self.0 as usize
    }
}
impl<T> Ord for Idx<T> {
    fn cmp(&self, other: &Self) -> Ordering {
        self.0.cmp(&other.0)
    }
}
impl<T> PartialOrd for Idx<T> {
    fn partial_cmp(&self, other: &Self) -> Option<Ordering> {
        Some(self.cmp(other))
    }
}

/// The `Collection` object looks like a `Map<Idx<T>, T>`, with opaque
/// keys.  Then, you can easily store indices and don't mess up
/// between different types of indices.
#[derive(Debug, Derivative, Clone)]
#[derivative(Default(bound = ""))]
pub struct Collection<T> {
    objects: Vec<T>,
}

/// Creates a `Collection` from one element.
///
/// # Examples
///
/// ```
/// use typed_index_collection::Collection;
///
/// let collection: Collection<i32> = Collection::from(42);
/// assert_eq!(1, collection.len());
///
/// let integer = collection.into_iter().next().unwrap();
/// assert_eq!(42, integer);
/// ```
impl<T> From<T> for Collection<T> {
    fn from(object: T) -> Self {
        Collection::new(vec![object])
    }
}

impl<T: PartialEq> PartialEq for Collection<T> {
    fn eq(&self, other: &Collection<T>) -> bool {
        self.objects == other.objects
    }
}

impl<T> Collection<T> {
    /// Creates the `Collection` from a `Vec`.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::Collection;
    ///
    /// let _: Collection<i32> = Collection::new(vec![1, 1, 2, 3, 5, 8]);
    /// ```
    pub fn new(v: Vec<T>) -> Self {
        Collection { objects: v }
    }

    /// Returns the number of elements in the collection, also referred to as its 'length'.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::Collection;
    ///
    /// let c: Collection<i32> = Collection::new(vec![1, 1, 2, 3, 5, 8]);
    /// assert_eq!(6, c.len());
    /// ```
    pub fn len(&self) -> usize {
        self.objects.len()
    }

    /// Iterates over the `(Idx<T>, &T)` of the `Collection`.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{Collection, Idx};
    ///
    /// let c: Collection<i32> = Collection::new(vec![1, 1, 2, 3, 5, 8]);
    /// let (k, v): (Idx<i32>, &i32) = c.iter().nth(4).unwrap();
    /// assert_eq!(&5, v);
    /// assert_eq!(&5, &c[k]);
    /// ```
    pub fn iter(&self) -> Iter<'_, T> {
        self.objects
            .iter()
            .enumerate()
            .map(|(idx, obj)| (Idx::new(idx), obj))
    }

    /// Iterates over the `&T` of the `Collection`.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::Collection;
    ///
    /// let c: Collection<i32> = Collection::new(vec![1, 1, 2, 3, 5, 8]);
    /// let values: Vec<&i32> = c.values().collect();
    /// assert_eq!(vec![&1, &1, &2, &3, &5, &8], values);
    /// ```
    pub fn values(&self) -> slice::Iter<'_, T> {
        self.objects.iter()
    }

    /// Iterates over the `&mut T` of the `Collection`.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::Collection;
    ///
    /// let mut c: Collection<i32> = Collection::new(vec![1, 1, 2, 3, 5, 8]);
    /// for elem in c.values_mut() {
    ///     *elem *= 2;
    /// }
    /// assert_eq!(Collection::new(vec![2, 2, 4, 6, 10, 16]), c);
    /// ```
    pub fn values_mut(&mut self) -> slice::IterMut<'_, T> {
        self.objects.iter_mut()
    }

    /// Iterates on the objects corresponding to the given indices.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{Collection, Idx};
    /// use std::collections::BTreeSet;
    ///
    /// # fn get_transit_indices(c: &Collection<&'static str>) -> BTreeSet<Idx<&'static str>> {
    /// #     c.iter()
    /// #         .filter(|&(_, &v)| v != "bike" && v != "walking" && v != "car")
    /// #         .map(|(k, _)| k)
    /// #         .collect()
    /// # }
    /// let c = Collection::new(vec!["bike", "bus", "walking", "car", "metro", "train"]);
    /// let transit_indices: BTreeSet<Idx<&str>> = get_transit_indices(&c);
    /// let transit_refs: Vec<&&str> = c.iter_from(&transit_indices).collect();
    /// assert_eq!(vec![&"bus", &"metro", &"train"], transit_refs);
    /// ```
    pub fn iter_from<I>(&self, indexes: I) -> impl Iterator<Item = &T>
    where
        I: IntoIterator,
        I::Item: Borrow<Idx<T>>,
    {
        indexes
            .into_iter()
            .map(move |item| &self.objects[item.borrow().get()])
    }

    /// Push an element in the `Collection` without control.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{Collection, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// let mut c = Collection::default();
    /// let foo_idx = c.push(Obj("foo"));
    /// let bar_idx = c.push(Obj("bar"));
    /// assert_eq!(&Obj("foo"), &c[foo_idx]);
    /// assert_ne!(&Obj("bar"), &c[foo_idx]);
    /// ```
    pub fn push(&mut self, item: T) -> Idx<T> {
        let next_index = self.objects.len();
        self.objects.push(item);
        Idx::new(next_index)
    }

    /// Merge a `Collection` parameter into the current one.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::Collection;
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// let mut c1 = Collection::from(Obj("foo"));
    /// let c2 = Collection::from(Obj("bar"));
    /// c1.merge(c2);
    /// assert_eq!(2, c1.len());
    /// ```
    pub fn merge(&mut self, other: Self) {
        for item in other {
            self.push(item);
        }
    }

    /// Takes the corresponding vector without clones or allocation,
    /// leaving `self` empty.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::Collection;
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// let mut c = Collection::new(vec![Obj("foo"), Obj("bar")]);
    /// let v = c.take();
    /// assert_eq!(vec![Obj("foo"), Obj("bar")], v);
    /// assert_eq!(0, c.len());
    /// ```
    pub fn take(&mut self) -> Vec<T> {
        ::std::mem::take(&mut self.objects)
    }

    // Return true if the collection has no objects.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::Collection;
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj;
    ///
    /// let mut c: Collection<Obj> = Collection::default();
    /// assert!(c.is_empty());
    /// ```
    pub fn is_empty(&self) -> bool {
        self.objects.is_empty()
    }

    /// Retains the elements matching predicate parameter from the current `CollectionWithId` object
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::Collection;
    /// use std::collections::HashSet;
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// let mut c = Collection::new(vec![Obj("foo"), Obj("bar"), Obj("qux")]);
    /// let mut ids_to_keep: HashSet<String> = HashSet::new();
    /// ids_to_keep.insert("foo".to_string());
    /// ids_to_keep.insert("qux".to_string());
    /// c.retain(|item| ids_to_keep.contains(item.0));
    /// assert_eq!(2, c.len());
    /// assert_eq!(vec!["foo", "qux"], c.values().map(|obj| obj.0).collect::<Vec<&str>>());
    /// ```
    pub fn retain<F: FnMut(&T) -> bool>(&mut self, f: F) {
        let mut purged = self.take();
        purged.retain(f);
        *self = Self::new(purged);
    }
}

/// The type returned by `collection::iter`.
pub type Iter<'a, T> =
    iter::Map<iter::Enumerate<slice::Iter<'a, T>>, fn((usize, &T)) -> (Idx<T>, &T)>;

impl<'a, T> IntoIterator for &'a Collection<T> {
    type Item = (Idx<T>, &'a T);
    type IntoIter = Iter<'a, T>;

    fn into_iter(self) -> Iter<'a, T> {
        self.iter()
    }
}

impl<T> IntoIterator for Collection<T> {
    type Item = T;
    type IntoIter = ::std::vec::IntoIter<T>;

    fn into_iter(self) -> Self::IntoIter {
        self.objects.into_iter()
    }
}

impl<T> ops::Index<Idx<T>> for Collection<T> {
    type Output = T;
    fn index(&self, index: Idx<T>) -> &Self::Output {
        &self.objects[index.get()]
    }
}

impl<T> ops::IndexMut<Idx<T>> for Collection<T> {
    /// Access a mutable reference on an entry of the `Collection` from its
    /// `Idx`.
    ///
    /// ```
    /// # use std::ops::IndexMut;
    /// use typed_index_collection::Collection;
    ///
    /// let mut c = Collection::new(vec![-2, -1, 0, 1, 2]);
    /// let negatives_idxs = c
    ///     .iter()
    ///     .filter(|(_, &v)| v < 0)
    ///     .map(|(idx, _)| idx)
    ///     .collect::<Vec<_>>();
    /// for idx in negatives_idxs {
    ///     *c.index_mut(idx) = 0;
    /// }
    /// assert_eq!(vec![0, 0, 0, 1, 2], c.take());
    /// ```
    fn index_mut(&mut self, idx: Idx<T>) -> &mut T {
        &mut self.objects[idx.get()]
    }
}

impl<T> ::serde::Serialize for Collection<T>
where
    T: ::serde::Serialize,
{
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: ::serde::Serializer,
    {
        self.objects.serialize(serializer)
    }
}
impl<'de, T> ::serde::Deserialize<'de> for Collection<T>
where
    T: ::serde::Deserialize<'de>,
{
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: ::serde::Deserializer<'de>,
    {
        ::serde::Deserialize::deserialize(deserializer).map(Collection::new)
    }
}

/// A `Collection` with identifier support.
#[derive(Debug, Derivative, Clone)]
#[derivative(Default(bound = ""))]
pub struct CollectionWithId<T> {
    collection: Collection<T>,
    id_to_idx: HashMap<String, Idx<T>>,
}

/// Creates a `CollectionWithId` from one element.
///
/// # Examples
///
/// ```
/// use typed_index_collection::{CollectionWithId, Id};
///
/// #[derive(PartialEq, Debug)]
/// struct Obj(&'static str);
///
/// impl Id<Obj> for Obj {
///     fn id(&self) -> &str { self.0 }
///     fn set_id(&mut self, id: String) { unimplemented!(); }
/// }
///
/// let collection: CollectionWithId<Obj> = CollectionWithId::from(Obj("some_id"));
/// assert_eq!(1, collection.len());
/// let obj = collection.into_iter().next().unwrap();
/// assert_eq!("some_id", obj.id());
/// ```
impl<T: Id<T>> From<T> for CollectionWithId<T> {
    fn from(object: T) -> Self {
        // This cannot fail since there will be a unique identifier in the
        // collection hence no identifier's collision.
        CollectionWithId::new(vec![object]).unwrap()
    }
}

impl<T: Id<T>> CollectionWithId<T> {
    /// Creates a `CollectionWithId` from a `Vec`. Fails if there is
    /// duplicates in identifiers.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let c = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// assert_eq!(2, c.len());
    /// assert_eq!(Some(&Obj("foo")), c.get("foo"));
    /// assert!(CollectionWithId::new(vec![Obj("foo"), Obj("foo")]).is_err());
    pub fn new(mut v: Vec<T>) -> std::result::Result<Self, Error<T>> {
        let mut id_to_idx = HashMap::default();
        for (i, obj) in v.iter().enumerate() {
            if id_to_idx
                .insert(obj.id().to_string(), Idx::new(i))
                .is_some()
            {
                return Err(Error::IdentifierAlreadyExists(v.swap_remove(i)));
            }
        }
        Ok(CollectionWithId {
            collection: Collection::new(v),
            id_to_idx,
        })
    }

    /// Get a reference to the `String` to `Idx<T>` internal mapping.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    /// use std::collections::HashMap;
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let c = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// assert_eq!(2, c.len());
    /// assert_eq!(2, c.get_id_to_idx().len());
    /// ```
    pub fn get_id_to_idx(&self) -> &HashMap<String, Idx<T>> {
        &self.id_to_idx
    }

    /// Iterate over the list of indexes of the [`CollectionWithId`].
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    /// use std::collections::HashMap;
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let c = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// let mut indexes = c.indexes();
    /// let next_index = indexes.next().unwrap();
    /// assert_eq!("foo", c[next_index].id());
    /// let next_index = indexes.next().unwrap();
    /// assert_eq!("bar", c[next_index].id());
    /// assert_eq!(None, indexes.next());
    /// ```
    pub fn indexes(&self) -> impl Iterator<Item = Idx<T>> {
        // NOTE: do not use `self.id_to_idx.values().copied()
        // because `HashMap::values()` returns in randomized order
        (0..self.collection.objects.len()).map(Idx::new)
    }

    /// Access to a mutable reference of the corresponding object.
    ///
    /// The `drop` of the proxy object panic if the identifier is
    /// modified to an identifier already on the collection.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let mut c = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// let idx = c.get_idx("foo").unwrap();
    /// c.index_mut(idx).0 = "baz";
    /// assert!(!c.contains_id("foo"));
    /// assert_eq!(Some(&Obj("baz")), c.get("baz"));
    /// ```
    ///
    /// ```should_panic
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let mut c = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// let idx = c.get_idx("foo").unwrap();
    /// c.index_mut(idx).0 = "bar"; // panic
    /// ```
    pub fn index_mut(&mut self, idx: Idx<T>) -> RefMut<'_, T> {
        RefMut {
            idx,
            old_id: self.objects[idx.get()].id().to_string(),
            collection: self,
        }
    }

    /// Returns an option of a mutable reference of the corresponding object.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let mut c = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// c.get_mut("foo").unwrap().0 = "baz";
    /// assert!(!c.contains_id("foo"));
    /// assert_eq!(Some(&Obj("baz")), c.get("baz"));
    /// ```
    pub fn get_mut(&mut self, id: &str) -> Option<RefMut<'_, T>> {
        self.get_idx(id).map(move |idx| self.index_mut(idx))
    }

    /// Push an element in the `CollectionWithId`.  Fails if the
    /// identifier of the new object is already in the collection.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let mut c = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// let baz_idx = c.push(Obj("baz")).unwrap();
    /// assert_eq!(&Obj("baz"), &c[baz_idx]);
    /// assert!(c.push(Obj("baz")).is_err());
    ///
    /// let foobar_idx = c.push(Obj("foobar")).unwrap();
    /// assert_eq!(&Obj("baz"), &c[baz_idx]);
    /// assert_eq!(&Obj("foobar"), &c[foobar_idx]);
    /// ```
    pub fn push(&mut self, item: T) -> std::result::Result<Idx<T>, Error<T>> {
        let next_index = self.collection.objects.len();
        let idx = Idx::new(next_index);
        match self.id_to_idx.entry(item.id().to_string()) {
            Occupied(_) => Err(Error::IdentifierAlreadyExists(item)),
            Vacant(v) => {
                v.insert(idx);
                self.collection.objects.push(item);
                Ok(idx)
            }
        }
    }

    /// Retains the elements matching predicate parameter from the current `CollectionWithId` object
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    /// use std::collections::HashSet;
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let mut c = CollectionWithId::new(vec![Obj("foo"), Obj("bar"), Obj("qux")]).unwrap();
    /// let mut ids_to_keep: HashSet<String> = HashSet::new();
    /// ids_to_keep.insert("foo".to_string());
    /// ids_to_keep.insert("qux".to_string());
    /// c.retain(|item| ids_to_keep.contains(item.id()));
    /// assert_eq!(2, c.len());
    /// assert_eq!(Some(&Obj("foo")), c.get("foo"));
    /// assert_eq!(Some(&Obj("qux")), c.get("qux"));
    /// ```
    pub fn retain<F: FnMut(&T) -> bool>(&mut self, f: F) {
        let mut purged = self.take();
        purged.retain(f);
        *self = Self::new(purged).unwrap(); // can't fail as we have a subset of a valid Collection
    }

    /// Merge a `CollectionWithId` parameter into the current one. Fails if any identifier into the
    /// `CollectionWithId` parameter is already in the collection.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let mut c1 = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// let mut c2 = CollectionWithId::new(vec![Obj("foo"), Obj("qux")]).unwrap();
    /// let mut c3 = CollectionWithId::new(vec![Obj("corge"), Obj("grault")]).unwrap();
    /// assert!(c1.try_merge(c2).is_err());
    ///
    /// c1.try_merge(c3);
    /// assert_eq!(4, c1.len());
    /// ```
    pub fn try_merge(&mut self, other: Self) -> std::result::Result<(), Error<T>> {
        for item in other {
            self.push(item)?;
        }
        Ok(())
    }

    /// Merge a `CollectionWithId` parameter into the current one. If any identifier into the
    /// `CollectionWithId` parameter is already in the collection, `CollectionWithId` is not added.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let mut c1 = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// let mut c2 = CollectionWithId::new(vec![Obj("foo"), Obj("qux")]).unwrap();
    /// c1.merge(c2);
    /// assert_eq!(3, c1.len());
    /// ```
    pub fn merge(&mut self, other: Self) {
        for item in other {
            let _ = self.push(item);
        }
    }

    /// Merge all elements of an `Iterator` into the current `CollectionWithId`.
    /// If any identifier of an inserted element is already in the collection,
    /// the closure is called, with first parameter being the element with this
    /// identifier already in the collection, and the second parameter is the
    /// element to be inserted.
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(Debug, Default)]
    /// struct ObjectId {
    ///    id: &'static str,
    ///    name: &'static str,
    /// }
    ///
    /// impl Id<ObjectId> for ObjectId {
    ///    fn id(&self) -> &str {
    ///        self.id
    ///    }
    ///    fn set_id(&mut self, _id: String) {
    ///        unimplemented!()
    ///    }
    /// }
    ///
    /// let mut collection = CollectionWithId::default();
    /// let _ = collection.push(ObjectId {
    ///     id: "foo",
    ///     name: "Bob",
    /// });
    /// let vec = vec![ObjectId {
    ///     id: "bar",
    ///     name: "SpongeBob SquarePants",
    /// }];
    /// // Merge without collision of identifiers
    /// collection.merge_with(vec, |_, _| {
    ///   // Should never come here
    ///   assert!(false);
    /// });
    /// assert!(collection.get("bar").is_some());
    ///
    /// let vec = vec![ObjectId {
    ///     id: "foo",
    ///     name: "Bob Marley",
    /// }];
    /// // Merge with collision of identifiers
    /// collection.merge_with(vec, |source, to_merge| {
    ///     source.name = to_merge.name;
    /// });
    /// let foo = collection.get("foo").unwrap();
    /// assert_eq!("Bob Marley", foo.name);
    /// ```
    pub fn merge_with<I, F>(&mut self, iterator: I, mut f: F)
    where
        F: FnMut(&mut T, &T),
        I: IntoIterator<Item = T>,
    {
        for e in iterator {
            if let Some(mut source) = self.get_mut(e.id()) {
                use std::ops::DerefMut;
                f(source.deref_mut(), &e);
                continue;
            }
            self.push(e).unwrap();
        }
    }

    // Return true if the collection has no objects.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let mut c: CollectionWithId<Obj> = CollectionWithId::default();
    /// assert!(c.is_empty());
    /// ```
    pub fn is_empty(&self) -> bool {
        self.collection.is_empty()
    }
}

impl<T: Id<T> + WithId> CollectionWithId<T> {
    /// Get a mutable reference of the corresponding object or create it
    ///
    /// # Examples
    ///
    /// ```
    /// # use typed_index_collection::{CollectionWithId, Id, WithId};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(String);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { &self.0 }
    ///     fn set_id(&mut self, id: String) { self.0 = id; }
    /// }
    ///
    /// impl WithId for Obj {
    ///     fn with_id(id: &str) -> Self {
    ///         let mut r = Obj("id".into());
    ///         r.0 = id.to_owned();
    ///         r
    ///     }
    /// }
    ///
    /// let mut c = CollectionWithId::from(Obj("1".into()));
    /// let obj = c.get_or_create("2");
    /// assert_eq!("2", obj.0);
    /// ```
    pub fn get_or_create<'a>(&'a mut self, id: &str) -> RefMut<'a, T> {
        self.get_or_create_with(id, || T::with_id(id))
    }
}

impl<T: Id<T>> CollectionWithId<T> {
    /// Get a mutable reference of the corresponding object or create it
    /// and apply a function on it.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id, WithId};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(String, String);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { &self.0 }
    ///     fn set_id(&mut self, id: String) { self.0 = id; }
    /// }
    ///
    /// impl WithId for Obj {
    ///     fn with_id(id: &str) -> Self {
    ///         let mut r = Obj("id".into(), "name".into());
    ///         r.0 = id.to_owned();
    ///         r
    ///     }
    /// }
    ///
    /// let mut c = CollectionWithId::from(Obj("1".into(), "foo".into()));
    /// let obj = c.get_or_create_with("2", || Obj("bob".into(), "bar".into()));
    /// assert_eq!("2", obj.0);
    /// assert_eq!("bar", obj.1);
    /// ```
    pub fn get_or_create_with<'a, F>(&'a mut self, id: &str, mut f: F) -> RefMut<'a, T>
    where
        F: FnMut() -> T,
    {
        let elt = self.get_idx(id).unwrap_or_else(|| {
            let mut o = f();

            o.set_id(id.to_string());
            self.push(o).unwrap()
        });
        self.index_mut(elt)
    }
}

impl<T: Id<T>> iter::Extend<T> for CollectionWithId<T> {
    /// Extend a `CollectionWithId` with the content of an iterator of
    /// CollectionWithId without duplicated ids.
    ///
    /// # Examples
    ///
    /// ```
    /// # testing_logger::setup();
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let mut c1 = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// let mut c2 = CollectionWithId::new(vec![Obj("foo"), Obj("qux")]).unwrap();
    /// c1.extend(c2);
    /// assert_eq!(3, c1.len());
    /// testing_logger::validate(|captured_logs| {
    ///   assert!(captured_logs[0].level == tracing::log::Level::Warn);
    ///   assert!(captured_logs[0].body.contains("identifier foo already exists"));
    /// });
    /// ```
    fn extend<I: IntoIterator<Item = T>>(&mut self, iter: I) {
        for item in iter {
            match self.push(item) {
                Ok(val) => val,
                Err(e) => {
                    warn!("{}", e);
                    continue;
                }
            };
        }
    }
}

impl<T> CollectionWithId<T> {
    /// Returns true if the collection contains a value for the specified id.
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let c = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// assert!(c.contains_id("foo"));
    /// assert!(!c.contains_id("baz"));
    /// ```
    pub fn contains_id(&self, id: &str) -> bool {
        self.id_to_idx.contains_key(id)
    }

    /// Returns the index corresponding to the identifier.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let c = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// let idx = c.get_idx("foo").unwrap();
    /// assert_eq!(&Obj("foo"), &c[idx]);
    /// assert!(c.get_idx("baz").is_none());
    /// ```
    pub fn get_idx(&self, id: &str) -> Option<Idx<T>> {
        self.id_to_idx.get(id).cloned()
    }

    /// Returns a reference to the object corresponding to the
    /// identifier.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let c = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// assert_eq!(Some(&Obj("foo")), c.get("foo"));
    /// assert!(!c.contains_id("baz"));
    /// ```
    pub fn get(&self, id: &str) -> Option<&T> {
        self.get_idx(id).map(|idx| &self[idx])
    }

    /// Converts `self` into a vector without clones or allocation.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let c = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// let v = c.into_vec();
    /// assert_eq!(vec![Obj("foo"), Obj("bar")], v);
    /// ```
    pub fn into_vec(self) -> Vec<T> {
        self.collection.objects
    }

    /// Takes the corresponding vector without clones or allocation,
    /// leaving `self` empty.
    ///
    /// # Examples
    ///
    /// ```
    /// use typed_index_collection::{CollectionWithId, Id};
    ///
    /// #[derive(PartialEq, Debug)]
    /// struct Obj(&'static str);
    ///
    /// impl Id<Obj> for Obj {
    ///     fn id(&self) -> &str { self.0 }
    ///     fn set_id(&mut self, id: String) { unimplemented!(); }
    /// }
    ///
    /// let mut c = CollectionWithId::new(vec![Obj("foo"), Obj("bar")]).unwrap();
    /// let v = c.take();
    /// assert_eq!(vec![Obj("foo"), Obj("bar")], v);
    /// assert_eq!(0, c.len());
    /// ```
    pub fn take(&mut self) -> Vec<T> {
        self.id_to_idx.clear();
        ::std::mem::take(&mut self.collection.objects)
    }
}

/// The structure returned by `CollectionWithId::index_mut`.
pub struct RefMut<'a, T: Id<T>> {
    idx: Idx<T>,
    collection: &'a mut CollectionWithId<T>,
    old_id: String,
}
impl<'a, T: Id<T>> ops::DerefMut for RefMut<'a, T> {
    fn deref_mut(&mut self) -> &mut T {
        &mut self.collection.collection.objects[self.idx.get()]
    }
}
impl<'a, T: Id<T>> ops::Deref for RefMut<'a, T> {
    type Target = T;
    fn deref(&self) -> &T {
        &self.collection.objects[self.idx.get()]
    }
}
impl<'a, T: Id<T>> Drop for RefMut<'a, T> {
    fn drop(&mut self) {
        if self.id() != self.old_id {
            self.collection.id_to_idx.remove(&self.old_id);
            let new_id = self.id().to_string();
            assert!(
                self.collection.id_to_idx.insert(new_id, self.idx).is_none(),
                "changing id {} to {} already used",
                self.old_id,
                self.id()
            );
        }
    }
}

impl<T: PartialEq> PartialEq for CollectionWithId<T> {
    fn eq(&self, other: &CollectionWithId<T>) -> bool {
        self.collection == other.collection
    }
}

impl<T> ops::Deref for CollectionWithId<T> {
    type Target = Collection<T>;
    fn deref(&self) -> &Collection<T> {
        &self.collection
    }
}

impl<'a, T> IntoIterator for &'a CollectionWithId<T> {
    type Item = (Idx<T>, &'a T);
    type IntoIter = Iter<'a, T>;

    fn into_iter(self) -> Self::IntoIter {
        self.iter()
    }
}

impl<T> IntoIterator for CollectionWithId<T> {
    type Item = T;
    type IntoIter = ::std::vec::IntoIter<T>;

    fn into_iter(self) -> Self::IntoIter {
        self.collection.into_iter()
    }
}

impl<T> ::serde::Serialize for CollectionWithId<T>
where
    T: ::serde::Serialize + Id<T>,
{
    fn serialize<S>(&self, serializer: S) -> Result<S::Ok, S::Error>
    where
        S: ::serde::Serializer,
    {
        self.objects.serialize(serializer)
    }
}
impl<'de, T> ::serde::Deserialize<'de> for CollectionWithId<T>
where
    T: ::serde::Deserialize<'de> + Id<T>,
{
    fn deserialize<D>(deserializer: D) -> Result<Self, D::Error>
    where
        D: ::serde::Deserializer<'de>,
    {
        use serde::de::Error;
        ::serde::Deserialize::deserialize(deserializer)
            .and_then(|v| CollectionWithId::new(v).map_err(D::Error::custom))
    }
}