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
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
/// Calls a `Parser` method with many alternative string literals.
///
/// If any of the literals match, the parser is mutated accordingly,
/// otherwise the parser is left untouched.
///
/// # Syntax
///
/// The general syntax for this macro is
/// `parser_method!{ <parser_expression> , <method_name> => <branches> }`
///
/// Where `<parser_expression>` is an expression (of [`Parser`] type) that can be assigned into.
///
/// Where `<method_name>` is the name of one of the [`Parser`] methods usable in this macro:
///
/// - [`find_skip`] and [`rfind_skip`]:
/// use the match-like syntax, running the branch of the first pattern that matches.
/// [example](#find-example)
///
/// - [`strip_prefix`] and [`strip_suffix`]:
/// use the match-like syntax, running the branch of the first pattern that matches.
/// [example](#parsing-enum-example)
///
/// - [`trim_start_matches`] and [`trim_end_matches`]:
/// use the pattern-only syntax, trimming the string while any pattern matches.
/// [example](#trimming-example)
///
/// Where `<branches>` can be either of these, depending on the `<method_name>`:
///
/// - A match-like syntax:
/// A comma separated sequence of `<patterns> => <expression>` branches,
/// the last branch must be `_ => <expression>`.
///
/// - Just the patterns: `<patterns>`.
///
/// Where `<patterns>` can be be any amount of `|`-separated string literals
/// (`const`ants don't work here), or `_`.
/// Note that passing a macro that expands to a literal doesn't work here,
/// `concat` and `stringify` are special cased to work.
///
/// [`find_skip`]: parsing/struct.Parser.html#method.find_skip
/// [`rfind_skip`]: parsing/struct.Parser.html#method.rfind_skip
/// [`strip_prefix`]: parsing/struct.Parser.html#method.strip_prefix
/// [`strip_suffix`]: parsing/struct.Parser.html#method.strip_suffix
/// [`trim_start_matches`]: parsing/struct.Parser.html#method.trim_start_matches
/// [`trim_end_matches`]: parsing/struct.Parser.html#method.trim_end_matches
///
///
/// # Example
///
/// <span id = "parsing-enum-example"></span>
/// ### Parsing enum
///
/// ```rust
/// use konst::{
///     parsing::{Parser, ParseValueResult},
///     parser_method, unwrap_ctx,
/// };
///
/// #[derive(Debug, PartialEq)]
/// enum Color {
///     Red,
///     Blue,
///     Green,
/// }
///
/// impl Color {
///     pub const fn try_parse(mut parser: Parser<'_>) -> ParseValueResult<'_, Color> {
///         parser_method!{parser, strip_prefix;
///             "Red"|"red" => Ok((Color::Red, parser)),
///             "Blue"|"blue" => Ok((Color::Blue, parser)),
///             "Green"|"green" => Ok((Color::Green, parser)),
///             _ => Err(parser.into_other_error(&"could not parse Color")),
///         }
///     }
/// }
///
/// const COLORS: [Color; 4] = {
///     let parser = Parser::new("BlueRedGreenGreen");
///     let (c0, parser) = unwrap_ctx!(Color::try_parse(parser));
///     let (c1, parser) = unwrap_ctx!(Color::try_parse(parser));
///     let (c2, parser) = unwrap_ctx!(Color::try_parse(parser));
///     let (c3, _     ) = unwrap_ctx!(Color::try_parse(parser));
///     
///     [c0, c1, c2, c3]
/// };
///
/// assert_eq!(COLORS, [Color::Blue, Color::Red, Color::Green, Color::Green])
///
///
/// ```
///
/// <span id = "find-example"></span>
/// ### `find_skip`
///
/// ```rust
/// use konst::{
///     parsing::{Parser, ParseValueResult},
///     parser_method, unwrap_ctx,
/// };
///
/// {
///     let mut parser = Parser::new("baz_foo_bar_foo");
///
///     fn find(parser: &mut Parser<'_>) -> u32 {
///         let before = parser.remainder();
///         parser_method!{*parser, find_skip;
///             "foo" => 0,
///             "bar" => 1,
///             "baz" => 2,
///             _ => {
///                 assert_eq!(before, parser.remainder());
///                 3
///             }
///         }
///     }
///
///     assert_eq!(find(&mut parser), 2);
///     assert_eq!(parser.remainder(), "_foo_bar_foo");
///     
///     assert_eq!(find(&mut parser), 0);
///     assert_eq!(parser.remainder(), "_bar_foo");
///     
///     assert_eq!(find(&mut parser), 1);
///     assert_eq!(parser.remainder(), "_foo");
///     
///     assert_eq!(find(&mut parser), 0);
///     assert_eq!(parser.remainder(), "");
///     
///     assert_eq!(find(&mut parser), 3);
///     assert_eq!(parser.remainder(), "");
/// }
/// {
///     let mut parser = Parser::new("foo_bar_foo_baz");
///
///     fn rfind(parser: &mut Parser<'_>) -> u32 {
///         parser_method!{*parser, rfind_skip;
///             "foo" => 0,
///             "bar" => 1,
///             "baz" => 2,
///             _ => 3,
///         }
///     }
///
///     assert_eq!(rfind(&mut parser), 2);
///     assert_eq!(parser.remainder(), "foo_bar_foo_");
///     
///     assert_eq!(rfind(&mut parser), 0);
///     assert_eq!(parser.remainder(), "foo_bar_");
///     
///     assert_eq!(rfind(&mut parser), 1);
///     assert_eq!(parser.remainder(), "foo_");
///     
///     assert_eq!(rfind(&mut parser), 0);
///     assert_eq!(parser.remainder(), "");
///     
///     assert_eq!(rfind(&mut parser), 3);
///     assert_eq!(parser.remainder(), "");
/// }
///
///
///
/// ```
///
/// <span id = "trimming-example"></span>
/// ### Trimming
///
/// ```rust
/// use konst::{
///     parsing::{Parser, ParseValueResult},
///     parser_method, unwrap_ctx,
/// };
///
/// {
///     let mut parser = Parser::new("foobarhellofoobar");
///     parser_method!{parser, trim_start_matches; "foo" | "bar" }
///     assert_eq!(parser.remainder(), "hellofoobar");
/// }
/// {
///     let mut parser = Parser::new("foobarhellofoobar");
///     parser_method!{parser, trim_end_matches; "foo" | "bar" }
///     assert_eq!(parser.remainder(), "foobarhello");
/// }
/// {
///     let mut parser = Parser::new("foobar");
///     // Empty string literals make trimming finish when the previous patterns didn't match,
///     // so the "bar" pattern doesn't do anything here
///     parser_method!{parser, trim_start_matches; "foo" | "" | "bar" }
///     assert_eq!(parser.remainder(), "bar");
/// }
/// ```
///
/// [`Parser`]: parsing/struct.Parser.html
#[cfg(feature = "parsing_proc")]
#[cfg_attr(feature = "docsrs", doc(cfg(feature = "parsing_proc")))]
#[macro_export]
macro_rules! parser_method {
    ($place:expr, find_skip; $($branches:tt)* ) => {
        $crate::__priv_pa_normalize_branches!{
            ($place, FromStart, __priv_pa_find_skip, outside_konst)
            ()
            $($branches)*
        }
    };
    ($place:expr, rfind_skip; $($branches:tt)* ) => {
        $crate::__priv_pa_normalize_branches!{
            ($place, FromEnd, __priv_pa_rfind_skip, outside_konst)
            ()
            $($branches)*
        }
    };
    ($place:expr, strip_prefix; $($branches:tt)* ) => {
        $crate::__priv_pa_normalize_branches!{
            ($place, FromStart, __priv_pa_strip_prefix, outside_konst)
            ()
            $($branches)*
        }
    };
    ($place:expr, strip_suffix; $($branches:tt)* ) => {
        $crate::__priv_pa_normalize_branches!{
            ($place, FromEnd, __priv_pa_strip_suffix, outside_konst)
            ()
            $($branches)*
        }
    };
    ($place:expr, trim_start_matches; $($branches:tt)* ) => {
        $crate::__priv_pa_normalize_branches!{
            ($place, FromStart, __priv_pa_trim_start_matches, outside_konst)
            ()
            $($branches)*
        }
    };
    ($place:expr, trim_end_matches; $($branches:tt)* ) => {
        $crate::__priv_pa_normalize_branches!{
            ($place, FromEnd, __priv_pa_trim_end_matches, outside_konst)
            ()
            $($branches)*
        }
    };
    ($place:expr, $unknown_method:ident; $($branches:tt)* ) => {
        $crate::__::compile_error!{"\
            Expected the second argument (the name of the Parser method) to be one of: \n\
                - find_skip \n\
                - rfind_skip \n\
                - strip_prefix \n\
                - strip_suffix \n\
                - trim_start_matches \n\
                - trim_end_matches \n\
        "}
    };
}

#[doc(hidden)]
#[macro_export]
macro_rules! __priv_pa_normalize_branches {
    // Parsing just pattens
    (
        ($place:expr, $parse_direction:ident, $method_macro:ident, $call_place:tt)
        ()

        $($pattern:pat_param)|*
    ) => {
        $crate::$method_macro!{
            ($place, $parse_direction, $call_place)

            $($pattern)|*
        }
    };

    // Parsing match like syntax
    (
        ($place:expr, $parse_direction:ident, $method_macro:ident, $call_place:tt)
        ( $($branches:tt)* )

        _ => $expr:expr
        // Nothing left to parse
        $(, $($rem:tt)*)?
    ) => {{
        $crate::__priv_no_tokens_after_last_branch!{$($($rem)*)?}

        $crate::$method_macro!{
            ($place, $parse_direction, $call_place)

            $($branches)*
            default => ($expr)
        }
    }};
    (
        $fixed_params:tt
        ( $($prev_branch:tt)* )

        $($pattern:pat_param)|* => $expr:expr,
        $($rem:tt)*
    ) => {{
        $crate::__priv_tokens_after_middle_branch!{$($rem)*}

        $crate::__priv_pa_normalize_branches!{
            $fixed_params
            (
                $($prev_branch)*

                ($($pattern)|*) => ($expr)
            )
            $($rem)*
        }
    }};
    (
        $fixed_params:tt
        ( $($prev_branch:tt)* )

        $($pattern:pat_param)|* => $expr:block
        $($rem:tt)*
    ) => {{
        $crate::__priv_tokens_after_middle_branch!{$($rem)*}

        $crate::__priv_pa_normalize_branches!{
            $fixed_params
            (
                $($prev_branch)*

                ($($pattern)|*) => ($expr)
            )
            $($rem)*
        }
    }};
}

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

#[doc(hidden)]
#[macro_export]
macro_rules! __priv_pa_find_skip {
    ( $($args:tt)* ) => {{
        $crate::__priv_pa_find_skip_either!{
            brem, [_, brem @ ..], __priv_bstr_start,

            $($args)*
        }
    }};
}

#[doc(hidden)]
#[macro_export]
macro_rules! __priv_pa_rfind_skip {
    ( $($args:tt)* ) => {{
        $crate::__priv_pa_find_skip_either!{
            brem, [brem @ .., _], __priv_bstr_end,

            $($args)*
        }
    }};
}

#[doc(hidden)]
#[macro_export]
macro_rules! __priv_pa_find_skip_either {
    (
        $brem:ident,
        $split_first_pat:pat_param,
        $pat_proc_macro:ident,

        $accessor_args:tt

        $(
            ($($pattern:pat_param)|*)=>($e:expr)
        )*
        default => ($default:expr)
    ) => {{
        let mut bytes = $crate::__priv_pa_bytes_accessor!(get, $accessor_args);

        loop {
            match bytes {
                $(
                    $( $crate::$pat_proc_macro!(rem, $pattern))|* => {
                        $crate::__priv_pa_bytes_accessor!(set, $accessor_args, rem);
                        break $e
                    }
                )*
                _ => {
                    if let $split_first_pat = bytes {
                        bytes = $brem;
                    } else {
                        break $default;
                    }
                }
            }
        }
    }}
}

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

#[doc(hidden)]
#[macro_export]
macro_rules! __priv_pa_strip_prefix {
    (
        $accessor_args:tt

        $(
            ($($pattern:pat_param)|*)=>($e:expr)
        )*
        default => $default:expr
    ) => {
        match $crate::__priv_pa_bytes_accessor!(get, $accessor_args) {
            $(
                $( $crate::__priv_bstr_start!(rem, $pattern))|* => {
                    $crate::__priv_pa_bytes_accessor!(set, $accessor_args, rem);
                    $e
                }
            )*
            _ => $default,
        }
    };
}

#[doc(hidden)]
#[macro_export]
macro_rules! __priv_pa_strip_suffix {
    (
        $accessor_args:tt

        $(
            ($($pattern:pat_param)|*)=>($e:expr)
        )*
        default => ($default:expr)
    ) => {
        match $crate::__priv_pa_bytes_accessor!(get, $accessor_args) {
            $(
                $( $crate::__priv_bstr_end!(rem, $pattern))|* => {
                    $crate::__priv_pa_bytes_accessor!(set, $accessor_args, rem);
                    $e
                }
            )*
            _ => $default,
        }
    };
}

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

#[doc(hidden)]
#[macro_export]
macro_rules! __priv_pa_trim_start_matches {
    ( $($args:tt)* ) => {
        $crate::__priv_pa_trim_matches_inner!{__priv_bstr_start $($args)*}
    }
}

#[doc(hidden)]
#[macro_export]
macro_rules! __priv_pa_trim_end_matches {
    ( $($args:tt)* ) => {
        $crate::__priv_pa_trim_matches_inner!{__priv_bstr_end $($args)*}
    }
}

#[doc(hidden)]
#[macro_export]
macro_rules!  __priv_pa_trim_matches_inner{
    (
        $pat_proc_macro:ident

        $accessor_args:tt
        $($pattern:pat_param)|*
    ) => {{
        let mut bytes = $crate::__priv_pa_bytes_accessor!(get, $accessor_args);

        while let $( $crate::$pat_proc_macro!(rem, $pattern) )|* = bytes {
            if rem.len() == bytes.len() {
                break
            } else {
                bytes = rem;
            }
        }

        $crate::__priv_pa_bytes_accessor!(set, $accessor_args, bytes);
    }}
}

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

#[doc(hidden)]
#[macro_export]
macro_rules! __priv_pa_bytes_accessor {
    (get, ($place:expr, $parse_direction:ident, outside_konst)) => {
        $place.remainder().as_bytes()
    };
    (set, ($place:expr, FromStart, outside_konst), $rem:expr) => {
        #[allow(unused_assignments)]
        {
            $place = $place.skip($place.remainder().len() - $rem.len());
        }
    };
    (set, ($place:expr, FromEnd, outside_konst), $rem:expr) => {
        #[allow(unused_assignments)]
        {
            $place = $place.skip_back($place.remainder().len() - $rem.len());
        }
    };
}

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

#[doc(hidden)]
#[macro_export]
macro_rules! __priv_no_tokens_after_last_branch {
    () => {};
    ($($tokens:tt)+) => {
        compile_error! {"expected no branches after the first `_ => <expression>` branch"}
    };
}

#[doc(hidden)]
#[macro_export]
macro_rules! __priv_tokens_after_middle_branch {
    () => {
        compile_error! {"expected more branches, ending with a `_ => <expression>` branch"}
    };
    ($($tokens:tt)+) => {};
}