acid/firmware2/build.rs
2025-12-31 22:24:26 +01:00

73 lines
2.6 KiB
Rust

use std::fs::File;
use std::io::Read;
use std::path::Path;
use std::{env, fs};
use const_gen::*;
use slint_build::{CompilerConfiguration, EmbedResourcesKind};
use xz2::read::XzEncoder;
// use shadow_rs::{BuildPattern, ShadowBuilder};
fn main() {
if let Ok(repo) = gix::discover(env::var_os("CARGO_MANIFEST_DIR").unwrap().into_string().unwrap()) {
let commit_hash = repo.head_commit().unwrap().short_id().unwrap();
println!("cargo:rustc-env=GIT_COMMIT_HASH={}", commit_hash);
println!("cargo:rustc-env=GIT_COMMIT={}",
repo.find_tag(repo.head_id().unwrap())
.ok()
.map(|tag| format!("{} ({})", tag.decode().unwrap().name, commit_hash))
.unwrap_or_else(|| commit_hash.to_string())
);
}
// ShadowBuilder::builder()
// .build_pattern(BuildPattern::Lazy)
// .deny_const(Default::default())
// .build()
// .unwrap();
// Generate vial config at the root of project
println!("cargo:rerun-if-changed=vial.json");
generate_vial_config();
println!("cargo:rustc-link-arg-bins=-Tlinkall.x");
// Set the extra linker script from defmt
// println!("cargo:rustc-link-arg=-Tdefmt.x");
let slint_config = CompilerConfiguration::new()
// .with_scale_factor(4.0)
.with_style("cosmic-dark".to_string())
.embed_resources(EmbedResourcesKind::EmbedForSoftwareRenderer);
slint_build::compile_with_config("ui/main.slint", slint_config).expect("Slint build failed");
slint_build::print_rustc_flags().unwrap()
}
fn generate_vial_config() {
// Generated vial config file
let out_file = Path::new(&env::var_os("OUT_DIR").unwrap()).join("config_generated.rs");
let p = Path::new("vial.json");
let mut content = String::new();
match File::open(p) {
Ok(mut file) => {
file.read_to_string(&mut content).expect("Cannot read vial.json");
}
Err(e) => println!("Cannot find vial.json {p:?}: {e}"),
};
let vial_cfg = json::stringify(json::parse(&content).unwrap());
let mut keyboard_def_compressed: Vec<u8> = Vec::new();
XzEncoder::new(vial_cfg.as_bytes(), 6)
.read_to_end(&mut keyboard_def_compressed)
.unwrap();
let keyboard_id: Vec<u8> = vec![0xB9, 0xBC, 0x09, 0xB2, 0x9D, 0x37, 0x4C, 0xEA];
let const_declarations = [
const_declaration!(pub VIAL_KEYBOARD_DEF = keyboard_def_compressed),
const_declaration!(pub VIAL_KEYBOARD_ID = keyboard_id),
]
.map(|s| "#[allow(clippy::redundant_static_lifetimes)]\n".to_owned() + s.as_str())
.join("\n");
fs::write(out_file, const_declarations).unwrap();
}