dynamics 0.1.9

Molecular dynamics
Documentation
//! For managing inference-related files

use std::{
    fs, io,
    path::{Path, PathBuf},
};

use bincode::Decode;

pub const MODEL_PATH: &str = "geostd_model.safetensors";
pub const VOCAB_PATH: &str = "geostd_model.vocab";

pub const GEOSTD_PATH: &str = "C:/users/the_a/Desktop/bio_misc/Amber/amber_geostd";
// pub const GEOSTD_PATH: &str = "C:/users/the_a/Desktop/bio_misc/amber_geostd_test"; // todo temp

/// Find Mol2  paths. Assumes there are per-letter subfolders one-layer deep.
/// todo: FRCmod as well
pub fn find_mol2_paths(geostd_dir: &Path) -> io::Result<Vec<PathBuf>> {
    let mut result = Vec::new();

    for entry in fs::read_dir(geostd_dir)? {
        let entry = entry?;
        let path = entry.path();

        if path.is_dir() {
            for subentry in fs::read_dir(&path)? {
                let subentry = subentry?;
                let subpath = subentry.path();

                if subpath
                    .extension()
                    .map(|e| e.to_string_lossy().to_lowercase())
                    == Some("mol2".to_string())
                {
                    result.push(subpath);
                }
            }
        }
    }

    Ok(result)
}

/// Load from file, using Bincode. We currently use this for preference files.
pub(crate) fn load_from_bytes_bincode<T: Decode<()>>(buffer: &[u8]) -> io::Result<T> {
    let config = bincode::config::standard();

    let (decoded, _len) = match bincode::decode_from_slice(buffer, config) {
        Ok(v) => v,
        Err(_) => {
            eprintln!("Error loading from file. Did the format change?");
            return Err(io::Error::other("error loading"));
        }
    };
    Ok(decoded)
}