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
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
use fontconfig::fontconfig::{FcBool, FcConfig, FcFontList, FcInitLoadConfigAndFonts, FcObjectSet};
use fontconfig::fontconfig::{FcObjectSetAdd, FcObjectSetCreate, FcObjectSetDestroy, FcPattern};
use fontconfig::fontconfig::{FcPatternAddString, FcPatternCreate, FcPatternDestroy};
use fontconfig::fontconfig::{FcPatternGetInteger, FcPatternGetString, FcResultMatch};
use std::ffi::{CStr, CString};
use std::os::raw::{c_char, c_uchar};
use std::path::PathBuf;
use std::ptr;
use std::slice;
use error::SelectionError;
use family_handle::FamilyHandle;
use family_name::FamilyName;
use handle::Handle;
use properties::Properties;
use source::Source;
#[allow(dead_code, non_upper_case_globals)]
const FcFalse: FcBool = 0;
#[allow(non_upper_case_globals)]
const FcTrue: FcBool = 1;
const FC_FAMILY: &'static [u8] = b"family\0";
const FC_FILE: &'static [u8] = b"file\0";
const FC_INDEX: &'static [u8] = b"index\0";
const FC_POSTSCRIPT_NAME: &'static [u8] = b"postscriptname\0";
pub struct FontconfigSource {
fontconfig: *mut FcConfig,
}
impl FontconfigSource {
pub fn new() -> FontconfigSource {
unsafe {
FontconfigSource {
fontconfig: FcInitLoadConfigAndFonts(),
}
}
}
pub fn all_families(&self) -> Result<Vec<String>, SelectionError> {
unsafe {
let pattern = FcPatternObject::new();
let mut object_set = FcObjectSetObject::new();
object_set.push_string(FC_FAMILY);
let font_set = FcFontList(self.fontconfig, pattern.pattern, object_set.object_set);
if font_set.is_null() {
return Err(SelectionError::NotFound)
}
let font_patterns = slice::from_raw_parts((*font_set).fonts,
(*font_set).nfont as usize);
let mut result_families = vec![];
for font_pattern in font_patterns {
let family = match fc_pattern_get_string(*font_pattern, FC_FAMILY) {
None => continue,
Some(family) => family,
};
result_families.push(family);
}
result_families.sort();
result_families.dedup();
if !result_families.is_empty() {
Ok(result_families)
} else {
Err(SelectionError::NotFound)
}
}
}
pub fn select_family_by_name(&self, family_name: &str)
-> Result<FamilyHandle, SelectionError> {
unsafe {
let mut pattern = FcPatternObject::new();
pattern.push_string(FC_FAMILY, family_name.to_owned());
let mut object_set = FcObjectSetObject::new();
object_set.push_string(FC_FILE);
object_set.push_string(FC_INDEX);
let font_set = FcFontList(self.fontconfig, pattern.pattern, object_set.object_set);
assert!(!font_set.is_null());
let font_patterns = slice::from_raw_parts((*font_set).fonts,
(*font_set).nfont as usize);
let mut result_fonts = vec![];
for font_pattern in font_patterns {
result_fonts.push(self.create_font_handle_from_fontconfig_pattern(*font_pattern))
}
if !result_fonts.is_empty() {
Ok(FamilyHandle::from_font_handles(result_fonts.into_iter()))
} else {
Err(SelectionError::NotFound)
}
}
}
pub fn select_by_postscript_name(&self, postscript_name: &str)
-> Result<Handle, SelectionError> {
unsafe {
let mut pattern = FcPatternObject::new();
pattern.push_string(FC_POSTSCRIPT_NAME, postscript_name.to_owned());
let mut object_set = FcObjectSetObject::new();
object_set.push_string(FC_FILE);
object_set.push_string(FC_INDEX);
let font_set = FcFontList(self.fontconfig, pattern.pattern, object_set.object_set);
assert!(!font_set.is_null());
let font_patterns = slice::from_raw_parts((*font_set).fonts,
(*font_set).nfont as usize);
if !font_patterns.is_empty() {
Ok(self.create_font_handle_from_fontconfig_pattern(font_patterns[0]))
} else {
Err(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)
}
unsafe fn create_font_handle_from_fontconfig_pattern(&self, font_pattern: *mut FcPattern)
-> Handle {
let font_path = fc_pattern_get_string(font_pattern, FC_FILE).unwrap();
let font_index = fc_pattern_get_integer(font_pattern, FC_INDEX).unwrap() as u32;
Handle::from_path(PathBuf::from(font_path), font_index)
}
}
impl Source for FontconfigSource {
#[inline]
fn all_families(&self) -> Result<Vec<String>, SelectionError> {
self.all_families()
}
#[inline]
fn select_family_by_name(&self, family_name: &str) -> Result<FamilyHandle, SelectionError> {
self.select_family_by_name(family_name)
}
#[inline]
fn select_by_postscript_name(&self, postscript_name: &str) -> Result<Handle, SelectionError> {
self.select_by_postscript_name(postscript_name)
}
}
struct FcPatternObject {
pattern: *mut FcPattern,
c_strings: Vec<CString>,
}
impl Drop for FcPatternObject {
#[inline]
fn drop(&mut self) {
unsafe {
FcPatternDestroy(self.pattern)
}
}
}
impl FcPatternObject {
fn new() -> FcPatternObject {
unsafe {
FcPatternObject {
pattern: FcPatternCreate(),
c_strings: vec![],
}
}
}
unsafe fn push_string(&mut self, object: &'static [u8], value: String) {
let c_string = CString::new(value).unwrap();
FcPatternAddString(self.pattern,
object.as_ptr() as *const c_char,
c_string.as_ptr() as *const c_uchar);
self.c_strings.push(c_string)
}
}
struct FcObjectSetObject {
object_set: *mut FcObjectSet,
}
impl Drop for FcObjectSetObject {
fn drop(&mut self) {
unsafe {
FcObjectSetDestroy(self.object_set)
}
}
}
impl FcObjectSetObject {
fn new() -> FcObjectSetObject {
unsafe {
FcObjectSetObject {
object_set: FcObjectSetCreate(),
}
}
}
unsafe fn push_string(&mut self, object: &'static [u8]) {
assert_eq!(FcObjectSetAdd(self.object_set, object.as_ptr() as *const c_char), FcTrue);
}
}
unsafe fn fc_pattern_get_string(pattern: *mut FcPattern, object: &'static [u8]) -> Option<String> {
let mut string = ptr::null_mut();
if FcPatternGetString(pattern,
object.as_ptr() as *const c_char,
0,
&mut string) != FcResultMatch {
return None
}
if string.is_null() {
return None
}
CStr::from_ptr(string as *const c_char).to_str().ok().map(|string| string.to_owned())
}
unsafe fn fc_pattern_get_integer(pattern: *mut FcPattern, object: &'static [u8]) -> Option<i32> {
let mut integer = 0;
if FcPatternGetInteger(pattern,
object.as_ptr() as *const c_char,
0,
&mut integer) != FcResultMatch {
return None
}
Some(integer)
}