A third AndroidAppState (BenchClient) on top of transcript-screen: embeds app/bench-fixture/assets/transcript.jsonl with include_str! (no server, no enrollment), folds the first 3,200 lines through client_core's real fold_page as the opening backlog, and holds the rest back as a streaming tail. "Run benchmark" resets FrameReport, animates the same 24-swipe/ 6-cycle scroll BenchRun.kt drives (List::scroll in ~60Hz steps, since iris has no built-in tween), then replays the tail at 20/s through fold_event -- the same fold path a live SSE reply takes -- and shows a report in a selectable TextEdit. "Copy report" puts it on the clipboard. The report adds process CPU time (libc::getrusage), peak RSS (/proc/self/ status's VmHWM) and battery current (BatteryManager.getIntProperty via direct JNI, bench_jni.rs's PlatformHandle) to FrameStats's existing frames/janky%/percentiles/CPU-GPU-split line -- "unavailable" rather than a fabricated number wherever the platform can't answer. build.rs now exits early under the bench feature before requiring a live server's host/port/token/CA: BenchClient never calls build_transport(). app/build.gradle gains a signed `release` build type (previously only debug) so the cdylib cargo ndk builds can be packaged for a phone, the same key app/build-apk.sh generates. Co-Authored-By: Claude Fable 5.1 <noreply@anthropic.com>
75 lines
3.7 KiB
TOML
75 lines
3.7 KiB
TOML
[package]
|
|
name = "iris-android-app"
|
|
version = "0.1.0"
|
|
edition = "2024"
|
|
|
|
# Deliberately outside the `iris` workspace (see that Cargo.toml's
|
|
# `[workspace] exclude`): this crate exists only to be cross-compiled with
|
|
# `cargo ndk` for the emulator/a phone, and pulls in android-view, which
|
|
# needs the NDK sysroot to link. Folding it into the main workspace would
|
|
# make `cargo build --workspace --all-targets` -- the host command RUST.md
|
|
# and AGENTS.md both require to stay clean -- try to link a cdylib against
|
|
# libraries that do not exist on this machine. See RUST.md's I2.
|
|
|
|
[lib]
|
|
name = "main"
|
|
crate-type = ["cdylib"]
|
|
|
|
[dependencies]
|
|
iris = { path = "../" }
|
|
android-view = { git = "https://github.com/rust-mobile/android-view.git", rev = "bec6c62a96cef8239b0fd7fedeef9b184d02e3a1" }
|
|
android_logger = "0.15.0"
|
|
log = "0.4.28"
|
|
# `tabs-screen` (default, I2/I4's demo) and `transcript-screen` (I5's
|
|
# Android integration) are mutually exclusive -- one `ActiveClient` type is
|
|
# compiled in, never both (`lib.rs`'s doc comment) -- so both sets of deps
|
|
# are optional and each screen's feature pulls in only its own. Without
|
|
# this, building `--features transcript-screen` alone (default features
|
|
# still on) left `tabs-ui` linked but never referenced under that cfg,
|
|
# which Cargo's `unused_dependencies` lint (on by default) correctly flags.
|
|
tabs-ui = { path = "../tabs-ui", optional = true }
|
|
transcript-ui = { path = "../transcript-ui", optional = true }
|
|
client-core = { path = "../../client-core", optional = true }
|
|
event-model = { path = "../../event-model", optional = true }
|
|
serde_json = { version = "1", features = ["float_roundtrip"], optional = true }
|
|
# P0's bench build only (docs/RUST.md): `getrusage(RUSAGE_SELF)` for
|
|
# process CPU time, matching `libc::getrusage`'s mention in that box over
|
|
# parsing `/proc/self/stat` by hand and assuming `USER_HZ`. Already in the
|
|
# workspace's own dependency tree transitively (`iris/Cargo.lock`, pinned
|
|
# at 0.2.179) -- this makes it a direct dependency at the same version
|
|
# rather than a second, possibly-drifting resolution.
|
|
libc = { version = "0.2.179", optional = true }
|
|
# P0's bench build only: the scroll animation and the streaming phase are
|
|
# both a sequence of `sleep`s inside the async task `rsc.spawn_task` already
|
|
# runs on iris's own tokio runtime (`iris/src/task.rs`'s `Tasks::init`), and
|
|
# the battery sampler is a second, concurrent task on that same runtime
|
|
# (`tokio::spawn`) -- so this crate needs `tokio` directly rather than only
|
|
# through `iris`. `rt`+`time` only: no I/O, no macros, nothing this crate
|
|
# doesn't call. Version matches the one `iris`'s own dependency tree already
|
|
# resolves to (`iris/Cargo.lock`), so there is one copy of the runtime, not
|
|
# two.
|
|
tokio = { version = "1.53.1", features = ["rt", "time"], optional = true }
|
|
|
|
[features]
|
|
default = ["tabs-screen"]
|
|
tabs-screen = ["dep:tabs-ui"]
|
|
transcript-screen = ["dep:transcript-ui", "dep:client-core", "dep:event-model", "dep:serde_json"]
|
|
# RUST.md's I5 "Where iris's frame time goes": forces the GLES backend
|
|
# instead of SwiftShader's software Vulkan. See `iris/Cargo.toml`'s own doc
|
|
# on the feature this forwards to.
|
|
force-gles = ["iris/force-gles"]
|
|
# P0's iris half (docs/RUST.md, docs/AGENTS.md's "The rigs"): the same
|
|
# checked-in fixture, scroll loop and streaming phase the Compose `bench`
|
|
# build type drives, run here against `transcript-ui`'s real screen with no
|
|
# server. Depends on `transcript-screen` for `transcript-ui`/`client-core`/
|
|
# `event-model` -- `lib.rs`'s `ActiveClient` selection gives this feature
|
|
# priority over `transcript-screen`'s own `TranscriptClient` when both are
|
|
# listed, which is how this crate's build command names both explicitly.
|
|
bench = ["transcript-screen", "dep:libc", "dep:tokio"]
|
|
|
|
[profile.release]
|
|
panic = "abort"
|
|
|
|
[profile.dev]
|
|
panic = "abort"
|