推进 INI 面板 shell handoff summary browser API

This commit is contained in:
2026-06-15 08:12:33 +08:00
parent b31b9a2f8a
commit 01817f6493
9 changed files with 133 additions and 9 deletions

View File

@@ -2008,3 +2008,81 @@ host_wasm_opfs_browser_smokes=ok
继续推进 browser/UI workflow。下一批建议把 `shellSessionHandoffSummary` 暴露到 launch browser API
或 shell integration browser workflow smoke 中,让真实 browser 外部 shell 可以直接读取 summary
并与 readonly status handoff 结果交叉校验;仍保持只读,不新增控制按钮,不解析 G-code。
二十五、2026-06-15 继续执行记录INI panel shell session handoff summary browser API
本轮按“第一原则:加快实质性推进”继续推进 browser/UI workflow
`shellSessionHandoffSummary` 暴露到真实 launch browser API并在 shell integration browser
workflow smoke 中用 summary 驱动 readonly status handoff。
完成内容:
- `createIniPanelLaunchApiManifest().methods` 新增 `getShellSessionHandoffSummary`
- `launch.html` 的 `window.linuxCncIniPanelLaunchApi` 新增真实 browser 入口
`getShellSessionHandoffSummary()`
- `ini_panel_launch_smoke.html` 在真实 launch iframe 中校验:
- `getShellSessionHandoffSummary()` 存在;
- launch API manifest methods 包含该方法;
- summary `ready === true`
- summary target page 为 `./control-page.html`
- summary readonly fields 包含 `session`
- summary persistence capabilities 数量为 3
- `ini_panel_shell_integration_workflow_smoke.html` 改为读取
`getShellSessionHandoffSummary()`,并使用 summary 的 handoff methods 调用:
- `loadControlPageSessionState()`
- `readControlPageStatus()`
- shell integration browser workflow smoke 现在交叉校验:
- summary target 与 integration manifest target 一致;
- summary handoff methods 可调用;
- summary readonly status fields 全部存在于 `readControlPageStatus()` 返回值;
- summary persistence capabilities 与 blocking reasons
- `verify_ini_panel_launch_api_manifest.mjs`、`verify_ini_panel_entry_docs.mjs` 与
`docs/panel-entry.md` 同步记录和校验 browser API
- `verify_ini_panel_shell_integration_manifest.mjs` 将 launch method count 更新为 9
- 未新增控制按钮;
- 未解析 G-code
- 未解释 canonical events
- 未新增 JS CNC 语义;
- 未改变 OPFS/session persistence、LinuxCNC interpreter、tool、parameter、planner 或
LinuxCNC-owned runtime semantics。
验证已通过:
```bash
git diff --check
wasm-port/tests/ui/node/verify_ini_panel_launch_api_manifest.sh
wasm-port/tests/ui/node/verify_ini_panel_entry_docs.sh
wasm-port/tests/ui/node/verify_ui_node_smokes.sh
SKIP_INI_BUILD=1 SKIP_INTERP_BUILD=1 wasm-port/tests/browser/verify_ini_panel_browser.sh
wasm-port/tools/verify_vendor_sync.sh
wasm-port/tools/verify_no_standalone_cnc_semantics.sh
SKIP_INTERP_BUILD=1 wasm-port/tests/wasm/node/verify_interp_wasm.sh
SKIP_INTERP_BUILD=1 wasm-port/tests/wasm/node/verify_sim_configs_inventory_wasm.sh
wasm-port/tests/host/verify_host_smokes.sh
```
关键输出:
```text
ini_panel_launch_api_manifest_node_smoke=ok
ini_panel_entry_docs_node_smoke=ok
ui_node_smokes=ok
browser_ini_opfs_smoke=ok
browser_ini_control_page_smoke=ok
browser_ini_launch_smoke=ok
browser_ini_shell_integration_workflow_smoke=ok
vendor sync up to date
standalone CNC semantics guard complete
interp_wasm_node_smoke=ok
sim_configs_wasm_node_inventory_executed=28
sim_configs_wasm_node_inventory_passed=28
sim_configs_wasm_node_inventory_skipped=131
sim_configs_wasm_node_inventory_unexpected_fail=0
host_wasm_opfs_browser_smokes=ok
```
下一步建议:
继续推进 SDK/API surface。下一批建议为 shell/session handoff summary 增加 focused compatibility
predicate 或 versioned summary schema例如 `createIniPanelShellSessionHandoffSummarySchema()`
让外部 shell 能独立判断 summary shape 是否可消费;仍保持只读,不新增控制按钮,不解析 G-code。