FontLoader loads and caches fonts

macos-click-through
exoticus 5 years ago
parent fb9c877afc
commit ca9829f5d3

@ -1,7 +1,6 @@
use std::collections::HashMap; use std::collections::HashMap;
use font_kit::{ use font_kit::{
family_name::FamilyName,
font::Font, font::Font,
metrics::Metrics, metrics::Metrics,
properties::{Properties, Stretch, Style, Weight}, properties::{Properties, Stretch, Style, Weight},
@ -11,7 +10,7 @@ use lru::LruCache;
use skribo::{FontCollection, FontFamily, FontRef as SkriboFont, LayoutSession, TextStyle}; use skribo::{FontCollection, FontFamily, FontRef as SkriboFont, LayoutSession, TextStyle};
use skulpin::skia_safe::{Data, Font as SkiaFont, TextBlob, TextBlobBuilder, Typeface}; use skulpin::skia_safe::{Data, Font as SkiaFont, TextBlob, TextBlobBuilder, Typeface};
use log::{info, trace, warn}; use log::{trace, warn};
const STANDARD_CHARACTER_STRING: &str = const STANDARD_CHARACTER_STRING: &str =
"abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890"; "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890";
@ -45,73 +44,122 @@ struct Asset;
const DEFAULT_FONT_SIZE: f32 = 14.0; const DEFAULT_FONT_SIZE: f32 = 14.0;
#[derive(new, Clone, Hash, PartialEq, Eq, Debug)] #[derive(Clone)]
struct ShapeKey { pub struct ExtendedFontFamily {
pub text: String, pub fonts: Vec<SkriboFont>
pub bold: bool, }
pub italic: bool,
impl ExtendedFontFamily {
pub fn new() -> ExtendedFontFamily {
ExtendedFontFamily { fonts: Vec::new() }
}
pub fn add_font(&mut self, font: SkriboFont) {
self.fonts.push(font);
}
pub fn get(&self, props: Properties) -> Option<&Font> {
for handle in &self.fonts {
let font = &handle.font;
let properties = font.properties();
if properties.weight == props.weight && properties.style == props.style {
return Some(&font);
}
}
None
}
}
fn to_family(x: ExtendedFontFamily) -> FontFamily {
let mut y = FontFamily::new();
for font in x.fonts {
y.add_font(font);
}
y
} }
pub struct FontLoader { pub struct FontLoader {
cache: LruCache<String, FontCollection>, cache: LruCache<String, ExtendedFontFamily>,
source: SystemSource
} }
impl FontLoader { impl FontLoader {
pub fn new() -> FontLoader { pub fn new() -> FontLoader {
FontLoader { FontLoader {
cache: LruCache::new(10), cache: LruCache::new(10),
source: SystemSource::new()
} }
} }
pub fn get(&mut self, font_name: &str) -> Option<&FontCollection> { fn get(&mut self, font_name: &str) -> Option<ExtendedFontFamily> {
let nameref = &font_name.to_string(); if let Some(family) = self.cache.get(&String::from(font_name)) {
return Some(family.clone());
if self.cache.contains(nameref) {
return self.cache.get(nameref);
} }
None None
} }
pub fn load_all_variants(&mut self, font_name: &str) -> Option<&FontCollection> { #[cfg(feature = "embed-fonts")]
let nameref = &font_name.to_string(); fn load_from_asset(&mut self, font_name: &str) -> Option<ExtendedFontFamily> {
let mut family = ExtendedFontFamily::new();
Asset::get(font_name)
.and_then(|font_data| Font::from_bytes(font_data.to_vec().into(), 0).ok())
.map(|font| family.add_font(SkriboFont::new(font)));
if self.cache.contains(nameref) { self.cache.put(String::from(font_name), family);
return self.cache.get(nameref); self.get(font_name)
} }
let source = SystemSource::new(); fn load(&mut self, font_name: &str) -> Option<ExtendedFontFamily> {
let mut collection = FontCollection::new(); let handle = match self.source.select_family_by_name(font_name) {
Ok(it) => it,
_ => return None,
};
source let fonts = handle.fonts();
.select_family_by_name(font_name) let mut family = ExtendedFontFamily::new();
.ok()
.map(|matching_fonts| {
let fonts = matching_fonts.fonts();
for font in fonts.into_iter() { for font in fonts.into_iter() {
if let Some(font) = font.load().ok() { if let Ok(font) = font.load() {
// do something with this family.add_font(SkriboFont::new(font));
let props: Properties = font.properties(); }
collection.add_family(FontFamily::new_from_font(font))
} }
self.cache.put(String::from(font_name), family);
self.get(font_name)
} }
});
self.cache.put(font_name.to_string(), collection); pub fn get_or_load(&mut self, font_name: &str, asset: bool) -> Option<ExtendedFontFamily> {
self.cache.get(nameref) if let Some(family) = self.get(font_name) {
return Some(family)
} }
pub fn load(&mut self, font_name: &str, bold: bool, italic: bool) -> Option<&FontCollection> { if asset { self.load_from_asset(font_name) } else { self.load(font_name) }
let nameref = &font_name.to_string(); }
}
if self.cache.contains(nameref) { #[derive(new, Clone, Hash, PartialEq, Eq, Debug)]
return self.cache.get(nameref); struct ShapeKey {
pub text: String,
pub bold: bool,
pub italic: bool,
} }
let source = SystemSource::new(); pub fn build_collection_by_font_name(
loader: &mut FontLoader,
font_name: Option<&str>,
bold: bool,
italic: bool,
) -> FontCollection {
let mut collection = FontCollection::new(); let mut collection = FontCollection::new();
if let Some(font_name) = font_name {
if let Some(family) = loader.get_or_load(font_name, false) {
let weight = if bold { Weight::BOLD } else { Weight::NORMAL }; let weight = if bold { Weight::BOLD } else { Weight::NORMAL };
let style = if italic { Style::Italic } else { Style::Normal }; let style = if italic { Style::Italic } else { Style::Normal };
let properties = Properties { let properties = Properties {
@ -120,44 +168,59 @@ impl FontLoader {
stretch: Stretch::NORMAL, stretch: Stretch::NORMAL,
}; };
if let Ok(custom) = if let Some(font) = family.get(properties) {
source.select_best_match(&[FamilyName::Title(font_name.to_string())], &properties) collection.add_family(FontFamily::new_from_font(font.clone()));
{ }
custom }
.load() }
.ok()
.map(|matching_font| {
collection.add_family(FontFamily::new_from_font(matching_font))
})
.unwrap_or_else(|| warn!("Could not load gui font"));
self.cache.put(font_name.to_string(), collection); if let Some(family) = loader.get_or_load(SYSTEM_SYMBOL_FONT, false) {
collection.add_family(to_family(family));
} }
self.cache.get(nameref) if let Some(family) = loader.get_or_load(SYSTEM_EMOJI_FONT, false) {
collection.add_family(to_family(family));
} }
pub fn load_from_asset(&mut self, font_name: &str) -> Option<&FontCollection> { if let Some(family) = loader.get_or_load(EXTRA_SYMBOL_FONT, true) {
let mut collection = FontCollection::new(); collection.add_family(to_family(family));
let nameref = &font_name.to_string(); }
if self.cache.contains(nameref) { if let Some(family) = loader.get_or_load(MISSING_GLYPH_FONT, true) {
return self.cache.get(nameref); collection.add_family(to_family(family));
} }
Asset::get(font_name) collection
.and_then(|font_data| Font::from_bytes(font_data.to_vec().into(), 0).ok()) }
.map(|font| collection.add_family(FontFamily::new_from_font(font)));
self.cache.put(font_name.to_string(), collection); struct FontSet {
self.cache.get(nameref) normal: FontCollection,
bold: FontCollection,
italic: FontCollection,
}
impl FontSet {
fn new(font_name: Option<&str>, mut loader: &mut FontLoader) -> FontSet {
FontSet {
normal: build_collection_by_font_name(&mut loader, font_name, false, false),
bold: build_collection_by_font_name(&mut loader, font_name, true, false),
italic: build_collection_by_font_name(&mut loader, font_name, false, true),
}
}
fn get(&self, bold: bool, italic: bool) -> &FontCollection {
match (bold, italic) {
(true, _) => &self.bold,
(false, false) => &self.normal,
(false, true) => &self.italic,
}
} }
} }
pub struct CachingShaper { pub struct CachingShaper {
pub font_name: Option<String>, pub font_name: Option<String>,
pub base_size: f32, pub base_size: f32,
// font_set: FontSet, font_set: FontSet,
font_loader: FontLoader, font_loader: FontLoader,
font_cache: LruCache<String, SkiaFont>, font_cache: LruCache<String, SkiaFont>,
blob_cache: LruCache<ShapeKey, Vec<TextBlob>>, blob_cache: LruCache<ShapeKey, Vec<TextBlob>>,
@ -175,12 +238,10 @@ impl CachingShaper {
pub fn new() -> CachingShaper { pub fn new() -> CachingShaper {
let mut loader = FontLoader::new(); let mut loader = FontLoader::new();
loader.load_all_variants(SYSTEM_DEFAULT_FONT);
CachingShaper { CachingShaper {
font_name: Some(String::from(SYSTEM_DEFAULT_FONT)), font_name: Some(String::from(SYSTEM_DEFAULT_FONT)),
base_size: DEFAULT_FONT_SIZE, base_size: DEFAULT_FONT_SIZE,
// font_set: FontSet::new(Some(SYSTEM_DEFAULT_FONT), &mut loader), font_set: FontSet::new(Some(SYSTEM_DEFAULT_FONT), &mut loader),
font_loader: loader, font_loader: loader,
font_cache: LruCache::new(10), font_cache: LruCache::new(10),
blob_cache: LruCache::new(10000), blob_cache: LruCache::new(10000),
@ -189,7 +250,6 @@ impl CachingShaper {
fn get_skia_font(&mut self, skribo_font: &SkriboFont) -> Option<&SkiaFont> { fn get_skia_font(&mut self, skribo_font: &SkriboFont) -> Option<&SkiaFont> {
let font_name = skribo_font.font.postscript_name()?; let font_name = skribo_font.font.postscript_name()?;
if !self.font_cache.contains(&font_name) { if !self.font_cache.contains(&font_name) {
let font = build_skia_font_from_skribo_font(skribo_font, self.base_size)?; let font = build_skia_font_from_skribo_font(skribo_font, self.base_size)?;
self.font_cache.put(font_name.clone(), font); self.font_cache.put(font_name.clone(), font);
@ -198,14 +258,15 @@ impl CachingShaper {
self.font_cache.get(&font_name) self.font_cache.get(&font_name)
} }
fn metrics(&mut self) -> Option<Metrics> { fn metrics(&self) -> Metrics {
let var_name = self.font_name.clone().unwrap_or_default(); self.font_set
.normal
if let Some(font) = self.font_loader.get(&var_name) { .itemize("a")
return Some(font.itemize("a").next().unwrap().1.font.metrics()); .next()
} .unwrap()
.1
None .font
.metrics()
} }
pub fn shape(&mut self, text: &str, bold: bool, italic: bool) -> Vec<TextBlob> { pub fn shape(&mut self, text: &str, bold: bool, italic: bool) -> Vec<TextBlob> {
@ -213,18 +274,16 @@ impl CachingShaper {
size: self.base_size, size: self.base_size,
}; };
let var_name = self.font_name.clone().unwrap_or_default(); let session = LayoutSession::create(text, &style, &self.font_set.get(bold, italic));
let font_collection = self.font_loader.get(&var_name).unwrap(); let metrics = self.metrics();
let session = LayoutSession::create(text, &style, font_collection);
let metrics = self.metrics().unwrap();
let ascent = metrics.ascent * self.base_size / metrics.units_per_em as f32; let ascent = metrics.ascent * self.base_size / metrics.units_per_em as f32;
let mut blobs = Vec::new(); let mut blobs = Vec::new();
for layout_run in session.iter_all() { for layout_run in session.iter_all() {
let skribo_font = layout_run.font(); let skribo_font = layout_run.font();
if let Some(skia_font) = self.get_skia_font(&skribo_font) { if let Some(skia_font) = self.get_skia_font(&skribo_font) {
let mut blob_builder = TextBlobBuilder::new(); let mut blob_builder = TextBlobBuilder::new();
let count = layout_run.glyphs().count(); let count = layout_run.glyphs().count();
let (glyphs, positions) = let (glyphs, positions) =
blob_builder.alloc_run_pos_h(&skia_font, count, ascent, None); blob_builder.alloc_run_pos_h(&skia_font, count, ascent, None);
@ -233,7 +292,6 @@ impl CachingShaper {
glyphs[i] = glyph.glyph_id as u16; glyphs[i] = glyph.glyph_id as u16;
positions[i] = glyph.offset.x; positions[i] = glyph.offset.x;
} }
blobs.push(blob_builder.make().unwrap()); blobs.push(blob_builder.make().unwrap());
} else { } else {
warn!("Could not load scribo font"); warn!("Could not load scribo font");
@ -245,7 +303,6 @@ impl CachingShaper {
pub fn shape_cached(&mut self, text: &str, bold: bool, italic: bool) -> &Vec<TextBlob> { pub fn shape_cached(&mut self, text: &str, bold: bool, italic: bool) -> &Vec<TextBlob> {
let key = ShapeKey::new(text.to_string(), bold, italic); let key = ShapeKey::new(text.to_string(), bold, italic);
if !self.blob_cache.contains(&key) { if !self.blob_cache.contains(&key) {
let blobs = self.shape(text, bold, italic); let blobs = self.shape(text, bold, italic);
self.blob_cache.put(key.clone(), blobs); self.blob_cache.put(key.clone(), blobs);
@ -258,24 +315,16 @@ impl CachingShaper {
trace!("Font changed {:?} {:?}", &font_name, &base_size); trace!("Font changed {:?} {:?}", &font_name, &base_size);
self.font_name = font_name.map(|name| name.to_string()); self.font_name = font_name.map(|name| name.to_string());
self.base_size = base_size.unwrap_or(DEFAULT_FONT_SIZE); self.base_size = base_size.unwrap_or(DEFAULT_FONT_SIZE);
self.font_loader self.font_set = FontSet::new(font_name, &mut self.font_loader);
.load(font_name.unwrap_or_default(), false, false);
self.font_cache.clear(); self.font_cache.clear();
self.blob_cache.clear(); self.blob_cache.clear();
} }
pub fn font_base_dimensions(&mut self) -> (f32, f32) { pub fn font_base_dimensions(&mut self) -> (f32, f32) {
let var_name = self.font_name.clone().unwrap_or_default(); let metrics = self.metrics();
let metrics = self.metrics().unwrap(); let font_height = (metrics.ascent - metrics.descent) * self.base_size / metrics.units_per_em as f32;
let font_collection = self.font_loader.get(&var_name).unwrap(); let style = TextStyle { size: self.base_size, };
let font_height = let session = LayoutSession::create(STANDARD_CHARACTER_STRING, &style, &self.font_set.normal);
(metrics.ascent - metrics.descent) * self.base_size / metrics.units_per_em as f32;
let style = TextStyle {
size: self.base_size,
};
let session = LayoutSession::create(STANDARD_CHARACTER_STRING, &style, font_collection);
let layout_run = session.iter_all().next().unwrap(); let layout_run = session.iter_all().next().unwrap();
let glyph_offsets: Vec<f32> = layout_run.glyphs().map(|glyph| glyph.offset.x).collect(); let glyph_offsets: Vec<f32> = layout_run.glyphs().map(|glyph| glyph.offset.x).collect();
let glyph_advances: Vec<f32> = glyph_offsets let glyph_advances: Vec<f32> = glyph_offsets
@ -284,6 +333,7 @@ impl CachingShaper {
.collect(); .collect();
let mut amounts = HashMap::new(); let mut amounts = HashMap::new();
for advance in glyph_advances.iter() { for advance in glyph_advances.iter() {
amounts amounts
.entry(advance.to_string()) .entry(advance.to_string())
@ -297,7 +347,7 @@ impl CachingShaper {
} }
pub fn underline_position(&mut self) -> f32 { pub fn underline_position(&mut self) -> f32 {
let metrics = self.metrics().unwrap(); let metrics = self.metrics();
-metrics.underline_position * self.base_size / metrics.units_per_em as f32 -metrics.underline_position * self.base_size / metrics.units_per_em as f32
} }
} }

Loading…
Cancel
Save