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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
|
use std::env;
use std::path::PathBuf;
use std::process::Command;
const COMPILE_INFO_RS_TEMPLATE: &str = "./templates/compile_info.rs.template";
const COMPILE_INFO_RS: &str = "./src/data/compile_info.rs";
const SETUP_JV_CLI_ISS_TEMPLATE: &str = "./templates/setup_jv_cli.iss.template";
const SETUP_JV_CLI_ISS: &str = "./setup/windows/setup_jv_cli.iss";
const REGISTRY_RS_TEMPLATE: &str = "./templates/_registry.rs.template";
const REGISTRY_RS: &str = "./src/cmd/cmds/_registry.rs";
const RENDERER_LIST_TEMPLATE: &str = "./templates/_renderers.rs.template";
const RENDERER_LIST: &str = "./src/cmd/renderers/_renderers.rs";
const REGISTRY_TOML: &str = "./.cargo/registry.toml";
fn main() {
println!("cargo:rerun-if-env-changed=FORCE_BUILD");
let repo_root = PathBuf::from(env::var("CARGO_MANIFEST_DIR").unwrap());
if cfg!(target_os = "windows") {
// Only generate installer script on Windows
if let Err(e) = generate_installer_script(&repo_root) {
eprintln!("Failed to generate installer script: {}", e);
std::process::exit(1);
}
}
if let Err(e) = generate_compile_info(&repo_root) {
eprintln!("Failed to generate compile info: {}", e);
std::process::exit(1);
}
if let Err(e) = generate_cmd_registry_file(&repo_root) {
eprintln!("Failed to generate registry file: {}", e);
std::process::exit(1);
}
if let Err(e) = generate_renderer_list_file(&repo_root) {
eprintln!("Failed to generate renderer list: {}", e);
std::process::exit(1);
}
}
/// Generate Inno Setup installer script (Windows only)
fn generate_installer_script(repo_root: &PathBuf) -> Result<(), Box<dyn std::error::Error>> {
let template_path = repo_root.join(SETUP_JV_CLI_ISS_TEMPLATE);
let output_path = repo_root.join(SETUP_JV_CLI_ISS);
let template = std::fs::read_to_string(&template_path)?;
let author = get_author()?;
let version = get_version();
let site = get_site()?;
let generated = template
.replace("<<<AUTHOR>>>", &author)
.replace("<<<VERSION>>>", &version)
.replace("<<<SITE>>>", &site);
std::fs::write(output_path, generated)?;
Ok(())
}
fn get_author() -> Result<String, Box<dyn std::error::Error>> {
let cargo_toml_path = std::path::Path::new("Cargo.toml");
let cargo_toml_content = std::fs::read_to_string(cargo_toml_path)?;
let cargo_toml: toml::Value = toml::from_str(&cargo_toml_content)?;
if let Some(package) = cargo_toml.get("package") {
if let Some(authors) = package.get("authors") {
if let Some(authors_array) = authors.as_array() {
if let Some(first_author) = authors_array.get(0) {
if let Some(author_str) = first_author.as_str() {
return Ok(author_str.to_string());
}
}
}
}
}
Err("Author not found in Cargo.toml".into())
}
fn get_site() -> Result<String, Box<dyn std::error::Error>> {
let cargo_toml_path = std::path::Path::new("Cargo.toml");
let cargo_toml_content = std::fs::read_to_string(cargo_toml_path)?;
let cargo_toml: toml::Value = toml::from_str(&cargo_toml_content)?;
if let Some(package) = cargo_toml.get("package") {
if let Some(homepage) = package.get("homepage") {
if let Some(site_str) = homepage.as_str() {
return Ok(site_str.to_string());
}
}
}
Err("Homepage not found in Cargo.toml".into())
}
/// Generate compile info
fn generate_compile_info(repo_root: &PathBuf) -> Result<(), Box<dyn std::error::Error>> {
// Read the template code
let template_code = std::fs::read_to_string(repo_root.join(COMPILE_INFO_RS_TEMPLATE))?;
let date = chrono::Local::now().format("%Y-%m-%d %H:%M:%S").to_string();
let target = env::var("TARGET").unwrap_or_else(|_| "unknown".to_string());
let platform = get_platform(&target);
let toolchain = get_toolchain();
let version = get_version();
let branch = get_git_branch().unwrap_or_else(|_| "unknown".to_string());
let commit = get_git_commit().unwrap_or_else(|_| "unknown".to_string());
let generated_code = template_code
.replace("{date}", &date)
.replace("{target}", &target)
.replace("{platform}", &platform)
.replace("{toolchain}", &toolchain)
.replace("{version}", &version)
.replace("{branch}", &branch)
.replace("{commit}", &commit);
// Write the generated code
let compile_info_path = repo_root.join(COMPILE_INFO_RS);
std::fs::write(compile_info_path, generated_code)?;
Ok(())
}
fn get_platform(target: &str) -> String {
if target.contains("windows") {
"Windows".to_string()
} else if target.contains("linux") {
"Linux".to_string()
} else if target.contains("darwin") || target.contains("macos") {
"macOS".to_string()
} else if target.contains("android") {
"Android".to_string()
} else if target.contains("ios") {
"iOS".to_string()
} else {
"Unknown".to_string()
}
}
fn get_toolchain() -> String {
let rustc_version = std::process::Command::new("rustc")
.arg("--version")
.output()
.ok()
.and_then(|output| String::from_utf8(output.stdout).ok())
.unwrap_or_else(|| "unknown".to_string())
.trim()
.to_string();
let channel = if rustc_version.contains("nightly") {
"nightly"
} else if rustc_version.contains("beta") {
"beta"
} else {
"stable"
};
format!("{} ({})", rustc_version, channel)
}
fn get_version() -> String {
let cargo_toml_path = std::path::Path::new("Cargo.toml");
let cargo_toml_content = match std::fs::read_to_string(cargo_toml_path) {
Ok(content) => content,
Err(_) => return "unknown".to_string(),
};
let cargo_toml: toml::Value = match toml::from_str(&cargo_toml_content) {
Ok(value) => value,
Err(_) => return "unknown".to_string(),
};
if let Some(workspace) = cargo_toml.get("workspace") {
if let Some(package) = workspace.get("package") {
if let Some(version) = package.get("version") {
if let Some(version_str) = version.as_str() {
return version_str.to_string();
}
}
}
}
"unknown".to_string()
}
/// Get current git branch
fn get_git_branch() -> Result<String, Box<dyn std::error::Error>> {
let output = Command::new("git")
.args(["branch", "--show-current"])
.output()?;
if output.status.success() {
let branch = String::from_utf8(output.stdout)?.trim().to_string();
if branch.is_empty() {
// Try to get HEAD reference if no branch (detached HEAD)
let output = Command::new("git")
.args(["rev-parse", "--abbrev-ref", "HEAD"])
.output()?;
if output.status.success() {
let head_ref = String::from_utf8(output.stdout)?.trim().to_string();
return Ok(head_ref);
}
} else {
return Ok(branch);
}
}
Err("Failed to get git branch".into())
}
/// Get current git commit hash
fn get_git_commit() -> Result<String, Box<dyn std::error::Error>> {
let output = Command::new("git").args(["rev-parse", "HEAD"]).output()?;
if output.status.success() {
let commit = String::from_utf8(output.stdout)?.trim().to_string();
return Ok(commit);
}
Err("Failed to get git commit".into())
}
/// Generate registry file from Registry.toml configuration
fn generate_cmd_registry_file(repo_root: &PathBuf) -> Result<(), Box<dyn std::error::Error>> {
let template_path = repo_root.join(REGISTRY_RS_TEMPLATE);
let output_path = repo_root.join(REGISTRY_RS);
let config_path = repo_root.join(REGISTRY_TOML);
// Read the template
let template = std::fs::read_to_string(&template_path)?;
// Read and parse the TOML configuration
let config_content = std::fs::read_to_string(&config_path)?;
let config: toml::Value = toml::from_str(&config_content)?;
// Collect all command configurations
let mut commands = Vec::new();
let mut nodes = Vec::new();
if let Some(table) = config.as_table() {
if let Some(cmd_table) = table.get("cmd") {
if let Some(cmd_table) = cmd_table.as_table() {
for (key, cmd_value) in cmd_table {
if let Some(cmd_config) = cmd_value.as_table() {
if let (Some(node), Some(cmd_type)) = (
cmd_config.get("node").and_then(|v| v.as_str()),
cmd_config.get("type").and_then(|v| v.as_str()),
) {
let n = node.replace(".", " ");
nodes.push(n.clone());
commands.push((key.to_string(), n, cmd_type.to_string()));
}
}
}
}
}
}
// Extract the node_if template from the template content
const PROCESS_MARKER: &str = "// PROCESS";
const TEMPLATE_START: &str = "// -- TEMPLATE START --";
const TEMPLATE_END: &str = "// -- TEMPLATE END --";
const LINE: &str = "<<LINE>>";
const NODES: &str = "<<NODES>>";
let template_start_index = template
.find(TEMPLATE_START)
.ok_or("Template start marker not found")?;
let template_end_index = template
.find(TEMPLATE_END)
.ok_or("Template end marker not found")?;
let template_slice = &template[template_start_index..template_end_index + TEMPLATE_END.len()];
let node_if_template = template_slice
.trim_start_matches(TEMPLATE_START)
.trim_end_matches(TEMPLATE_END)
.trim_matches('\n');
// Generate the match arms for each command
let match_arms: String = commands
.iter()
.map(|(key, node, cmd_type)| {
node_if_template
.replace("<<KEY>>", key)
.replace("<<NODE_NAME>>", node)
.replace("<<COMMAND_TYPE>>", cmd_type)
.trim_matches('\n')
.to_string()
})
.collect::<Vec<_>>()
.join("\n");
let nodes_str = format!(
"[\n {}\n ]",
nodes
.iter()
.map(|node| format!("\"{}\".to_string()", node))
.collect::<Vec<_>>()
.join(", ")
);
// Replace the template section with the generated match arms
let final_content = template
.replace(node_if_template, "")
.replace(TEMPLATE_START, "")
.replace(TEMPLATE_END, "")
.replace(PROCESS_MARKER, &match_arms)
.lines()
.filter(|line| !line.trim().is_empty())
.collect::<Vec<_>>()
.join("\n")
.replace(LINE, "")
.replace(NODES, nodes_str.as_str());
// Write the generated code
std::fs::write(output_path, final_content)?;
println!("Generated registry file with {} commands", commands.len());
Ok(())
}
/// Generate renderer list file from Registry.toml configuration
fn generate_renderer_list_file(repo_root: &PathBuf) -> Result<(), Box<dyn std::error::Error>> {
let template_path = repo_root.join(RENDERER_LIST_TEMPLATE);
let output_path = repo_root.join(RENDERER_LIST);
let config_path = repo_root.join(REGISTRY_TOML);
// Read the template
let template = std::fs::read_to_string(&template_path)?;
// Read and parse the TOML configuration
let config_content = std::fs::read_to_string(&config_path)?;
let config: toml::Value = toml::from_str(&config_content)?;
// Collect all renderer configurations
let mut renderers = Vec::new();
if let Some(table) = config.as_table() {
if let Some(renderer_table) = table.get("renderer") {
if let Some(renderer_table) = renderer_table.as_table() {
for (_, renderer_value) in renderer_table {
if let Some(renderer_config) = renderer_value.as_table() {
if let (Some(name), Some(renderer_type)) = (
renderer_config.get("name").and_then(|v| v.as_str()),
renderer_config.get("type").and_then(|v| v.as_str()),
) {
renderers.push((name.to_string(), renderer_type.to_string()));
}
}
}
}
}
}
// Extract the template section from the template content
const MATCH_MARKER: &str = "// MATCH";
const TEMPLATE_START: &str = "// -- TEMPLATE START --";
const TEMPLATE_END: &str = "// -- TEMPLATE END --";
let template_start_index = template
.find(TEMPLATE_START)
.ok_or("Template start marker not found")?;
let template_end_index = template
.find(TEMPLATE_END)
.ok_or("Template end marker not found")?;
let template_slice = &template[template_start_index..template_end_index + TEMPLATE_END.len()];
let renderer_template = template_slice
.trim_start_matches(TEMPLATE_START)
.trim_end_matches(TEMPLATE_END)
.trim_matches('\n');
// Generate the match arms for each renderer
let match_arms: String = renderers
.iter()
.map(|(name, renderer_type)| {
renderer_template
.replace("<<NAME>>", name)
.replace("RendererType", renderer_type)
.trim_matches('\n')
.to_string()
})
.collect::<Vec<String>>()
.join("\n");
// Replace the template section with the generated match arms
let final_content = template
.replace(renderer_template, "")
.replace(TEMPLATE_START, "")
.replace(TEMPLATE_END, "")
.replace(MATCH_MARKER, &match_arms)
.lines()
.filter(|line| !line.trim().is_empty())
.collect::<Vec<_>>()
.join("\n");
// Write the generated code
std::fs::write(output_path, final_content)?;
println!(
"Generated renderer list file with {} renderers",
renderers.len()
);
Ok(())
}
|