2022-08-02 09:51:15 +00:00
|
|
|
use std::fs::{self, File};
|
|
|
|
use std::io::Write;
|
2022-02-20 17:12:40 +00:00
|
|
|
|
2022-08-02 09:51:15 +00:00
|
|
|
use shadow_rs::SdResult;
|
|
|
|
|
|
|
|
fn main() -> SdResult<()> {
|
|
|
|
shadow_rs::new_hook(gen_presets_hook)?;
|
2022-02-20 17:12:40 +00:00
|
|
|
|
|
|
|
#[cfg(windows)]
|
|
|
|
{
|
|
|
|
let mut res = winres::WindowsResource::new();
|
2022-06-02 20:26:10 +00:00
|
|
|
res.set_manifest_file("starship.exe.manifest")
|
|
|
|
.set_icon("media/icon.ico");
|
2022-02-20 17:12:40 +00:00
|
|
|
res.compile()?;
|
|
|
|
}
|
|
|
|
|
|
|
|
Ok(())
|
2021-01-22 19:14:51 +00:00
|
|
|
}
|
2022-08-02 09:51:15 +00:00
|
|
|
|
|
|
|
fn gen_presets_hook(mut file: &File) -> SdResult<()> {
|
|
|
|
println!("cargo:rerun-if-changed=docs/.vuepress/public/presets/toml");
|
|
|
|
let paths = fs::read_dir("docs/.vuepress/public/presets/toml")?;
|
|
|
|
|
|
|
|
let mut presets = String::new();
|
|
|
|
let mut match_arms = String::new();
|
|
|
|
for path in paths {
|
|
|
|
let unwrapped = path?;
|
|
|
|
let file_name = unwrapped.file_name();
|
|
|
|
let full_path = dunce::canonicalize(unwrapped.path())?;
|
|
|
|
let full_path = full_path.to_str().expect("failed to convert to string");
|
|
|
|
let name = file_name
|
|
|
|
.to_str()
|
|
|
|
.and_then(|v| v.strip_suffix(".toml"))
|
|
|
|
.expect("Failed to process filename");
|
2022-11-05 11:40:46 +00:00
|
|
|
presets.push_str(format!("print::Preset(\"{name}\"),\n").as_str());
|
2023-03-03 10:46:16 +00:00
|
|
|
match_arms.push_str(format!(r#""{name}" => include_bytes!(r"{full_path}"),"#).as_str());
|
2022-08-02 09:51:15 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
writeln!(
|
|
|
|
file,
|
|
|
|
r#"
|
|
|
|
use crate::print;
|
|
|
|
|
|
|
|
pub fn get_preset_list<'a>() -> &'a [print::Preset] {{
|
|
|
|
&[
|
|
|
|
{presets}
|
|
|
|
]
|
|
|
|
}}
|
|
|
|
|
2023-03-03 10:46:16 +00:00
|
|
|
pub fn get_preset_content(name: &str) -> &[u8] {{
|
2022-08-02 09:51:15 +00:00
|
|
|
match name {{
|
|
|
|
{match_arms}
|
2023-03-03 10:46:16 +00:00
|
|
|
_ => unreachable!(),
|
2022-08-02 09:51:15 +00:00
|
|
|
}}
|
|
|
|
}}
|
|
|
|
"#
|
|
|
|
)?;
|
|
|
|
Ok(())
|
|
|
|
}
|