Skip to content

Commit 3e2484f

Browse files
committed
More cleanups, put unicode in the right place
1 parent 4813ce3 commit 3e2484f

File tree

9 files changed

+411
-292
lines changed

9 files changed

+411
-292
lines changed

Cargo.lock

+328-241
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

crates/bridge_icu/Cargo.toml

+3
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,9 @@ license = "MIT"
1818
edition = "2018"
1919
links = "icuuc"
2020

21+
[dependencies]
22+
libc = "0.2"
23+
2124
[build-dependencies]
2225
tectonic_dep_support = { path = "../dep_support", version = "0.0.0-dev.0" }
2326

crates/bridge_icu/src/lib.rs

+35-2
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,43 @@
11
// Copyright 2020 the Tectonic Project
22
// Licensed under the MIT License.
33

4-
//! No Rust code. This crate exists to export the ICU *C* API into the
5-
//! Cargo framework.
4+
#![allow(nonstandard_style)]
5+
6+
//! This crate exists to export the ICU *C* API into the Cargo framework, as well as
7+
//! provide bindings to other tectonic crates.
68
79
pub const UBIDI_DEFAULT_LTR: u8 = 0xFE;
810
pub const UBIDI_DEFAULT_RTL: u8 = 0xFF;
11+
pub const U_ZERO_ERROR: UErrorCode = 0;
912

13+
pub type UErrorCode = libc::c_int;
14+
pub type UChar = u16;
1015
pub type UChar32 = i32;
16+
17+
pub fn U_SUCCESS(code: UErrorCode) -> bool {
18+
code <= U_ZERO_ERROR
19+
}
20+
21+
#[repr(C)]
22+
pub struct UConverter(());
23+
24+
extern "C" {
25+
pub fn ucnv_open(name: *const libc::c_char, err: *mut UErrorCode) -> *mut UConverter;
26+
pub fn ucnv_close(conv: *mut UConverter);
27+
pub fn ucnv_toUChars(
28+
conv: *mut UConverter,
29+
dest: *mut UChar,
30+
dest_capacity: i32,
31+
src: *const libc::c_char,
32+
src_len: i32,
33+
p_error_code: *mut UErrorCode,
34+
) -> i32;
35+
pub fn ucnv_fromUChars(
36+
conv: *mut UConverter,
37+
dest: *mut libc::c_char,
38+
dest_capacity: i32,
39+
src: *const UChar,
40+
src_len: i32,
41+
p_error_code: *mut UErrorCode,
42+
) -> i32;
43+
}

crates/xetex_layout/src/c_api/fc.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ use std::convert::TryFrom;
33
pub mod pat;
44
pub mod sys;
55

6-
pub use pat::Pattern;
6+
pub use pat::{OwnPattern, Pattern};
77

88
#[derive(Debug, PartialEq)]
99
pub enum FcErr {

crates/xetex_layout/src/c_api/fc/pat.rs

+27-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
use super::{sys, FcErr};
22
use std::convert::TryInto;
33
use std::ffi::CStr;
4+
use std::ops::Deref;
45
use std::ptr;
56
use std::ptr::NonNull;
67

@@ -96,12 +97,35 @@ impl Pattern {
9697
self.0.as_ptr()
9798
}
9899

99-
pub fn from_name(name: &CStr) -> Option<Pattern> {
100-
let raw = unsafe { sys::FcNameParse(name.as_ptr()) };
101-
NonNull::new(raw).map(Pattern)
100+
pub fn as_raw(&self) -> *mut sys::FcPattern {
101+
self.0.as_ptr()
102102
}
103103

104104
pub fn get<T: PatParam>(&self, idx: usize) -> Result<T::Output<'_>, FcErr> {
105105
T::get(self, idx)
106106
}
107107
}
108+
109+
#[derive(PartialEq, Eq, Hash)]
110+
pub struct OwnPattern(Pattern);
111+
112+
impl OwnPattern {
113+
pub fn from_name(name: &CStr) -> Option<OwnPattern> {
114+
let raw = unsafe { sys::FcNameParse(name.as_ptr()) };
115+
NonNull::new(raw).map(Pattern).map(OwnPattern)
116+
}
117+
}
118+
119+
impl Drop for OwnPattern {
120+
fn drop(&mut self) {
121+
unsafe { sys::FcPatternDestroy(self.0 .0.as_ptr()) };
122+
}
123+
}
124+
125+
impl Deref for OwnPattern {
126+
type Target = Pattern;
127+
128+
fn deref(&self) -> &Self::Target {
129+
&self.0
130+
}
131+
}

crates/xetex_layout/src/c_api/manager.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ pub struct NameCollection {
106106
pub trait FontManagerBackend {
107107
unsafe fn initialize(&mut self);
108108
unsafe fn terminate(&mut self);
109-
unsafe fn get_platform_font_desc<'a>(&'a self, font: &'a PlatformFontRef) -> &'a CStr;
109+
fn get_platform_font_desc<'a>(&'a self, font: &'a PlatformFontRef) -> &'a CStr;
110110
unsafe fn get_op_size_rec_and_style_flags(&self, font: &mut Font);
111111
unsafe fn search_for_host_platform_fonts(&mut self, maps: &mut FontMaps, name: &CStr);
112112
unsafe fn read_names(&self, font: PlatformFontRef) -> NameCollection;

crates/xetex_layout/src/c_api/manager/fc.rs

+7-8
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,6 @@ use crate::c_api::fc::sys::{
55
FC_FULLNAME, FC_INDEX, FC_SLANT, FC_STYLE, FC_WEIGHT, FC_WIDTH,
66
};
77
use crate::c_api::font::XeTeXFontBase;
8-
use crate::c_api::unicode::{
9-
ucnv_close, ucnv_fromUChars, ucnv_open, ucnv_toUChars, UConverter, U_SUCCESS, U_ZERO_ERROR,
10-
};
118
use crate::c_api::{fc, Fixed, PlatformFontRef, RsFix2D};
129
use std::cell::{Cell, RefCell};
1310
use std::ffi::{CStr, CString};
@@ -18,6 +15,9 @@ use tectonic_bridge_freetype2::{
1815
FT_IS_SFNT, TT_MAC_ID_ROMAN, TT_OS2, TT_PLATFORM_APPLE_UNICODE, TT_PLATFORM_MACINTOSH,
1916
TT_PLATFORM_MICROSOFT,
2017
};
18+
use tectonic_bridge_icu::{
19+
ucnv_close, ucnv_fromUChars, ucnv_open, ucnv_toUChars, UConverter, U_SUCCESS, U_ZERO_ERROR,
20+
};
2121

2222
pub const FONT_FAMILY_NAME: libc::c_ushort = 1;
2323
pub const FONT_STYLE_NAME: libc::c_ushort = 2;
@@ -126,7 +126,7 @@ impl FontManagerBackend for FcBackend {
126126
panic!("cannot read font names");
127127
}
128128

129-
let pat = FcNameParse(c!(":outline=true"));
129+
let pat = fc::OwnPattern::from_name(cstr!(":outline=true")).unwrap();
130130
let os = FcObjectSetBuild(
131131
FC_FAMILY,
132132
FC_STYLE,
@@ -139,9 +139,8 @@ impl FontManagerBackend for FcBackend {
139139
FC_FONTFORMAT,
140140
ptr::null::<()>(),
141141
);
142-
self.all_fonts = FcFontList(FcConfigGetCurrent(), pat, os);
142+
self.all_fonts = FcFontList(FcConfigGetCurrent(), pat.as_raw(), os);
143143
FcObjectSetDestroy(os);
144-
FcPatternDestroy(pat);
145144
self.cached_all = false;
146145
}
147146

@@ -165,11 +164,11 @@ impl FontManagerBackend for FcBackend {
165164
}
166165
}
167166

168-
unsafe fn get_platform_font_desc<'a>(&'a self, font: &'a PlatformFontRef) -> &'a CStr {
167+
fn get_platform_font_desc<'a>(&'a self, font: &'a PlatformFontRef) -> &'a CStr {
169168
if let Ok(str) = font.get::<fc::pat::File>(0) {
170169
str
171170
} else {
172-
CStr::from_ptr(c!("[unknown]"))
171+
cstr!("[unknown]")
173172
}
174173
}
175174

crates/xetex_layout/src/c_api/unicode.rs

-34
This file was deleted.

crates/xetex_layout/src/lib.rs

+9-2
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,15 @@ mod linkage {
2727
use tectonic_bridge_icu as clipyrenamehack5;
2828
}
2929

30+
macro_rules! cstr {
31+
($lit:literal) => {
32+
// SAFETY: C string passed to from_ptr guaranteed to end with a null due to concat!
33+
unsafe {
34+
::std::ffi::CStr::from_ptr(concat!($lit, "\0") as *const str as *const ::libc::c_char)
35+
}
36+
};
37+
}
38+
3039
macro_rules! c {
3140
($lit:literal) => {
3241
concat!($lit, "\0") as *const str as *const libc::c_char
@@ -47,8 +56,6 @@ mod c_api {
4756
mod fc;
4857
mod font;
4958
mod manager;
50-
/// cbindgen:ignore
51-
mod unicode;
5259

5360
pub(crate) struct SyncPtr<T>(*mut T);
5461
unsafe impl<T> Send for SyncPtr<T> {}

0 commit comments

Comments
 (0)