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
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
#![allow(unused)]
use std::convert::TryInto;
use std::ffi::OsString;
use std::fmt::{Debug, Display, Formatter};
use std::mem::MaybeUninit;
use std::ptr::null_mut;
use std::sync::Arc;
use dwrote::FontCollection as DWFontCollection;
use winapi::shared::minwindef::{FALSE, TRUE};
use winapi::shared::ntdef::LOCALE_NAME_MAX_LENGTH;
use winapi::shared::winerror::{HRESULT, SUCCEEDED, S_OK};
use winapi::um::dwrite::{
DWriteCreateFactory, IDWriteFactory, IDWriteFontCollection, IDWriteFontFamily,
IDWriteLocalizedStrings, IDWriteTextFormat, IDWriteTextLayout, DWRITE_FACTORY_TYPE_SHARED,
DWRITE_FONT_STRETCH_NORMAL, DWRITE_FONT_STYLE, DWRITE_FONT_STYLE_ITALIC,
DWRITE_FONT_STYLE_NORMAL, DWRITE_FONT_WEIGHT, DWRITE_FONT_WEIGHT_NORMAL,
DWRITE_HIT_TEST_METRICS, DWRITE_LINE_METRICS, DWRITE_OVERHANG_METRICS,
DWRITE_READING_DIRECTION_RIGHT_TO_LEFT, DWRITE_TEXT_ALIGNMENT_CENTER,
DWRITE_TEXT_ALIGNMENT_JUSTIFIED, DWRITE_TEXT_ALIGNMENT_LEADING, DWRITE_TEXT_ALIGNMENT_TRAILING,
DWRITE_TEXT_METRICS, DWRITE_TEXT_RANGE,
};
use winapi::um::unknwnbase::IUnknown;
use winapi::um::winnls::GetUserDefaultLocaleName;
use winapi::Interface;
use wio::com::ComPtr;
use wio::wide::{FromWide, ToWide};
use piet::kurbo::Insets;
use piet::{FontFamily as PietFontFamily, FontStyle, FontWeight, TextAlignment};
use crate::Brush;
const DEFAULT_LOCALE: &[u16] = &utf16_lit::utf16_null!("en-US");
const MAX_LAYOUT_CONSTRAINT: f32 = 1.6e7;
pub enum Error {
WinapiError(HRESULT),
}
#[derive(Clone)]
pub struct DwriteFactory(ComPtr<IDWriteFactory>);
unsafe impl Send for DwriteFactory {}
#[derive(Clone)]
pub struct TextFormat(pub(crate) ComPtr<IDWriteTextFormat>);
#[derive(Clone)]
struct FontFamily(ComPtr<IDWriteFontFamily>);
pub struct FontCollection(ComPtr<IDWriteFontCollection>);
#[derive(Clone)]
pub struct TextLayout(ComPtr<IDWriteTextLayout>);
#[derive(Debug, Clone, Copy)]
pub struct Utf16Range {
pub start: usize,
pub len: usize,
}
impl From<HRESULT> for Error {
fn from(hr: HRESULT) -> Error {
Error::WinapiError(hr)
}
}
impl Debug for Error {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
match self {
Error::WinapiError(hr) => write!(f, "hresult {hr:x}"),
}
}
}
impl Display for Error {
fn fmt(&self, f: &mut Formatter) -> std::fmt::Result {
match self {
Error::WinapiError(hr) => write!(f, "hresult {hr:x}"),
}
}
}
impl std::error::Error for Error {
fn description(&self) -> &str {
"winapi error"
}
}
impl From<Error> for piet::Error {
fn from(e: Error) -> piet::Error {
piet::Error::BackendError(Box::new(e))
}
}
unsafe fn wrap<T, U, F>(hr: HRESULT, ptr: *mut T, f: F) -> Result<U, Error>
where
F: Fn(ComPtr<T>) -> U,
T: Interface,
{
if SUCCEEDED(hr) {
Ok(f(ComPtr::from_raw(ptr)))
} else {
Err(hr.into())
}
}
impl DwriteFactory {
pub fn new() -> Result<DwriteFactory, Error> {
unsafe {
let mut ptr: *mut IDWriteFactory = null_mut();
let hr = DWriteCreateFactory(
DWRITE_FACTORY_TYPE_SHARED,
&IDWriteFactory::uuidof(),
&mut ptr as *mut _ as *mut _,
);
wrap(hr, ptr, DwriteFactory)
}
}
pub fn get_raw(&self) -> *mut IDWriteFactory {
self.0.as_raw()
}
pub(crate) fn system_font_collection(&self) -> Result<FontCollection, Error> {
unsafe {
let mut ptr = null_mut();
let hr = self.0.GetSystemFontCollection(&mut ptr, 0);
wrap(hr, ptr, FontCollection)
}
}
pub unsafe fn from_raw(raw: *mut IDWriteFactory) -> Self {
Self(ComPtr::from_raw(raw))
}
}
impl FontCollection {
pub(crate) fn font_family(&self, name: &str) -> Option<PietFontFamily> {
let wname = name.to_wide_null();
let mut idx = u32::max_value();
let mut exists = 0_i32;
let family = unsafe {
let hr = self.0.FindFamilyName(wname.as_ptr(), &mut idx, &mut exists);
if SUCCEEDED(hr) && exists != 0 {
let mut family = null_mut();
let hr = self.0.GetFontFamily(idx, &mut family);
wrap(hr, family, FontFamily).ok()
} else {
eprintln!(
"failed to find family name {}: err {} not_found: {}",
name, hr, !exists
);
None
}
}?;
family.family_name().ok()
}
}
impl FontFamily {
fn family_name(&self) -> Result<PietFontFamily, Error> {
unsafe {
let mut names = null_mut();
let hr = self.0.GetFamilyNames(&mut names);
if !SUCCEEDED(hr) {
return Err(hr.into());
}
let names: ComPtr<IDWriteLocalizedStrings> = ComPtr::from_raw(names);
let mut index = 0_u32;
let mut exists = 0_i32;
let mut locale_name = [0_u16; LOCALE_NAME_MAX_LENGTH];
let success =
GetUserDefaultLocaleName(locale_name.as_mut_ptr(), LOCALE_NAME_MAX_LENGTH as i32);
let mut hr = if SUCCEEDED(success) {
names.FindLocaleName(locale_name.as_ptr(), &mut index, &mut exists)
} else {
hr
};
if !SUCCEEDED(hr) || exists == 0 {
hr = names.FindLocaleName(DEFAULT_LOCALE.as_ptr(), &mut index, &mut exists);
}
if !SUCCEEDED(hr) {
return Err(hr.into());
}
if exists == 0 {
index = 0;
}
let mut length = 0_u32;
let hr = names.GetStringLength(index, &mut length);
if !SUCCEEDED(hr) {
return Err(hr.into());
}
let mut wide_name: Vec<u16> = Vec::with_capacity(length as usize + 1);
let hr = names.GetString(index, wide_name.as_mut_ptr(), length + 1);
if SUCCEEDED(hr) {
wide_name.set_len(length as usize + 1);
let name = OsString::from_wide(&wide_name)
.into_string()
.unwrap_or_else(|err| err.to_string_lossy().into_owned());
Ok(PietFontFamily::new_unchecked(name))
} else {
Err(hr.into())
}
}
}
}
impl TextFormat {
pub(crate) fn new(
factory: &DwriteFactory,
family: impl AsRef<[u16]>,
size: f32,
rtl: bool,
) -> Result<TextFormat, Error> {
let family = family.as_ref();
unsafe {
let mut ptr = null_mut();
let hr = factory.0.CreateTextFormat(
family.as_ptr(),
null_mut(), DWRITE_FONT_WEIGHT_NORMAL,
DWRITE_FONT_STYLE_NORMAL,
DWRITE_FONT_STRETCH_NORMAL,
size,
DEFAULT_LOCALE.as_ptr(),
&mut ptr,
);
let r = wrap(hr, ptr, TextFormat)?;
if rtl {
r.0.SetReadingDirection(DWRITE_READING_DIRECTION_RIGHT_TO_LEFT);
}
Ok(r)
}
}
}
#[allow(overflowing_literals)]
#[allow(clippy::unreadable_literal)]
const E_NOT_SUFFICIENT_BUFFER: HRESULT = 0x8007007A;
impl Utf16Range {
pub fn new(start: usize, len: usize) -> Self {
Utf16Range { start, len }
}
}
impl From<Utf16Range> for DWRITE_TEXT_RANGE {
fn from(src: Utf16Range) -> DWRITE_TEXT_RANGE {
let Utf16Range { start, len } = src;
DWRITE_TEXT_RANGE {
startPosition: start.try_into().unwrap(),
length: len.try_into().unwrap(),
}
}
}
impl TextLayout {
pub(crate) fn new(
dwrite: &DwriteFactory,
format: TextFormat,
width: f32,
text: &[u16],
) -> Result<Self, Error> {
let len: u32 = text.len().try_into().unwrap();
let width = if !width.is_finite() {
MAX_LAYOUT_CONSTRAINT
} else {
width
};
unsafe {
let mut ptr = null_mut();
let hr = dwrite.0.CreateTextLayout(
text.as_ptr(),
len,
format.0.as_raw(),
width,
MAX_LAYOUT_CONSTRAINT,
&mut ptr,
);
wrap(hr, ptr, TextLayout)
}
}
pub(crate) fn set_alignment(&mut self, alignment: TextAlignment) {
let alignment = match alignment {
TextAlignment::Start => DWRITE_TEXT_ALIGNMENT_LEADING,
TextAlignment::End => DWRITE_TEXT_ALIGNMENT_TRAILING,
TextAlignment::Center => DWRITE_TEXT_ALIGNMENT_CENTER,
TextAlignment::Justified => DWRITE_TEXT_ALIGNMENT_JUSTIFIED,
};
unsafe {
self.0.SetTextAlignment(alignment);
}
}
pub(crate) fn set_weight(&mut self, range: Utf16Range, weight: FontWeight) {
let weight = weight.to_raw() as DWRITE_FONT_WEIGHT;
unsafe {
self.0.SetFontWeight(weight, range.into());
}
}
pub(crate) fn set_font_family(&mut self, range: Utf16Range, family: &str) {
let wide_name = family.to_wide_null();
unsafe {
self.0.SetFontFamilyName(wide_name.as_ptr(), range.into());
}
}
pub(crate) fn set_font_collection(&mut self, range: Utf16Range, collection: &DWFontCollection) {
unsafe {
self.0.SetFontCollection(collection.as_ptr(), range.into());
}
}
pub(crate) fn set_style(&mut self, range: Utf16Range, style: FontStyle) {
let val = match style {
FontStyle::Italic => DWRITE_FONT_STYLE_ITALIC,
FontStyle::Regular => DWRITE_FONT_STYLE_NORMAL,
};
unsafe {
self.0.SetFontStyle(val, range.into());
}
}
pub(crate) fn set_underline(&mut self, range: Utf16Range, flag: bool) {
let flag = if flag { TRUE } else { FALSE };
unsafe {
self.0.SetUnderline(flag, range.into());
}
}
pub(crate) fn set_strikethrough(&mut self, range: Utf16Range, flag: bool) {
let flag = if flag { TRUE } else { FALSE };
unsafe {
self.0.SetStrikethrough(flag, range.into());
}
}
pub(crate) fn set_size(&mut self, range: Utf16Range, size: f32) {
unsafe {
self.0.SetFontSize(size, range.into());
}
}
pub(crate) fn set_foregound_brush(&mut self, range: Utf16Range, brush: Brush) {
unsafe {
self.0
.SetDrawingEffect(brush.as_raw() as *mut IUnknown, range.into());
}
}
pub fn get_line_metrics(&self, buf: &mut Vec<DWRITE_LINE_METRICS>) {
let cap = buf.capacity().min(0xffff_ffff) as u32;
unsafe {
let mut actual_count = 0;
let mut hr = self
.0
.GetLineMetrics(buf.as_mut_ptr(), cap, &mut actual_count);
if hr == E_NOT_SUFFICIENT_BUFFER {
buf.reserve(actual_count as usize - buf.len());
hr = self
.0
.GetLineMetrics(buf.as_mut_ptr(), actual_count, &mut actual_count);
}
if SUCCEEDED(hr) {
buf.set_len(actual_count as usize);
} else {
buf.set_len(0);
}
}
}
pub fn get_raw(&self) -> *mut IDWriteTextLayout {
self.0.as_raw()
}
pub fn get_metrics(&self) -> DWRITE_TEXT_METRICS {
unsafe {
let mut result = std::mem::zeroed();
self.0.GetMetrics(&mut result);
result
}
}
pub fn get_overhang_metrics(&self) -> Insets {
unsafe {
let mut result = std::mem::zeroed();
let _ = self.0.GetOverhangMetrics(&mut result);
let DWRITE_OVERHANG_METRICS {
left,
top,
right,
bottom,
} = result;
Insets::new(left as f64, top as f64, right as f64, bottom as f64)
}
}
pub fn set_max_width(&mut self, max_width: f64) -> Result<(), Error> {
let max_width = if !max_width.is_finite() {
MAX_LAYOUT_CONSTRAINT
} else {
max_width as f32
};
unsafe {
let hr = self.0.SetMaxWidth(max_width);
if SUCCEEDED(hr) {
Ok(())
} else {
Err(hr.into())
}
}
}
pub fn hit_test_point(&self, point_x: f32, point_y: f32) -> HitTestPoint {
unsafe {
let mut trail = 0;
let mut inside = 0;
let mut metrics = MaybeUninit::uninit();
self.0.HitTestPoint(
point_x,
point_y,
&mut trail,
&mut inside,
metrics.as_mut_ptr(),
);
HitTestPoint {
metrics: metrics.assume_init().into(),
is_inside: inside != 0,
is_trailing_hit: trail != 0,
}
}
}
pub fn hit_test_text_position(
&self,
position: u32,
trailing: bool,
) -> Option<HitTestTextPosition> {
let trailing = trailing as i32;
unsafe {
let (mut x, mut y) = (0.0, 0.0);
let mut metrics = std::mem::zeroed();
let res = self
.0
.HitTestTextPosition(position, trailing, &mut x, &mut y, &mut metrics);
if res != S_OK {
return None;
}
Some(HitTestTextPosition {
metrics: metrics.into(),
point_x: x,
point_y: y,
})
}
}
}
#[derive(Copy, Clone)]
pub struct HitTestPoint {
pub metrics: HitTestMetrics,
pub is_inside: bool,
pub is_trailing_hit: bool,
}
#[derive(Copy, Clone)]
pub struct HitTestTextPosition {
pub point_x: f32,
pub point_y: f32,
pub metrics: HitTestMetrics,
}
#[repr(C)]
#[derive(Copy, Clone, Debug)]
pub struct HitTestMetrics {
pub text_position: u32,
pub length: u32,
pub left: f32,
pub top: f32,
pub width: f32,
pub height: f32,
pub bidi_level: u32,
pub is_text: bool,
pub is_trimmed: bool,
}
impl From<DWRITE_HIT_TEST_METRICS> for HitTestMetrics {
fn from(metrics: DWRITE_HIT_TEST_METRICS) -> Self {
HitTestMetrics {
text_position: metrics.textPosition,
length: metrics.length,
left: metrics.left,
top: metrics.top,
width: metrics.width,
height: metrics.height,
bidi_level: metrics.bidiLevel,
is_text: metrics.isText != 0,
is_trimmed: metrics.isTrimmed != 0,
}
}
}
#[cfg(test)]
mod tests {
use super::*;
#[test]
fn family_names() {
let factory = DwriteFactory::new().unwrap();
let fonts = factory.system_font_collection().unwrap();
assert!(fonts.font_family("serif").is_none());
assert!(fonts.font_family("arial").is_some());
assert!(fonts.font_family("Arial").is_some());
assert!(fonts.font_family("Times New Roman").is_some());
}
#[test]
fn default_locale() {
assert_eq!("en-US".to_wide_null().as_slice(), DEFAULT_LOCALE);
}
}