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
use std::
{
    vec,
    vec::Vec,
    collections::VecDeque,
    iter,
    slice
};
use crate::Index;

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

/// An allocated index of a `IndexAllocator`
#[derive(Debug)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
struct AllocatedIndex
{
    is_free: bool,
    generation: usize
}

/// Allocates and deallocates indices for a `ExposedGenVec`
#[derive(Default, Debug)]
#[cfg_attr(feature = "serde", derive(Serialize, Deserialize))]
pub struct IndexAllocator
{
    free_indices: VecDeque<usize>,
    active_indices: Vec<AllocatedIndex>
}

impl IndexAllocator
{
    /// Returns a new empty `IndexAllocator`
    ///
    /// # Examples
    ///
    /// ```
    /// use gen_vec::exposed::IndexAllocator;
    /// let mut allocator: IndexAllocator = IndexAllocator::new();
    /// ```
    pub fn new() -> IndexAllocator
    {
        IndexAllocator
        {
            free_indices: VecDeque::new(),
            active_indices: Vec::new()
        }
    }

    /// Returns a `IndexAllocator` with initial capacity of `capacity`
    ///
    /// Allows the `IndexAllocator` to hold `capacity` elements before
    /// allocating more space
    ///
    /// # Examples
    ///
    /// ```
    /// use gen_vec::exposed::IndexAllocator;
    /// let mut allocator: IndexAllocator = IndexAllocator::with_capacity(5);
    /// ```
    pub fn with_capacity(capacity: usize) -> IndexAllocator
    {
        IndexAllocator
        {
            free_indices: VecDeque::with_capacity(capacity),
            active_indices: Vec::with_capacity(capacity)
        }
    }

    /// Allocates and returns a new `Index`
    ///
    /// Activates a freed index if there are any, otherwise creates
    /// and adds a new index to `active_indices`
    ///
    /// # Examples
    ///
    /// ```
    /// use gen_vec::Index;
    /// use gen_vec::exposed::IndexAllocator;
    ///
    /// let mut allocator: IndexAllocator = IndexAllocator::new();
    /// let index: Index = allocator.allocate();
    /// ```
    pub fn allocate(&mut self) -> Index
    {
        match self.free_indices.pop_front()
        {
            Some(index) =>
                {
                    match self.active_indices.get_mut(index)
                    {
                        Some(AllocatedIndex{ is_free, generation }) if *is_free =>
                            {
                                *is_free = false;
                                *generation += 1;
                                Index { index: index, generation: *generation }
                            },
                        // Try again if the free index was invalid
                        _ => self.allocate()
                    }
                },
            _ =>
                {
                    self.active_indices.push(AllocatedIndex{ is_free: false, generation: 0 });
                    Index{ index: self.active_indices.len().saturating_sub(1), generation: 0 }
                }
        }
    }

    /// Frees `index` if it hasn't been already.
    ///
    /// Afterwards, `index` is added to the pool of free indices
    /// available for reuse
    ///
    /// # Examples
    ///
    /// ```
    /// use gen_vec::Index;
    /// use gen_vec::exposed::IndexAllocator;
    ///
    /// let mut allocator: IndexAllocator = IndexAllocator::new();
    /// let index: Index = allocator.allocate();
    /// allocator.deallocate(index);
    /// ```
    pub fn deallocate(&mut self, index: Index)
    {
        if self.is_active(index)
        {
            self.active_indices[index.index].is_free = true;
            self.free_indices.push_back(index.index);
        }
    }

    /// Frees all active indices and adds them to the pool of free indices
    ///
    /// # Examples
    ///
    /// ```
    /// use gen_vec::exposed::IndexAllocator;
    /// use gen_vec::Index;
    ///
    /// let mut allocator: IndexAllocator = IndexAllocator::new();
    /// for _ in 0..10
    /// {
    ///     allocator.allocate();
    /// }
    /// assert_eq!(allocator.num_active(), 10);
    /// assert_eq!(allocator.num_free(), 0);
    ///
    /// allocator.deallocate_all();
    /// assert_eq!(allocator.num_active(), 0);
    /// assert_eq!(allocator.num_free(), 10);
    /// ```
    pub fn deallocate_all(&mut self)
    {
        for (index, alloc_index) in self.active_indices.iter_mut().enumerate()
        {
            alloc_index.is_free = true;
            self.free_indices.push_back(index);
        }
    }

    /// Reserved capacity within the `IndexAllocator`
    ///
    /// # Examples
    ///
    /// ```
    /// use gen_vec::exposed::IndexAllocator;
    ///
    /// let mut allocator: IndexAllocator = IndexAllocator::with_capacity(5);
    /// assert_eq!(allocator.capacity(), 5);
    /// ```
    pub fn capacity(&self) -> usize
    {
        self.active_indices.capacity()
    }

    /// Reserves extra space for *at least* `additional` more elements
    ///
    /// More space may be allocated to avoid frequent re-allocations
    /// (as per the specifications of std::vec::Vec)
    ///
    /// # Examples
    ///
    /// ```
    /// use gen_vec::Index;
    /// use gen_vec::exposed::IndexAllocator;
    ///
    /// let mut allocator: IndexAllocator = IndexAllocator::new();
    /// let index: Index = allocator.allocate();
    /// allocator.reserve(4);
    /// assert!(allocator.capacity() >= 4);
    /// ```
    pub fn reserve(&mut self, additional: usize)
    {
        if additional > 0
        {
            self.active_indices.reserve(additional);
            self.free_indices.reserve(additional);

            if self.active_indices.len() > 0
            {
                let last_index = self.active_indices.len().saturating_sub(1);
                // Add all new reserved
                for i in last_index..(last_index+additional)
                {
                    self.free_indices.push_back(i);
                    self.active_indices.push(AllocatedIndex{ is_free: true, generation: 0 });
                }
            }
        }
    }

    /// Returns if `index` is still active and hasn't been deallocated
    ///
    /// # Examples
    ///
    /// ```
    /// use gen_vec::Index;
    /// use gen_vec::exposed::IndexAllocator;
    ///
    /// let mut allocator: IndexAllocator = IndexAllocator::new();
    /// let index: Index = allocator.allocate();
    /// assert!(allocator.is_active(index));
    /// allocator.deallocate(index);
    /// assert!(!allocator.is_active(index));
    /// ```
    pub fn is_active(&self, index: Index) -> bool
    {
        match self.active_indices.get(index.index)
        {
            Some(AllocatedIndex{ is_free, generation }) => *generation == index.generation && !*is_free,
            _ => false
        }
    }

    /// Returns the number of free indices waiting to be allocated and reused
    ///
    /// # Examples
    ///
    /// ```
    /// use gen_vec::Index;
    /// use gen_vec::exposed::IndexAllocator;
    ///
    /// let mut allocator: IndexAllocator = IndexAllocator::new();
    /// assert_eq!(allocator.num_free(), 0);
    ///
    /// let index: Index = allocator.allocate();
    ///
    /// allocator.deallocate(index);
    /// assert_eq!(allocator.num_free(), 1);
    ///
    /// let index: Index = allocator.allocate();
    /// assert_eq!(allocator.num_free(), 0);
    /// ```
    pub fn num_free(&self) -> usize
    {
        self.free_indices.len()
    }

    /// Returns the number of active indices
    ///
    /// # Examples
    ///
    /// ```
    /// use gen_vec::Index;
    /// use gen_vec::exposed::IndexAllocator;
    ///
    /// let mut allocator: IndexAllocator = IndexAllocator::new();
    /// assert_eq!(allocator.num_active(), 0);
    ///
    /// let index: Index = allocator.allocate();
    /// assert_eq!(allocator.num_active(), 1);
    ///
    /// allocator.deallocate(index);
    /// assert_eq!(allocator.num_active(), 0);
    /// ```
    pub fn num_active(&self) -> usize
    {
        self.active_indices.len().saturating_sub(self.free_indices.len())
    }

    /// Returns an iterator over an immutable `IndexAllocator`
    /// Each step returns an `Index`
    ///
    /// # Examples
    ///
    /// ```
    /// use gen_vec::Index;
    /// use gen_vec::exposed::IndexAllocator;
    ///
    /// let mut allocator: IndexAllocator = IndexAllocator::new();
    /// allocator.allocate();
    /// allocator.allocate();
    ///
    /// for index in allocator
    /// {
    ///     println!("{:?}", index);
    /// }
    /// ```
    pub fn iter(&self) -> Iter
    {
        Iter
        {
            internal: self.active_indices.iter().enumerate()
        }
    }
}

/// Struct for consuming a `IndexAllocator` into an iterator
#[derive(Debug)]
pub struct IntoIter
{
    internal: iter::Enumerate<vec::IntoIter<AllocatedIndex>>
}

impl Iterator for IntoIter
{
    type Item = Index;

    fn next(&mut self) -> Option<Self::Item>
    {
        loop
        {
            match self.internal.next()
            {
                Some((index, allocated_index)) if !allocated_index.is_free => return Some(Index { index, generation: allocated_index.generation }),
                Some((_, _)) => continue,
                _ => return None
            }
        }
    }
}

impl IntoIterator for IndexAllocator
{
    type Item = Index;
    type IntoIter = IntoIter;

    fn into_iter(self) -> Self::IntoIter
    {
        IntoIter
        {
            internal: self.active_indices.into_iter().enumerate()
        }
    }
}

/// Struct for creating an iterator over an immutable `IndexAllocator` reference
#[derive(Debug)]
pub struct Iter<'a>
{
    internal: iter::Enumerate<slice::Iter<'a, AllocatedIndex>>
}

impl<'a> Iterator for Iter<'a>
{
    type Item = Index;

    fn next(&mut self) -> Option<Self::Item>
    {
        loop
        {
            loop
            {
                match self.internal.next()
                {
                    Some((index, allocated_index)) if !allocated_index.is_free => return Some(Index { index, generation: allocated_index.generation }),
                    Some((_, _)) => continue,
                    _ => return None
                }
            }
        }
    }
}

impl<'a> IntoIterator for &'a IndexAllocator
{
    type Item = Index;
    type IntoIter = Iter<'a>;

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

#[cfg(test)]
mod allocator_tests
{
    use crate::exposed::*;
    use crate::Index;

    #[test]
    fn allocate()
    {
        let mut allocator = IndexAllocator::new();
        let index = allocator.allocate();
        assert_eq!(index.index, 0);
        assert_eq!(index.generation, 0);

        let index = allocator.allocate();
        assert_eq!(index.index, 1);
        assert_eq!(index.generation, 0);
    }

    #[test]
    fn deallocate()
    {
        let mut allocator = IndexAllocator::new();
        let index = allocator.allocate();
        allocator.allocate();

        allocator.deallocate(index);

        let index = allocator.allocate();
        assert_eq!(index.index, 0);
        assert_eq!(index.generation, 1);
    }

    #[test]
    fn deallocate_all()
    {
        let mut allocator: IndexAllocator = IndexAllocator::new();
        for _ in 0..10
        {
            allocator.allocate();
        }
        assert_eq!(allocator.num_active(), 10);
        assert_eq!(allocator.num_free(), 0);

        allocator.deallocate_all();
        assert_eq!(allocator.num_active(), 0);
        assert_eq!(allocator.num_free(), 10);
    }

    #[test]
    fn capacity()
    {
        let mut allocator = IndexAllocator::new();
        assert_eq!(allocator.capacity(), 0);
        allocator.allocate();
        assert!(allocator.capacity() >= 1);

        allocator = IndexAllocator::with_capacity(3);
        assert!(allocator.capacity() >= 3);
        allocator.allocate();
        allocator.allocate();

        allocator.reserve(4);
        assert!(allocator.capacity() >= 5);
    }

    #[test]
    fn active()
    {
        let mut allocator = IndexAllocator::new();
        let index = allocator.allocate();
        allocator.allocate();
        assert_eq!(allocator.num_active(), 2);
        assert_eq!(allocator.num_free(), 0);
        assert!(allocator.is_active(index));
        allocator.deallocate(index);
        assert!(!allocator.is_active(index));
        assert_eq!(allocator.num_active(), 1);
        assert_eq!(allocator.num_free(), 1);
    }

    #[test]
    fn iter()
    {
        let mut allocator = IndexAllocator::new();
        allocator.allocate();
        allocator.allocate();
        let i = allocator.allocate();
        allocator.deallocate(i);

        let mut iter = allocator.iter();
        assert_eq!(iter.next(), Some(Index { index: 0, generation: 0 }));
        assert_eq!(iter.next(), Some(Index { index: 1, generation: 0}));
        assert_eq!(iter.next(), None);
    }
}