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
//! [![Crate](https://img.shields.io/crates/v/bumpy_vector.svg)](https://crates.io/crates/bumpy_vector)
//!
//! A vector-like object where elements can be larger than one item. We use
//! this primarily to represent objects in a binary that are made up of one
//! or more bytes.
//!
//! # Goal
//!
//! [h2gb](https://github.com/h2gb/libh2gb) is a tool for analyzing binary
//! files. Importantly, a binary file is a series of objects, each of which
//! take up some number of bytes. We need a datatype to represent this unusual
//! requirement, hence coming up with BumpyVector!
//!
//! # Usage
//!
//! Instantiate with a maximum size, then use somewhat like a vector:
//!
//! ```
//! use bumpy_vector::{BumpyEntry, BumpyVector};
//!
//! // Instantiate with a maximum size of 100 and a type of String
//! let mut v: BumpyVector<String> = BumpyVector::new(100);
//!
//! // Create a 10-byte entry at the start
//! let entry: BumpyEntry<String> = BumpyEntry {
//!   entry: String::from("hello"),
//!   size: 10,
//!   index: 0,
//! };
//!
//! // Insert it into the BumpyVector
//! assert!(v.insert(entry).is_ok());
//!
//! // Create another entry, this time from a tuple, that overlaps the first
//! let entry: BumpyEntry<String> = (String::from("error"), 1, 5).into();
//! assert!(v.insert(entry).is_err());
//!
//! // Create an entry that's off the end of the object
//! let entry: BumpyEntry<String> = (String::from("error"), 1000, 5).into();
//! assert!(v.insert(entry).is_err());
//!
//! // There is still one entry in this vector
//! assert_eq!(1, v.len());
//! ```
//!
//! # Serialize / deserialize
//!
//! When installed with the 'serialize' feature:
//!
//! ```toml
//! bumpy_vector = { version = "~0.0.0", features = ["serialize"] }
//! ```
//!
//! Serialization support using [serde](https://serde.rs/) is enabled. The
//! `BumpyVector` can be serialized with any of the serializers that Serde
//! supports, such as [ron](https://github.com/ron-rs/ron):
//!
//! ```ignore
//! use bumpy_vector::BumpyVector;
//!
//! // Assumes "serialize" feature is enabled: `bumpy_vector = { features = ["serialize"] }`
//! fn main() {
//!     let mut h: BumpyVector<String> = BumpyVector::new(10);
//!     h.insert((String::from("a"), 1, 2).into()).unwrap();
//!
//!     // Serialize
//!     let serialized = ron::ser::to_string(&h).unwrap();
//!
//!     // Deserialize
//!     let h: BumpyVector<String> = ron::de::from_str(&serialized).unwrap();
//! }
//! ```

use std::collections::HashMap;

#[cfg(feature = "serialize")]
use serde::{Serialize, Deserialize};

/// Represents a single entry.
///
/// An entry is comprised of an object of type `T`, a starting index, and a
/// size.
///
/// # Example 1
///
/// Creating a basic entry is very straight forward:
///
/// ```
/// use bumpy_vector::BumpyEntry;
///
/// let e: BumpyEntry<&str> = BumpyEntry {
///   entry: "hello",
///   index: 0,
///   size: 1,
/// };
/// ```
///
/// # Example 2
///
/// For convenience, you can create an entry from a (T, usize, usize) tuple:
///
/// ```
/// use bumpy_vector::BumpyEntry;
///
/// let e: BumpyEntry<&str> = ("hello", 0, 1).into();
/// ```
#[derive(Debug, Default, Clone)]
#[cfg_attr(feature = "serialize", derive(Serialize, Deserialize))]
pub struct BumpyEntry<T> {
    pub entry: T,
    pub index: usize,
    pub size: usize,
}

impl<T> From<(T, usize, usize)> for BumpyEntry<T> {
    fn from(o: (T, usize, usize)) -> Self {
        BumpyEntry {
          entry: o.0,
          index: o.1,
          size: o.2,
        }
    }
}

/// Represents an instance of a Bumpy Vector
#[derive(Debug, Default, Clone)]
#[cfg_attr(feature = "serialize", derive(Serialize, Deserialize))]
pub struct BumpyVector<T> {
    /// The data is represented by a HashMap, where the index is the key and
    /// a BumpyEntry is the object.
    data: HashMap<usize, BumpyEntry<T>>,

    /// The maximum size.
    max_size: usize,
}

/// Implement the object.
impl<'a, T> BumpyVector<T> {
    /// Create a new instance of BumpyVector.
    ///
    /// The range of the vector goes from `0` to `max_size - 1`. If any
    /// elements beyond the end are accessed, an error will be returned.
    pub fn new(max_size: usize) -> Self {
        BumpyVector {
            data: HashMap::new(),
            max_size: max_size,
        }
    }

    /// Get the object that starts at or overlaps the starting index.
    ///
    /// This private method is the core of BumpyVector. Given an arbitrary
    /// offset within the BumpyVector, determine which entry exists in it (even
    /// if the entry starts to the "left").
    ///
    /// The initial implementation is somewhat naive: loop from the
    /// `starting_index` to 0, searching for an object. If found, check the
    /// object's size to ensure it overlaps the `starting_index`.
    ///
    /// This will be a good place to optimize later.
    fn get_entry_start(&self, starting_index: usize) -> Option<usize> {
        // Keep a handle to the starting index
        let mut index = starting_index;

        // Loop right to zero
        loop {
            // Check if we have data at the index
            match self.data.get(&index) {
                // If there's a value, we're set!
                Some(d) => {
                    // If we were too far away, it doesn't count. No value!
                    if d.size <= (starting_index - index) {
                        return None;
                    }

                    // Otherwise, we have the real index!
                    return Some(index);
                },

                // If there's no value, we keep going
                None => {
                    if index == 0 {
                        return None;
                    }

                    index -= 1;
                },
            };
        }
    }

    /// Insert a new entry.
    ///
    /// # Return
    ///
    /// Returns `Ok(())` if successfully inserted. If it would overlap another
    /// entry or exceed `max_size`, return `Err(&str)` with a descriptive error
    /// string.
    ///
    /// Size must be at least 1.
    ///
    /// # Example
    ///
    /// ```
    /// use bumpy_vector::{BumpyEntry, BumpyVector};
    ///
    /// // Create a 10-byte `BumpyVector`
    /// let mut v: BumpyVector<&str> = BumpyVector::new(10);
    ///
    /// // Insert a 2-byte value starting at index 5 (using BumpyEntry directly)
    /// assert!(v.insert(BumpyEntry { entry: "hello", index: 5, size: 2 }).is_ok());
    ///
    /// // Insert another 2-byte value starting at index 7 (using into())
    /// assert!(v.insert(("hello", 7, 2).into()).is_ok());
    ///
    /// // Fail to insert a value that would overlap the first
    /// assert!(v.insert(("hello", 4, 2).into()).is_err());
    ///
    /// // Fail to insert a value that would overlap the second
    /// assert!(v.insert(("hello", 6, 1).into()).is_err());
    ///
    /// // Fail to insert a value that would go out of bounds
    /// assert!(v.insert(("hello", 100, 1).into()).is_err());
    /// ```
    pub fn insert(&mut self, entry: BumpyEntry<T>) -> Result<(), &'static str> {
        if entry.size == 0 {
            return Err("Zero is an invalid size for an entry");
        }

        if entry.index + entry.size > self.max_size {
            return Err("Invalid entry: entry exceeds max size");
        }

        // Check if there's a conflict on the left
        if self.get_entry_start(entry.index).is_some() {
            return Err("Invalid entry: overlaps another object");
        }

        // Check if there's a conflict on the right
        for x in entry.index..(entry.index + entry.size) {
            if self.data.contains_key(&x) {
                return Err("Invalid entry: overlaps another object");
            }
        }

        // We're good, so create an entry!
        self.data.insert(entry.index, entry);

        Ok(())
    }

    /// Remove and return the entry at `index`.
    ///
    /// Note that the entry doesn't necessarily need to *start* at `index`,
    /// just overlap it.
    ///
    /// # Example
    ///
    /// ```
    /// use bumpy_vector::BumpyVector;
    ///
    /// // Create a 10-byte `BumpyVector`
    /// let mut v: BumpyVector<&str> = BumpyVector::new(10);
    ///
    /// // Insert some data
    /// v.insert(("hello", 0, 4).into()).unwrap();
    /// v.insert(("hello", 4, 4).into()).unwrap();
    ///
    /// assert!(v.remove(0).is_some());
    /// assert!(v.remove(0).is_none());
    ///
    /// assert!(v.remove(6).is_some());
    /// assert!(v.remove(6).is_none());
    /// ```
    pub fn remove(&mut self, index: usize) -> Option<BumpyEntry<T>> {
        // Try to get the real offset
        let real_offset = self.get_entry_start(index);

        // If there's no element, return none
        if let Some(o) = real_offset {
            // Remove it!
            if let Some(d) = self.data.remove(&o) {
                return Some(d);
            }
        }

        None
    }

    /// Remove and return a range of entries.
    ///
    /// # Example
    ///
    /// ```
    /// use bumpy_vector::BumpyVector;
    ///
    /// // Create a 10-byte `BumpyVector`
    /// let mut v: BumpyVector<&str> = BumpyVector::new(10);
    ///
    /// // Insert some data
    /// v.insert(("hello", 0, 4).into()).unwrap();
    /// v.insert(("hello", 4, 4).into()).unwrap();
    ///
    /// assert_eq!(2, v.remove_range(0, 10).len());
    /// assert_eq!(0, v.remove_range(0, 10).len());
    /// ```
    pub fn remove_range(&mut self, index: usize, length: usize) -> Vec<BumpyEntry<T>> {
        let mut result: Vec<BumpyEntry<T>> = Vec::new();

        for i in index..(index+length) {
            if let Some(e) = self.remove(i) {
                result.push(e);
            }
        }

        result
    }

    /// Return a reference to an entry at the given index.
    ///
    /// Note that the entry doesn't necessarily need to *start* at the given
    /// index, it can simply be contained there.
    ///
    /// # Example
    ///
    /// ```
    /// use bumpy_vector::BumpyVector;
    ///
    /// // Create a 10-byte `BumpyVector`
    /// let mut v: BumpyVector<&str> = BumpyVector::new(10);
    ///
    /// // Insert some data
    /// v.insert(("hello", 0, 4).into()).unwrap();
    ///
    /// assert!(v.get(0).is_some());
    /// assert!(v.get(1).is_some());
    /// assert!(v.get(2).is_some());
    /// assert!(v.get(3).is_some());
    /// assert!(v.get(4).is_none());
    /// assert!(v.get(5).is_none());
    ///
    /// assert_eq!("hello", v.get(0).unwrap().entry);
    /// assert_eq!("hello", v.get(1).unwrap().entry);
    /// assert_eq!("hello", v.get(2).unwrap().entry);
    /// assert_eq!("hello", v.get(3).unwrap().entry);
    /// ```
    pub fn get(&self, index: usize) -> Option<&BumpyEntry<T>> {
        // Try to get the real offset
        let real_offset = self.get_entry_start(index);

        // If there's no element, return none
        if let Some(o) = real_offset {
            // Get the entry itself from the address
            return self.data.get(&o);
        }

        None
    }

    /// Return a mutable reference to an entry at the given index.
    ///
    /// # Example
    ///
    /// ```
    /// use bumpy_vector::BumpyVector;
    ///
    /// // Create a small BumpyVector
    /// let mut h: BumpyVector<String> = BumpyVector::new(10);
    ///
    /// // Insert a string to the start
    /// h.insert((String::from("hello"), 0, 2).into()).unwrap();
    /// assert_eq!("hello", h.get(0).unwrap().entry);
    /// assert_eq!("hello", h.get(1).unwrap().entry);
    ///
    /// // Get a mutable reference to the string
    /// let s = h.get_mut(1).unwrap();
    ///
    /// // Modify it somehow
    /// s.entry.make_ascii_uppercase();
    ///
    /// // Verify it's changed
    /// assert_eq!("HELLO", h.get(0).unwrap().entry);
    /// assert_eq!("HELLO", h.get(1).unwrap().entry);
    /// ```
    pub fn get_mut(&mut self, index: usize) -> Option<&mut BumpyEntry<T>> {
        // Try to get the real offset
        let real_offset = self.get_entry_start(index);

        // If there's no element, return none
        if let Some(o) = real_offset {
            // Get the entry itself from the address
            return self.data.get_mut(&o);
        }

        None
    }

    /// Return a reference to an entry that *starts at* the given index.
    ///
    /// # Example
    ///
    /// ```
    /// use bumpy_vector::BumpyVector;
    ///
    /// // Create a 10-byte `BumpyVector`
    /// let mut v: BumpyVector<&str> = BumpyVector::new(10);
    ///
    /// // Insert some data
    /// v.insert(("hello", 0, 4).into()).unwrap();
    ///
    /// assert!(v.get_exact(0).is_some());
    /// assert!(v.get_exact(1).is_none());
    /// assert!(v.get_exact(2).is_none());
    /// assert!(v.get_exact(3).is_none());
    /// assert!(v.get_exact(4).is_none());
    /// assert!(v.get_exact(5).is_none());
    ///
    /// assert_eq!("hello", v.get_exact(0).unwrap().entry);
    /// ```
    pub fn get_exact(&self, index: usize) -> Option<&BumpyEntry<T>> {
        self.data.get(&index)
    }

    /// Return a mutable reference to an entry at exactly the given index.
    ///
    /// # Example
    ///
    /// ```
    /// use bumpy_vector::BumpyVector;
    ///
    /// // Create a small BumpyVector
    /// let mut h: BumpyVector<String> = BumpyVector::new(10);
    ///
    /// // Insert a string to the start
    /// h.insert((String::from("hello"), 0, 2).into()).unwrap();
    /// assert_eq!("hello", h.get_exact(0).unwrap().entry);
    /// assert!(h.get_exact(1).is_none());
    ///
    /// // Get a mutable reference to the string
    /// let s = h.get_exact_mut(0).unwrap();
    ///
    /// // Modify it somehow
    /// s.entry.make_ascii_uppercase();
    ///
    /// // Verify it's changed
    /// assert_eq!("HELLO", h.get_exact(0).unwrap().entry);
    /// assert!(h.get_exact(1).is_none());
    /// ```
    pub fn get_exact_mut(&mut self, index: usize) -> Option<&mut BumpyEntry<T>> {
        self.data.get_mut(&index)
    }

    /// Return a vector of entries within the given range.
    ///
    /// Note that the first entry doesn't need to *start* at the given index
    /// it can simply be contained there.
    ///
    /// # Parameters
    ///
    /// * `start` - The starting index.
    /// * `length` - The length to retrieve.
    ///
    /// # Example
    ///
    /// ```
    /// use bumpy_vector::BumpyVector;
    ///
    /// // Create a 10-byte `BumpyVector`
    /// let mut v: BumpyVector<&str> = BumpyVector::new(10);
    ///
    /// // Insert some data with a gap in the middle
    /// v.insert(("hello", 0, 2).into()).unwrap();
    /// v.insert(("hello", 4, 2).into()).unwrap();
    ///
    /// assert_eq!(1, v.get_range(0, 1).len());
    /// assert_eq!(1, v.get_range(0, 2).len());
    /// assert_eq!(1, v.get_range(0, 3).len());
    /// assert_eq!(1, v.get_range(0, 4).len());
    /// assert_eq!(2, v.get_range(0, 5).len());
    /// ```
    ///
    /// # Panics
    ///
    /// Panics if an entry's size is 0. That shouldn't be possible short of
    /// tinkering with internal state (most likely modifying serialized data).
    pub fn get_range(&self, start: usize, length: usize) -> Vec<&BumpyEntry<T>> {
        // We're stuffing all of our data into a vector to iterate over it
        let mut result: Vec<&BumpyEntry<T>> = Vec::new();

        // Start at the first entry left of what they wanted, if it exists
        let mut i = match self.get_entry_start(start) {
            Some(e) => e,
            None    => start,
        };

        // Loop up to <length> bytes after the starting index
        while i < start + length && i < self.max_size {
            // Pull the entry out, if it exists
            if let Some(e) = self.data.get(&i) {
                // Add the entry to the vector, and jump over it
                result.push(e);

                // Prevent an infinite loop
                if e.size == 0 {
                    panic!("Entry size cannot be 0!");
                }

                i += e.size;
            } else {
                i += 1;
            }
        }

        result
    }

    /// Returns the number of entries.
    pub fn len(&self) -> usize {
        // Return the number of entries
        return self.data.len();
    }

    pub fn max_size(&self) -> usize {
        return self.max_size;
    }
}

/// Convert into an iterator.
///
/// Naively iterate across all entries, move them into a `Vec<_>`, and convert
/// that vector into an iterator.
///
impl<'a, T> IntoIterator for &'a BumpyVector<T> {
    type Item = &'a BumpyEntry<T>;
    type IntoIter = std::vec::IntoIter<&'a BumpyEntry<T>>;

    fn into_iter(self) -> std::vec::IntoIter<&'a BumpyEntry<T>> {
        return self.get_range(0, self.max_size).into_iter();
    }
}

#[cfg(test)]
mod tests {
    use super::*;
    use pretty_assertions::assert_eq;

    #[test]
    fn test_insert() {
        let mut h: BumpyVector<&str> = BumpyVector::new(100);

        // Insert a 5-byte value at 10
        h.insert(("hello", 10, 5).into()).unwrap();
        assert_eq!(1, h.len());

        // Earlier values are none
        assert!(h.get(8).is_none());
        assert!(h.get(9).is_none());

        // Middle values are all identical, no matter where in the entry we
        // retrieve it
        assert_eq!("hello", h.get(10).unwrap().entry);
        assert_eq!(10,      h.get(10).unwrap().index);
        assert_eq!(5,       h.get(10).unwrap().size);

        assert_eq!("hello", h.get(11).unwrap().entry);
        assert_eq!(10,      h.get(11).unwrap().index);
        assert_eq!(5,       h.get(11).unwrap().size);

        assert_eq!("hello", h.get(12).unwrap().entry);
        assert_eq!(10,      h.get(12).unwrap().index);
        assert_eq!(5,       h.get(12).unwrap().size);

        assert_eq!("hello", h.get(13).unwrap().entry);
        assert_eq!(10,      h.get(13).unwrap().index);
        assert_eq!(5,       h.get(13).unwrap().size);

        assert_eq!("hello", h.get(14).unwrap().entry);
        assert_eq!(10,      h.get(14).unwrap().index);
        assert_eq!(5,       h.get(14).unwrap().size);

        // Last couple entries are none
        assert!(h.get(15).is_none());
        assert!(h.get(16).is_none());

        // There should still be a single entry
        assert_eq!(1, h.len());
    }

    #[test]
    fn test_zero_sized_insert() {
        let mut h: BumpyVector<&str> = BumpyVector::new(100);

        // Insert a 0-byte array
        assert!(h.insert(("hello", 10, 0).into()).is_err());
        assert_eq!(0, h.len());
    }

    #[test]
    fn test_overlapping_one_byte_inserts() {
        let mut h: BumpyVector<&str> = BumpyVector::new(100);

        // Insert a 2-byte value at 10
        h.insert(("hello", 10, 2).into()).unwrap();
        assert_eq!(1, h.len());

        // We can insert before
        assert!(h.insert(("ok", 8,  1).into()).is_ok());
        assert_eq!(2, h.len());
        assert!(h.insert(("ok", 9,  1).into()).is_ok());
        assert_eq!(3, h.len());

        // We can't insert within
        assert!(h.insert(("error", 10, 1).into()).is_err());
        assert!(h.insert(("error", 11, 1).into()).is_err());
        assert_eq!(3, h.len());

        // We can insert after
        assert!(h.insert(("ok", 12, 1).into()).is_ok());
        assert_eq!(4, h.len());
        assert!(h.insert(("ok", 13, 1).into()).is_ok());
        assert_eq!(5, h.len());
    }

    #[test]
    fn test_overlapping_multi_byte_inserts() {
        // Define 10-12, put something at 7-9 (good!)
        let mut h: BumpyVector<&str> = BumpyVector::new(100);
        h.insert(("hello", 10, 3).into()).unwrap();
        assert!(h.insert(("ok", 7,  3).into()).is_ok());

        // Define 10-12, try every overlapping bit
        let mut h: BumpyVector<&str> = BumpyVector::new(100);
        h.insert(BumpyEntry::from(("hello", 10, 3))).unwrap();
        assert!(h.insert(("error", 8,  3).into()).is_err());
        assert!(h.insert(("error", 9,  3).into()).is_err());
        assert!(h.insert(("error", 10, 3).into()).is_err());
        assert!(h.insert(("error", 11, 3).into()).is_err());
        assert!(h.insert(("error", 12, 3).into()).is_err());

        // 6-9 and 13-15 will work
        assert!(h.insert(BumpyEntry::from(("ok", 6,  3))).is_ok());
        assert!(h.insert(("ok", 13, 3).into()).is_ok());
        assert_eq!(3, h.len());
    }

    #[test]
    fn test_remove() {
        // Define 10-12, put something at 7-9 (good!)
        let mut h: BumpyVector<&str> = BumpyVector::new(100);
        h.insert(("hello", 8, 2).into()).unwrap();
        h.insert(("hello", 10, 2).into()).unwrap();
        h.insert(("hello", 12, 2).into()).unwrap();
        assert_eq!(3, h.len());

        // Remove from the start of an entry
        let e = h.remove(10).unwrap();
        assert_eq!("hello", e.entry);
        assert_eq!(10,      e.index);
        assert_eq!(2,       e.size);
        assert_eq!(2,       h.len());
        assert!(h.get(10).is_none());
        assert!(h.get(11).is_none());

        // Put it back
        h.insert(("hello", 10, 2).into()).unwrap();
        assert_eq!(3, h.len());

        // Remove from the middle of an entry
        let e = h.remove(11).unwrap();
        assert_eq!("hello", e.entry);
        assert_eq!(10,      e.index);
        assert_eq!(2,       e.size);
        assert_eq!(2,       h.len());
        assert!(h.get(10).is_none());
        assert!(h.get(11).is_none());

        // Remove 11 again, which is nothing
        let result = h.remove(11);
        assert!(result.is_none());

        let e = h.remove(13).unwrap();
        assert_eq!("hello", e.entry);
        assert_eq!(12,      e.index);
        assert_eq!(2,       e.size);
        assert_eq!(1,       h.len());
        assert!(h.get(12).is_none());
        assert!(h.get(13).is_none());

        h.remove(8);
        assert_eq!(0, h.len());
        assert!(h.get(8).is_none());
        assert!(h.get(9).is_none());
    }

    #[test]
    fn test_beginning() {
        let mut h: BumpyVector<&str> = BumpyVector::new(10);
        h.insert(("hello", 0, 2).into()).unwrap();

        assert_eq!(1, h.len());

        assert_eq!("hello", h.get(0).unwrap().entry);
        assert_eq!(0,       h.get(0).unwrap().index);
        assert_eq!(2,       h.get(0).unwrap().size);

        assert_eq!("hello", h.get(1).unwrap().entry);
        assert_eq!(0,       h.get(1).unwrap().index);
        assert_eq!(2,       h.get(1).unwrap().size);

        assert!(h.get(2).is_none());
    }

    #[test]
    fn test_max_size() {
        // Inserting at 7-8-9 works
        let mut h: BumpyVector<&str> = BumpyVector::new(10);
        assert_eq!(10, h.max_size());

        h.insert(("hello", 7, 3).into()).unwrap();
        assert_eq!(1, h.len());

        // Inserting at 8-9-10 and onward does not
        let mut h: BumpyVector<&str> = BumpyVector::new(10);
        assert!(h.insert(("hello", 8, 3).into()).is_err());
        assert_eq!(0, h.len());

        let mut h: BumpyVector<&str> = BumpyVector::new(10);
        assert!(h.insert(("hello", 9, 3).into()).is_err());
        assert_eq!(0, h.len());

        let mut h: BumpyVector<&str> = BumpyVector::new(10);
        assert!(h.insert(("hello", 10, 3).into()).is_err());
        assert_eq!(0, h.len());

        let mut h: BumpyVector<&str> = BumpyVector::new(10);
        assert!(h.insert(("hello", 11, 3).into()).is_err());
        assert_eq!(0, h.len());
    }

    #[test]
    fn test_remove_range() {
        // Create an object
        let mut h: BumpyVector<&str> = BumpyVector::new(100);
        h.insert(("hello", 8, 2).into()).unwrap();
        h.insert(("hello", 10, 2).into()).unwrap();
        h.insert(("hello", 12, 2).into()).unwrap();
        assert_eq!(3, h.len());

        // Test removing the first two entries
        let result = h.remove_range(8, 4);
        assert_eq!(1, h.len());
        assert_eq!(2, result.len());

        assert_eq!("hello", result[0].entry);
        assert_eq!(8,       result[0].index);
        assert_eq!(2,       result[0].size);

        assert_eq!("hello", result[1].entry);
        assert_eq!(10,      result[1].index);
        assert_eq!(2,       result[1].size);

        // Re-create the object
        let mut h: BumpyVector<&str> = BumpyVector::new(100);
        h.insert(("hello", 8, 2).into()).unwrap();
        h.insert(("hello", 10, 2).into()).unwrap();
        h.insert(("hello", 12, 2).into()).unwrap();
        assert_eq!(3, h.len());

        // Test where the first entry starts left of the actual starting index
        let result = h.remove_range(9, 2);
        assert_eq!(1, h.len());
        assert_eq!(2, result.len());

        assert_eq!("hello", result[0].entry);
        assert_eq!(8,       result[0].index);
        assert_eq!(2,       result[0].size);

        assert_eq!("hello", result[1].entry);
        assert_eq!(10,      result[1].index);
        assert_eq!(2,       result[1].size);

        // Re-create the object
        let mut h: BumpyVector<&str> = BumpyVector::new(100);
        h.insert(("hello", 8, 2).into()).unwrap();
        h.insert(("hello", 10, 2).into()).unwrap();
        h.insert(("hello", 12, 2).into()).unwrap();
        assert_eq!(3, h.len());

        // Test the entire object
        let result = h.remove_range(0, 1000);
        assert_eq!(0, h.len());
        assert_eq!(3, result.len());

        assert_eq!("hello", result[0].entry);
        assert_eq!(8,       result[0].index);
        assert_eq!(2,       result[0].size);

        assert_eq!("hello", result[1].entry);
        assert_eq!(10,      result[1].index);
        assert_eq!(2,       result[1].size);
    }

    #[test]
    fn test_get() {
        // Create an object
        let mut h: BumpyVector<&str> = BumpyVector::new(100);
        h.insert(("hello", 8, 2).into()).unwrap();

        // Test removing the first two entries
        assert!(h.get(7).is_none());
        assert!(h.get(8).is_some());
        assert!(h.get(9).is_some());
        assert!(h.get(10).is_none());
    }

    #[test]
    fn test_get_mut() {
        // Create an object
        let mut h: BumpyVector<String> = BumpyVector::new(100);
        h.insert((String::from("hello"), 8, 2).into()).unwrap();

        // Get a mutable reference
        let s = h.get_mut(9).unwrap();
        s.entry.make_ascii_uppercase();

        let s2 = h.get(8).unwrap();
        assert_eq!("HELLO", s2.entry);
    }

    #[test]
    fn test_get_exact() {
        // Create an object
        let mut h: BumpyVector<&str> = BumpyVector::new(100);
        h.insert(("hello", 8, 2).into()).unwrap();

        // Test removing the first two entries
        assert!(h.get_exact(7).is_none());
        assert!(h.get_exact(8).is_some());
        assert!(h.get_exact(9).is_none());
        assert!(h.get_exact(10).is_none());
    }

    #[test]
    fn test_get_exact_mut() {
        // Create an object
        let mut h: BumpyVector<String> = BumpyVector::new(100);
        h.insert((String::from("hello"), 8, 2).into()).unwrap();

        // Make sure it's actually exist
        assert!(h.get_exact_mut(9).is_none());

        // Get a mutable reference
        let s = h.get_exact_mut(8).unwrap();
        s.entry.make_ascii_uppercase();

        let s = h.get_exact(8).unwrap();
        assert_eq!("HELLO", s.entry);
    }

    #[test]
    fn test_get_range() {
        // Create a BumpyVector that looks like:
        //
        // [--0-- --1-- --2-- --3-- --4-- --5-- --6-- --7-- --8-- --9--]
        //        +-----------------            +----------------+
        //        |   "a" (2)| "b" |            |      "c"       |
        //        +----------+------            +----------------+
        let mut h: BumpyVector<&str> = BumpyVector::new(10);
        h.insert(("a", 1, 2).into()).unwrap();
        h.insert(("b", 3, 1).into()).unwrap();
        h.insert(("c", 6, 3).into()).unwrap();

        // Get just the first two
        let result = h.get_range(2, 4);
        assert_eq!(2, result.len());

        // Get the first two, then just barely the third
        let result = h.get_range(2, 5);
        assert_eq!(3, result.len());

        // Get the first two again, starting further left
        let result = h.get_range(1, 5);
        assert_eq!(2, result.len());

        // Get all three again
        let result = h.get_range(1, 6);
        assert_eq!(3, result.len());

        // Get way more than everything
        let result = h.get_range(0, 100);
        assert_eq!(3, result.len());
    }

    #[test]
    fn test_iterator() {
        // Create a BumpyVector that looks like:
        //
        // [--0-- --1-- --2-- --3-- --4-- --5-- --6-- --7-- --8-- --9--]
        //        +-----------------            +----------------+
        //        |   "a" (2)| "b" |            |      "c"       |
        //        +----------+------            +----------------+
        let mut h: BumpyVector<&str> = BumpyVector::new(10);
        h.insert(("a", 1, 2).into()).unwrap();
        h.insert(("b", 3, 1).into()).unwrap();
        h.insert(("c", 6, 3).into()).unwrap();

        let mut iter = h.into_iter();

        // Entry "a" (index 1-2)
        let e = iter.next().unwrap();
        assert_eq!("a", e.entry);
        assert_eq!(1,   e.index);
        assert_eq!(2,   e.size);

        // Entry "b" (index 3)
        let e = iter.next().unwrap();
        assert_eq!("b", e.entry);
        assert_eq!(3,   e.index);
        assert_eq!(1,   e.size);

        // Entry "c" (index 6-8)
        let e = iter.next().unwrap();
        assert_eq!("c", e.entry);
        assert_eq!(6,   e.index);
        assert_eq!(3,   e.size);

        // That's it!
        assert!(iter.next().is_none());
        assert!(iter.next().is_none());
    }

    #[test]
    #[cfg(feature = "serialize")] // Only test if we enable serialization
    fn test_serialize() {
        let mut h: BumpyVector<String> = BumpyVector::new(10);
        h.insert((String::from("a"), 1, 2).into()).unwrap();
        h.insert((String::from("b"), 3, 1).into()).unwrap();
        h.insert((String::from("c"), 6, 3).into()).unwrap();

        // Serialize
        let serialized = ron::ser::to_string(&h).unwrap();

        // Deserialize
        let h: BumpyVector<String> = ron::de::from_str(&serialized).unwrap();

        // Make sure we have the same entries
        assert_eq!("a", h.get(2).unwrap().entry);
        assert_eq!(1,   h.get(2).unwrap().index);
        assert_eq!(2,   h.get(2).unwrap().size);
        assert_eq!("b", h.get(3).unwrap().entry);
        assert!(h.get(4).is_none());
        assert!(h.get(5).is_none());
        assert_eq!("c", h.get(6).unwrap().entry);
        assert_eq!(6,   h.get(6).unwrap().index);
        assert_eq!(3,   h.get(6).unwrap().size);
    }

    #[test]
    fn test_clone() {
        let mut h: BumpyVector<String> = BumpyVector::new(10);
        h.insert((String::from("a"), 1, 2).into()).unwrap();
        h.insert((String::from("b"), 3, 1).into()).unwrap();
        h.insert((String::from("c"), 6, 3).into()).unwrap();

        // Serialize
        let cloned = h.clone();

        // Make sure we have the same entries
        assert_eq!("a", cloned.get(2).unwrap().entry);
        assert_eq!(1,   cloned.get(2).unwrap().index);
        assert_eq!(2,   cloned.get(2).unwrap().size);
        assert_eq!("b", cloned.get(3).unwrap().entry);
        assert!(cloned.get(4).is_none());
        assert!(cloned.get(5).is_none());
        assert_eq!("c", cloned.get(6).unwrap().entry);
        assert_eq!(6,   cloned.get(6).unwrap().index);
        assert_eq!(3,   cloned.get(6).unwrap().size);
    }
}