推进 INI 面板 shell handoff readonly status workflow helper

This commit is contained in:
2026-06-15 13:48:36 +08:00
parent c3d9b90de1
commit 859d01356b
9 changed files with 228 additions and 4 deletions

View File

@@ -2948,3 +2948,79 @@ host_wasm_opfs_browser_smokes=ok
`readIniPanelShellSessionHandoffStatusFromControlPage()`),让外部 shell 在 mount workflow ready 后一次
读取 readonly status、校验 expected status fields并返回 structured status result仍保持只读不新增
控制按钮,不解析 G-code。
三十七、2026-06-15 继续执行记录INI panel shell handoff readonly status workflow helper
本轮按“第一原则:加快实质性推进”继续推进 SDK/API surface 与 browser/UI workflow为 shell
handoff 增加 readonly status 聚合 helper让外部 shell 在 mount workflow ready 后一次读取
control-page readonly status、校验 expected status fields并返回 structured status result。
完成内容:
- `ui-shell.js` 新增 `readIniPanelShellSessionHandoffStatusFromControlPage()`
- 新 helper 支持传入 `readonlyStatus`,也支持从 `controlPageApi.readControlPageStatus()` 读取只读状态;
- 新 helper 返回 `apiName`、`resultVersion`、`phase`、`ready`、`statusLine`、`readStatusMethod`、
`expectedStatusFields`、`presentStatusFields`、`missingStatusFields`、`readonlyStatus` 与 `readError`
- control-page API 缺失时返回 structured blocked result不把缺失方法伪装成 pass
- control-page API 抛错时把错误写入 `readError`,不把异常直接抛给外部 shell
- `createIniPanelShellViewModel()` 暴露 `readShellSessionHandoffStatusFromControlPage`
- `createIniPanelLaunchApiManifest().methods` 新增 `readShellSessionHandoffStatusFromControlPage`
launch method count 更新为 32
- `launch.html` 的 `window.linuxCncIniPanelLaunchApi.readShellSessionHandoffStatusFromControlPage()` 暴露
真实 browser API并默认复用 launch 侧 handoff summary 的 expected readonly status fields
- `ini_panel_shell_integration_workflow_smoke.html` 在真实 browser workflow 中通过 shared status helper
读取最终 readonly status并校验 ready、missing fields 与 workflow last action
- Node smoke 覆盖 readonly status 直传、control-page API 读取、缺失字段与缺失 API blocked 路径;
- 文档同步记录 readonly status workflow 用法;
- 未新增控制按钮;
- 未解析 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_ui_shell.sh
wasm-port/tests/ui/node/verify_ini_panel_launch_api_manifest.sh
wasm-port/tests/ui/node/verify_ini_panel_shell_integration_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_ui_shell_node_smoke=ok
ini_panel_launch_api_manifest_node_smoke=ok
ini_panel_shell_integration_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 handoff workflow result summary helper例如
`createIniPanelShellSessionHandoffWorkflowSummary()`),把 mount workflow、control-page mount workflow
和 readonly status result 合并成一个稳定 summary方便外部 shell 一次展示 handoff end-to-end 状态;
仍保持只读,不新增控制按钮,不解析 G-code。