gramex 0.1.1

common language for advance parsers
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
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
//! # [`str`] implementation
//! [`str`] implements [`MatchAble`] where the tokens are the characters in the string, index by byte position.
//!
//! [`str`] implements [`MatchBy`] for [`char`], [`&str`](str), [`&char`](char), [`&String`](String), [`&Box<str>`](Box<str>), and [`&Cow<'a, str>`](Cow<str>).
//!
//! it also implements range matching for [`char`].
//!
//! # example
//! ```
//! assert!(matches!("abc": str, 'a' 'b' 'c'));
//! assert!(matches!("abc": str, "abc"));
//! assert!(matches!("abc": str, 'a'..'z' {&String::from("bc")}));
//! ```
//!
//! this module also export common and standared patterns like [`lower`] and [`alpha`].

use std::{borrow::Cow, ops::RangeInclusive};

use crate::{MatchAble, MatchBy, MatchSignal, MatchStatus, Matcher};

impl MatchAble for str {
	type Slice<'a> = &'a str;
	#[inline]
	fn len(&self) -> usize {
		self.len()
	}
	#[inline]
	fn slice(&self, range: std::ops::Range<usize>) -> &str {
		&self[range]
	}
	#[inline]
	fn get_n(&self, ind: &mut usize, n: usize, _status: &MatchStatus) -> Result<&str, MatchSignal> {
		let tail = &self[*ind..];
		let mut chars = tail.chars();

		if chars.nth(n - 1).is_none() {
			return Err(MatchSignal::InComplete);
		}

		let offset = tail.len() - chars.as_str().len();
		*ind += offset;
		Ok(unsafe { tail.get_unchecked(..offset) })
	}
}

impl MatchBy<char> for str {
	#[inline]
	fn match_by(&self, matcher: char, ind: &mut usize, _status: &MatchStatus) -> MatchSignal {
		let len = matcher.len_utf8();
		if len + *ind > self.len() {
			MatchSignal::InComplete
		} else if self[*ind..].starts_with(matcher) {
			*ind += len;
			MatchSignal::Matched
		} else {
			MatchSignal::MisMatched
		}
	}
}
impl<'a> MatchBy<&'a str> for str {
	#[inline]
	fn match_by(&self, matcher: &'a str, ind: &mut usize, _status: &MatchStatus) -> MatchSignal {
		let len = matcher.len();
		if len + *ind > self.len() {
			MatchSignal::InComplete
		} else if self[*ind..].starts_with(matcher) {
			*ind += len;
			MatchSignal::Matched
		} else {
			MatchSignal::MisMatched
		}
	}
}
impl<'a> MatchBy<&'a char> for str {
	#[inline]
	fn match_by(&self, matcher: &'a char, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
		MatchBy::match_by(self, *matcher, ind, status)
	}
}
macro_rules! as_ref_impl {
	[$($ty:ty) +] => {
		$(impl<'a> MatchBy<&'a $ty> for str {
			#[inline]
			fn match_by(
				&self, matcher: &'a $ty, ind: &mut usize, status: &MatchStatus,
			) -> MatchSignal {
				MatchBy::match_by(self, AsRef::<str>::as_ref(matcher), ind, status)
			}
		})*
	};
}
as_ref_impl![String Box<str> Cow<'a, str>];
impl MatchBy<RangeInclusive<char>> for str {
	#[inline]
	fn match_by(
		&self, matcher: RangeInclusive<char>, ind: &mut usize, _status: &MatchStatus,
	) -> MatchSignal {
		let Some(cur_char) = self[*ind..].chars().next() else {
			return MatchSignal::InComplete;
		};
		if matcher.contains(&cur_char) {
			*ind += cur_char.len_utf8();
			MatchSignal::Matched
		} else {
			MatchSignal::MisMatched
		}
	}
}

macro_rules! match_char {
	($value:ident, $ind:ident, $char:ident => $predicate:expr) => {{
		let Some($char) = $value[*$ind..].chars().next() else {
			return MatchSignal::InComplete;
		};
		*$ind += $char.len_utf8();
		if $predicate { MatchSignal::Matched } else { MatchSignal::MisMatched }
	}};
}

/// matches a char using a predicate.
///
/// like [`a`](crate::a), but accept a char predicate, not a 1 char [`str`] slice.
///
/// # example
/// ```
/// assert!(matches!("abc": str, {a_char(char::is_lowercase)}[3]));
/// ```
#[inline]
pub fn a_char(predicate: impl Fn(char) -> bool) -> impl Matcher<str> {
	move |v, ind, _| match_char!(v, ind, char => predicate(char))
}

/// matches a char that is lowercase.
///
/// this is a unicode aware version of [`ascii_lower`].
///
/// it is based on [`char::is_lowercase`].
///
/// # example
/// ```
/// assert!(matches!("abc": str, lower[3]));
/// ```
#[inline]
pub fn lower(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_lowercase())
}
/// matches a char that is uppercase.
///
/// this is a unicode aware version of [`ascii_upper`].
///
/// it is based on [`char::is_uppercase`].
///
/// # example
/// ```
/// assert!(matches!("ABC": str, upper[3]));
/// ```
#[inline]
pub fn upper(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_uppercase())
}
/// matches a char that is alphabetic.
///
/// this is a unicode aware version of [`ascii_alpha`].
///
/// it is based on [`char::is_alphabetic`].
///
/// # example
/// ```
/// assert!(matches!("abc": str, alpha[3]));
/// ```
#[inline]
pub fn alpha(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_alphabetic())
}
/// matches a char that is numeric.
///
/// this function is unicode aware.
///
/// it is based on [`char::is_numeric`].
///
/// # example
/// ```
/// assert!(matches!("123": str, num[3]));
/// ```
#[inline]
pub fn num(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_numeric())
}
/// matches a char that is alphanumeric.
///
/// this is a unicode aware version of [`ascii_alphanum`].
///
/// it is based on [`char::is_alphanumeric`].
///
/// # example
/// ```
/// assert!(matches!("abc123": str, alphanum[6]));
/// ```
#[inline]
pub fn alphanum(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_alphanumeric())
}
/// matches a char that is a whitespace.
///
/// this is a unicode aware version of [`ascii_ws`].
///
/// it is based on [`char::is_whitespace`].
///
/// # example
/// ```
/// assert!(matches!(" \n\t": str, ws[3]));
/// ```
#[inline]
pub fn ws(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_whitespace())
}
/// matches a char that is a control character.
///
/// this is a unicode aware version of [`ascii_control`].
///
/// it is based on [`char::is_control`].
///
/// # example
/// ```
/// assert!(matches!("\n": str, control));
/// ```
#[inline]
pub fn control(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_control())
}

/// matches a char that is ascii.
///
/// it is based on [`char::is_ascii`].
///
/// # example
/// ```
/// assert!(matches!("abc": str, ascii[3]));
/// ```
#[inline]
pub fn ascii(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_ascii())
}
/// matches a char that is ascii lowercase.
///
/// it is based on [`char::is_ascii_lowercase`].
///
/// # example
/// ```
/// assert!(matches!("abc": str, ascii_lower[3]));
/// ```
#[inline]
pub fn ascii_lower(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_ascii_lowercase())
}
/// matches a char that is ascii uppercase.
///
/// it is based on [`char::is_ascii_uppercase`].
///
/// # example
/// ```
/// assert!(matches!("ABC": str, ascii_upper[3]));
/// ```
#[inline]
pub fn ascii_upper(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_ascii_uppercase())
}
/// matches a char that is ascii alphabetic.
///
/// it is based on [`char::is_ascii_alphabetic`].
///
/// # example
/// ```
/// assert!(matches!("abc": str, ascii_alpha[3]));
/// ```
#[inline]
pub fn ascii_alpha(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_ascii_alphabetic())
}
/// matches a char that is ascii alphanumeric.
///
/// it is based on [`char::is_ascii_alphanumeric`].
///
/// # example
/// ```
/// assert!(matches!("abc123": str, ascii_alphanum[6]));
/// ```
#[inline]
pub fn ascii_alphanum(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_ascii_alphanumeric())
}
/// matches a char that is an ascii whitespace.
///
/// it is based on [`char::is_ascii_whitespace`].
///
/// # example
/// ```
/// assert!(matches!(" \n\t": str, ascii_ws[3]));
/// ```
#[inline]
pub fn ascii_ws(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_ascii_whitespace())
}
/// matches a char that is an ascii control character.
///
/// it is based on [`char::is_ascii_control`].
///
/// # example
/// ```
/// assert!(matches!("\n": str, ascii_control));
/// ```
#[inline]
pub fn ascii_control(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_ascii_control())
}
/// matches a char that is ascii printable.
///
/// it is based on [`char::is_ascii_graphic`].
///
/// # example
/// ```
/// assert!(matches!("a1!": str, ascii_printable[3]));
/// ```
#[inline]
pub fn ascii_printable(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_ascii_graphic())
}
/// matches a char that is ascii punctuation.
///
/// it is based on [`char::is_ascii_punctuation`].
///
/// # example
/// ```
/// assert!(matches!("!@#": str, ascii_punct[3]));
/// ```
#[inline]
pub fn ascii_punct(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => char.is_ascii_punctuation())
}

/// matches a char that is a decimal digit (`0`-`9`).
///
/// # example
/// ```
/// assert!(matches!("123": str, dec[3]));
/// ```
#[inline]
#[allow(clippy::manual_is_ascii_check)]
pub fn dec(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => matches!(char, '0'..='9'))
}
/// matches a char that is a hexadecimal digit.
///
/// it matches `0`-`9`, `a`-`f`, and `A`-`F`.
///
/// # example
/// ```
/// assert!(matches!("1aF": str, hex[3]));
/// ```
#[inline]
#[allow(clippy::manual_is_ascii_check)]
pub fn hex(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => matches!(char, '0'..='9' | 'a'..='f' | 'A'..='F'))
}
/// matches a char that is a lower hexadecimal digit.
///
/// it matches `0`-`9`, and `a`-`f`.
///
/// # example
/// ```
/// assert!(matches!("1af": str, hex_lower[3]));
/// ```
#[inline]
pub fn hex_lower(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => matches!(char, '0'..='9' | 'a'..='f'))
}
/// matches a char that is an upper hexadecimal digit.
///
/// it matches `0`-`9`, and `A`-`F`.
///
/// # example
/// ```
/// assert!(matches!("1AF": str, hex_upper[3]));
/// ```
#[inline]
pub fn hex_upper(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => matches!(char, '0'..='9' | 'A'..='F'))
}
/// matches a char that is an octal digit (`0`-`7`).
///
/// # example
/// ```
/// assert!(matches!("123": str, octal[3]));
/// ```
#[inline]
pub fn octal(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => matches!(char, '0'..='7'))
}
/// matches a char that is a binary digit (`0` or `1`).
///
/// # example
/// ```
/// assert!(matches!("01": str, bin[2]));
/// ```
#[inline]
pub fn bin(value: &str, ind: &mut usize, status: &MatchStatus) -> MatchSignal {
	_ = status;
	match_char!(value, ind, char => matches!(char, '0' | '1'))
}
/// matches a char that is a digit of a given radix.
///
/// it is based on [`char::is_digit`].
///
/// # example
/// ```
/// assert!(matches!("123": str, {digit(4)}[3]));
/// ```
#[inline]
pub fn digit(radix: u32) -> impl Matcher<str> {
	move |value, ind, _| match_char!(value, ind, char => char.is_digit(radix))
}