use std::path::{PathBuf,Path}; use std::collections::HashMap; use core::error::Error; use std::time::SystemTime; mod lexer; mod parser; mod position; pub use parser::ParseError; pub use position::*; #[derive(Debug)] pub struct Crimtag { views: HashMap, sources: Vec, } #[derive(PartialEq,Eq,Debug,Clone)] pub enum ViewSource { File { path: PathBuf, loaded: SystemTime, }, Static, External { key: String, }, } #[derive(Debug)] struct View { name: String, source: usize, outputs: Vec, // theme: Option layout: Option, } impl View { fn process(&self, input: &Value) -> Result { let mut out_vars = HashMap::new(); for output in &self.outputs { let mut buf = String::new(); exec( input, &output.code, &mut buf )?; out_vars.insert( output.name.clone(), Value::String(buf) ); } Ok(Value::Dictionary(out_vars)) } } #[derive(Debug)] struct Output { name: String, code: Vec, } type Properties = HashMap; #[derive(Debug)] enum Token { Show(String,Properties), Text(String), } #[derive(Debug)] pub enum Value { Dictionary(HashMap), List(Vec), String(String), Int(i64), Float(f64), } impl Crimtag { pub fn new() -> Self { Self { views: HashMap::new(), sources: vec![ViewSource::Static], } } fn id_source(&mut self, src: &ViewSource ) -> usize { for idx in 0..self.sources.len() { if self.sources[idx] == *src { return idx; } } // Nothing found, add a new one let idx = self.sources.len(); self.sources.push( src.clone() ); idx } pub fn load_file(&mut self, path: &Path) -> Result<(),Box::> { let time = if let Ok(meta) = path.metadata() { if let Ok(t) = meta.modified() { t } else if let Ok(t) = meta.created() { t } else { SystemTime::now() } } else { SystemTime::now() }; let source_id = self.id_source( &ViewSource::File { path: path.to_path_buf(), loaded: time, } ); let p = parser::Parser::new(); self.register_views( p.parse( &String::from_utf8( std::fs::read( path )? )?, source_id )?, )?; Ok(()) } pub fn load_static(&mut self, data: &str) -> Result<(),ParseError> { let source_id = self.id_source( &ViewSource::Static ); let p = parser::Parser::new(); self.register_views( p.parse( &data, source_id )? ) } pub fn load_external(&mut self, key: &str, data: &str) -> Result<(),ParseError> { let source_id = self.id_source( &ViewSource::External{ key: key.to_string()} ); let p = parser::Parser::new(); self.register_views( p.parse( &data, source_id )?, ) } fn register_views(&mut self, views: Vec) -> Result<(),ParseError> { for view in views { self.views.insert( view.name.clone(), view ); } Ok(()) } pub fn get_view_source(&self, view: &str) -> Option { if let Some(view) = self.views.get(view) { if view.source < self.sources.len() { Some(self.sources[view.source].clone()) } else { None } } else { None } } pub fn render_partial(&self, view: &str, input: &Value ) -> Result { if let Some(view) = self.views.get(view) { return view.process( input ) } else { return Err(ParseError::new(Position::new(0,0),"No such view found")); } } pub fn render(&self, view: &str, input: &Value ) -> Result { if let Some(view) = self.views.get( view ) { let output = view.process( input )?; if let Some(l) = &view.layout { self.render( l, &output ) } else { if let Value::Dictionary(mut d) = output && let Some(content) = d.remove("content") && let Value::String(s) = content { Ok(s) } else { Err(ParseError::new(Position::new(0,0),"No content found in root layout.")) } } } else { Err(ParseError::new(Position::new(0,0),"No such view found")) } } } fn exec(input: &Value, tokens: &Vec, buf: &mut String) -> Result<(),ParseError> { for token in tokens { match token { Token::Show(s,p) => { let format = if let Some(s) = p.get("format") { s } else { &"".to_string() }; if let Value::Dictionary(d) = input && let Some(value) = d.get(s) { match value { Value::Dictionary(_) => { buf.push_str(""); } Value::List(_) => { buf.push_str(""); } Value::String(s) => { buf.push_str(s); } Value::Int(i) => { buf.push_str(&i.to_string()); } Value::Float(f) => { if format == "" { buf.push_str(&f.to_string()); } else { buf.push_str(&f.to_string()); } } } } } Token::Text(s) => { buf.push_str( s ); } } } Ok(()) } #[cfg(test)] mod tests { use super::*; use crate::lexer::*; #[test] fn lexing() { let data = r#"Leading comment: [|view "basic" something="yeup"|>Hello there <|view|] Trailing text"#; let ll = lexer::Lexer::new( &data ); for sym in ll { if let SymbolType::Error{what} = sym.symbol() { println!("Error {}:{}: {:?}", sym.start().line, sym.start().column, what ); break; } else { println!("Symbol: {:?}", sym ); } } } #[test] fn parsing() { let mut ct = Crimtag::new(); if let Err(e) = ct.load_static(r#"Here is a sample [|view "index" theme="standard"|>Hi<|view|] That was fun! now a placeholder: [|view "placeholder"|] and now one with an implicit [|view "simple"|>Body [|show "content"|] and end<|view|] aoeu [|view "index" layout="simple"|>Whatever man!<|view|] Now with explicit outputs: [|view "complex"|> [|output "content"|> Here's a [|show "name"|]. <|output|] [|output "sidebar"|> What's up world? <|output|] [|output "footer"|> Same, I guess! <|output|] <|view|]"#) { println!("Error: {:?}", e ); } else { println!("It finished"); if let Ok(v) = ct.render( "index", &Value::Dictionary( HashMap::from([ ("hi".to_string(),Value::String("hi".to_string())) ]) ) ) { println!("View result: {:?}", v ); } else { println!("Error?"); } } } }