libcosmic-yoda/examples/text/src/font/system.rs

84 lines
2.3 KiB
Rust
Raw Normal View History

2022-10-12 10:28:30 -06:00
use std::ops::Deref;
2022-10-05 09:16:51 -06:00
use super::{Font, FontMatches};
2022-10-12 10:28:30 -06:00
pub struct FontSystem {
pub locale: String,
2022-10-12 10:28:30 -06:00
db: fontdb::Database,
2022-10-05 09:16:51 -06:00
}
2022-10-12 10:28:30 -06:00
impl FontSystem {
2022-10-05 09:16:51 -06:00
pub fn new() -> Self {
let locale = sys_locale::get_locale().unwrap_or_else(|| {
log::warn!("failed to get system locale, falling back to en-US");
String::from("en-US")
});
log::info!("Locale: {}", locale);
2022-10-12 10:28:30 -06:00
let mut db = fontdb::Database::new();
let now = std::time::Instant::now();
db.load_system_fonts();
//TODO: configurable default fonts
db.set_monospace_family("Fira Mono");
db.set_sans_serif_family("Fira Sans");
db.set_serif_family("DejaVu Serif");
log::info!(
2022-10-12 10:28:30 -06:00
"Loaded {} font faces in {}ms.",
db.len(),
now.elapsed().as_millis()
);
//TODO only do this on demand!
assert_eq!(db.len(), db.faces().len());
for i in 0..db.len() {
let id = db.faces()[i].id;
unsafe {
db.make_shared_face_data(id);
}
2022-10-05 09:16:51 -06:00
}
Self { locale, db }
2022-10-05 09:16:51 -06:00
}
2022-10-12 19:44:44 -07:00
pub fn matches<'a, F: Fn(&fontdb::FaceInfo) -> bool>(
&'a self,
f: F,
) -> Option<FontMatches<'a>> {
2022-10-05 09:16:51 -06:00
let mut fonts = Vec::new();
2022-10-12 10:28:30 -06:00
for face in self.db.faces() {
2022-10-12 19:44:44 -07:00
if !f(face) {
2022-10-12 10:28:30 -06:00
continue;
}
let font_opt = Font::new(
face,
2022-10-12 10:28:30 -06:00
match &face.source {
2022-10-12 19:44:44 -07:00
fontdb::Source::Binary(data) => data.deref().as_ref(),
2022-10-12 10:28:30 -06:00
fontdb::Source::File(path) => {
log::warn!("Unsupported fontdb Source::File('{}')", path.display());
2022-10-12 10:28:30 -06:00
continue;
2022-10-12 19:44:44 -07:00
}
fontdb::Source::SharedFile(_path, data) => data.deref().as_ref(),
2022-10-12 10:28:30 -06:00
},
face.index,
);
match font_opt {
Some(font) => fonts.push(font),
None => {
log::warn!("failed to load font '{}'", face.post_script_name);
2022-10-12 10:28:30 -06:00
}
}
}
2022-10-05 09:16:51 -06:00
2022-10-12 19:44:44 -07:00
if !fonts.is_empty() {
Some(FontMatches {
locale: &self.locale,
fonts
})
2022-10-05 09:16:51 -06:00
} else {
None
}
}
}