2023-03-20 11:39:04 +00:00
|
|
|
use std::collections::HashMap;
|
2023-03-20 12:36:38 +00:00
|
|
|
use std::path::PathBuf;
|
2023-03-20 11:39:04 +00:00
|
|
|
|
|
|
|
use color_eyre::Result;
|
|
|
|
use eyre::eyre;
|
|
|
|
|
2023-03-22 12:58:11 +00:00
|
|
|
use crate::constants::{Token, Loc, OpType, TokenType, KeywordType, InstructionType};
|
2023-03-20 12:36:38 +00:00
|
|
|
use crate::lexer::lex;
|
2023-03-20 14:13:34 +00:00
|
|
|
use crate::{lerror, lnote, Args, warn};
|
2023-03-20 11:39:04 +00:00
|
|
|
use crate::parser::lookup_word;
|
|
|
|
|
|
|
|
#[derive(Debug)]
|
|
|
|
pub struct Macro {
|
|
|
|
pub loc: Loc,
|
|
|
|
pub tokens: Vec<Token>
|
|
|
|
}
|
|
|
|
|
2023-03-21 18:12:24 +00:00
|
|
|
pub fn preprocess(tokens: Vec<Token>, args: &Args) -> Result<Vec<Token>>{
|
2023-03-20 11:39:04 +00:00
|
|
|
let mut program: Vec<Token> = Vec::new();
|
|
|
|
let mut macros: HashMap<String, Macro> = HashMap::new();
|
|
|
|
|
2023-03-21 18:12:24 +00:00
|
|
|
let mut rtokens = tokens;
|
2023-03-20 11:39:04 +00:00
|
|
|
rtokens.reverse();
|
2023-03-21 18:12:24 +00:00
|
|
|
while !rtokens.is_empty() {
|
2023-03-20 11:39:04 +00:00
|
|
|
let token = rtokens.pop().unwrap();
|
|
|
|
|
2023-03-21 18:12:24 +00:00
|
|
|
let op_type = lookup_word(&token.text, &token.loc());
|
2023-03-20 11:39:04 +00:00
|
|
|
match token.clone() {
|
2023-03-22 12:58:11 +00:00
|
|
|
_ if op_type == OpType::Keyword(KeywordType::Macro) => {
|
2023-03-21 18:12:24 +00:00
|
|
|
if rtokens.is_empty(){
|
2023-03-20 11:39:04 +00:00
|
|
|
lerror!(&token.loc(), "Macro name not found, expected {} but found nothing", TokenType::Word.human());
|
|
|
|
return Err(eyre!(""));
|
|
|
|
}
|
|
|
|
let macro_name = rtokens.pop().unwrap();
|
|
|
|
|
|
|
|
if macro_name.typ != TokenType::Word {
|
|
|
|
lerror!(¯o_name.loc(), "Bad macro name, expected {} but found {}", TokenType::Word.human(), macro_name.typ.human());
|
|
|
|
return Err(eyre!(""));
|
|
|
|
}
|
2023-03-21 18:12:24 +00:00
|
|
|
let word = lookup_word(¯o_name.text, ¯o_name.loc());
|
2023-03-22 12:58:11 +00:00
|
|
|
if word != OpType::Instruction(InstructionType::None) {
|
2023-03-20 11:39:04 +00:00
|
|
|
lerror!(¯o_name.loc(), "Macro name cannot be a built in word, got '{}'", word.human());
|
|
|
|
return Err(eyre!(""));
|
|
|
|
}
|
|
|
|
|
2023-03-21 18:12:24 +00:00
|
|
|
if macros.get(¯o_name.text.clone()).is_some() && crate::constants::ALLOW_MACRO_REDEFINITION {
|
|
|
|
lerror!(¯o_name.loc(), "Macro redefinition is not allowed");
|
|
|
|
lnote!(¯os.get(¯o_name.text).unwrap().loc, "First definition here");
|
|
|
|
return Err(eyre!(""));
|
2023-03-20 11:39:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
let mut macr = Macro{ loc: macro_name.loc(), tokens: Vec::new() };
|
|
|
|
|
|
|
|
let mut depth = 0;
|
2023-03-21 18:12:24 +00:00
|
|
|
while !rtokens.is_empty() {
|
2023-03-20 11:39:04 +00:00
|
|
|
let t = rtokens.pop().unwrap();
|
2023-03-21 18:12:24 +00:00
|
|
|
let typ = lookup_word(&t.text, &t.loc());
|
2023-03-22 12:58:11 +00:00
|
|
|
if typ == OpType::Keyword(KeywordType::End) && depth == 0 {
|
2023-03-20 11:39:04 +00:00
|
|
|
break;
|
2023-03-22 12:58:11 +00:00
|
|
|
} else if typ == OpType::Keyword(KeywordType::End) && depth != 0 {
|
2023-03-20 11:39:04 +00:00
|
|
|
depth -= 1;
|
|
|
|
macr.tokens.push(t);
|
2023-03-22 12:58:11 +00:00
|
|
|
} else if typ == OpType::Keyword(KeywordType::If) || typ == OpType::Keyword(KeywordType::Do) {
|
2023-03-21 18:12:24 +00:00
|
|
|
macr.tokens.push(t);
|
|
|
|
depth += 1;
|
2023-03-20 11:39:04 +00:00
|
|
|
} else {
|
2023-03-21 18:12:24 +00:00
|
|
|
macr.tokens.push(t);
|
2023-03-20 11:39:04 +00:00
|
|
|
}
|
2023-03-21 18:12:24 +00:00
|
|
|
|
2023-03-20 11:39:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
macros.insert(macro_name.text, macr);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2023-03-22 12:58:11 +00:00
|
|
|
_ if op_type == OpType::Keyword(KeywordType::Include) => {
|
2023-03-21 18:12:24 +00:00
|
|
|
if rtokens.is_empty() {
|
2023-03-20 12:36:38 +00:00
|
|
|
lerror!(&token.loc(), "Include path not found, expected {} but found nothing", TokenType::String.human());
|
|
|
|
return Err(eyre!(""));
|
|
|
|
}
|
|
|
|
|
|
|
|
let include_path = rtokens.pop().unwrap();
|
|
|
|
|
|
|
|
if include_path.typ != TokenType::String {
|
|
|
|
lerror!(&include_path.loc(), "Bad include path, expected {} but found {}", TokenType::String.human(), include_path.typ.human());
|
|
|
|
return Err(eyre!(""));
|
|
|
|
}
|
|
|
|
|
|
|
|
let mut in_paths = args.include.clone();
|
2023-03-21 18:12:24 +00:00
|
|
|
in_paths.append(&mut crate::DEFAULT_INCLUDES.to_vec().clone().iter().map(|f| (*f).to_string()).collect::<Vec<String>>());
|
2023-03-20 12:36:38 +00:00
|
|
|
|
|
|
|
let mut include_code = String::new();
|
|
|
|
|
|
|
|
for path in in_paths {
|
|
|
|
let p = PathBuf::from(path);
|
|
|
|
let p = p.join(include_path.text.clone());
|
|
|
|
|
|
|
|
if p.exists() {
|
|
|
|
include_code = std::fs::read_to_string(p)?;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
if include_code.is_empty() {
|
|
|
|
lerror!(&include_path.loc(), "Include file in path '{}' was not found", include_path.text);
|
|
|
|
return Err(eyre!(""));
|
|
|
|
}
|
|
|
|
|
2023-03-21 18:12:24 +00:00
|
|
|
let mut code = lex(&include_code, &include_path.text, args, false)?;
|
2023-03-20 12:36:38 +00:00
|
|
|
code.reverse();
|
|
|
|
rtokens.append(&mut code);
|
|
|
|
|
|
|
|
|
|
|
|
}
|
2023-03-20 11:39:04 +00:00
|
|
|
_ => {
|
|
|
|
program.push(token);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2023-03-20 14:13:34 +00:00
|
|
|
//* Feel free to fix this horrifying shit
|
|
|
|
//* i wanna kms
|
|
|
|
let mut times = 0;
|
|
|
|
while program.iter().map(|f| {
|
|
|
|
if f.typ == TokenType::Word {
|
2023-03-21 18:12:24 +00:00
|
|
|
lookup_word(&f.text, &f.loc())
|
2023-03-20 14:13:34 +00:00
|
|
|
} else {
|
2023-03-22 12:58:11 +00:00
|
|
|
OpType::Instruction(InstructionType::PushInt) // i hate myself, this is a randomly picked optype so its happy and works
|
2023-03-20 14:13:34 +00:00
|
|
|
}
|
|
|
|
|
2023-03-22 12:58:11 +00:00
|
|
|
}).collect::<Vec<OpType>>().contains(&OpType::Instruction(InstructionType::None)){
|
2023-03-20 14:13:34 +00:00
|
|
|
|
|
|
|
if times >= 50 {
|
|
|
|
warn!("File import depth maxed out, if the program crashes try reducing the import depth, good luck youll need it");
|
|
|
|
break
|
|
|
|
}
|
|
|
|
program = expand_macros(program, ¯os)?;
|
|
|
|
times += 1;
|
|
|
|
}
|
|
|
|
|
2023-03-20 11:39:04 +00:00
|
|
|
|
|
|
|
Ok(program)
|
|
|
|
}
|
|
|
|
|
2023-03-20 14:13:34 +00:00
|
|
|
pub fn expand_macros(tokens: Vec<Token>, macros: &HashMap<String, Macro>) -> Result<Vec<Token>> {
|
2023-03-20 11:39:04 +00:00
|
|
|
let mut program: Vec<Token> = Vec::new();
|
|
|
|
|
2023-03-21 18:12:24 +00:00
|
|
|
let mut rtokens = tokens;
|
2023-03-20 11:39:04 +00:00
|
|
|
rtokens.reverse();
|
|
|
|
|
2023-03-21 18:12:24 +00:00
|
|
|
while !rtokens.is_empty() {
|
2023-03-20 11:39:04 +00:00
|
|
|
let op = rtokens.pop().unwrap();
|
2023-03-21 18:12:24 +00:00
|
|
|
let op_type = lookup_word(&op.text, &op.loc());
|
2023-03-20 11:39:04 +00:00
|
|
|
if op.typ == TokenType::Word {
|
|
|
|
match op_type {
|
2023-03-22 12:58:11 +00:00
|
|
|
OpType::Instruction(InstructionType::None) => {
|
2023-03-20 11:39:04 +00:00
|
|
|
let m = macros.get(&op.text);
|
|
|
|
if m.is_some() {
|
2023-03-21 18:12:24 +00:00
|
|
|
if let Some(m) = m {
|
|
|
|
program.append(&mut m.tokens.clone());
|
|
|
|
}
|
2023-03-20 11:39:04 +00:00
|
|
|
} else {
|
|
|
|
lerror!(&op.loc(), "Unknown word '{}'", op.text.clone());
|
|
|
|
return Err(eyre!(""));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
_ => {
|
|
|
|
program.push(op);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
program.push(op);
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Ok(program)
|
|
|
|
}
|