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
use alloc::vec::Vec;
use core::{cmp::Ord, fmt::Debug};

use crate::{interval::Interval, node::Node};

/// A `find` query on the interval tree does not directly return references to the nodes in the tree, but
/// wraps the fields `interval` and `data` in an `Entry`.
#[derive(PartialEq, Eq, Debug)]
pub struct Entry<'a, T: Ord, V> {
    value: &'a V,
    interval: &'a Interval<T>,
}

impl<'a, T: Ord + 'a, V: 'a> Entry<'a, T, V> {
    /// Get a reference to the data for this entry
    #[must_use]
    pub fn value(&self) -> &'a V {
        self.value
    }

    /// Get a reference to the interval for this entry
    #[must_use]
    pub fn interval(&self) -> &'a Interval<T> {
        self.interval
    }
}

/// An `IntervalTreeIterator` is returned by `Intervaltree::find` and iterates over the entries
/// overlapping the query
#[derive(Debug)]
pub struct IntervalTreeIterator<'v, 'i, T: Ord, V> {
    pub(crate) nodes: Vec<&'v Node<T, V>>,
    pub(crate) interval: &'i Interval<T>,
}

impl<'v, 'i, T: Ord + 'i, V: 'v> Iterator for IntervalTreeIterator<'v, 'i, T, V> {
    type Item = Entry<'v, T, V>;

    fn next(&mut self) -> Option<Entry<'v, T, V>> {
        loop {
            let node_ref = match self.nodes.pop() {
                None => return None,
                Some(node) => node,
            };

            if node_ref.right_child.is_some() {
                self.nodes.push(node_ref.right_child.as_ref().unwrap());
            }
            if node_ref.left_child.is_some()
                && Node::<T, V>::is_ge(
                    &node_ref.left_child.as_ref().unwrap().get_max(),
                    &self.interval.get_low(),
                )
            {
                self.nodes.push(node_ref.left_child.as_ref().unwrap());
            }

            if Interval::overlaps(node_ref.interval(), self.interval) {
                return Some(Entry {
                    value: node_ref.value(),
                    interval: node_ref.interval(),
                });
            }
        }
    }
}

/// A `find_mut` query on the interval tree does not directly return references to the nodes in the tree, but
/// wraps the fields `interval` and `data` in an `EntryMut`. Only the data part can be mutably accessed
/// using the `data` method
#[derive(PartialEq, Eq, Debug)]
pub struct EntryMut<'a, T: Ord, V> {
    value: &'a mut V,
    interval: &'a Interval<T>,
}

impl<'a, T: Ord + 'a, V: 'a> EntryMut<'a, T, V> {
    /// Get a mutable reference to the data for this entry
    pub fn value(&'a mut self) -> &'a mut V {
        self.value
    }

    /// Get a reference to the interval for this entry
    #[must_use]
    pub fn interval(&self) -> &'a Interval<T> {
        self.interval
    }
}

/// An `IntervalTreeIteratorMut` is returned by `Intervaltree::find_mut` and iterates over the entries
/// overlapping the query allowing mutable access to the data `D`, not the `Interval`.
#[derive(Debug)]
pub struct IntervalTreeIteratorMut<'v, 'i, T: Ord, V> {
    pub(crate) nodes: Vec<&'v mut Node<T, V>>,
    pub(crate) interval: &'i Interval<T>,
}

impl<'v, 'i, T: Ord + 'i, V: 'v> Iterator for IntervalTreeIteratorMut<'v, 'i, T, V> {
    type Item = EntryMut<'v, T, V>;

    fn next(&mut self) -> Option<EntryMut<'v, T, V>> {
        loop {
            let node_ref = match self.nodes.pop() {
                None => return None,
                Some(node) => node,
            };

            let overlaps = Interval::overlaps(node_ref.interval(), self.interval);

            if node_ref.right_child.is_some() {
                self.nodes.push(node_ref.right_child.as_mut().unwrap());
            }
            if node_ref.left_child.is_some()
                && Node::<T, V>::is_ge(
                    &node_ref.left_child.as_ref().unwrap().get_max(),
                    &self.interval.get_low(),
                )
            {
                self.nodes.push(node_ref.left_child.as_mut().unwrap());
            }

            if overlaps {
                return Some(EntryMut {
                    value: node_ref.value.as_mut().unwrap(),
                    interval: node_ref.interval.as_ref().unwrap(),
                });
            }
        }
    }
}