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
//! # Tron - A Powerful Rust Template Engine
//!
//! Tron is a modern, composable template engine designed for generating Rust code
//! and other text-based content. It provides a simple yet powerful syntax for
//! creating templates with placeholders that can be filled dynamically.
//!
//! ## Features
//!
//! - **Simple Syntax**: Uses `@[placeholder]@` delimiters for easy template creation
//! - **Composable**: Nest templates within other templates seamlessly
//! - **Type-Safe**: Comprehensive error handling with descriptive error types
//! - **Execution**: Optional rust-script integration for running generated code
//! - **Dependency Management**: Handle external crate dependencies in templates
//! - **File Loading**: Load templates from files with automatic path tracking
//! - **Assembly**: Combine multiple templates into complex structures
//!
//! ## Quick Start
//!
//! ```rust
//! use tron::{TronTemplate, TronRef};
//!
//! // Create a simple template
//! let mut template = TronTemplate::new("fn @[name]@() {\n @[body]@\n}").unwrap();
//! template.set("name", "greet").unwrap();
//! template.set("body", "println!(\"Hello, World!\");").unwrap();
//!
//! let result = template.render().unwrap();
//! println!("{}", result);
//!
//! // Use TronRef for more advanced features
//! let template_ref = TronRef::new(template)
//! .with_dependency("serde = \"1.0\"");
//! ```
//!
//! ## Template Composition
//!
//! Templates can be composed together for complex code generation:
//!
//! ```rust
//! use tron::{TronTemplate, TronRef};
//!
//! // Create outer template
//! let outer = TronTemplate::new("mod @[module_name]@ {\n @[content]@\n}").unwrap();
//! let mut outer_ref = TronRef::new(outer);
//!
//! // Create inner template
//! let inner = TronTemplate::new("pub fn @[func_name]@() -> &'static str {\n @[body]@\n}").unwrap();
//! let mut inner_ref = TronRef::new(inner);
//!
//! // Fill inner template
//! inner_ref.set("func_name", "get_message").unwrap();
//! inner_ref.set("body", "\"Hello from composed template!\"").unwrap();
//!
//! // Compose templates
//! outer_ref.set("module_name", "generated").unwrap();
//! outer_ref.set_ref("content", inner_ref).unwrap();
//!
//! let result = outer_ref.render().unwrap();
//! ```
//!
//! ## Assembly
//!
//! For complex multi-part generation, use [`TronAssembler`]:
//!
//! ```rust
//! use tron::{TronTemplate, TronRef, TronAssembler};
//!
//! let mut assembler = TronAssembler::new();
//!
//! // Add header
//! let header = TronTemplate::new("// Generated code\nuse std::collections::HashMap;").unwrap();
//! assembler.add_template(TronRef::new(header));
//!
//! // Add function
//! let func = TronTemplate::new("fn @[name]@() {\n @[body]@\n}").unwrap();
//! let mut func_ref = TronRef::new(func);
//! func_ref.set("name", "example").unwrap();
//! func_ref.set("body", "println!(\"Generated function!\");").unwrap();
//! assembler.add_template(func_ref);
//!
//! let result = assembler.render_all().unwrap();
//! ```
//!
//! ## Compile-time Templates
//!
//! Use macros for compile-time template generation:
//!
//! ```rust
//! use tron::{template, template_ref, assemble_templates, generate_code};
//!
//! // Create template from literal
//! let tmpl = template!("fn @[name]@() { @[body]@ }");
//!
//! // Create template reference with dependencies
//! let tmpl_ref = template_ref!(
//! "use serde::Serialize;\n#[derive(Serialize)]\nstruct @[name]@ {}",
//! dependencies = ["serde = \"1.0\""]
//! );
//!
//! // Assemble multiple templates
//! let assembler = assemble_templates![
//! "// Generated code",
//! "mod @[module_name]@ {",
//! " @[module_content]@",
//! "}"
//! ];
//!
//! // Generate code at compile time
//! let code = generate_code!(
//! template = "const @[name]@: @[type]@ = @[value]@;",
//! placeholders = {
//! "name" => "PI",
//! "type" => "f64",
//! "value" => "3.14159"
//! }
//! );
//! ```
//!
//! ## Builder Patterns
//!
//! For more ergonomic template construction, use the builder patterns:
//!
//! ```rust
//! use tron::{TronTemplateBuilder, TronRefBuilder};
//! use std::collections::HashMap;
//!
//! // Build a template with the fluent API
//! let template = TronTemplateBuilder::new()
//! .content("fn @[name]@(@[params]@) -> @[return_type]@ {\n @[body]@\n}")
//! .set("name", "add")
//! .set("params", "a: i32, b: i32")
//! .set("return_type", "i32")
//! .set("body", "a + b")
//! .build()
//! .unwrap();
//!
//! // Build a template reference with dependencies
//! let template_ref = TronRefBuilder::new()
//! .content("fn main() {\n @[body]@\n}")
//! .dependencies(&["serde = \"1.0\"", "tokio = \"1.0\""])
//! .set("body", "println!(\"Hello from builder!\");")
//! .build()
//! .unwrap();
//! ```
// Public modules
// Re-export main types for convenience
pub use ;
pub use TronTemplate;
pub use TronRef;
pub use TronAssembler;
pub use ;
pub use ;
pub use ;