snailx 0.8.3

Zero-allocation, low-overhead access to program arguments (argv) with iterators over `&'static CStr`, `&'static str`, and `&'static OsStr`. Works in no_std (optional std feature) and targets Unix and macOS.
Documentation
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
#![allow(clippy::while_let_on_iterator, unused_qualifications)]

import! {
    {
        iter::{Iterator, FusedIterator},
        ops::{Fn, FnMut},
        option::Option::{self, None, Some}
    }
}

#[cfg(feature = "rev_iter")]
import! {
    iter::DoubleEndedIterator
}

use {
    super::{args::Args, helpers::len},
    cmdline::helpers,
    direct
};
// TODO: may be better to not implement certain things manually and just delegate to fold

macro_rules! fallible_q {
    ($self:ident, $f:expr, $i:expr) => {
        #[cfg(not(feature = "infallible_map"))]
        $f
        #[cfg(feature = "infallible_map")]
        if $self.fallible {
            $f
        } else {
            $i
        }
    };
}

macro_rules! next_back {
    ($self:ident) => {{
        while $self.cur != $self.end {
            // SAFETY: we just checked that `$self.cur < $self.end`
            $self.end = unsafe { $self.end.sub(1) };

            assume!(!$self.end.is_null() && $self.end > $self.cur);

            if let Some(v) = ($self.map)(unsafe { $self.end.read() }) {
                return Some(v);
            }
        }

        None
    }};
}

// not Copy for consistency with Args
/// An iterator that maps each argument using a user-provided function. If the mapping returns
/// `None`, that argument is skipped.
#[derive(Clone, Debug, PartialEq, Eq, PartialOrd, Ord)]
pub struct MappedArgs<Ret, F: Fn(*const u8) -> Option<Ret> = fn(*const u8) -> Option<Ret>> {
    pub(crate) cur: *const *const u8,
    pub(crate) end: *const *const u8,
    pub(crate) map: F,
    #[cfg(feature = "infallible_map")]
    pub(crate) fallible: bool
}

impl MappedArgs<&'static str, fn(*const u8) -> Option<&'static str>> {
    /// Returns an iterator over the program's arguments as `&'static str`. Non-UTF-8 arguments are
    /// skipped.
    #[must_use]
    #[cfg_attr(not(feature = "no_cold"), cold)]
    pub fn utf8() -> MappedArgs<&'static str, fn(*const u8) -> Option<&'static str>> {
        MappedArgs::new(helpers::try_to_str)
    }
}

#[cfg(feature = "std")]
impl MappedArgs<&'static ::std::ffi::OsStr, fn(*const u8) -> Option<&'static ::std::ffi::OsStr>> {
    /// Returns an iterator over the program's arguments as `&'static std::ffi::OsStr`. Requires the
    /// `std` feature.
    #[must_use]
    #[cfg_attr(not(feature = "no_cold"), cold)]
    pub fn osstr()
    -> MappedArgs<&'static ::std::ffi::OsStr, fn(*const u8) -> Option<&'static ::std::ffi::OsStr>>
    {
        #[cfg(not(feature = "infallible_map"))]
        {
            MappedArgs::new(helpers::to_osstr)
        }
        #[cfg(feature = "infallible_map")]
        {
            // SAFETY: to_osstr only returns Some
            unsafe { MappedArgs::new_infallible(helpers::to_osstr) }
        }
    }
}

#[allow(clippy::len_without_is_empty)]
impl<Ret, F: Fn(*const u8) -> Option<Ret>> MappedArgs<Ret, F> {
    /// Returns an iterator that applies `map` to each argument (`*const u8`). If `map` returns
    /// `None`, that argument is skipped.
    ///
    /// The mapping function is assumed to be fallible, so `size_hint()` will return
    /// `(0, Some(len))`.
    #[must_use]
    #[cfg_attr(not(feature = "no_cold"), cold)]
    pub fn new(map: F) -> MappedArgs<Ret, F> {
        let (argc, argv) = direct::argc_argv();
        MappedArgs {
            cur: argv,
            end: helpers::back(argv, argc),
            map,
            #[cfg(feature = "infallible_map")]
            fallible: true
        }
    }

    #[cfg(feature = "infallible_map")]
    /// Returns an iterator that applies `map` to each argument (`*const u8`).
    ///
    /// The mapping function is assumed to be infallible, so `size_hint()` will return
    /// `(len, Some(len))`.
    ///
    /// # Safety
    ///
    /// `map` must never return `None`.
    #[must_use]
    #[cfg_attr(not(feature = "no_cold"), cold)]
    pub unsafe fn new_infallible(map: F) -> MappedArgs<Ret, F> {
        let (argc, argv) = direct::argc_argv();
        MappedArgs { cur: argv, end: helpers::back(argv, argc), map, fallible: false }
    }

    /// Converts this mapped iterator to an [`Args`] instance. Like [`Args::new`], but operates on
    /// an existing mapped iterator.
    #[must_use]
    #[cfg_attr(not(feature = "no_cold"), cold)]
    pub fn unmap(self) -> Args {
        Args { cur: self.cur, end: self.end }
    }

    // as_slice removed as it was pretty useless

    /// Gets the remaining length of items in this iterator.
    ///
    /// Returns `None` if `infallible_map` is disabled or this iterator's mapping function is marked
    /// as fallible. If `infallible_map` is enabled and this iterator is marked as infallible,
    /// returns `Some(len)`.
    pub fn len(&self) -> Option<usize> {
        #[cfg(not(feature = "infallible_map"))]
        {
            None
        }
        #[cfg(feature = "infallible_map")]
        {
            if self.fallible { None } else { Some(unsafe { len(self.cur, self.end) }) }
        }
    }
}

impl<Ret, F: Fn(*const u8) -> Option<Ret>> Iterator for MappedArgs<Ret, F> {
    type Item = Ret;

    // TODO: try rewriting these to be faster

    #[allow(clippy::inline_always)]
    #[inline(always)]
    fn next(&mut self) -> Option<Ret> {
        while self.cur != self.end {
            // SAFETY: we just checked that `self.cur + n` is in bounds
            let p = self.cur;
            self.cur = unsafe { self.cur.add(1) };
            assume!(!p.is_null() && p < self.end);

            // SAFETY: the pointer is from argv, which always contains valid pointers to cstrs
            if let Some(v) = (self.map)(unsafe { p.read() }) {
                return Some(v);
            }
        }

        None
    }

    /// Returns the bounds on the remaining length of the iterator.
    ///
    /// Specifically, `size_hint()` returns a tuple where the first element
    /// is the lower bound, and the second element is the upper bound.
    ///
    /// The upper bound will always be `Some(len)`, where `len` is the number of elements remaining
    /// in the iterator if the mapping function returns `Some` for every element.
    ///
    /// If `infallible_map` is disabled or this iterator's mapping function has been marked as
    /// fallible, the lower bound will be 0. If `infallible_map` is enabled and this iterator is
    /// marked as infallible, the lower bound will also be `len`.
    #[allow(clippy::inline_always)]
    #[inline(always)]
    fn size_hint(&self) -> (usize, Option<usize>) {
        #[cfg(not(feature = "infallible_map"))]
        // 0 lower bound because all args may be skipped, len upper bound because all may be fine
        {
            (0, Some(unsafe { len(self.cur, self.end) }))
        }
        #[cfg(feature = "infallible_map")]
        {
            let len = unsafe { len(self.cur, self.end) };
            if self.fallible { (0, Some(len)) } else { (len, Some(len)) }
        }
    }

    #[cfg(feature = "infallible_map")]
    #[inline]
    fn count(self) -> usize {
        if self.fallible {
            self.fold(0, |count, _| count + 1)
        } else {
            // SAFETY: the pointers are guaranteed to be valid for len() as they are from argv
            unsafe { len(self.cur, self.end) }
        }
    }

    #[inline]
    fn last(mut self) -> Option<Ret> {
        #[cfg(feature = "rev_iter")]
        {
            self.next_back()
        }
        #[cfg(not(feature = "rev_iter"))]
        {
            next_back!(self)
        }
    }

    #[inline]
    fn nth(&mut self, n: usize) -> Option<Ret> {
        // SAFETY: the pointers are guaranteed to be valid for len() as they are from argv
        if n >= unsafe { len(self.cur, self.end) } {
            self.cur = self.end;
            return None;
        }

        fallible_q!(
            self,
            {
                let mut i = 0;
                while self.cur != self.end {
                    let p = self.cur;
                    // SAFETY: we just checked that `self.cur < self.end`
                    self.cur = unsafe { self.cur.add(1) };
                    assume!(!p.is_null() && p < self.end);

                    // SAFETY: the pointer is from argv, which always contains valid pointers to
                    // cstrs
                    if let Some(v) = (self.map)(unsafe { p.read() }) {
                        if i == n {
                            return Some(v);
                        }
                        i += 1;
                    }
                }
            },
            {
                // SAFETY: we just checked that `self.cur + n` is in bounds
                self.cur = unsafe { self.cur.add(n) };
                assume!(!self.cur.is_null() && self.cur < self.end);

                return self.next();
            }
        );

        None
    }

    #[inline]
    fn fold<B, G: FnMut(B, Ret) -> B>(mut self, mut acc: B, mut f: G) -> B {
        if self.cur == self.end {
            return acc;
        }

        loop {
            assume!(!self.cur.is_null() && self.cur < self.end);
            fallible_q!(
                self,
                {
                    if let Some(v) = (self.map)(unsafe { self.cur.read() }) {
                        acc = f(acc, v);
                    }
                },
                {
                    // SAFETY: caller guarantees that the map is infallible
                    acc = f(
                        acc,
                        assume!(
                            car,
                            Some,
                            e,
                            unsafe { (self.map)(self.cur.read()) },
                            "map is infallible, but returned None"
                        )
                    );
                }
            );

            // SAFETY: we just checked that `self.cur` is in bounds
            self.cur = unsafe { self.cur.add(1) };
            if self.cur == self.end {
                break;
            }
        }
        acc
    }
}

#[cfg(feature = "rev_iter")]
impl<Ret, F: Fn(*const u8) -> Option<Ret>> DoubleEndedIterator for MappedArgs<Ret, F> {
    #[inline]
    fn next_back(&mut self) -> Option<Ret> {
        next_back!(self)
    }

    #[inline]
    fn nth_back(&mut self, n: usize) -> Option<Ret> {
        if n >= unsafe { len(self.cur, self.end) } {
            self.cur = self.end;
            return None;
        }

        fallible_q!(
            self,
            {
                let mut i = 0;
                while self.cur != self.end {
                    self.end = unsafe { self.end.sub(1) };
                    assume!(!self.end.is_null() && self.end > self.cur);

                    if let Some(v) = (self.map)(unsafe { self.end.read() }) {
                        if i == n {
                            return Some(v);
                        }
                        i += 1;
                    }
                }
            },
            {
                self.end = unsafe { self.end.sub(n) };
                assume!(!self.end.is_null() && self.end > self.cur);

                return self.next_back();
            }
        );

        None
    }

    #[inline]
    fn rfold<B, G: FnMut(B, Ret) -> B>(mut self, mut acc: B, mut f: G) -> B {
        if self.cur == self.end {
            return acc;
        }

        loop {
            // SAFETY: we just checked that `self.cur < self.end` in the last loop
            self.end = unsafe { self.end.sub(1) };
            assume!(!self.end.is_null() && self.end > self.cur);

            #[cfg(not(feature = "infallible_map"))]
            {
                // SAFETY: the pointer is from argv, which always contains valid pointers to cstrs
                if let Some(v) = (self.map)(unsafe { self.end.read() }) {
                    acc = f(acc, v);
                }
            }
            #[cfg(feature = "infallible_map")]
            {
                if self.fallible {
                    // SAFETY: the pointer is from argv, which always contains valid pointers to
                    // cstrs
                    if let Some(v) = (self.map)(unsafe { self.end.read() }) {
                        acc = f(acc, v);
                    }
                } else {
                    // SAFETY: caller guarantees that the map is infallible
                    acc = f(
                        acc,
                        assume!(
                            car,
                            Some,
                            e,
                            unsafe { (self.map)(self.end.read()) },
                            "map is infallible, but returned None"
                        )
                    );
                }
            }

            if self.cur == self.end {
                break;
            }
        }
        acc
    }
}

impl<Ret, F: Fn(*const u8) -> Option<Ret>> FusedIterator for MappedArgs<Ret, F> {}

// removed as i realized neither of these fit the functionality of MappedArgs
//
// impl<Ret, F: Fn(*const u8) -> Option<Ret>> ExactSizeIterator
//     for MappedArgs<Ret, F>
// {
//     #[allow(clippy::inline_always)]
//     #[inline(always)]
//     fn len(&self) -> usize {
//         len(self.cur, self.end)
//     }
// }