Files
oak-editor/crates/oak-worker/Cargo.toml
T
Mike-Solar 431b9ed2b1 feat(oakrender): render-process isolation S1 - dispatcher, scheduler, real worker
Per the M15 design (docs/zh/plans/riir/M15-render-process-isolation.md):

- ipc.rs moved into oakrender with protocol v2: hello_caps,
  render_batch, batch_accepted, frame_failed; main-process-assigned
  slots; BGRA8 slot format. POSIX shm verified to 1GiB on macOS.
- ProcessDispatcher: spawns oak-worker processes, handshake, stdio
  NDJSON control, shm segment lifecycle with generation-tagged keys,
  crash detection with bounded restart and frame redispatch, zero-copy
  ShmFrameRef delivery and copy counters.
- PreviewScheduler: interleaved batch claiming (frame % W per worker,
  no work stealing), seek > playback-distance > background priority,
  credit-based flow control, crash recovery.
- oak-worker renders for real: graph snapshot deserialization, montage
  decode+composite straight into the assigned shm slot, F32->BGRA8
  final conversion in-worker, OFX plugin executor installed in-worker,
  crash hooks for isolation testing.

Thread pool coexists for now (S2 removes it). Integration tests cover
two-worker zero-copy rendering, crash isolation with redelivery, and
real H.264 footage decode into slots.
2026-08-18 18:58:38 +08:00

54 lines
2.1 KiB
TOML

# Oak - Non-Linear Video Editor
# Copyright (C) 2026 Oak Team
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
[package]
name = "oak-worker"
version = "0.1.0"
edition = "2021"
description = "Oak Video Editor headless render worker process (Rust)"
license = "GPL-3.0-or-later"
[[bin]]
name = "oak-worker"
path = "src/main.rs"
[dependencies]
serde = { version = "1", features = ["derive"] }
serde_json = "1"
# POSIX shm_open/ftruncate/mmap/munmap/shm_unlink for the shared-memory
# frame-slot transport (the oakrender::ipc shim above). libc also powers
# the SIGSEGV crash hook (OAK_WORKER_CRASH_ON_TICKET) used by the crash-
# isolation integration tests.
libc = "0.2"
# M15 S1: real per-process rendering — the worker loads the project graph
# itself (oaknode::serializer) and runs nodes through the plugin runtime
# (oakplugin::node_factory::install_render_executor wires the CPU render
# executor). oakcodec/ocio-rs/ffmpeg arrive transitively through
# oaknode/oakplugin — the same single-lib unification the engine uses.
oakcore-rs = { path = "../oakcore" }
oaknode = { path = "../oaknode" }
oakplugin = { path = "../oakplugin" }
# M14 R2 / M15 S1: oak-worker is a PURE module-crate consumer — the
# worker runtime (src/worker.rs) lives in this binary and calls the oak*
# rlibs directly. oakrender supplies the render backend, the CPU
# evaluation path and the shared ipc protocol (src/ipc.rs is a shim
# re-exporting oakrender::ipc). No liboakengine dylib, no C ABI, no
# build.rs link step.
oakrender = { path = "../oakrender" }