luwen-api 0.8.5

High-level interface for Tenstorrent device interactions
Documentation
use std::{env, fs};

fn try_to_compiled_proto_file_by_name(name: &str, out_dir: &str) -> Result<(), std::io::Error> {
    let proto_file = format!("{name}.proto");
    let outname = format!("{out_dir}/{name}.rs");
    let mut protoc_build_config = prost_build::Config::new();
    protoc_build_config.out_dir(out_dir);

    // Add `#[derive(Serialize)]` to all generated messages for easy HashMap conversion
    protoc_build_config.type_attribute(".", "#[derive(serde::Serialize, serde::Deserialize)]");

    protoc_build_config.compile_protos(&[proto_file], &["bh_spirom_protobufs/"])?;
    fs::rename(format!("{out_dir}/_.rs"), outname)?;
    Ok(())
}

fn compiled_proto_file_by_name(
    name: &str,
    out_dir: &str,
) -> Result<(), Box<dyn std::error::Error>> {
    let first_try = try_to_compiled_proto_file_by_name(name, out_dir);
    match first_try {
        Err(e) if e.kind() == std::io::ErrorKind::NotFound => {
            // If we couldn't find the system protoc then use the vendored
            return Err(Box::new(e));
        }
        other => {
            other?;
        }
    }

    Ok(())
}

fn main() -> Result<(), Box<dyn std::error::Error>> {
    // Get the output directory from Cargo
    let out_dir = env::var("OUT_DIR")?;
    compiled_proto_file_by_name("fw_table", &out_dir)?;
    compiled_proto_file_by_name("flash_info", &out_dir)?;
    compiled_proto_file_by_name("read_only", &out_dir)?;

    Ok(())
}