-
Notifications
You must be signed in to change notification settings - Fork 844
Expand file tree
/
Copy pathlib.rs
More file actions
360 lines (322 loc) · 10.7 KB
/
lib.rs
File metadata and controls
360 lines (322 loc) · 10.7 KB
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
// Copyright © SixtyFPS GmbH <info@slint.dev>
// SPDX-License-Identifier: GPL-3.0-only OR LicenseRef-Slint-Royalty-free-2.0 OR LicenseRef-Slint-Software-3.0
/*! This crate just exposes the function used by the C++ integration */
#![no_std]
extern crate alloc;
#[cfg(feature = "std")]
extern crate std;
use alloc::rc::Rc;
use alloc::string::ToString;
use core::ffi::c_void;
use i_slint_core::SharedString;
use i_slint_core::items::OperatingSystemType;
use i_slint_core::slice::Slice;
use i_slint_core::styled_text::StyledText;
use i_slint_core::window::{WindowAdapter, ffi::WindowAdapterRcOpaque};
pub mod platform;
#[cfg(feature = "i-slint-backend-selector")]
use i_slint_backend_selector::with_platform;
#[cfg(not(feature = "i-slint-backend-selector"))]
pub fn with_platform<R>(
f: impl FnOnce(
&dyn i_slint_core::platform::Platform,
) -> Result<R, i_slint_core::platform::PlatformError>,
) -> Result<R, i_slint_core::platform::PlatformError> {
i_slint_core::with_platform(|| Err(i_slint_core::platform::PlatformError::NoPlatform), f)
}
// We need to make sure something from the crate is exported,
// otherwise its symbols are not going to be in the final binary
#[cfg(feature = "testing")]
pub use i_slint_backend_testing;
#[cfg(feature = "slint-interpreter")]
pub use slint_interpreter;
#[unsafe(no_mangle)]
pub unsafe extern "C" fn slint_windowrc_init(out: *mut WindowAdapterRcOpaque) {
assert_eq!(
core::mem::size_of::<Rc<dyn WindowAdapter>>(),
core::mem::size_of::<WindowAdapterRcOpaque>()
);
let win = with_platform(|b| b.create_window_adapter()).unwrap();
unsafe {
core::ptr::write(out as *mut Rc<dyn WindowAdapter>, win);
}
}
#[unsafe(no_mangle)]
pub extern "C" fn slint_ensure_backend() {
with_platform(|_b| {
// Nothing to do, just make sure a backend was created
Ok(())
})
.unwrap()
}
#[unsafe(no_mangle)]
/// Enters the main event loop.
pub extern "C" fn slint_run_event_loop(quit_on_last_window_closed: bool) {
with_platform(|b| {
if !quit_on_last_window_closed {
#[allow(deprecated)]
b.set_event_loop_quit_on_last_window_closed(false);
}
b.run_event_loop()
})
.unwrap();
}
/// Will execute the given functor in the main thread
#[unsafe(no_mangle)]
pub unsafe extern "C" fn slint_post_event(
event: extern "C" fn(user_data: *mut c_void),
user_data: *mut c_void,
drop_user_data: Option<extern "C" fn(*mut c_void)>,
) {
struct UserData {
user_data: *mut c_void,
drop_user_data: Option<extern "C" fn(*mut c_void)>,
}
impl Drop for UserData {
fn drop(&mut self) {
if let Some(x) = self.drop_user_data {
x(self.user_data)
}
}
}
unsafe impl Send for UserData {}
let ud = UserData { user_data, drop_user_data };
i_slint_core::api::invoke_from_event_loop(move || {
let ud = &ud;
event(ud.user_data);
})
.unwrap();
}
#[unsafe(no_mangle)]
pub extern "C" fn slint_quit_event_loop() {
i_slint_core::api::quit_event_loop().unwrap();
}
#[cfg(feature = "std")]
#[unsafe(no_mangle)]
pub unsafe extern "C" fn slint_register_font_from_path(
win: *const WindowAdapterRcOpaque,
path: &SharedString,
error_str: &mut SharedString,
) {
let window_adapter = unsafe { &*(win as *const Rc<dyn WindowAdapter>) };
*error_str = match window_adapter
.renderer()
.register_font_from_path(std::path::Path::new(path.as_str()))
{
Ok(()) => Default::default(),
Err(err) => i_slint_core::string::ToSharedString::to_shared_string(&err),
};
}
#[cfg(feature = "std")]
#[unsafe(no_mangle)]
pub unsafe extern "C" fn slint_register_font_from_data(
win: *const WindowAdapterRcOpaque,
data: i_slint_core::slice::Slice<'static, u8>,
error_str: &mut SharedString,
) {
let window_adapter = unsafe { &*(win as *const Rc<dyn WindowAdapter>) };
*error_str = match window_adapter.renderer().register_font_from_memory(data.as_slice()) {
Ok(()) => Default::default(),
Err(err) => i_slint_core::string::ToSharedString::to_shared_string(&err),
};
}
#[unsafe(no_mangle)]
pub unsafe extern "C" fn slint_register_bitmap_font(
win: *const WindowAdapterRcOpaque,
font_data: &'static i_slint_core::graphics::BitmapFont,
) {
let window_adapter = unsafe { &*(win as *const Rc<dyn WindowAdapter>) };
window_adapter.renderer().register_bitmap_font(font_data);
}
#[unsafe(no_mangle)]
pub extern "C" fn slint_string_to_float(string: &SharedString, value: &mut f32) -> bool {
match string.as_str().parse::<f32>() {
Ok(v) => {
*value = v;
true
}
Err(_) => false,
}
}
#[unsafe(no_mangle)]
pub extern "C" fn slint_string_character_count(string: &SharedString) -> usize {
unicode_segmentation::UnicodeSegmentation::graphemes(string.as_str(), true).count()
}
#[unsafe(no_mangle)]
pub extern "C" fn slint_string_to_usize(string: &SharedString, value: &mut usize) -> bool {
match string.as_str().parse::<usize>() {
Ok(v) => {
*value = v;
true
}
Err(_) => false,
}
}
#[unsafe(no_mangle)]
pub extern "C" fn slint_debug(string: &SharedString) {
i_slint_core::debug_log!("{string}");
}
#[cfg(not(feature = "std"))]
mod allocator {
use core::alloc::Layout;
use core::ffi::c_void;
struct CAlloc;
unsafe impl core::alloc::GlobalAlloc for CAlloc {
unsafe fn alloc(&self, layout: Layout) -> *mut u8 {
unsafe extern "C" {
pub fn malloc(size: usize) -> *mut c_void;
}
unsafe {
let align = layout.align();
if align <= core::mem::size_of::<usize>() {
malloc(layout.size()) as *mut u8
} else {
// Ideally we'd use aligned_alloc, but that function caused heap corruption with esp-idf
let ptr = malloc(layout.size() + align) as *mut u8;
let shift = align - (ptr as usize % align);
let ptr = ptr.add(shift);
core::ptr::write(ptr.sub(1), shift as u8);
ptr
}
}
}
unsafe fn dealloc(&self, ptr: *mut u8, layout: Layout) {
let align = layout.align();
unsafe extern "C" {
pub fn free(p: *mut c_void);
}
unsafe {
if align <= core::mem::size_of::<usize>() {
free(ptr as *mut c_void);
} else {
let shift = core::ptr::read(ptr.sub(1)) as usize;
free(ptr.sub(shift) as *mut c_void);
}
}
}
}
#[global_allocator]
static ALLOCATOR: CAlloc = CAlloc;
}
#[cfg(all(not(feature = "std"), not(feature = "esp-backtrace")))]
#[panic_handler]
fn panic(_info: &core::panic::PanicInfo) -> ! {
loop {}
}
#[cfg(feature = "esp-backtrace")]
use esp_backtrace as _;
#[unsafe(no_mangle)]
pub extern "C" fn slint_set_xdg_app_id(_app_id: &SharedString) {
#[cfg(feature = "i-slint-backend-selector")]
i_slint_backend_selector::with_global_context(|ctx| ctx.set_xdg_app_id(_app_id.clone()))
.unwrap();
}
#[unsafe(no_mangle)]
pub extern "C" fn slint_detect_operating_system() -> OperatingSystemType {
i_slint_core::detect_operating_system()
}
#[unsafe(no_mangle)]
pub extern "C" fn slint_parse_markdown(
format_string: &SharedString,
args: Slice<StyledText>,
out: &mut StyledText,
) {
*out = i_slint_core::styled_text::parse_markdown(format_string, &args);
}
#[unsafe(no_mangle)]
pub extern "C" fn slint_string_to_styled_text(text: SharedString, out: &mut StyledText) {
*out = i_slint_core::styled_text::string_to_styled_text(text.to_string());
}
// Translator API is currently considered experimental due to discussions
// about the returned string type (SharedString vs. Cow<str> etc.). Also it
// is not available with no_std due to the tr crate.
// See dicussion in https://github.com/slint-ui/slint/pull/10979.
#[cfg(all(feature = "experimental", feature = "std"))]
mod translator {
use crate::SharedString;
use crate::Slice;
use alloc::boxed::Box;
use core::ffi::c_void;
use i_slint_core::translations::Translator;
use std::borrow::Cow;
type DropCallback = extern "C" fn(obj: *const c_void);
type TranslateCallback = extern "C" fn(
obj: *const c_void,
string: Slice<u8>,
context: Slice<u8>,
out: &mut SharedString,
);
type NTranslateCallback = extern "C" fn(
obj: *const c_void,
n: u64,
singular: Slice<u8>,
plural: Slice<u8>,
context: Slice<u8>,
out: &mut SharedString,
);
struct CppTranslator {
pub obj: *const c_void,
pub drop: DropCallback,
pub translate: TranslateCallback,
pub ntranslate: NTranslateCallback,
}
unsafe impl Send for CppTranslator {}
unsafe impl Sync for CppTranslator {}
impl Drop for CppTranslator {
fn drop(&mut self) {
(self.drop)(self.obj);
}
}
impl Translator for CppTranslator {
fn translate<'a>(&'a self, string: &'a str, context: Option<&'a str>) -> Cow<'a, str> {
let mut out = SharedString::new();
(self.translate)(
self.obj,
string.as_bytes().into(),
context.unwrap_or_default().as_bytes().into(),
&mut out,
);
Cow::Owned(out.into())
}
fn ntranslate<'a>(
&'a self,
n: u64,
singular: &'a str,
plural: &'a str,
context: Option<&'a str>,
) -> Cow<'a, str> {
let mut out = SharedString::new();
(self.ntranslate)(
self.obj,
n,
singular.as_bytes().into(),
plural.as_bytes().into(),
context.unwrap_or_default().as_bytes().into(),
&mut out,
);
Cow::Owned(out.into())
}
}
#[unsafe(no_mangle)]
pub extern "C" fn slint_translate_set_translator(
obj: *const c_void,
drop: DropCallback,
translate: TranslateCallback,
ntranslate: NTranslateCallback,
) -> bool {
#[cfg(feature = "i-slint-backend-selector")]
i_slint_backend_selector::with_global_context(|ctx| {
if !obj.is_null() {
ctx.set_external_translator(Some(Box::new(CppTranslator {
obj,
drop,
translate,
ntranslate,
})))
} else {
ctx.set_external_translator(None)
}
})
.is_ok()
}
}