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
#![doc(html_logo_url = "https://slint-ui.com/logo/slint-logo-square-light.svg")]
#![warn(missing_docs)]
#[cfg(not(feature = "default"))]
compile_error!(
"The feature `default` must be enabled to ensure \
forward compatibility with future version of this crate"
);
use std::env;
use std::io::Write;
use std::path::Path;
use i_slint_compiler::diagnostics::BuildDiagnostics;
pub struct CompilerConfiguration {
config: i_slint_compiler::CompilerConfiguration,
}
#[derive(Clone, PartialEq)]
pub enum EmbedResourcesKind {
AsAbsolutePath,
EmbedFiles,
EmbedForSoftwareRenderer,
}
impl Default for CompilerConfiguration {
fn default() -> Self {
Self {
config: i_slint_compiler::CompilerConfiguration::new(
i_slint_compiler::generator::OutputFormat::Rust,
),
}
}
}
impl CompilerConfiguration {
pub fn new() -> Self {
Self::default()
}
#[must_use]
pub fn with_include_paths(self, include_paths: Vec<std::path::PathBuf>) -> Self {
let mut config = self.config;
config.include_paths = include_paths;
Self { config }
}
#[must_use]
pub fn with_style(self, style: String) -> Self {
let mut config = self.config;
config.style = Some(style);
Self { config }
}
#[must_use]
pub fn embed_resources(self, kind: EmbedResourcesKind) -> Self {
let mut config = self.config;
config.embed_resources = match kind {
EmbedResourcesKind::AsAbsolutePath => {
i_slint_compiler::EmbedResourcesKind::OnlyBuiltinResources
}
EmbedResourcesKind::EmbedFiles => {
i_slint_compiler::EmbedResourcesKind::EmbedAllResources
}
EmbedResourcesKind::EmbedForSoftwareRenderer => {
i_slint_compiler::EmbedResourcesKind::EmbedTextures
}
};
Self { config }
}
}
#[derive(thiserror::Error, Debug)]
#[non_exhaustive]
pub enum CompileError {
#[error("Cannot read environment variable CARGO_MANIFEST_DIR or OUT_DIR. The build script need to be run via cargo.")]
NotRunViaCargo,
#[error("{0:?}")]
CompileError(Vec<String>),
#[error("Cannot write the generated file: {0}")]
SaveError(std::io::Error),
}
struct CodeFormatter<Sink> {
indentation: usize,
in_string: bool,
in_char: usize,
sink: Sink,
}
impl<Sink> CodeFormatter<Sink> {
pub fn new(sink: Sink) -> Self {
Self { indentation: 0, in_string: false, in_char: 0, sink }
}
}
impl<Sink: Write> Write for CodeFormatter<Sink> {
fn write(&mut self, mut s: &[u8]) -> std::io::Result<usize> {
let len = s.len();
while let Some(idx) = s.iter().position(|c| match c {
b'{' if !self.in_string && self.in_char == 0 => {
self.indentation += 1;
true
}
b'}' if !self.in_string && self.in_char == 0 => {
self.indentation -= 1;
true
}
b';' if !self.in_string && self.in_char == 0 => true,
b'"' if !self.in_string && self.in_char == 0 => {
self.in_string = true;
false
}
b'"' if self.in_string => {
self.in_string = false;
false
}
b'\'' if !self.in_string && self.in_char == 0 => {
self.in_char = 1;
false
}
b'\'' if !self.in_string && self.in_char > 0 => {
self.in_char = 0;
false
}
b' ' | b'>' if self.in_char > 2 => {
self.in_char = 0;
false
}
_ if self.in_char > 0 => {
self.in_char += 1;
false
}
_ => false,
}) {
let idx = idx + 1;
self.sink.write_all(&s[..idx])?;
self.sink.write_all(b"\n")?;
for _ in 0..self.indentation {
self.sink.write_all(b" ")?;
}
s = &s[idx..];
}
self.sink.write_all(s)?;
Ok(len)
}
fn flush(&mut self) -> std::io::Result<()> {
self.sink.flush()
}
}
#[test]
fn formatter_test() {
fn format_code(code: &str) -> String {
let mut res = Vec::new();
let mut formater = CodeFormatter::new(&mut res);
formater.write_all(code.as_bytes()).unwrap();
String::from_utf8(res).unwrap()
}
assert_eq!(
format_code("fn main() { if ';' == '}' { return \";\"; } else { panic!() } }"),
r#"fn main() {
if ';' == '}' {
return ";";
}
else {
panic!() }
}
"#
);
assert_eq!(
format_code(r#"fn xx<'lt>(foo: &'lt str) { println!("{}", '\u{f700}'); return Ok(()); }"#),
r#"fn xx<'lt>(foo: &'lt str) {
println!("{}", '\u{f700}');
return Ok(());
}
"#
);
}
pub fn compile(path: impl AsRef<std::path::Path>) -> Result<(), CompileError> {
compile_with_config(path, CompilerConfiguration::default())
}
pub fn compile_with_config(
path: impl AsRef<std::path::Path>,
config: CompilerConfiguration,
) -> Result<(), CompileError> {
let path = Path::new(&env::var_os("CARGO_MANIFEST_DIR").ok_or(CompileError::NotRunViaCargo)?)
.join(path.as_ref());
let mut diag = BuildDiagnostics::default();
let syntax_node = i_slint_compiler::parser::parse_file(&path, &mut diag);
if diag.has_error() {
let vec = diag.to_string_vec();
diag.print();
return Err(CompileError::CompileError(vec));
}
let mut compiler_config = config.config;
let mut rerun_if_changed = String::new();
if std::env::var_os("SLINT_STYLE").is_none()
&& std::env::var_os("SIXTYFPS_STYLE").is_none()
&& compiler_config.style.is_none()
{
compiler_config.style = std::env::var_os("OUT_DIR").and_then(|path| {
let path = Path::new(&path).parent()?.parent()?.join("SLINT_DEFAULT_STYLE.txt");
rerun_if_changed = format!("cargo:rerun-if-changed={}", path.display());
let style = std::fs::read_to_string(path).ok()?;
Some(style.trim().into())
});
}
let syntax_node = syntax_node.expect("diags contained no compilation errors");
let (doc, diag) =
spin_on::spin_on(i_slint_compiler::compile_syntax_node(syntax_node, diag, compiler_config));
if diag.has_error() {
let vec = diag.to_string_vec();
diag.print();
return Err(CompileError::CompileError(vec));
}
let output_file_path = Path::new(&env::var_os("OUT_DIR").ok_or(CompileError::NotRunViaCargo)?)
.join(
path.file_stem()
.map(Path::new)
.unwrap_or_else(|| Path::new("slint_out"))
.with_extension("rs"),
);
let file = std::fs::File::create(&output_file_path).map_err(CompileError::SaveError)?;
let mut code_formatter = CodeFormatter::new(file);
let generated = i_slint_compiler::generator::rust::generate(&doc);
for x in &diag.all_loaded_files {
if x.is_absolute() {
println!("cargo:rerun-if-changed={}", x.display());
}
}
diag.diagnostics_as_string().lines().for_each(|w| {
if !w.is_empty() {
println!("cargo:warning={}", w.strip_prefix("warning: ").unwrap_or(w))
}
});
write!(code_formatter, "{}", generated).map_err(CompileError::SaveError)?;
println!("{}\ncargo:rerun-if-changed={}", rerun_if_changed, path.display());
for resource in doc.root_component.embedded_file_resources.borrow().keys() {
if !resource.starts_with("builtin:") {
println!("cargo:rerun-if-changed={}", resource);
}
}
println!("cargo:rerun-if-env-changed=SLINT_STYLE");
println!("cargo:rerun-if-env-changed=SIXTYFPS_STYLE");
println!("cargo:rerun-if-env-changed=SLINT_FONT_SIZES");
println!("cargo:rerun-if-env-changed=SLINT_SCALE_FACTOR");
println!("cargo:rerun-if-env-changed=SLINT_ASSET_SECTION");
println!("cargo:rustc-env=SLINT_INCLUDE_GENERATED={}", output_file_path.display());
Ok(())
}
pub fn print_rustc_flags() -> std::io::Result<()> {
if let Some(board_config_path) =
std::env::var_os("DEP_MCU_BOARD_SUPPORT_BOARD_CONFIG_PATH").map(std::path::PathBuf::from)
{
let config = std::fs::read_to_string(board_config_path.as_path())?;
let toml = config.parse::<toml_edit::Document>().expect("invalid board config toml");
for link_arg in
toml.get("link_args").and_then(toml_edit::Item::as_array).into_iter().flatten()
{
if let Some(option) = link_arg.as_str() {
println!("cargo:rustc-link-arg={}", option);
}
}
for link_search_path in
toml.get("link_search_path").and_then(toml_edit::Item::as_array).into_iter().flatten()
{
if let Some(mut path) = link_search_path.as_str().map(std::path::PathBuf::from) {
if path.is_relative() {
path = board_config_path.parent().unwrap().join(path);
}
println!("cargo:rustc-link-search={}", path.to_string_lossy());
}
}
println!("cargo:rerun-if-env-changed=DEP_MCU_BOARD_SUPPORT_MCU_BOARD_CONFIG_PATH");
println!("cargo:rerun-if-changed={}", board_config_path.display());
}
Ok(())
}