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
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
//! # weaver-lang
//!
//! A text evaluation language for procedural content generation. Templates
//! contain embedded expressions, control flow, and external calls that are
//! evaluated at runtime into a final string output.
//!
//! The crate is split into two layers:
//!
//! - **The language** (parsing, AST, evaluation) lives here and has no
//! knowledge of any specific application domain.
//! - **The host** implements [`EvalContext`] to provide state (variables,
//! triggers, documents) and populates a [`Registry`] with callable
//! processors and commands.
//!
//! ## Quick start
//!
//! ```rust
//! use weaver_lang::{render, SimpleContext, Registry};
//!
//! let mut ctx = SimpleContext::new();
//! ctx.set("global", "name", "Alice");
//!
//! let registry = Registry::new();
//! let output = render("Hello, {{global:name}}!", &mut ctx, ®istry).unwrap();
//! assert_eq!(output, "Hello, Alice!");
//! ```
//!
//! ## Compiled templates
//!
//! For repeated evaluation, parse once with [`CompiledTemplate::compile`]
//! and call [`evaluate`] against different contexts:
//!
//! ```rust
//! use weaver_lang::{CompiledTemplate, SimpleContext, Registry};
//!
//! let template = CompiledTemplate::compile("Hello, {{global:name}}!").unwrap();
//! let registry = Registry::new();
//!
//! let mut ctx = SimpleContext::new();
//! ctx.set("global", "name", "Alice");
//! assert_eq!(template.evaluate(&mut ctx, ®istry).unwrap(), "Hello, Alice!");
//! ```
//!
//! ## Evaluation options
//!
//! Use [`EvalOptions`] to configure resource limits, cancellation, and
//! lenient mode:
//!
//! ```rust
//! use weaver_lang::{render_with_options, EvalOptions, SimpleContext, Registry};
//!
//! let mut ctx = SimpleContext::new();
//! let registry = Registry::new();
//!
//! let opts = EvalOptions::new()
//! .max_node_evaluations(10_000)
//! .max_iterations(1_000)
//! .lenient(true);
//!
//! let result = render_with_options(
//! "Hello, {{global:missing}}!",
//! &mut ctx,
//! ®istry,
//! opts,
//! ).unwrap();
//! assert_eq!(result, "Hello, {{global:missing}}!");
//! ```
pub use ;
pub use Template;
pub use Value;
pub use ;
pub use ;
pub use ;
pub use ;
/// Parse source text and evaluate it in a single step.
///
/// For repeated evaluation of the same source, prefer [`CompiledTemplate`]
/// to avoid re-parsing.
/// Parse source text and evaluate it with custom options.
///
/// Combines parsing and [`evaluate_with_options`] in a single step.
/// Combined error type returned by [`render`] and [`render_with_options`].
/// A parsed template that can be evaluated multiple times without re-parsing.
///
/// Use this when the same template source will be evaluated against different
/// contexts or at different points in time.
///
/// ```rust
/// use weaver_lang::{CompiledTemplate, SimpleContext, Registry};
///
/// let template = CompiledTemplate::compile("HP: {{global:hp}}").unwrap();
/// let registry = Registry::new();
///
/// let mut ctx = SimpleContext::new();
/// ctx.set("global", "hp", 100i64);
/// assert_eq!(template.evaluate(&mut ctx, ®istry).unwrap(), "HP: 100");
///
/// ctx.set("global", "hp", 75i64);
/// assert_eq!(template.evaluate(&mut ctx, ®istry).unwrap(), "HP: 75");
/// ```
/// A parsed expression that can be evaluated multiple times without re-parsing.
///
/// This is the expression-level counterpart to [`CompiledTemplate`].
/// Use it for lorebook activation conditions, configuration values,
/// or any context where you need to evaluate the same expression
/// repeatedly against different state.
///
/// ```rust
/// use weaver_lang::{CompiledExpr, SimpleContext, Registry, Value};
///
/// let expr = CompiledExpr::compile(r#"{{global:hp}} > 50"#).unwrap();
/// let registry = Registry::new();
///
/// let mut ctx = SimpleContext::new();
/// ctx.set("global", "hp", 75i64);
/// assert_eq!(expr.evaluate(&mut ctx, ®istry).unwrap(), Value::Bool(true));
///
/// ctx.set("global", "hp", 30i64);
/// assert_eq!(expr.evaluate(&mut ctx, ®istry).unwrap(), Value::Bool(false));
/// ```