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
use super::*;
use super::internal::*;
use std;

pub struct OptionIter<T: Send> {
    opt: Option<T>
}

impl<T: Send> IntoParallelIterator for Option<T> {
    type Item = T;
    type Iter = OptionIter<Self::Item>;

    fn into_par_iter(self) -> Self::Iter {
        OptionIter { opt: self }
    }
}

impl<T: Send, E> IntoParallelIterator for Result<T, E> {
    type Item = T;
    type Iter = OptionIter<Self::Item>;

    fn into_par_iter(self) -> Self::Iter {
        self.ok().into_par_iter()
    }
}

impl<'a, T: Sync> IntoParallelIterator for &'a Option<T> {
    type Item = &'a T;
    type Iter = OptionIter<Self::Item>;

    fn into_par_iter(self) -> Self::Iter {
        self.as_ref().into_par_iter()
    }
}

impl<'a, T: Sync, E> IntoParallelIterator for &'a Result<T, E> {
    type Item = &'a T;
    type Iter = OptionIter<Self::Item>;

    fn into_par_iter(self) -> Self::Iter {
        self.as_ref().ok().into_par_iter()
    }
}

impl<'a, T: Send> IntoParallelIterator for &'a mut Option<T> {
    type Item = &'a mut T;
    type Iter = OptionIter<Self::Item>;

    fn into_par_iter(self) -> Self::Iter {
        self.as_mut().into_par_iter()
    }
}

impl<'a, T: Send, E> IntoParallelIterator for &'a mut Result<T, E> {
    type Item = &'a mut T;
    type Iter = OptionIter<Self::Item>;

    fn into_par_iter(self) -> Self::Iter {
        self.as_mut().ok().into_par_iter()
    }
}

///////////////////////////////////////////////////////////////////////////

impl<T: Send> ParallelIterator for OptionIter<T> {
    type Item = T;

    fn drive_unindexed<C>(self, consumer: C) -> C::Result
        where C: UnindexedConsumer<Self::Item>
    {
        bridge(self, consumer)
    }
}

impl<T: Send> BoundedParallelIterator for OptionIter<T> {
    fn upper_bound(&mut self) -> usize {
        ExactParallelIterator::len(self)
    }

    fn drive<C>(self, consumer: C) -> C::Result
        where C: Consumer<Self::Item>
    {
        bridge(self, consumer)
    }
}

impl<T: Send> ExactParallelIterator for OptionIter<T> {
    fn len(&mut self) -> usize {
        match self.opt { Some(_) => 1, None => 0 }
    }
}

impl<T: Send> IndexedParallelIterator for OptionIter<T> {
    fn with_producer<CB>(self, callback: CB) -> CB::Output
        where CB: ProducerCallback<Self::Item>
    {
        callback.callback(OptionProducer { opt: self.opt })
    }
}

///////////////////////////////////////////////////////////////////////////

pub struct OptionProducer<T: Send> {
    opt: Option<T>
}

impl<T: Send> Producer for OptionProducer<T> {
    fn cost(&mut self, len: usize) -> f64 {
        len as f64
    }

    fn split_at(self, index: usize) -> (Self, Self) {
        let none = OptionProducer { opt: None };
        if index == 0 { (none, self) } else { (self, none) }
    }
}

impl<T: Send> IntoIterator for OptionProducer<T> {
    type Item = T;
    type IntoIter = std::option::IntoIter<T>;

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