openpencil/tools/check-wasm-bundle.sh
Kayshen-X 1030f5b131 fix(web): unbreak linux CI — keepalive EINVAL and the bundle tripwire
The idle-heartbeat test failed deterministically on linux (not the
timing flake it was first read as): TCP_KEEPIDLE/TCP_KEEPINTVL have
whole-second granularity there, so the test config's 50ms heartbeat
truncated to zero and setsockopt returned EINVAL on both ends of the
handshake — a real runtime bug for any sub-second heartbeat config,
fixed by clamping only the kernel keepalive cadence to >= 1s.

The 6 MiB gzip tripwire was set when the bundle measured ~4.5 MiB;
feature growth since (collab, prompt center, templates) added ~4.5 MiB
of embedded product assets, ~2 MiB of it pre-compressed JPEG that gzip
passes through. Reset the tripwire to 8 MiB and document that it is a
regression guard, not a budget, with the asset-split TODO that brings
the bundle back down.
2026-08-08 22:10:13 +08:00

121 lines
5.8 KiB
Bash
Executable file

#!/usr/bin/env bash
# tools/check-wasm-bundle.sh — Step 1b §6 + §7.1 local bundle gate.
#
# What this script enforces (matches the CanvasKit production bundle gate
# and the env.* import count guard):
# 1. Required local tools are available: cargo, wasm-bindgen, wasm-opt,
# node, and gzip. CanvasKit needs no EMSDK / skia-safe / libc shim.
# 2. cargo build → wasm-bindgen → wasm-opt -Oz pipeline produces the
# served crates/op-host-web/pkg/op_host_web_bg.wasm. `wasm-opt` is invoked
# with the core WebAssembly features emitted by current rustc.
# 3. Post-bindgen bundle has 0 env.* imports
# (i.e. all imports come from `./op_host_web_bg.js`,
# the wasm-bindgen JS shim). Any env.* import = LinkError at
# load time → regression → fail.
# 4. Post wasm-opt -Oz gzip size ≤ STEP1B_SHELL_WASM_GZIP_LIMIT_BYTES
# (default 8 388 608 bytes = 8 MiB for the full CanvasKit app logic).
#
# This script is the local counterpart to
# `.github/workflows/wasm-bundle-build.yml`; keep the two recipes aligned.
#
# Exit semantics:
# 0 all four checks PASS.
# 1 any check FAILED — message names which one.
# 2 prerequisite missing (cargo / wasm-bindgen / wasm-opt / node / gzip).
set -euo pipefail
CRATE_DIR="crates/op-host-web"
PKG_DIR="${CRATE_DIR}/pkg"
WASM_RAW="${PKG_DIR}/op_host_web_bg.wasm"
WASM_OPT="${PKG_DIR}/op_host_web_bg.opt.wasm"
TARGET_WASM="target/wasm32-unknown-unknown/release/op_host_web.wasm"
# The wasm feature flags rustc emits for wasm32-unknown-unknown that wasm-opt
# must be told to accept. Kept as CANDIDATES because binaryen versions disagree
# on their spelling: newer binaryen (dev machines, v117+) split bulk-memory into
# `bulk-memory` (memory.init/data.drop) + `bulk-memory-opt` (memory.copy/fill),
# while older binaryen (e.g. Ubuntu's apt `binaryen`) predates the split and its
# single `--enable-bulk-memory` already covers memory.copy/fill. Passing an
# unknown flag hard-fails wasm-opt ("Unknown option"), so we filter the list
# down to only the flags the installed wasm-opt actually advertises in --help.
WASM_OPT_CANDIDATE_FEATURES=(
--enable-bulk-memory
--enable-bulk-memory-opt
--enable-nontrapping-float-to-int
)
# Ceiling for the CanvasKit production bundle's gzipped wasm. It is far above
# the retired skia raster path's 1 MiB (spec §6) because this bundle now carries
# the FULL app logic absorbed from the skia path (codegen AI pipeline, Figma
# parser, AI/live-sync, collaboration) plus ~4.5 MiB of embedded product
# assets — scene-template .op documents, the prompt-center/template preview
# JPEGs (already compressed, so gzip passes them through), the iconify
# catalog, and the AI skill corpus. ~7.5 MiB today; the ceiling is a
# runaway-regression tripwire, not a budget. TODO(perf): serve the preview
# JPEGs from the daemon instead of embedding, and code-split / lazy-load the
# codegen + Figma paths to shrink the initial download. Override via env.
LIMIT="${STEP1B_SHELL_WASM_GZIP_LIMIT_BYTES:-8388608}"
step() { printf '\n[step %d/%d] %s\n' "$1" "$2" "$3"; }
fail() { printf 'FAIL: %s\n' "$1" >&2; exit 1; }
need() { command -v "$1" >/dev/null 2>&1 || { printf 'missing prerequisite: %s\n' "$1" >&2; exit 2; }; }
step 1 5 "Verify prerequisites"
need cargo
need wasm-bindgen
need wasm-opt
need node
need gzip
# CanvasKit needs NO EMSDK / skia-safe / libc shim — the editor renders through
# the official CanvasKit skia WASM (loaded separately from /canvaskit/) and the
# Rust bundle is pure logic. (The retired skia raster path needed EMSDK.)
# `canvaskit` is the production browser feature set: the editor renders through
# CanvasKit on the GPU and bundles the full app logic absorbed from the retired
# skia raster path — daemon-backed AI chat (`web_chat`), live-sync, browser file
# IO, clipboard/Figma paste, icon search, system fonts, and the codegen pipeline.
step 2 5 "Build shell-web wasm32-unknown-unknown with --features canvaskit"
cargo build -p op-host-web \
--target wasm32-unknown-unknown --no-default-features --features canvaskit --release >/dev/null
step 3 5 "wasm-bindgen --target web → ${PKG_DIR}/"
wasm-bindgen --target web --out-dir "${PKG_DIR}" "${TARGET_WASM}" >/dev/null
step 4 5 "Verify 0 env.* imports (spec §7.1 import guard)"
env_count="$(node -e '
const fs = require("fs");
const buf = fs.readFileSync(process.argv[1]);
WebAssembly.compile(buf).then(mod => {
const imps = WebAssembly.Module.imports(mod);
const env = imps.filter(i => i.module === "env");
console.log(env.length);
}).catch(e => { console.error("compile failed:", e); process.exit(1); });
' "${WASM_RAW}")"
if [ "${env_count}" != "0" ]; then
fail "env.* import count = ${env_count} (must be 0); the CanvasKit bundle has no libc shim, so an env.* import means a dep pulled non-wasm-clean code — find and gate it out"
fi
printf ' ✓ 0 env.* imports\n'
step 5 5 "Verify gzip size ≤ ${LIMIT} bytes (spec §6 ceiling)"
# Keep only the candidate feature flags this wasm-opt understands (see the
# WASM_OPT_CANDIDATE_FEATURES note) so an older binaryen doesn't hard-fail on
# `--enable-bulk-memory-opt`. `--enable-bulk-memory` alone still covers
# memory.copy/fill on those versions.
wasm_opt_help="$(wasm-opt --help 2>&1 || true)"
WASM_OPT_FEATURES=()
for flag in "${WASM_OPT_CANDIDATE_FEATURES[@]}"; do
if printf '%s\n' "${wasm_opt_help}" | grep -qF -- "${flag}"; then
WASM_OPT_FEATURES+=("${flag}")
fi
done
wasm-opt "${WASM_OPT_FEATURES[@]}" -Oz "${WASM_RAW}" -o "${WASM_OPT}" >/dev/null
cp "${WASM_OPT}" "${WASM_RAW}"
gz_bytes="$(gzip -c "${WASM_OPT}" | wc -c | tr -d ' ')"
if [ "${gz_bytes}" -gt "${LIMIT}" ]; then
fail "shell-web wasm gzip size ${gz_bytes} bytes > ceiling ${LIMIT} bytes"
fi
pct=$(( (gz_bytes * 100) / LIMIT ))
printf ' ✓ gzip size %s bytes (%d%% of %s ceiling)\n' "${gz_bytes}" "${pct}" "${LIMIT}"
printf '\nAll Step 1b §6 + §7.1 bundle gates PASS.\n'