1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
use crate::error::{FontLoadingError, SelectionError};
use crate::family_handle::FamilyHandle;
use crate::family_name::FamilyName;
use crate::font::Font;
use crate::handle::Handle;
use crate::properties::Properties;
use crate::source::Source;
#[allow(missing_debug_implementations)]
pub struct MemSource {
families: Vec<FamilyEntry>,
}
impl MemSource {
pub fn from_fonts<I>(fonts: I) -> Result<MemSource, FontLoadingError>
where
I: Iterator<Item = Handle>,
{
let mut families = vec![];
for handle in fonts {
let font = Font::from_handle(&handle)?;
if let Some(postscript_name) = font.postscript_name() {
families.push(FamilyEntry {
family_name: font.family_name(),
postscript_name: postscript_name,
font: handle,
})
}
}
families.sort_by(|a, b| a.family_name.cmp(&b.family_name));
Ok(MemSource { families })
}
pub fn all_fonts(&self) -> Result<Vec<Handle>, SelectionError> {
Ok(self
.families
.iter()
.map(|family| family.font.clone())
.collect())
}
pub fn all_families(&self) -> Result<Vec<String>, SelectionError> {
let mut families = vec![];
for family in &self.families {
if families.last() == Some(&family.family_name) {
continue;
}
families.push(family.family_name.clone());
}
Ok(families)
}
pub fn select_family_by_name(&self, family_name: &str) -> Result<FamilyHandle, SelectionError> {
let mut first_family_index = self
.families
.binary_search_by(|family| (&*family.family_name).cmp(family_name))
.map_err(|_| SelectionError::NotFound)?;
while first_family_index > 0
&& self.families[first_family_index - 1].family_name == family_name
{
first_family_index -= 1
}
let mut last_family_index = first_family_index;
while last_family_index + 1 < self.families.len()
&& self.families[last_family_index + 1].family_name == family_name
{
last_family_index += 1
}
let families = &self.families[first_family_index..(last_family_index + 1)];
Ok(FamilyHandle::from_font_handles(
families.iter().map(|family| family.font.clone()),
))
}
pub fn select_by_postscript_name(
&self,
postscript_name: &str,
) -> Result<Handle, SelectionError> {
self.families
.iter()
.filter(|family_entry| family_entry.postscript_name == postscript_name)
.map(|family_entry| family_entry.font.clone())
.next()
.ok_or(SelectionError::NotFound)
}
#[inline]
pub fn select_best_match(
&self,
family_names: &[FamilyName],
properties: &Properties,
) -> Result<Handle, SelectionError> {
<Self as Source>::select_best_match(self, family_names, properties)
}
}
impl Source for MemSource {
#[inline]
fn all_fonts(&self) -> Result<Vec<Handle>, SelectionError> {
self.all_fonts()
}
#[inline]
fn all_families(&self) -> Result<Vec<String>, SelectionError> {
self.all_families()
}
fn select_family_by_name(&self, family_name: &str) -> Result<FamilyHandle, SelectionError> {
self.select_family_by_name(family_name)
}
fn select_by_postscript_name(&self, postscript_name: &str) -> Result<Handle, SelectionError> {
self.select_by_postscript_name(postscript_name)
}
}
struct FamilyEntry {
family_name: String,
postscript_name: String,
font: Handle,
}