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

use core::ops::Deref;
use core::ops::DerefMut;

use crate::linked_vector::*;

/// A cursor is a position within a linked vector. It can be used to traverse
/// the list in either direction, and to access the element at the current
/// position.
/// 
pub trait CursorBase<T> {
    /// Returns a reference to the element at the cursor's current position. If
    /// the feature, `"optionless-accessors"`, is disabled, the return type is
    /// `Option<&T>` instead of `&T`. This feature is disabled by default.
    /// 
    #[cfg(feature = "optionless-accessors")]
    fn get(&self) -> &T;

    /// Returns a reference to the element at the cursor's current position,
    /// or `None` if the underlying vector is empty. Enable the 
    /// `"optionless-accessors"` feature to remove the `Option` from the return 
    /// type, see [usage notes](./index.html#feature-optionless-accessors).
    /// 
    #[cfg(not(feature = "optionless-accessors"))]
    fn get(&self) -> Option<&T>;

    /// Returns the handle of the element at the cursor's current position.
    /// 
    fn node(&self) -> HNode;

    /// Moves the cursor to the specified handle. The handle must be valid. If
    /// the feature, `"optionless-accessors"`, is disabled, the return type is
    /// `bool`. This feature is disabled by default, see 
    /// [usage notes](./index.html#feature-optionless-accessors).
    /// 
    #[cfg(feature = "optionless-accessors")]
    fn move_to(&mut self, handle: HNode);

    /// Moves the cursor to the specified handle. The handle must be valid. 
    /// Returns true if the move was successful. If the `"optionless-accessors"`
    /// feature is enabled, this method doesn't return a value. This feature is
    /// disabled by default, see 
    /// [usage notes](./index.html#feature-optionless-accessors).
    /// 
    #[cfg(not(feature = "optionless-accessors"))]
    fn move_to(&mut self, handle: HNode) -> bool;

    /// Moves the cursor to the next element. Returns the handle of the next
    /// element if the cursor was moved, None if the cursor was already at the
    /// end of the list.
    /// 
    fn move_next(&mut self) -> Option<HNode>;

    /// Moves the cursor to the previous element. Returns the handle of the
    /// previous element if the cursor was moved, None if the cursor was
    /// already at the start of the list.
    /// 
    fn move_prev(&mut self) -> Option<HNode>;

    /// Moves the cursor to the end of the list. Returns the handle of the
    /// last element if the cursor was moved, None if the list is empty.
    /// 
    fn move_to_back(&mut self) -> Option<HNode>;

    /// Moves the cursor to the start of the list. Returns the handle of the
    /// first element if the cursor was moved, None if the list is empty.
    /// 
    fn move_to_front(&mut self) -> Option<HNode>;

    /// Moves the cursor to the start of the list. Returns the handle of the
    /// first element if the cursor was moved, None if the list is empty.
    /// 
    #[deprecated(since = "1.1.0", note = "Use move_to_front() instead.")]
    fn move_to_start(&mut self) -> Option<HNode>;

    /// Moves the cursor to the end of the list. Returns the handle of the
    /// last element if the cursor was moved, None if the list is empty.
    /// 
    #[deprecated(since = "1.1.0", note = "Use move_to_back() instead.")]
    fn move_to_end(&mut self) -> Option<HNode>;

    /// Moves the cursor forward by the specified number of elements. Returns
    /// the handle of the element at the new position if the cursor was moved,
    /// Err(handle) if the cursor did not move forward by the specified amount.
    /// The handle at the current position after the move is returned in 
    /// either Result variant.
    /// 
    fn forward(&mut self, n: usize) -> Result<HNode, HNode>;

    /// Moves the cursor backward by the specified number of elements. Returns
    /// the handle of the element at the new position if the cursor was moved,
    /// Err(handle) if the cursor did not move backward by the specified amount.
    /// The handle at the current position after the move is returned in 
    /// either Result variant.
    /// 
    fn backward(&mut self, n: usize) -> Result<HNode, HNode>;
}

/// A cursor which can only read the elements of the list.
/// 
pub struct Cursor<'a, T> {
    lvec   : &'a LinkedVector<T>,
    handle : HNode,
}

impl<'a, T> Cursor<'a, T> {
    pub(crate) fn new(lvec   : &'a LinkedVector<T>, 
                      handle : HNode) 
        -> Self 
    {
        #[cfg(debug_assertions)]
        lvec.check_handle(handle);

        Self {
            lvec,
            handle,
        }
    }
}
impl<'a, T> CursorBase<T> for Cursor<'a, T> {
    #[cfg(feature = "optionless-accessors")]
    fn get(&self) -> &T {
        self.lvec.get(self.handle)
    }

    #[cfg(not(feature = "optionless-accessors"))]
    fn get(&self) -> Option<&T> {
        if self.lvec.is_empty() {
            None
        } else {
            self.lvec.get(self.handle)
        }
    }

    fn node(&self) -> HNode {
        self.handle
    }

    #[cfg(feature = "optionless-accessors")]
    fn move_to(&mut self, handle: HNode) {
        #[cfg(debug_assertions)]
        self.lvec.check_handle(handle);

        self.handle = handle;
    }

    #[cfg(not(feature = "optionless-accessors"))]
    fn move_to(&mut self, handle: HNode) -> bool {
        #[cfg(debug_assertions)]
        self.lvec.check_handle(handle);
        
        if self.lvec.is_empty() {
            false
        } else {
            self.handle = handle;
            true
        }
    }

    fn move_next(&mut self) -> Option<HNode> {
        self.lvec.next_node(self.handle).map(|hnext| {
            self.handle = hnext;
            hnext
        })
    }

    fn move_prev(&mut self) -> Option<HNode> {
        self.lvec.prev_node(self.handle).map(|hprev| {
            self.handle = hprev;
            hprev
        })
    }

    fn move_to_front(&mut self) -> Option<HNode> {
        self.lvec.front_node().map(|hstart| {
            self.handle = hstart;
            hstart
        })
    }

    fn move_to_back(&mut self) -> Option<HNode> {
        self.lvec.back_node().map(|hend| {
            self.handle = hend;
            hend
        })
    }

    fn move_to_start(&mut self) -> Option<HNode> {
        self.move_to_front()
    }

    fn move_to_end(&mut self) -> Option<HNode> {
        self.move_to_back()
    }
    fn forward(&mut self, n: usize) ->Result<HNode, HNode> {
        for _ in 0..n {
            if self.move_next().is_none() {
                return Err(self.handle);
            }
        }
        Ok(self.handle)
    }
    fn backward(&mut self, n: usize) -> Result<HNode, HNode> {
        for _ in 0..n {
            if self.move_prev().is_none() {
                return Err(self.handle);
            }
        }
        Ok(self.handle)
    }
}

impl<'a, T> Deref for Cursor<'a, T> {
    type Target = T;

    fn deref(&self) -> &Self::Target {
        #[cfg(feature = "optionless-accessors")]
        { self.get() }

        #[cfg(not(feature = "optionless-accessors"))]
        { self.get().unwrap() }
    }
}

/// A cursor which can read and write the elements of the list. `CursorMut`
/// supports a `remove()` method which removes the element at the current
/// position of the cursor. This feature is turned on with the `"cursor-remove"`
/// feature, see [usage notes](./index.html#feature-cursor-remove).
/// 
pub struct CursorMut<'a, T> {
    lvec   : &'a mut LinkedVector<T>,
    handle : HNode,
}

impl<'a, T> CursorMut<'a, T> {

    pub(crate) fn new(lvec   : &'a mut LinkedVector<T>, 
                      handle : HNode) 
        -> Self 
    {
        #[cfg(debug_assertions)]
        lvec.check_handle(handle);

        Self {
            lvec,
            handle,
        }
    }

    /// Returns `true` if the vector the cursor is attached to is empty. Since
    /// a mutable cursor can remove items, this is provided as a means to avoid 
    /// panics if the cursor is being used to remove items. If the underlying 
    /// vector is empty, other operations may panic.
    /// 
    pub fn is_empty(&self) -> bool {
        self.lvec.is_empty()
    }

    /// Returns a mutable reference to the element at the cursor's current
    /// position. If the `optionless-accessors` feature is disabled, this will
    /// return an `Option` holding the reference, or `None`. This feature is
    /// disabled by default, see 
    /// [usage notes](./index.html#feature-optionless-accessors).
    /// 
    #[cfg(feature = "optionless-accessors")]
    pub fn get_mut(&mut self) -> &mut T {
        self.lvec.get_mut(self.handle)
    }

    /// Returns a mutable reference to the element at the cursor's current
    /// position, or `None` if the underlying vector is empty. If the 
    /// `optionless-accessors` feature is enabled, this will return a reference
    /// directly. This feature is disabled by default, see 
    /// [usage notes](./index.html#feature-optionless-accessors).
    /// 
    #[cfg(not(feature = "optionless-accessors"))]
    pub fn get_mut(&mut self) -> Option<&mut T> {
        if self.lvec.is_empty() {
            None
        } else {
            self.lvec.get_mut(self.handle)
        }
    }

    /// Inserts a new element at the cursor's current position. The cursor
    /// will be moved to the new element. Returns the handle of the new
    /// element.
    /// 
    pub fn insert(&mut self, value: T) -> HNode {
        self.handle = self.lvec.insert(self.handle, value);
        self.handle
    }

    /// Inserts a new element after the cursor's current position. The cursor
    /// will still be at the same position. Returns the handle of the new
    /// element.
    /// 
    pub fn insert_after(&mut self, value: T) -> HNode {
        self.lvec.insert_after(self.handle, value)
    }

    /// Removes the element at the current position and returns its value. The 
    /// cursor will be moved to the next element if not at the end of the 
    /// vector, otherwise it moves to the new end. If the vector is already 
    /// empty, `None` is returned. The `"cursor-remove"` feature must be
    /// enabled to use this method, see 
    /// [usage notes](./index.html#feature-cursor-remove).
    /// 
    #[cfg(feature = "cursor-remove")]
    pub fn remove(&mut self) -> Option<T> {
        if self.lvec.is_empty() {
            None
        } else {
            let hrem = self.handle;
            if let Some(hnext) = self.lvec.next_node(self.handle) {
                self.handle = hnext;
            } else if let Some(hprev) = self.lvec.prev_node(self.handle) {
                self.handle = hprev;
            } else {
                self.handle = BAD_HANDLE;
            }
            #[cfg(not(feature = "optionless-accessors"))]
            { self.lvec.remove(hrem) }

            #[cfg(feature = "optionless-accessors")]
            { Some(self.lvec.remove(hrem)) }
        }
    }
}

impl<'a, T> CursorBase<T> for CursorMut<'a, T> {
    #[cfg(feature = "optionless-accessors")]
    fn get(&self) -> &T {
        self.lvec.get(self.handle)
    }

    #[cfg(not(feature = "optionless-accessors"))]
    fn get(&self) -> Option<&T> {
        if self.lvec.is_empty() {
            None
        } else {
            self.lvec.get(self.handle)
        }
    }

    fn node(&self) -> HNode {
        self.handle
    }

    #[cfg(feature = "optionless-accessors")]
    fn move_to(&mut self, handle: HNode) {
        #[cfg(debug_assertions)]
        self.lvec.check_handle(handle);
        
        self.handle = handle;
    }

    #[cfg(not(feature = "optionless-accessors"))]
    fn move_to(&mut self, handle: HNode) -> bool {
        #[cfg(debug_assertions)]
        self.lvec.check_handle(handle);
        
        if self.lvec.is_empty() {
            false
        } else {
            self.handle = handle;
            true
        }
    }

    fn move_next(&mut self) -> Option<HNode> {
        self.lvec.next_node(self.handle).map(|hnext| {
            self.handle = hnext;
            hnext
        })
    }

    fn move_prev(&mut self) -> Option<HNode> {
        self.lvec.prev_node(self.handle).map(|hprev| {
            self.handle = hprev;
            hprev
        })
    }

    fn move_to_front(&mut self) -> Option<HNode> {
        self.lvec.front_node().map(|hstart| {
            self.handle = hstart;
            hstart
        })
    }

    fn move_to_back(&mut self) -> Option<HNode> {
        self.lvec.back_node().map(|hend| {
            self.handle = hend;
            hend
        })
    }

    fn move_to_start(&mut self) -> Option<HNode> {
        self.move_to_front()
    }

    fn move_to_end(&mut self) -> Option<HNode> {
        self.move_to_back()
    }

    fn forward(&mut self, n: usize) -> Result<HNode, HNode> {
        for _ in 0..n {
            if self.move_next().is_none() {
                return Err(self.handle);
            }
        }
        Ok(self.handle)
    }

    fn backward(&mut self, n: usize) -> Result<HNode, HNode> {
        for _ in 0..n {
            if self.move_prev().is_none() {
                return Err(self.handle);
            }
        }
        Ok(self.handle)
    }
}

impl<'a, T> Deref for CursorMut<'a, T> {
    type Target = T;

    fn deref(&self) -> &Self::Target {
        #[cfg(feature = "optionless-accessors")]
        { self.get() }

        #[cfg(not(feature = "optionless-accessors"))]
        { self.get().unwrap() }
    }
}

impl<'a, T> DerefMut for CursorMut<'a, T> {
    fn deref_mut(&mut self) -> &mut Self::Target {
        #[cfg(feature = "optionless-accessors")]
        { self.get_mut() }

        #[cfg(not(feature = "optionless-accessors"))]
        { self.get_mut().unwrap() }
    }
}