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
//! # Enum Lexer
//! 
//! A proc_macro lexer generator. using `enum`-like syntax.
//! 
//! ## Write a lexer
//! 
//! ```no_run
//! #![feature(exclusive_range_pattern)]
//!
//! use enum_lexer::enum_lexer;
//!
//! enum_lexer! {
//!     #[derive(Debug, Eq, PartialEq)]
//!     enum lexer {
//!         Ident(String): {
//!             r"[A-Za-z_][A-Za-z_0-9]*" => Ident(text),
//!         }
//!         LitInt(usize): {
//!             r"[0-9][0-9]*" =>
//!                 LitInt(text.parse::<usize>()?), // default error type is Box<dyn Error>
//!         }
//!         Op(char): {
//!             r"\+" => Op('+'),
//!             r"\-" => Op('-'),
//!         }
//!         Def: r"def",
//!         Let: r"let",
//!         Group(Vec<Token>, char) : {
//!             r"\(" => {
//!                 Group(read_group()?, '(')       // construct a token tree within '(', ')'.
//!             }
//!             r"\)" => { panic!("error") }
//!         }
//!         COMMENTS: {                             // COMMENTS will be ignored
//!             r"//.*?\n" => !,
//!             r"/\*.*?\*/" => !,
//!         }
//!     }
//! }
//! ```
//! 
//! This will generate struct and enum like:
//! 
//! ```ignore
//! mod lexer {
//!      #[derive(Debug, Eq, PartialEq)]
//!      pub struct Token {
//!          pub inner: TokenInner,
//!          pub span: Span,
//!      }
//!      
//!      #[derive(Debug, Eq, PartialEq)]
//!      pub enum TokenInner {
//!          Ident(String),
//!          LitInt(usize),
//!          Op(char),
//!          Def,
//!          Let,
//!          Group(Vec<Token>, char),
//!      }
//!      pub struct TokenIterator{...}
//!      pub type LexError = Box<&dyn Error>;
//!      pub fn parse_str(src: &str) -> Result<TokenIterator>;
//! }
//! ```
//! ## Usage
//! 
//! ```ignore
//! let vec: lexer::Result<Vec<_>> =
//!     lexer::parse_str(r#"
//!         let a = 10 + (1 + 2) // alpha
//!     "#).unwrap().collect();
//! 
//! println!("{:?}", vec);
//! ```
//! 
//! ## Customizing Error Types
//! 
//! ```ignore
//! enum_lexer! {
//!     type LexError = MyError;
//!     enum lexer {
//!         LitStr: "\".*?\""
//!     }
//! }
//! ```
//! 

mod cursor;

pub use enum_lexer_macro::enum_lexer;

pub use enum_lexer_macro::enum_lexer_test;

pub use cursor::*;

use std::{ fmt };

#[derive(Debug, Clone)]
pub struct SpanError(pub Span);

impl std::error::Error for SpanError {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        None
    }
}

impl std::fmt::Display for SpanError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "lexer error at {:?}", self.0)
    }
}

#[derive(Debug, Clone)]
pub struct GroupError();

impl std::error::Error for GroupError {
    fn source(&self) -> Option<&(dyn std::error::Error + 'static)> {
        None
    }
}

impl std::fmt::Display for GroupError {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        write!(f, "brace not match")
    }
}