bitcoind 0.29.1

Utility to run a regtest bitcoind process, useful in integration testing environment
Documentation
#[cfg(not(feature = "download"))]
mod download {}

#[cfg(not(feature = "download"))]
fn main() {}

#[cfg(feature = "download")]
fn main() {
    download::start();
}

#[cfg(feature = "download")]
mod download {

    use bitcoin_hashes::{sha256, Hash};
    use flate2::read::GzDecoder;
    use std::fs::File;
    use std::io::{self, BufRead, BufReader, Cursor, Read};
    use std::path::Path;
    use std::str::FromStr;
    use tar::Archive;

    include!("src/versions.rs");

    #[cfg(all(
        target_os = "macos",
        any(target_arch = "x86_64", target_arch = "aarch64"),
    ))]
    fn download_filename() -> String {
        if cfg!(any(
            feature = "22_0",
            feature = "0_21_1",
            feature = "0_21_0",
            feature = "0_20_1",
            feature = "0_20_0",
            feature = "0_19_1",
            feature = "0_19_0_1",
            feature = "0_18_1",
            feature = "0_18_0",
            feature = "0_17_1",
        )) {
            format!("bitcoin-{}-osx64.tar.gz", &VERSION)
        } else {
            format!("bitcoin-{}-x86_64-apple-darwin.tar.gz", &VERSION)
        }
    }

    #[cfg(all(target_os = "linux", target_arch = "x86_64"))]
    fn download_filename() -> String {
        format!("bitcoin-{}-x86_64-linux-gnu.tar.gz", &VERSION)
    }

    #[cfg(all(target_os = "linux", target_arch = "aarch64"))]
    fn download_filename() -> String {
        format!("bitcoin-{}-aarch64-linux-gnu.tar.gz", &VERSION)
    }

    #[cfg(all(target_os = "windows", target_arch = "x86_64"))]
    fn download_filename() -> String {
        format!("bitcoin-{}-win64.zip", &VERSION)
    }

    fn get_expected_sha256(filename: &str) -> sha256::Hash {
        let sha256sums_filename = format!("sha256/bitcoin-core-{}-SHA256SUMS", &VERSION);
        #[cfg(any(
            feature = "0_21_1",
            feature = "0_21_0",
            feature = "0_20_1",
            feature = "0_20_0",
            feature = "0_19_1",
            feature = "0_19_0_1",
            feature = "0_18_1",
            feature = "0_18_0",
            feature = "0_17_1",
        ))]
        let sha256sums_filename = format!("{}.asc", sha256sums_filename);
        let file = File::open(&sha256sums_filename).unwrap();
        for line in BufReader::new(file).lines().flatten() {
            let tokens: Vec<_> = line.split("  ").collect();
            if tokens.len() == 2 && filename == tokens[1] {
                return sha256::Hash::from_str(tokens[0]).unwrap();
            }
        }
        panic!(
            "Couldn't find hash for `{}` in `{}`:\n{}",
            filename,
            sha256sums_filename,
            std::fs::read_to_string(&sha256sums_filename).unwrap()
        );
    }

    pub(crate) fn start() {
        let download_filename = download_filename();
        let expected_hash = get_expected_sha256(&download_filename);
        let out_dir = std::env::var_os("OUT_DIR").unwrap();
        let mut bitcoin_exe_home = Path::new(&out_dir).join("bitcoin");
        if !bitcoin_exe_home.exists() {
            std::fs::create_dir(&bitcoin_exe_home).unwrap();
        }
        let existing_filename = bitcoin_exe_home
            .join(format!("bitcoin-{}", VERSION))
            .join("bin")
            .join("bitcoind");

        if !existing_filename.exists() {
            println!(
                "filename:{} version:{} hash:{}",
                download_filename, VERSION, expected_hash
            );

            let url = format!(
                "https://bitcoincore.org/bin/bitcoin-core-{}/{}",
                VERSION, download_filename
            );
            println!("url:{}", url);
            let mut downloaded_bytes = Vec::new();
            let resp = ureq::get(&url).call().unwrap();
            assert_eq!(resp.status(), 200, "url {} didn't return 200", url);

            let _size = resp
                .into_reader()
                .read_to_end(&mut downloaded_bytes)
                .unwrap();
            let downloaded_hash = sha256::Hash::hash(&downloaded_bytes);
            assert_eq!(expected_hash, downloaded_hash);

            if download_filename.ends_with(".tar.gz") {
                let d = GzDecoder::new(&downloaded_bytes[..]);

                let mut archive = Archive::new(d);
                for mut entry in archive.entries().unwrap().flatten() {
                    if let Ok(file) = entry.path() {
                        if file.ends_with("bitcoind") {
                            entry.unpack_in(&bitcoin_exe_home).unwrap();
                        }
                    }
                }
            } else if download_filename.ends_with(".zip") {
                let cursor = Cursor::new(downloaded_bytes);
                let mut archive = zip::ZipArchive::new(cursor).unwrap();
                for i in 0..zip::ZipArchive::len(&archive) {
                    let mut file = archive.by_index(i).unwrap();
                    let outpath = match file.enclosed_name() {
                        Some(path) => path.to_owned(),
                        None => continue,
                    };

                    if outpath.file_name().map(|s| s.to_str()) == Some(Some("bitcoind.exe")) {
                        for d in outpath.iter() {
                            bitcoin_exe_home.push(d);
                        }
                        std::fs::create_dir_all(&bitcoin_exe_home.parent().unwrap()).unwrap();
                        println!("{:?}", bitcoin_exe_home);
                        let mut outfile = std::fs::File::create(&bitcoin_exe_home).unwrap();
                        io::copy(&mut file, &mut outfile).unwrap();
                        break;
                    }
                }
            }
        }
    }
}