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
use crate::constants::{COMMA, HYPHEN, LPAREN, NEWLINE, RBRACE, RPAREN, UNDERSCORE};
use crate::node_pool::NodeID;
use crate::parse::parse_element;
use crate::types::{Cursor, MatchError, ParseOpts, Parseable, Parser, Result};
#[derive(Debug, Clone, PartialEq, Eq)]
pub struct MacroCall<'a> {
pub name: &'a str,
pub args: Vec<&'a str>,
}
impl<'a> Parseable<'a> for MacroCall<'a> {
fn parse(
parser: &mut Parser<'a>,
mut cursor: Cursor<'a>,
parent: Option<NodeID>,
mut parse_opts: ParseOpts,
) -> Result<NodeID> {
let start = cursor.index;
cursor.word("{{{")?;
if !cursor.curr().is_ascii_alphabetic() {
return Err(MatchError::InvalidLogic);
}
let name_match = cursor.fn_while(|chr: u8| {
// permitted characters
chr.is_ascii_alphanumeric()
|| chr == HYPHEN
|| chr == UNDERSCORE
// start params
&& (chr != LPAREN
// macro end
|| chr != RBRACE)
})?;
// A string starting with a alphabetic character followed by any number of
// alphanumeric characters, hyphens and underscores (-_).
cursor.index = name_match.end;
match cursor.curr() {
LPAREN => {
// used to check if we have {{{name()}}} (emtpy func call)
cursor.next();
let mut arg_vec = Vec::new();
let mut prev_ind = cursor.index;
loop {
match cursor.try_curr()? {
NEWLINE => {
parse_opts.from_paragraph = true;
parse_opts.list_line = false;
parse_opts.from_object = false;
match parse_element(parser, cursor.adv_copy(1), parent, parse_opts) {
Ok(_) => return Err(MatchError::InvalidLogic),
Err(MatchError::InvalidLogic) => {}
ret @ Err(_) => return ret,
}
}
RBRACE => {
if cursor.word("}}}").is_ok() {
return Err(MatchError::InvalidLogic);
}
}
RPAREN => {
arg_vec.push(cursor.clamp_backwards(prev_ind));
cursor.word(")}}}")?;
return Ok(parser.alloc(
MacroCall {
name: name_match.obj,
args: arg_vec,
},
start,
cursor.index,
parent,
));
}
COMMA => {
arg_vec.push(cursor.clamp_backwards(prev_ind));
prev_ind = cursor.index + 1;
}
_ => {}
}
cursor.next();
}
}
RBRACE => {
cursor.word("}}}")?;
Ok(parser.alloc(
MacroCall {
name: name_match.obj,
args: Vec::new(),
},
start,
cursor.index,
parent,
))
}
_ => Err(MatchError::InvalidLogic),
}
}
}
#[cfg(test)]
mod tests {
use pretty_assertions::assert_eq;
use crate::{
element::{ArgNumOrText, MacroDef},
expr_in_pool,
object::MacroCall,
parse_org,
types::Expr,
};
#[test]
fn basic_macro() {
let input = r"{{{abc}}}";
let parsed = parse_org(input);
let l = expr_in_pool!(parsed, Macro).unwrap();
assert_eq!(
l,
&MacroCall {
name: "abc",
args: Vec::new()
}
)
}
#[test]
fn macro_with_args() {
let input = r"{{{poem(cool, three)}}}";
let parsed = parse_org(input);
let l = expr_in_pool!(parsed, Macro).unwrap();
assert_eq!(
l,
&MacroCall {
name: "poem",
args: vec!["cool", " three"]
}
)
}
#[test]
fn basic_macro_def() {
let input = r"#+macro: poem hiii $1 $2 text
";
let parsed = parse_org(input);
let l = expr_in_pool!(parsed, MacroDef).unwrap();
assert_eq!(
l,
&MacroDef {
num_args: 2,
input: vec![
ArgNumOrText::Text("hiii "),
ArgNumOrText::ArgNum(1),
ArgNumOrText::Text(" "),
ArgNumOrText::ArgNum(2),
ArgNumOrText::Text(" text")
],
name: "poem"
}
)
}
#[test]
fn repeated_macro_def() {
let input = r"#+macro: poem $1 $1 text
";
let parsed = parse_org(input);
let l = expr_in_pool!(parsed, MacroDef).unwrap();
assert_eq!(
l,
&MacroDef {
num_args: 1,
input: vec![
ArgNumOrText::Text(""),
ArgNumOrText::ArgNum(1),
ArgNumOrText::Text(" "),
ArgNumOrText::ArgNum(1),
ArgNumOrText::Text(" text")
],
name: "poem"
}
)
}
#[test]
fn combined_macros() {
let input = r"#+macro: poem hiii $1 $2 text
{{{poem(cool, three)}}}
";
let pool = parse_org(input);
pool.print_tree();
}
}