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
198
199
200
201
202
use std::collections::BTreeMap;
use std::{fmt, io};
use serde::Serialize;
use crate::compiler::codegen::CodeGenerator;
use crate::compiler::instructions::Instructions;
use crate::compiler::parser::parse;
use crate::environment::Environment;
use crate::error::{attach_basic_debug_info, Error, ErrorKind};
use crate::output::{Output, WriteWrapper};
use crate::utils::AutoEscape;
use crate::value::{self, Value};
use crate::vm::Vm;
#[derive(Copy, Clone)]
pub struct Template<'env> {
env: &'env Environment<'env>,
compiled: &'env CompiledTemplate<'env>,
initial_auto_escape: AutoEscape,
}
impl<'env> fmt::Debug for Template<'env> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let mut ds = f.debug_struct("Template");
ds.field("name", &self.name());
#[cfg(feature = "internal_debug")]
{
ds.field("instructions", &self.compiled.instructions);
ds.field("blocks", &self.compiled.blocks);
}
ds.field("initial_auto_escape", &self.initial_auto_escape);
ds.finish()
}
}
impl<'env> Template<'env> {
pub(crate) fn new(
env: &'env Environment<'env>,
compiled: &'env CompiledTemplate<'env>,
initial_auto_escape: AutoEscape,
) -> Template<'env> {
Template {
env,
compiled,
initial_auto_escape,
}
}
pub fn name(&self) -> &str {
self.compiled.instructions.name()
}
pub fn source(&self) -> &str {
self.compiled.instructions.source()
}
pub fn render<S: Serialize>(&self, ctx: S) -> Result<String, Error> {
self._render(Value::from_serializable(&ctx))
}
fn _render(&self, root: Value) -> Result<String, Error> {
let mut rv = String::new();
self._eval(root, &mut Output::with_string(&mut rv))
.map(|_| rv)
}
pub fn render_to_write<S: Serialize, W: io::Write>(&self, ctx: S, w: W) -> Result<(), Error> {
let mut wrapper = WriteWrapper { w, err: None };
self._eval(
Value::from_serializable(&ctx),
&mut Output::with_write(&mut wrapper),
)
.map_err(|err| {
wrapper
.err
.take()
.map(|io_err| {
Error::new(ErrorKind::WriteFailure, "I/O error during rendering")
.with_source(io_err)
})
.unwrap_or(err)
})
}
fn _eval(&self, root: Value, out: &mut Output) -> Result<(), Error> {
Vm::new(self.env)
.eval(
&self.compiled.instructions,
root,
&self.compiled.blocks,
out,
self.initial_auto_escape,
)
.map(|_| ())
}
#[cfg(feature = "multi-template")]
pub(crate) fn instructions(&self) -> &'env Instructions<'env> {
&self.compiled.instructions
}
#[cfg(feature = "multi-template")]
pub(crate) fn blocks(&self) -> &'env BTreeMap<&'env str, Instructions<'env>> {
&self.compiled.blocks
}
#[cfg(feature = "multi-template")]
pub(crate) fn initial_auto_escape(&self) -> AutoEscape {
self.initial_auto_escape
}
}
pub struct CompiledTemplate<'source> {
pub instructions: Instructions<'source>,
pub blocks: BTreeMap<&'source str, Instructions<'source>>,
}
impl<'env> fmt::Debug for CompiledTemplate<'env> {
fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
let mut ds = f.debug_struct("CompiledTemplate");
#[cfg(feature = "internal_debug")]
{
ds.field("instructions", &self.instructions);
ds.field("blocks", &self.blocks);
}
ds.finish()
}
}
impl<'source> CompiledTemplate<'source> {
pub fn from_name_and_source(
name: &'source str,
source: &'source str,
) -> Result<CompiledTemplate<'source>, Error> {
attach_basic_debug_info(Self::_from_name_and_source_impl(name, source), source)
}
fn _from_name_and_source_impl(
name: &'source str,
source: &'source str,
) -> Result<CompiledTemplate<'source>, Error> {
value::with_value_optimization(|| {
let ast = ok!(parse(source, name));
let mut gen = CodeGenerator::new(name, source);
ok!(gen.compile_stmt(&ast));
let (instructions, blocks) = gen.finish();
Ok(CompiledTemplate {
instructions,
blocks,
})
})
}
}