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
#![feature(specialization)]

#[macro_use]
extern crate serde_derive;

extern crate kg_diag;
#[macro_use]
extern crate kg_diag_derive;
#[macro_use]
extern crate kg_display_derive;


use kg_diag::*;
use kg_io::*;
use kg_tree::*;
use kg_tree::opath::*;

pub mod parse;
mod segment;
mod render;

pub use parse::{Parser, Error as ParseError};
pub use render::Error as RenderError;

use segment::Segment;

pub struct Template(Segment);

impl Template {
    pub fn parse(input: &[u8]) -> Result<Template, ParseError> {
        let mut r = MemCharReader::new(input);
        Parser::new().parse(&mut r)
    }

    pub fn render(&self, root: &NodeRef, current: &NodeRef, out: &mut String) -> Result<(), RenderError> {
        self::render::render(&self.0, root, current, None, out)
    }

    pub fn render_ext(&self, root: &NodeRef, current: &NodeRef, scope: &Scope, out: &mut String) -> Result<(), RenderError> {
        self::render::render(&self.0, root, current, Some(scope.clone()), out)
    }
}

impl std::fmt::Display for Template {
    fn fmt(&self, f: &mut std::fmt::Formatter) -> std::fmt::Result {
        self.0.fmt(f)
    }
}