summaryrefslogtreecommitdiff
path: root/src/loading
diff options
context:
space:
mode:
authorLaurenz <laurmaedje@gmail.com>2021-05-28 12:44:44 +0200
committerLaurenz <laurmaedje@gmail.com>2021-05-28 12:46:43 +0200
commit0bfee5b7772338fd39bbf708d3e31ea7bcec859b (patch)
tree5f76c7d0529d6c089e8e3383356692dfce09cffb /src/loading
parenteabf28f08187bd9a10bbadbbaf9617e2bc1949aa (diff)
Refactored loading and cache architecture
Diffstat (limited to 'src/loading')
-rw-r--r--src/loading/fs.rs215
-rw-r--r--src/loading/mod.rs43
2 files changed, 258 insertions, 0 deletions
diff --git a/src/loading/fs.rs b/src/loading/fs.rs
new file mode 100644
index 00000000..969ee9e0
--- /dev/null
+++ b/src/loading/fs.rs
@@ -0,0 +1,215 @@
+use std::collections::{hash_map::Entry, HashMap};
+use std::fs::File;
+use std::io;
+use std::path::{Path, PathBuf};
+use std::rc::Rc;
+
+use memmap2::Mmap;
+use serde::{Deserialize, Serialize};
+use ttf_parser::{name_id, Face};
+use walkdir::WalkDir;
+
+use super::{Buffer, Loader};
+use crate::font::{FaceInfo, FontStretch, FontStyle, FontVariant, FontWeight};
+
+/// Loads fonts and images from the local file system.
+///
+/// _This is only available when the `fs` feature is enabled._
+#[derive(Default, Debug, Clone, Serialize, Deserialize)]
+pub struct FsLoader {
+ faces: Vec<FaceInfo>,
+ files: Vec<PathBuf>,
+ #[serde(skip)]
+ cache: FileCache,
+}
+
+/// Maps from paths to loaded file buffers. When the buffer is `None` the file
+/// does not exist or couldn't be read.
+type FileCache = HashMap<PathBuf, Option<Buffer>>;
+
+impl FsLoader {
+ /// Create a new loader without any fonts.
+ pub fn new() -> Self {
+ Self {
+ faces: vec![],
+ files: vec![],
+ cache: HashMap::new(),
+ }
+ }
+
+ /// Search for fonts in the operating system's font directories.
+ #[cfg(all(unix, not(target_os = "macos")))]
+ pub fn search_system(&mut self) {
+ self.search_path("/usr/share/fonts");
+ self.search_path("/usr/local/share/fonts");
+
+ if let Some(dir) = dirs::font_dir() {
+ self.search_path(dir);
+ }
+ }
+
+ /// Search for fonts in the operating system's font directories.
+ #[cfg(target_os = "macos")]
+ pub fn search_system(&mut self) {
+ self.search_path("/Library/Fonts");
+ self.search_path("/Network/Library/Fonts");
+ self.search_path("/System/Library/Fonts");
+
+ if let Some(dir) = dirs::font_dir() {
+ self.search_path(dir);
+ }
+ }
+
+ /// Search for fonts in the operating system's font directories.
+ #[cfg(windows)]
+ pub fn search_system(&mut self) {
+ let windir =
+ std::env::var("WINDIR").unwrap_or_else(|_| "C:\\Windows".to_string());
+
+ self.search_path(Path::new(&windir).join("Fonts"));
+
+ if let Some(roaming) = dirs::config_dir() {
+ self.search_path(roaming.join("Microsoft\\Windows\\Fonts"));
+ }
+
+ if let Some(local) = dirs::cache_dir() {
+ self.search_path(local.join("Microsoft\\Windows\\Fonts"));
+ }
+ }
+
+ /// Search for all fonts at a path.
+ ///
+ /// If the path is a directory, all contained fonts will be searched for
+ /// recursively.
+ pub fn search_path(&mut self, dir: impl AsRef<Path>) {
+ let walk = WalkDir::new(dir)
+ .follow_links(true)
+ .sort_by(|a, b| a.file_name().cmp(b.file_name()))
+ .into_iter()
+ .filter_map(|e| e.ok());
+
+ for entry in walk {
+ let path = entry.path();
+ if let Some(ext) = path.extension().and_then(|s| s.to_str()) {
+ match ext {
+ #[rustfmt::skip]
+ "ttf" | "otf" | "TTF" | "OTF" |
+ "ttc" | "otc" | "TTC" | "OTC" => {
+ self.search_file(path).ok();
+ }
+ _ => {}
+ }
+ }
+ }
+ }
+
+ /// Index the font faces in the file at the given path.
+ ///
+ /// The file may form a font collection and contain multiple font faces,
+ /// which will then all be indexed.
+ fn search_file(&mut self, path: impl AsRef<Path>) -> io::Result<()> {
+ let path = path.as_ref();
+ let path = path.strip_prefix(".").unwrap_or(path);
+
+ let file = File::open(path)?;
+ let mmap = unsafe { Mmap::map(&file)? };
+
+ for i in 0 .. ttf_parser::fonts_in_collection(&mmap).unwrap_or(1) {
+ let face = Face::from_slice(&mmap, i)
+ .map_err(|err| io::Error::new(io::ErrorKind::Other, err))?;
+
+ self.parse_face(path, &face, i)?;
+ }
+
+ Ok(())
+ }
+
+ /// Parse a single face and insert it into the `families`. This either
+ /// merges with an existing family entry if they have the same trimmed
+ /// family name, or creates a new one.
+ fn parse_face(&mut self, path: &Path, face: &Face<'_>, index: u32) -> io::Result<()> {
+ fn find_name(face: &Face, name_id: u16) -> Option<String> {
+ face.names().find_map(|entry| {
+ (entry.name_id() == name_id).then(|| entry.to_string()).flatten()
+ })
+ }
+
+ let family = find_name(face, name_id::TYPOGRAPHIC_FAMILY)
+ .or_else(|| find_name(face, name_id::FAMILY))
+ .ok_or("unknown font family")
+ .map_err(|err| io::Error::new(io::ErrorKind::Other, err))?;
+
+ let variant = FontVariant {
+ style: match (face.is_italic(), face.is_oblique()) {
+ (false, false) => FontStyle::Normal,
+ (true, _) => FontStyle::Italic,
+ (_, true) => FontStyle::Oblique,
+ },
+ weight: FontWeight::from_number(face.weight().to_number()),
+ stretch: FontStretch::from_number(face.width().to_number()),
+ };
+
+ // Merge with an existing entry for the same family name.
+ self.faces.push(FaceInfo { family, variant, index });
+ self.files.push(path.to_owned());
+
+ Ok(())
+ }
+
+ /// Paths to font files, parallel to [`faces()`](Self::faces).
+ pub fn files(&self) -> &[PathBuf] {
+ &self.files
+ }
+}
+
+impl Loader for FsLoader {
+ fn faces(&self) -> &[FaceInfo] {
+ &self.faces
+ }
+
+ fn load_face(&mut self, idx: usize) -> Option<Buffer> {
+ load(&mut self.cache, &self.files[idx])
+ }
+
+ fn load_file(&mut self, path: &str) -> Option<Buffer> {
+ load(&mut self.cache, Path::new(path))
+ }
+}
+
+/// Load from the file system using a cache.
+fn load(cache: &mut FileCache, path: &Path) -> Option<Buffer> {
+ match cache.entry(path.to_owned()) {
+ Entry::Occupied(entry) => entry.get().clone(),
+ Entry::Vacant(entry) => {
+ let buffer = std::fs::read(path).ok().map(Rc::new);
+ entry.insert(buffer).clone()
+ }
+ }
+}
+
+#[cfg(test)]
+mod tests {
+ use super::*;
+
+ #[test]
+ fn test_index_font_dir() {
+ let mut loader = FsLoader::new();
+ loader.search_path("fonts");
+
+ assert_eq!(loader.files, &[
+ Path::new("fonts/EBGaramond-Bold.ttf"),
+ Path::new("fonts/EBGaramond-BoldItalic.ttf"),
+ Path::new("fonts/EBGaramond-Italic.ttf"),
+ Path::new("fonts/EBGaramond-Regular.ttf"),
+ Path::new("fonts/Inconsolata-Bold.ttf"),
+ Path::new("fonts/Inconsolata-Regular.ttf"),
+ Path::new("fonts/LatinModernMath.otf"),
+ Path::new("fonts/NotoSansArabic-Regular.ttf"),
+ Path::new("fonts/NotoSerifCJKsc-Regular.otf"),
+ Path::new("fonts/NotoSerifHebrew-Bold.ttf"),
+ Path::new("fonts/NotoSerifHebrew-Regular.ttf"),
+ Path::new("fonts/PTSans-Regular.ttf"),
+ Path::new("fonts/TwitterColorEmoji.ttf"),
+ ]);
+ }
+}
diff --git a/src/loading/mod.rs b/src/loading/mod.rs
new file mode 100644
index 00000000..818e7e3c
--- /dev/null
+++ b/src/loading/mod.rs
@@ -0,0 +1,43 @@
+//! Resource loading.
+
+#[cfg(feature = "fs")]
+mod fs;
+
+#[cfg(feature = "fs")]
+pub use fs::*;
+
+use std::rc::Rc;
+
+use crate::font::FaceInfo;
+
+/// A shared byte buffer.
+pub type Buffer = Rc<Vec<u8>>;
+
+/// Loads resources from a local or remote source.
+pub trait Loader {
+ /// Descriptions of all font faces this loader serves.
+ fn faces(&self) -> &[FaceInfo];
+
+ /// Load the font face with the given index in [`faces()`](Self::faces).
+ fn load_face(&mut self, idx: usize) -> Option<Buffer>;
+
+ /// Load a file from a path.
+ fn load_file(&mut self, path: &str) -> Option<Buffer>;
+}
+
+/// A loader which serves nothing.
+pub struct BlankLoader;
+
+impl Loader for BlankLoader {
+ fn faces(&self) -> &[FaceInfo] {
+ &[]
+ }
+
+ fn load_face(&mut self, _: usize) -> Option<Buffer> {
+ None
+ }
+
+ fn load_file(&mut self, _: &str) -> Option<Buffer> {
+ None
+ }
+}