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
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
//! Traits input types have to implement to work with nom combinators
//!
use std::ops::{Range,RangeTo,RangeFrom,RangeFull};
use std::iter::Enumerate;

#[cfg(not(feature = "core"))]
use std::str::Chars;
#[cfg(not(feature = "core"))]
use std::str::CharIndices;
#[cfg(not(feature = "core"))]
use std::str::FromStr;
#[cfg(not(feature = "core"))]
use std::str::from_utf8;


/// abstract method to calculate the input length
pub trait InputLength {
  /// calculates the input length, as indicated by its name,
  /// and the name of the trait itself
  #[inline]
  fn input_len(&self) -> usize;
}

impl<'a, T> InputLength for &'a[T] {
  #[inline]
  fn input_len(&self) -> usize {
    self.len()
  }
}

#[cfg(not(feature = "core"))]
impl<'a> InputLength for &'a str {
  #[inline]
  fn input_len(&self) -> usize {
    self.len()
  }
}

impl<'a> InputLength for (&'a [u8], usize) {
  #[inline]
  fn input_len(&self) -> usize {
    //println!("bit input length for ({:?}, {}):", self.0, self.1);
    let res = self.0.len() * 8 - self.1;
    //println!("-> {}", res);
    res
  }
}

/// transforms common types to a char for basic token parsing
pub trait AsChar {
    /// makes a char from self
    #[inline]
    fn as_char(self)      -> char;

    /// tests that self is an alphabetic character
    ///
    /// warning: for `&str` it recognizes alphabetic
    /// characters outside of the 52 ASCII letters
    #[inline]
    fn is_alpha(self)     -> bool;

    /// tests that self is an alphabetic character
    /// or a decimal digit
    #[inline]
    fn is_alphanum(self)  -> bool;
    /// tests that self is a decimal digit
    #[inline]
    fn is_dec_digit(self) -> bool;
    /// tests that self is an hex digit
    #[inline]
    fn is_hex_digit(self) -> bool;
    /// tests that self is an octal digit
    #[inline]
    fn is_oct_digit(self) -> bool;
}

impl AsChar for u8 {
    #[inline]
    fn as_char(self)      -> char { self as char }
    #[inline]
    fn is_alpha(self)     -> bool {
      (self >= 0x41 && self <= 0x5A) || (self >= 0x61 && self <= 0x7A)
    }
    #[inline]
    fn is_alphanum(self)  -> bool { self.is_alpha() || self.is_dec_digit() }
    #[inline]
    fn is_dec_digit(self) -> bool {
      self >= 0x30 && self <= 0x39
    }
    #[inline]
    fn is_hex_digit(self) -> bool {
      (self >= 0x30 && self <= 0x39) ||
      (self >= 0x41 && self <= 0x46) ||
      (self >= 0x61 && self <= 0x66)
    }
    #[inline]
    fn is_oct_digit(self) -> bool {
      self >= 0x30 && self <= 0x37
    }
}
impl<'a> AsChar for &'a u8 {
    #[inline]
    fn as_char(self)      -> char { *self as char }
    #[inline]
    fn is_alpha(self)     -> bool {
      (*self >= 0x41 && *self <= 0x5A) || (*self >= 0x61 && *self <= 0x7A)
    }
    #[inline]
    fn is_alphanum(self)  -> bool { self.is_alpha() || self.is_dec_digit() }
    #[inline]
    fn is_dec_digit(self) -> bool {
      *self >= 0x30 && *self <= 0x39
    }
    #[inline]
    fn is_hex_digit(self) -> bool {
      (*self >= 0x30 && *self <= 0x39) ||
      (*self >= 0x41 && *self <= 0x46) ||
      (*self >= 0x61 && *self <= 0x66)
    }
    #[inline]
    fn is_oct_digit(self)   -> bool {
      *self >= 0x30 && *self <= 0x37
    }
}

impl AsChar for char {
    #[inline]
    fn as_char(self)      -> char { self }
    #[inline]
    fn is_alpha(self)     -> bool { self.is_alphabetic() }
    #[inline]
    fn is_alphanum(self)  -> bool { self.is_alpha() || self.is_dec_digit() }
    #[inline]
    fn is_dec_digit(self) -> bool { self.is_digit(10) }
    #[inline]
    fn is_hex_digit(self) -> bool { self.is_digit(16) }
    #[inline]
    fn is_oct_digit(self) -> bool { self.is_digit(8) }
}

impl<'a> AsChar for &'a char {
    #[inline]
    fn as_char(self)      -> char { self.clone() }
    #[inline]
    fn is_alpha(self)     -> bool { self.is_alphabetic() }
    #[inline]
    fn is_alphanum(self)  -> bool { self.is_alpha() || self.is_dec_digit() }
    #[inline]
    fn is_dec_digit(self) -> bool { self.is_digit(10) }
    #[inline]
    fn is_hex_digit(self) -> bool { self.is_digit(16) }
    #[inline]
    fn is_oct_digit(self) -> bool { self.is_digit(8) }
}

/// abstracts common iteration operations on the input type
///
/// it needs a distinction between `Item` and `RawItem` because
/// `&[T]` iterates on references
pub trait InputIter {
    type Item     : AsChar;
    type RawItem  : AsChar;
    type Iter     : Iterator<Item=(usize, Self::Item)>;
    type IterElem : Iterator<Item=Self::Item>;

    /// returns an iterator over the elements and their byte offsets
    fn iter_indices(&self)  -> Self::Iter;
    /// returns an iterator over the elements
    fn iter_elements(&self) -> Self::IterElem;
    /// finds the byte position of the element
    fn position<P>(&self, predicate: P) -> Option<usize> where P: Fn(Self::RawItem) -> bool;
    /// get the byte offset from the element's position in the stream
    fn slice_index(&self, count:usize) -> Option<usize>;
}

/// abstracts slicing operations
pub trait InputTake {
    /// returns a slice of `count` bytes
    fn take<P>(&self, count: usize)  -> Option<&Self>;
    /// split the stream at the `count` byte offset
    fn take_split<P>(&self, count: usize) -> Option<(&Self,&Self)>;
}

impl<'a> InputIter for &'a [u8] {
    type Item     = &'a u8;
    type RawItem  = u8;
    type Iter     = Enumerate<::std::slice::Iter<'a, u8>>;
    type IterElem = ::std::slice::Iter<'a, u8>;

    #[inline]
    fn iter_indices(&self) -> Enumerate<::std::slice::Iter<'a, u8>> {
        self.iter().enumerate()
    }
    #[inline]
    fn iter_elements(&self) -> ::std::slice::Iter<'a,u8> {
      self.iter()
    }
    #[inline]
    fn position<P>(&self, predicate: P) -> Option<usize> where P: Fn(Self::RawItem) -> bool {
      self.iter().position(|b| predicate(*b))
    }
    #[inline]
    fn slice_index(&self, count:usize) -> Option<usize> {
      if self.len() >= count {
        Some(count)
      } else {
        None
      }
    }
}

impl InputTake for [u8] {
    #[inline]
    fn take<P>(&self, count: usize) -> Option<&Self> {
      if self.len() >= count {
        Some(&self[0..count])
      } else {
        None
      }
    }
    #[inline]
    fn take_split<P>(&self, count: usize) -> Option<(&Self,&Self)> {
      if self.len() >= count {
        Some((&self[count..],&self[..count]))
      } else {
        None
      }
    }
}

#[cfg(not(feature = "core"))]
impl<'a> InputIter for &'a str {
    type Item     = char;
    type RawItem  = char;
    type Iter     = CharIndices<'a>;
    type IterElem = Chars<'a>;
    #[inline]
    fn iter_indices(&self) -> CharIndices<'a> {
        self.char_indices()
    }
    #[inline]
    fn iter_elements(&self) -> Chars<'a> {
      self.chars()
    }
    fn position<P>(&self, predicate: P) -> Option<usize> where P: Fn(Self::RawItem) -> bool {
      for (o,c) in self.char_indices() {
        if predicate(c) {
          return Some(o)
        }
      }
      None
    }
    #[inline]
    fn slice_index(&self, count:usize) -> Option<usize> {
      let mut cnt    = 0;
      for (index, _) in self.char_indices() {
        if cnt == count {
          return Some(index)
        }
        cnt += 1;
      }
      if cnt == count {
        return Some(self.len())
      }
      None
    }
}

#[cfg(not(feature = "core"))]
impl InputTake for str {
    #[inline]
    fn take<P>(&self, count: usize) -> Option<&Self> {
      let mut cnt    = 0;
      for (index, _) in self.char_indices() {
        if cnt == count {
          return Some(&self[..index])
        }
        cnt += 1;
      }
      None
    }

    // return byte index
    #[inline]
    fn take_split<P>(&self, count: usize) -> Option<(&Self,&Self)> {
      let mut cnt    = 0;
      for (index, _) in self.char_indices() {
        if cnt == count {
          return Some((&self[index..],&self[..index]))
        }
        cnt += 1;
      }
      None
    }
}

/// indicates wether a comparison was successful, an error, or
/// if more data was needed
#[derive(Debug,PartialEq)]
pub enum CompareResult {
  Ok,
  Incomplete,
  Error
}

/// abstracts comparison operations
pub trait Compare<T> {
  /// compares self to another value for equality
  fn compare(&self, t:T)         -> CompareResult;
  /// compares self to another value for equality
  /// independently of the case.
  ///
  /// warning: for `&str`, the comparison is done
  /// by lowercasing both strings and comparing
  /// the result. This is a temporary solution until
  /// a better one appears
  fn compare_no_case(&self, t:T) -> CompareResult;
}

impl<'a,'b> Compare<&'b[u8]> for &'a [u8] {
  #[inline(always)]
  fn compare(&self, t: &'b[u8]) -> CompareResult {
    let len     = self.len();
    let blen    = t.len();
    let m       = if len < blen { len } else { blen };
    let reduced = &self[..m];
    let b       = &t[..m];

    if reduced != b {
      CompareResult::Error
    } else if m < blen {
      CompareResult::Incomplete
    } else {
      CompareResult::Ok
    }
  }

  #[inline(always)]
  fn compare_no_case(&self, t: &'b[u8]) -> CompareResult {
    let len     = self.len();
    let blen    = t.len();
    let m       = if len < blen { len } else { blen };
    let reduced = &self[..m];
    let other   = &t[..m];

    if !reduced.iter().zip(other).all(|(a, b)| {
      match (*a,*b) {
        (0...64, 0...64) | (91...96, 91...96) | (123...255, 123...255) => a == b,
        (65...90, 65...90) | (97...122, 97...122) | (65...90, 97...122 ) |(97...122, 65...90) => {
          *a | 0b00100000 == *b | 0b00100000
        }
        _ => false
      }
    }) {
      CompareResult::Error
    } else if m < blen {
      CompareResult::Incomplete
    } else {
      CompareResult::Ok
    }
  }
}

#[cfg(not(feature = "core"))]
impl<'a,'b> Compare<&'b str> for &'a [u8] {
  #[inline(always)]
  fn compare(&self, t: &'b str) -> CompareResult {
    self.compare(str::as_bytes(t))
  }
  #[inline(always)]
  fn compare_no_case(&self, t: &'b str) -> CompareResult {
    self.compare_no_case(str::as_bytes(t))
  }
}

#[cfg(not(feature = "core"))]
impl<'a,'b> Compare<&'b str> for &'a str {
  #[inline(always)]
  fn compare(&self, t: &'b str) -> CompareResult {
    let pos = self.chars().zip(t.chars()).position(|(a,b)| a != b);

    match pos {
      Some(_) => CompareResult::Error,
      None    => if self.len() >= t.len() {
        CompareResult::Ok
      } else {
        CompareResult::Incomplete
      }
    }
  }

  //FIXME: this version is too simple and does not use the current locale
  #[inline(always)]
  fn compare_no_case(&self, t: &'b str) -> CompareResult {
    let pos = self.to_lowercase().chars().zip(t.to_lowercase().chars()).position(|(a,b)| a != b);

    match pos {
      Some(_) => CompareResult::Error,
      None    => if self.len() >= t.len() {
        CompareResult::Ok
      } else {
        CompareResult::Incomplete
      }
    }
  }
}

/// look for self in the given input stream
pub trait FindToken<T> {
  fn find_token(&self, input: T) -> bool;
}

impl<'a> FindToken<&'a[u8]> for u8 {
  fn find_token(&self, input: &[u8]) -> bool {
    for &i in input.iter() {
      if *self == i { return true }
    }
    false
  }
}

#[cfg(not(feature = "core"))]
impl<'a> FindToken<&'a str> for u8 {
  fn find_token(&self, input: &str) -> bool {
    self.find_token(str::as_bytes(input))
  }
}

impl<'a,'b> FindToken<&'a[u8]> for &'b u8 {
  fn find_token(&self, input: &[u8]) -> bool {
    for &i in input.iter() {
      if **self == i { return true }
    }
    false
  }
}

#[cfg(not(feature = "core"))]
impl<'a,'b> FindToken<&'a str> for &'b u8 {
  fn find_token(&self, input: &str) -> bool {
    self.find_token(str::as_bytes(input))
  }
}

#[cfg(not(feature = "core"))]
impl<'a> FindToken<&'a str> for char {
  fn find_token(&self, input: &str) -> bool {
    for i in input.chars() {
      if *self == i { return true }
    }
    false
  }
}

/// look for a substring in self
pub trait FindSubstring<T> {
  fn find_substring(&self, substr: T) -> Option<usize>;
}

impl<'a,'b> FindSubstring<&'b [u8]> for &'a[u8] {
  fn find_substring(&self, substr: &'b[u8]) -> Option<usize> {
    for (index,win) in self.windows(substr.len()).enumerate() {
      if win == substr {
        return Some(index)
      }
    }
    None
  }
}

#[cfg(not(feature = "core"))]
impl<'a,'b> FindSubstring<&'b str> for &'a[u8] {
  fn find_substring(&self, substr: &'b str) -> Option<usize> {
    self.find_substring(str::as_bytes(substr))
  }
}

#[cfg(not(feature = "core"))]
impl<'a,'b> FindSubstring<&'b str> for &'a str {
  //returns byte index
  fn find_substring(&self, substr: &'b str) -> Option<usize> {
    self.find(substr)
  }
}

/// abstract method to calculate the input length
#[cfg(not(feature = "core"))]
pub trait ParseTo<R> {
  fn parse_to(&self) -> Option<R>;
}

#[cfg(not(feature = "core"))]
impl<'a,R: FromStr> ParseTo<R> for &'a[u8] {
  fn parse_to(&self) -> Option<R> {
    from_utf8(self).ok().and_then(|s| s.parse().ok())
  }
}

#[cfg(not(feature = "core"))]
impl<'a,R:FromStr> ParseTo<R> for &'a str {
  fn parse_to(&self) -> Option<R> {
    self.parse().ok()
  }
}

/// slicing operations using ranges
///
/// this trait is loosely based on
/// `Index`, but can actually return
/// something else than a `&[T]` or `&str`
pub trait Slice<R> {
  #[inline(always)]
  fn slice(&self, range: R) -> Self;
}

macro_rules! impl_fn_slice {
    ( $ty:ty ) => {
        fn slice(&self, range:$ty) -> Self {
            &self[range]
        }
    }
}

macro_rules! slice_range_impl {
    ( [ $for_type:ident ], $ty:ty ) => {
        impl<'a, $for_type> Slice<$ty> for &'a [$for_type] {
            impl_fn_slice!( $ty );
        }
    };
    ( $for_type:ty, $ty:ty ) => {
        impl<'a> Slice<$ty> for &'a $for_type {
            impl_fn_slice!( $ty );
        }
    }
}

macro_rules! slice_ranges_impl {
    ( [ $for_type:ident ] ) => {
        slice_range_impl! {[$for_type], Range<usize>}
        slice_range_impl! {[$for_type], RangeTo<usize>}
        slice_range_impl! {[$for_type], RangeFrom<usize>}
        slice_range_impl! {[$for_type], RangeFull}
    };
    ( $for_type:ty ) => {
        slice_range_impl! {$for_type, Range<usize>}
        slice_range_impl! {$for_type, RangeTo<usize>}
        slice_range_impl! {$for_type, RangeFrom<usize>}
        slice_range_impl! {$for_type, RangeFull}
    }
}

slice_ranges_impl! {str}
slice_ranges_impl! {[T]}


macro_rules! array_impls {
  ($($N:expr)+) => {
    $(
      impl InputLength for [u8; $N] {
        #[inline]
        fn input_len(&self) -> usize {
          self.len()
        }
      }

      impl<'a> InputLength for &'a [u8; $N] {
        #[inline]
        fn input_len(&self) -> usize {
          self.len()
        }
      }

      impl<'a> Compare<[u8; $N]> for &'a [u8] {
        #[inline(always)]
        fn compare(&self, t: [u8; $N]) -> CompareResult {
          self.compare(&t[..])
        }

        #[inline(always)]
        fn compare_no_case(&self, t: [u8;$N]) -> CompareResult {
          self.compare_no_case(&t[..])
        }
      }

      impl<'a,'b> Compare<&'b [u8; $N]> for &'a [u8] {
        #[inline(always)]
        fn compare(&self, t: &'b [u8; $N]) -> CompareResult {
          self.compare(&t[..])
        }

        #[inline(always)]
        fn compare_no_case(&self, t: &'b [u8;$N]) -> CompareResult {
          self.compare_no_case(&t[..])
        }
      }
    )+
  };
}


array_impls! {
     0  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
}