fitsio 0.21.9

Rust implmentation of astronomy fits file handling
Documentation
use std::{f32, f64};
use tempfile::Builder;

/// Function to allow access to a temporary file
pub(crate) fn with_temp_file<F>(callback: F)
where
    F: for<'a> Fn(&'a str),
{
    let tdir = Builder::new().prefix("fitsio-").tempdir().unwrap();
    let tdir_path = tdir.path();
    let filename = tdir_path.join("test.fits");

    let filename_str = filename.to_str().expect("cannot create string filename");
    callback(filename_str);
}

/// Function to create a temporary file and copy the example file
pub(crate) fn duplicate_test_file<F>(callback: F)
where
    F: for<'a> Fn(&'a str),
{
    use std::fs;
    with_temp_file(|filename| {
        fs::copy("../testdata/full_example.fits", filename).expect("Could not copy test file");
        callback(filename);
    });
}

/// Helper function for float comparisons
pub(crate) fn floats_close_f32(a: f32, b: f32) -> bool {
    (a - b).abs() < f32::EPSILON
}

pub(crate) fn floats_close_f64(a: f64, b: f64) -> bool {
    (a - b).abs() < f64::EPSILON
}