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
pub mod system_fonts {
use servo_fontconfig::fontconfig::{FcConfig, FcInitLoadConfigAndFonts, FcNameParse};
use servo_fontconfig::fontconfig::{FcPattern, FcPatternCreate, FcPatternDestroy, FcFontMatch};
use servo_fontconfig::fontconfig::{FcFontList, FcObjectSetBuild, FcChar8, FcDefaultSubstitute};
use servo_fontconfig::fontconfig::{FcPatternGetString, FcPatternAddInteger, FcPatternGetInteger};
use servo_fontconfig::fontconfig::{FcResultMatch, FcMatchPattern, FcResultNoMatch, FcConfigSubstitute};
use servo_fontconfig::fontconfig::FcPatternAddString;
use libc::{c_int, c_char};
use std::ptr;
use std::slice;
use std::ffi::{CStr, CString};
use std::io::prelude::*;
use std::fs::File;
use std::sync::{Once, ONCE_INIT};
static FC_FAMILY: &'static [u8] = b"family\0";
static FC_FILE: &'static [u8] = b"file\0";
static FC_WEIGHT: &'static [u8] = b"weight\0";
static FC_INDEX: &'static [u8] = b"index\0";
static FC_SLANT: &'static [u8] = b"slant\0";
static FC_SPACING: &'static [u8] = b"spacing\0";
static FC_WEIGHT_REGULAR: c_int = 80;
static FC_WEIGHT_BOLD: c_int = 200;
static FC_SLANT_ROMAN: c_int = 0;
static FC_SLANT_ITALIC: c_int = 100;
static FC_SLANT_OBLIQUE: c_int = 110;
static FC_MONO: c_int = 100;
static INIT_FONTCONFIG: Once = ONCE_INIT;
static mut CONFIG: *mut FcConfig = 0 as *mut FcConfig;
fn init() -> *mut FcConfig {
unsafe {
INIT_FONTCONFIG.call_once(|| {
CONFIG = FcInitLoadConfigAndFonts();
});
CONFIG
}
}
pub struct FontProperty {
slant: c_int,
weight: c_int,
family: String,
spacing: Option<c_int>,
}
pub struct FontPropertyBuilder {
property: FontProperty,
}
impl FontPropertyBuilder {
pub fn new() -> FontPropertyBuilder {
let property = FontProperty {
slant: FC_SLANT_ROMAN,
weight: FC_WEIGHT_REGULAR,
family: String::new(),
spacing: None,
};
FontPropertyBuilder { property: property }
}
pub fn italic(mut self) -> FontPropertyBuilder {
self.property.slant = FC_SLANT_ITALIC;
self
}
pub fn oblique(mut self) -> FontPropertyBuilder {
self.property.slant = FC_SLANT_OBLIQUE;
self
}
pub fn bold(mut self) -> FontPropertyBuilder {
self.property.weight = FC_WEIGHT_BOLD;
self
}
pub fn monospace(mut self) -> FontPropertyBuilder {
self.property.spacing = Some(FC_MONO);
self
}
pub fn family(mut self, name: &str) -> FontPropertyBuilder {
self.property.family.clear();
self.property.family.push_str(name);
self
}
pub fn build(self) -> FontProperty {
self.property
}
}
pub fn get(property: &FontProperty) -> Option<(Vec<u8>, c_int)> {
let config = init();
let family: &str = &property.family;
unsafe {
let name = CString::new(family).unwrap();
let pat = FcNameParse(name.as_ptr() as *const FcChar8);
add_int(pat, FC_SLANT, property.slant);
add_int(pat, FC_WEIGHT, property.weight);
FcConfigSubstitute(config, pat, FcMatchPattern);
FcDefaultSubstitute(pat);
let mut result = FcResultNoMatch;
let font_pat = FcFontMatch(config, pat, &mut result);
if font_pat.is_null() {
None
} else {
let file = get_string(font_pat, FC_FILE).unwrap();
let index = get_int(font_pat, FC_INDEX).unwrap();
FcPatternDestroy(font_pat);
let mut file = File::open(file).unwrap();
let mut buf: Vec<u8> = Vec::new();
let _ = file.read_to_end(&mut buf);
Some((buf, index))
}
}
}
pub fn query_all() -> Vec<String> {
let mut property = FontPropertyBuilder::new().build();
query_specific(&mut property)
}
pub fn query_specific(property: &mut FontProperty) -> Vec<String> {
let mut fonts: Vec<String> = Vec::new();
unsafe {
let config = init();
let pattern = FcPatternCreate();
if !property.family.is_empty() {
add_string(pattern, FC_FAMILY, &property.family);
}
property.spacing.map(|spacing| add_int(pattern, FC_SPACING, spacing));
add_int(pattern, FC_WEIGHT, property.weight);
add_int(pattern, FC_SLANT, property.slant);
let null_ptr: *const c_char = ptr::null();
let o1 = FC_FAMILY.as_ptr() as *mut c_char;
let os = FcObjectSetBuild(o1, null_ptr);
let fs = FcFontList(config, pattern, os);
let patterns = slice::from_raw_parts((*fs).fonts, (*fs).nfont as usize);
for pat in patterns {
let family_name = get_string(*pat, FC_FAMILY).unwrap();
fonts.push(family_name);
}
}
fonts.sort();
fonts.dedup();
fonts
}
fn add_int(pat: *mut FcPattern, object_name: &[u8], value: c_int) {
let object = object_name.as_ptr() as *const c_char;
unsafe {
FcPatternAddInteger(pat, object, value);
}
}
fn get_int(pat: *mut FcPattern, object_name: &[u8]) -> Result<c_int, &str> {
let object = object_name.as_ptr() as *const c_char;
unsafe {
let mut int: c_int = 0;
if FcPatternGetInteger(pat, object, 0, &mut int) == FcResultMatch {
Ok(int)
} else {
Err("Type didn't match")
}
}
}
fn add_string(pat: *mut FcPattern, object_name: &[u8], value: &str) {
let value = CString::new(value).unwrap();
let value_ptr = value.as_ptr() as *const FcChar8;
let object = object_name.as_ptr() as *const c_char;
unsafe {
FcPatternAddString(pat, object, value_ptr);
}
}
fn get_string(pat: *mut FcPattern, object_name: &[u8]) -> Result<String, &str> {
unsafe {
let mut string: *mut FcChar8 = ptr::null_mut();
let object = object_name.as_ptr() as *const c_char;
if FcPatternGetString(pat, object, 0, &mut string) == FcResultMatch {
let cstr = CStr::from_ptr(string as *mut c_char);
let string = cstr.to_string_lossy().into_owned();
Ok(string)
} else {
Err("Type didn't match")
}
}
}
}