Skip to main content

makeover_build/
lib.rs

1//! Build-script support for the make-family design system.
2//!
3//! <!-- wiki: makeover-geometry -->
4//!
5//! Every consumer materialises the same generated files from a `build.rs`, and
6//! until now every consumer wrote that code itself. GoingsOn and Balanced
7//! Breakfast grew byte-identical copies of the theme materialiser during the
8//! makeover-geometry adoption, and the layout stylesheet would have been the
9//! third and fourth copies. This is that code, once.
10//!
11//! # The geometry emitter, and why it took a decision to land
12//!
13//! [`geometry_css`] was deliberately absent at first. GoingsOn and Balanced
14//! Breakfast did not agree on it: GO scoped the touch preset to a
15//! `ui-mode-mobile` class set by a bootstrap script, BB hung it off
16//! `@media (hover: none)`, and audiofiles had no switch at all. Extracting it
17//! then would have meant picking one of those policies by accident, inside a
18//! shared crate, without anyone deciding.
19//!
20//! Density selection was settled instead -- touch is a capability, so it hangs
21//! off `(hover: none), (pointer: coarse)` and never off a user-agent string or
22//! a breakpoint -- and the emitter followed. Recording an agreement rather than
23//! manufacturing one is the whole point, and it is why the order was that way
24//! round.
25//!
26//! # Why these files are generated rather than checked in
27//!
28//! Tauri's resource globs are read by its CLI against the crate directory, so
29//! they cannot point into a registry checkout or `OUT_DIR`. Materialising into
30//! the crate keeps the source crate authoritative without vendoring a second
31//! copy that drifts. Every path written here is expected to be gitignored.
32//!
33//! # The other half: what is checked rather than written
34//!
35//! A consumer's frontend is not all generated. The stylesheet and the scripts
36//! are hand-written and state some of the same facts the generated files ask
37//! the crates for, so they can drift where a generated file cannot. [`drift`]
38//! holds the checks that keep them honest, and they are assertions rather than
39//! substitutions on purpose: a file that has to be generated to be correct
40//! stops being readable on its own.
41
42#![forbid(unsafe_code)]
43
44pub mod drift;
45
46use std::path::Path;
47
48pub use drift::{
49    check_breakpoints, check_breakpoints_files, check_touch_density, check_vocabulary,
50    check_vocabulary_files, check_vocabulary_use,
51};
52
53/// Re-exported so a consumer's `build.rs` needs one dependency rather than
54/// three. Nothing here wraps it; the emitter's options are the emitter's.
55pub use makeover_webview::Emit;
56
57/// The filenames [`typography_css`]'s `@font-face` rules fetch.
58///
59/// Re-exported for the same reason as [`Emit`], and load-bearing for a further
60/// one: the consumer's own build script writes those two files, so the emitter
61/// and the writer have to agree on the name. Through this they agree on a
62/// constant rather than on a string typed in two repositories.
63pub use makeover::{WEBFONT_MONO_FILE, WEBFONT_SANS_FILE};
64
65/// Layer 0 of the font model, re-exported for the same one-dependency reason.
66///
67/// A build script composing an override needs all four names and has no other
68/// reason to depend on `makeover` directly.
69pub use makeover::{FontFace, FontOverride, FontSlot, Typography};
70
71/// Write only when the bytes differ, so a generated file does not invalidate
72/// the build script that generated it.
73///
74/// Every emitter here writes into a directory the drift checks below also read,
75/// and cargo compares a watched file's mtime against the build script's own
76/// `output`. An unconditional write moves that mtime on every run, so every run
77/// became the reason for the next one and the script ran on every build,
78/// whatever changed. Measured on GoingsOn, fw13, 2026-09-20: `geometry.css`
79/// alone kept a 1.6-2.3 s script running on every rebuild, and the rebuild it
80/// sat in was 11-13 s (wiki `compile-cost-remediation`).
81///
82/// A read before each write costs microseconds against that, and the common
83/// case is that nothing changed: these files are a pure function of the crate
84/// version and the `Emit` options.
85fn write_if_changed(path: &Path, contents: &str, what: &str) {
86    if std::fs::read_to_string(path).is_ok_and(|existing| existing == contents) {
87        return;
88    }
89    std::fs::write(path, contents).unwrap_or_else(|error| panic!("write {what}: {error}"));
90}
91
92/// Write the themes `makeover` ships into `dir`, as `<id>.toml`.
93///
94/// Clears stale `.toml` files first, so a theme removed or renamed upstream
95/// does not linger in the bundle from a previous build. Omitting that step
96/// shows up as a theme that will not go away.
97///
98/// # Panics
99///
100/// If the directory cannot be created, read, or written. A build script has
101/// nowhere useful to return an error to, and a half-materialised theme set is
102/// worse than a failed build.
103pub fn themes(dir: impl AsRef<Path>) {
104    let dir = dir.as_ref();
105    std::fs::create_dir_all(dir).expect("create themes dir");
106
107    let shipped: std::collections::BTreeSet<String> = makeover::embedded_themes()
108        .map(|(id, _)| id.to_string())
109        .collect();
110
111    // Only what upstream no longer ships. Clearing the directory first and
112    // writing every theme back was the same thing by result and not by mtime:
113    // it left `write_if_changed` nothing to compare against, so every build
114    // rewrote every theme and the script invalidated itself through them.
115    for entry in std::fs::read_dir(dir).expect("read themes dir").flatten() {
116        let path = entry.path();
117        if path.extension().is_some_and(|e| e == "toml")
118            && !path
119                .file_stem()
120                .and_then(|stem| stem.to_str())
121                .is_some_and(|stem| shipped.contains(stem))
122        {
123            std::fs::remove_file(&path).expect("remove stale theme");
124        }
125    }
126
127    for (id, source) in makeover::embedded_themes() {
128        write_if_changed(&dir.join(format!("{id}.toml")), source, "theme");
129    }
130}
131
132/// Write `makeover-webview`'s component stylesheet to `path`.
133///
134/// Baked at build time rather than applied from JS the way the intent layer
135/// is, because composition never changes at runtime: no theme may reach it, so
136/// there is nothing to re-apply and no second pass over `:root` to pay for on
137/// load.
138///
139/// # Panics
140///
141/// If the file cannot be written.
142pub fn layout_css(path: impl AsRef<Path>, opts: &makeover_webview::Emit) {
143    write_if_changed(
144        path.as_ref(),
145        &makeover_webview::stylesheet(opts),
146        "layout css",
147    );
148}
149
150/// Write `makeover-geometry`'s spacing layer, with its canonical density
151/// selection, to `path`.
152///
153/// The policy is the crate's, not this one's: touch hangs off
154/// `(hover: none), (pointer: coarse)` because density is a capability rather
155/// than a device or a width, and `explicit_touch` names a selector an app sets
156/// when the user has chosen. See [`makeover_geometry::density_css`]. All this
157/// adds is the generated-file banner and the write.
158///
159/// Both spacing axes land here, in the order the crate defines them.
160/// [`makeover_geometry::size_class_css`] follows the density block because it
161/// is the narrower claim: density says what is pointing at the screen, size
162/// class says how much screen there is, and on a compact window the two shells
163/// tighten regardless of which density selected them.
164///
165/// # Panics
166///
167/// If the file cannot be written.
168pub fn geometry_css(path: impl AsRef<Path>, explicit_touch: Option<&str>) {
169    let mut css = String::from(
170        "/* Generated by makeover-build from makeover-geometry. Do not edit.\n   \
171         Spacing is named by relationship, not by size. Touch density is a\n   \
172         capability question: a narrow desktop window still has a pointer, a\n   \
173         full-width tablet still has a finger. Window width is the separate\n   \
174         question below it: on a compact window the two shells tighten. */\n",
175    );
176    css.push_str(&makeover_geometry::density_css(explicit_touch));
177    css.push('\n');
178    css.push_str(&makeover_geometry::size_class_css());
179    write_if_changed(path.as_ref(), &css, "geometry css");
180}
181
182/// Write `makeover-timing`'s time axis, and the motion-off block that rides
183/// with it, to `path`.
184///
185/// The third generated axis, and it arrives the same way the spacing one does:
186/// a consumer that calls this gets `--timing-*`, `--motion-fade` and
187/// `--cadence-activity` without stating a number anywhere. All this adds is the
188/// banner and the write; `makeover_timing::timing_css` is the whole file and
189/// already wraps itself in [`makeover_geometry::CSS_LAYER`].
190///
191/// # Its own file, for the reason geometry has its own file
192///
193/// One generated file per crate, named for the axis it carries. Time is not a
194/// narrower claim about space the way size class is about density, so folding
195/// it into `geometry.css` would leave a file whose banner names one crate and
196/// whose contents come from two. The cost is a fourth `<link>` in the consumer,
197/// which is the cost the family already pays three times.
198///
199/// # The `prefers-reduced-motion` block is not optional
200///
201/// `makeover_timing::timing_css` emits the `:root` values and then a media
202/// block overriding two of them. Both land here, in that order, because they
203/// are one statement: a sheet carrying only the values animates at every rung
204/// for a reader who asked it not to, and does it silently.
205///
206/// # Panics
207///
208/// If the file cannot be written.
209pub fn timing_css(path: impl AsRef<Path>) {
210    let mut css = String::from(
211        "/* Generated by makeover-build from makeover-timing. Do not edit.\n   \
212         A duration is named by what it is waiting for; the number follows.\n   \
213         Three axes: how long a state lasts, how long a change takes, and how\n   \
214         often a repeating mark repeats. The reduced-motion block below zeroes\n   \
215         the last two and leaves the waits alone. A reader asking for less\n   \
216         motion has not asked for a notice to leave early. */\n",
217    );
218    css.push_str(&makeover_timing::timing_css());
219    write_if_changed(path.as_ref(), &css, "timing css");
220}
221
222/// Write the house typography layer to `path`: the two `@font-face` rules and
223/// the two tokens they back.
224///
225/// `font_url` is the directory the consumer serves its fonts from, without a
226/// trailing slash — `/static/fonts` on the MNW server, `fonts` for a Tauri
227/// frontend loading relative to its index.
228///
229/// Generated rather than hand-written for the same reason the spacing layer is:
230/// the facts are the crates' and stating them per app is how three apps came to
231/// hold three different answers to `--font-mono`. It is a separate file from
232/// the layout stylesheet because `@font-face` rules take no part in the
233/// cascade and a consumer may need to load them ahead of a layer order it
234/// declares elsewhere.
235///
236/// # The consumer still has to put the faces there
237///
238/// This writes the CSS that fetches `QuasiMono.woff2` and `QuasiBody.woff2`; it
239/// does not write the fonts. It cannot: they are cut by `quasi-type`, which is
240/// `publish = false`, and this crate is on crates.io. A consumer takes
241/// quasi-type as a git dependency in its own `build.rs` and calls
242/// `quasi_type::cut`, the way `shop-font` does, writing each slot's woff2 under
243/// [`makeover::WEBFONT_MONO_FILE`] and [`makeover::WEBFONT_SANS_FILE`].
244///
245/// # Panics
246///
247/// If the file cannot be written.
248pub fn typography_css(path: impl AsRef<Path>, font_url: &str) {
249    typography_css_from(path, &makeover::Typography::house(font_url));
250}
251
252/// [`typography_css`], for a product that overrides a slot.
253///
254/// Layer 0 of the font model. A product with a brand face declares it here,
255/// once, and the generated sheet carries both the `@font-face` and the token —
256/// which is what replaces the hand-maintained `@font-face` block plus a
257/// `--font-heading` nothing else in the tree knew about:
258///
259/// ```no_run
260/// use makeover_build::{FontFace, FontOverride, FontSlot, Typography};
261///
262/// makeover_build::typography_css_from(
263///     "static/typography.css",
264///     &Typography::house("/static/fonts").with_override(
265///         FontOverride::new(FontSlot::Display, "\"Young Serif\", serif")
266///             .with_face(FontFace::new("Young Serif", ["ysrf.woff2", "ysrf.ttf"])),
267///     ),
268/// );
269/// ```
270///
271/// The product still ships the face itself, exactly as it does for the house
272/// two: this writes the CSS that fetches it and cannot produce a font.
273///
274/// # Panics
275///
276/// If the file cannot be written.
277pub fn typography_css_from(path: impl AsRef<Path>, typography: &makeover::Typography) {
278    let mut css = String::from(
279        "/* Generated by makeover-build from makeover. Do not edit.\n   \
280         Two needs, two names, then a system generic. The faces are cut by\n   \
281         quasi-type from Atkinson Hyperlegible plus the house glyph set, and\n   \
282         both are variable over wght 200-800 in one file, which is why the\n   \
283         @font-face rules name the range. The mono face opens at ExtraLight.\n   \
284         A third token here is this product's own brand face, declared as an\n   \
285         override in its build script. */\n\n",
286    );
287    css.push_str(&typography.css());
288    write_if_changed(path.as_ref(), &css, "typography css");
289}
290
291/// All the generated files at the layout every Tauri consumer already uses:
292/// `themes/` beside the manifest, and
293/// `frontend/css/{geometry,timing,layout,typography}.css` under it.
294///
295/// Pass `env!("CARGO_MANIFEST_DIR")`. Consumers that want different paths call
296/// [`themes`], [`layout_css`] and [`typography_css`] directly.
297///
298/// The font URL is `fonts`, relative to the frontend's index — the one layout
299/// a Tauri app has, since its frontend is served from its own directory.
300///
301/// # Panics
302///
303/// If any file cannot be written.
304pub fn tauri_frontend(
305    manifest_dir: impl AsRef<Path>,
306    opts: &makeover_webview::Emit,
307    explicit_touch: Option<&str>,
308) {
309    tauri_frontend_with(
310        manifest_dir,
311        opts,
312        explicit_touch,
313        &makeover::Typography::house("../fonts"),
314    );
315}
316
317/// [`tauri_frontend`], for a product that overrides a font slot.
318///
319/// Separate rather than a fourth parameter on `tauri_frontend` so the three
320/// consumers already calling it do not have to move: goingson is held at an
321/// older `makeover` by a theming decision unrelated to fonts, and a signature
322/// change here would make a font feature it cannot take into a build break it
323/// cannot avoid.
324///
325/// The base URL is the caller's: pass `Typography::house("../fonts")` unless
326/// the app serves fonts from somewhere other than the one layout a Tauri
327/// frontend has.
328///
329/// # Panics
330///
331/// If any file cannot be written.
332pub fn tauri_frontend_with(
333    manifest_dir: impl AsRef<Path>,
334    opts: &makeover_webview::Emit,
335    explicit_touch: Option<&str>,
336    typography: &makeover::Typography,
337) {
338    let root = manifest_dir.as_ref();
339    let css = root.join("frontend").join("css");
340    themes(root.join("themes"));
341    geometry_css(css.join("geometry.css"), explicit_touch);
342    // Beside geometry rather than after layout: both are value files the
343    // component sheet reads, and a consumer's `<link>` order follows this one.
344    timing_css(css.join("timing.css"));
345    layout_css(css.join("layout.css"), opts);
346    typography_css_from(css.join("typography.css"), typography);
347}
348
349#[cfg(test)]
350mod tests {
351    use super::*;
352
353    /// A scratch directory keyed by process id, so a parallel test run does
354    /// not collide. No timestamp: the pid is enough and is deterministic
355    /// within a run.
356    fn scratch(name: &str) -> std::path::PathBuf {
357        let dir =
358            std::env::temp_dir().join(format!("makeover-build-{}-{name}", std::process::id()));
359        let _ = std::fs::remove_dir_all(&dir);
360        std::fs::create_dir_all(&dir).expect("create scratch");
361        dir
362    }
363
364    #[test]
365    fn themes_are_written_one_file_per_id() {
366        let dir = scratch("themes");
367        themes(&dir);
368        let count = std::fs::read_dir(&dir).unwrap().count();
369        assert_eq!(count, makeover::embedded_themes().count());
370        assert!(count > 0, "makeover ships no themes?");
371    }
372
373    #[test]
374    fn a_theme_removed_upstream_does_not_linger() {
375        // The detail that makes this worth sharing rather than retyping.
376        let dir = scratch("stale");
377        std::fs::write(dir.join("gone-upstream.toml"), "# stale").unwrap();
378        themes(&dir);
379        assert!(!dir.join("gone-upstream.toml").exists());
380    }
381
382    #[test]
383    fn a_second_run_touches_nothing() {
384        // The property the whole write-if-changed pass exists for: a build
385        // script that rewrites its own outputs invalidates itself, and cargo
386        // then reruns it on every build whatever changed. Asserted on mtime
387        // rather than on content, because content was always correct; it was
388        // the mtime that was the bug.
389        let dir = scratch("idempotent");
390        themes(&dir);
391        let before: Vec<_> = std::fs::read_dir(&dir)
392            .unwrap()
393            .flatten()
394            .map(|e| (e.path(), e.metadata().unwrap().modified().unwrap()))
395            .collect();
396        assert!(!before.is_empty(), "themes() wrote nothing to compare");
397
398        themes(&dir);
399        for (path, was) in before {
400            let now = std::fs::metadata(&path).unwrap().modified().unwrap();
401            assert_eq!(
402                was,
403                now,
404                "{} was rewritten by a second run with nothing changed",
405                path.display()
406            );
407        }
408    }
409
410    #[test]
411    fn a_non_theme_file_is_left_alone() {
412        // Only .toml is cleared, so a README or a .gitignore in the bundle
413        // directory survives a rebuild.
414        let dir = scratch("keep");
415        std::fs::write(dir.join("README.md"), "not a theme").unwrap();
416        themes(&dir);
417        assert!(dir.join("README.md").exists());
418    }
419
420    #[test]
421    fn the_stylesheet_lands_and_names_no_colour() {
422        let dir = scratch("css");
423        let path = dir.join("layout.css");
424        layout_css(&path, &makeover_webview::Emit::default());
425        let css = std::fs::read_to_string(&path).unwrap();
426        assert!(css.contains("--bevel-raised"));
427        assert!(
428            !css.contains('#'),
429            "a colour literal reached a build output"
430        );
431    }
432
433    #[test]
434    fn the_typography_file_declares_the_faces_before_the_tokens_that_name_them() {
435        // The vocabulary itself is tested in makeover. What is this crate's
436        // job is that both halves reach one file, in an order that works: a
437        // `@font-face` may follow its use in the cascade, but reading the file
438        // is how anyone finds out a face is fetched at all.
439        let dir = scratch("typography");
440        let path = dir.join("typography.css");
441        typography_css(&path, "/static/fonts");
442        let css = std::fs::read_to_string(&path).unwrap();
443
444        assert!(css.starts_with("/* Generated by makeover-build"));
445        assert!(
446            css.find("@font-face").unwrap() < css.find(":root").unwrap(),
447            "the tokens come first, so the file reads as a stack with no ground"
448        );
449        assert!(css.contains("url(\"/static/fonts/QuasiMono.woff2\")"));
450        assert!(css.contains("--font-sans: \"Quasi Body\", sans-serif;"));
451
452        // Not a cascade layer. `@font-face` takes no part in the cascade and a
453        // consumer may need these rules ahead of a layer order it declares
454        // elsewhere, so wrapping this file in one would be a silent trap.
455        assert!(!css.contains("@layer"));
456    }
457
458    #[test]
459    fn an_overridden_slot_reaches_the_same_file_as_the_house_two() {
460        // Layer 0's whole point: the brand face stops being a hand-maintained
461        // `@font-face` in the app's own stylesheet and becomes a line in the
462        // generated one, beside the slots it sits next to.
463        let dir = scratch("typography-override");
464        let path = dir.join("typography.css");
465        typography_css_from(
466            &path,
467            &Typography::house("/static/fonts").with_override(
468                FontOverride::new(FontSlot::Display, "\"Young Serif\", serif")
469                    .with_face(FontFace::new("Young Serif", ["ysrf.woff2", "ysrf.ttf"])),
470            ),
471        );
472        let css = std::fs::read_to_string(&path).unwrap();
473
474        // `@font-face {`, not `@font-face`: the header comment names the
475        // at-rule too, and counting that would make this pass for the wrong
476        // reason the day the comment is reworded.
477        assert_eq!(css.matches("@font-face {").count(), 3);
478        assert!(css.contains("--font-display: \"Young Serif\", serif;"));
479        assert!(css.contains("--font-mono: \"Quasi Mono\", monospace;"));
480        assert!(css.contains("url(\"/static/fonts/ysrf.ttf\") format(\"truetype\")"));
481        assert!(!css.contains("@layer"));
482    }
483
484    #[test]
485    fn the_default_tauri_layout_is_the_house_layer_and_nothing_else() {
486        // `tauri_frontend` delegating through `tauri_frontend_with` must not
487        // change a byte for the three consumers already calling it.
488        let dir = scratch("tauri-default");
489        let plain = dir.join("plain.css");
490        let house = dir.join("house.css");
491        typography_css(&plain, "../fonts");
492        typography_css_from(&house, &Typography::house("../fonts"));
493        assert_eq!(
494            std::fs::read_to_string(&plain).unwrap(),
495            std::fs::read_to_string(&house).unwrap()
496        );
497    }
498
499    #[test]
500    fn the_geometry_file_carries_the_crates_policy_and_a_banner() {
501        // The policy itself is tested in makeover-geometry. What is this
502        // crate's job is that the banner is there and the policy reached the
503        // file at all.
504        let dir = scratch("geometry");
505        let path = dir.join("geometry.css");
506        geometry_css(&path, Some(".ui-mode-mobile"));
507        let css = std::fs::read_to_string(&path).unwrap();
508        assert!(css.starts_with("/* Generated by makeover-build"));
509        assert!(css.contains("@media (hover: none), (pointer: coarse)"));
510        assert!(css.contains(".ui-mode-mobile"));
511        // The width axis rides along, and only the shells are in it: a gap
512        // between two controls in a width query is the bug size_class_css
513        // exists to keep out.
514        assert!(css.contains("--gap-pane"), "no compact shell override");
515        let compact = css
516            .split("@media (max-width")
517            .nth(1)
518            .expect("compact block");
519        assert!(
520            !compact.contains("--gap-peer"),
521            "a control gap crept into a width query"
522        );
523    }
524
525    #[test]
526    fn the_timing_file_carries_the_values_and_the_block_that_overrides_them() {
527        // The rungs themselves are tested in makeover-timing. What is this
528        // crate's to get wrong is dropping half the file: the values are
529        // useless noise without the media block, and the media block on its
530        // own overrides nothing.
531        let dir = scratch("timing");
532        let path = dir.join("timing.css");
533        timing_css(&path);
534        let css = std::fs::read_to_string(&path).unwrap();
535        assert!(css.starts_with("/* Generated by makeover-build"));
536        // One token per axis, so a crate that grows a fourth axis and is not
537        // emitted here fails somewhere other than on screen.
538        assert!(css.contains("--timing-dismiss"), "no intent tokens");
539        assert!(css.contains("--motion-fade"), "no motion token");
540        assert!(css.contains("--cadence-activity"), "no cadence token");
541        assert!(
542            css.contains("@media (prefers-reduced-motion: reduce)"),
543            "the values shipped without the block that turns them off"
544        );
545        // The block comes after the values it overrides. Same specificity,
546        // so the order is the whole of the win.
547        assert!(
548            css.find(":root").unwrap() < css.find("prefers-reduced-motion").unwrap(),
549            "the motion-off block cannot override values declared after it"
550        );
551        // Inside the family's layer, like every other generated sheet:
552        // unlayered declarations outrank every named layer, so a generated
553        // file outside it beats the app's own overrides.
554        assert!(css.contains(makeover_geometry::CSS_LAYER));
555    }
556
557    #[test]
558    fn the_tauri_layout_puts_all_four_where_the_apps_look() {
559        let root = scratch("tauri");
560        std::fs::create_dir_all(root.join("frontend").join("css")).unwrap();
561        tauri_frontend(&root, &makeover_webview::Emit::default(), None);
562        let css = root.join("frontend").join("css");
563        for file in ["geometry.css", "timing.css", "layout.css", "typography.css"] {
564            assert!(css.join(file).exists(), "{file} was not written");
565        }
566        assert!(root.join("themes").is_dir());
567    }
568}