use std::{env, io}; use std::fs; use std::path::{Path, PathBuf}; use std::process::Command; use hex_literal::hex; use sha2::{Digest, Sha512}; fn main() { // Do not fetch lib on docs.rs as it cannot, build will fail, docs won't build // https://docs.rs/about/builds if std::env::var("DOCS_RS").is_err() { let out_dir = env::var_os("OUT_DIR").unwrap(); println!("cargo:rustc-flags=-L {}", out_dir.to_str().unwrap()); println!("cargo:rustc-link-lib=Cwtch"); println!("cargo:rerun-if-changed=build.rs"); println!("cargo:rerun-if-changed=libCwtch.h"); // The bindgen::Builder is the main entry point // to bindgen, and lets you build up options for // the resulting bindings. let bindings = bindgen::Builder::default() // The input header we would like to generate // bindings for. .header("libCwtch.h") // Tell cargo to invalidate the built crate whenever any of the // included header files changed. .parse_callbacks(Box::new(bindgen::CargoCallbacks)) // Finish the builder and generate the bindings. .generate() // Unwrap the Result and panic on failure. .expect("Unable to generate bindings"); // Write the bindings to the $OUT_DIR/bindings.rs file. let out_path = PathBuf::from("src/cwtchlib_go"); bindings .write_to_file(out_path.join("bindings.rs")) .expect("Couldn't write bindings!"); let lib_cwtch_path = Path::new(&out_dir).join("libCwtch.so"); if std::env::var("LCG_DIR").is_err() { // https://git.openprivacy.ca/cwtch.im/libcwtch-go/releases v1.7.1 Command::new("wget") .arg("https://git.openprivacy.ca/attachments/cacefb43-8292-4350-a1d6-b416847854aa") .arg("-O") .arg(lib_cwtch_path.clone()) .output() .expect("failed to download libCwtch.so"); let mut hasher = Sha512::new(); let mut file = fs::File::open(&lib_cwtch_path).expect("could not open lib to hash"); io::copy(&mut file, &mut hasher).expect("failed to copy file into hasher"); let hash_bytes = hasher.finalize(); assert_eq!(hash_bytes[..], hex!("1b05a0e6a7ced043aa441dfecb0a3c7d0412955de57946299bb80a763a54620f56cc3b08dde82913a0cd626668a26a0609d44015f7eb6f738789f3100c99ec14")[..]); } else { let local_lcg = Path::new(std::env::var("LCG_DIR").unwrap().as_str()).join("libCwtch.so"); fs::copy(local_lcg, lib_cwtch_path).expect("could not find local lcg"); } } }