use crate::Result; use std::{env, path::PathBuf}; /// Creates and returns the cache directory pointed to by `MULLVAD_CACHE_DIR`, or the default /// one if that variable is unset. pub fn cache_dir() -> Result { #[cfg(not(target_os = "macos"))] let permissions = None; #[cfg(target_os = "macos")] let permissions = Some(std::os::unix::fs::PermissionsExt::from_mode(0o755)); crate::create_and_return(get_cache_dir, permissions) } pub fn get_cache_dir() -> Result { match env::var_os("MULLVAD_CACHE_DIR") { Some(path) => Ok(PathBuf::from(path)), None => get_default_cache_dir(), } } pub fn get_default_cache_dir() -> Result { #[cfg(not(target_os = "android"))] { let dir; #[cfg(target_os = "linux")] { dir = PathBuf::from("/var/cache").join(crate::PRODUCT_NAME); } #[cfg(windows)] { dir = crate::get_allusersprofile_dir()? .join(crate::PRODUCT_NAME) .join("cache"); } #[cfg(target_os = "macos")] { dir = std::path::Path::new("/Library/Caches").join(crate::PRODUCT_NAME); } Ok(dir) } #[cfg(target_os = "android")] { Ok(std::path::Path::new(crate::APP_PATH).join("cache")) } }