Move ephemeral rendering, initial buffer mounts, declarative commits, and opaque handle updates onto retained TP surfaces while keeping Ebox layout planning and runtime indexes transactionally synchronized. Verified with: make check EMACS=/Applications/Emacs.app/Contents/MacOS/Emacs
53 lines
3.0 KiB
Markdown
53 lines
3.0 KiB
Markdown
# Ebox 增量更新合同
|
||
|
||
本文定义底层发布合同。它独立于 ETAF 应用状态,直接使用 Ebox 的调用者和上层包都必须遵守。
|
||
|
||
## 所有权
|
||
|
||
1. 调用者拥有新的 source tree。
|
||
2. `ebox-tree.el` 拥有 identity、key、遍历和 snapshot。
|
||
3. `ebox-style.el`、`ebox-measure.el` 与布局模块拥有归一化、测量和几何。
|
||
4. `ebox-incremental.el` 拥有 dirty 分类、patch 规划、纯声明式 commit 准备和 Ebox 报告语义。
|
||
5. `ebox-surface.el` 投影 retained candidate,并让 Ebox runtime-state 发布加入 TP transaction。
|
||
6. TP 拥有首次 mount 与声明式整根 commit 的通用 retained-surface reconciliation、buffer diff 执行、revision 变更和 rollback。
|
||
7. `ebox-buffer-backend.el` 拥有 Ebox marker/index primitive,以及尚未完成局部更新切换的数字 region、viewport 与 scroll 专用 publisher。
|
||
|
||
任何层都不能从可见 buffer 文本推断应用状态;公共调用者不能原地修改已经发布的树。
|
||
|
||
## Commit 生命周期
|
||
|
||
```text
|
||
新的根树
|
||
-> 校验与归一化
|
||
-> 复制到 surface-owned candidate state
|
||
-> reconciliation TP object、key 与 Ebox identity
|
||
-> 测量/布局候选
|
||
-> 分类 dirty owner
|
||
-> 生成 TP surface plan 与 Ebox report base
|
||
-> TP 准备并原子发布 buffer 变更
|
||
-> Ebox transaction participant 发布匹配的 runtime index/report
|
||
-> 成功后退役旧 marker 与 timer
|
||
```
|
||
|
||
候选要么完整发布,要么丢弃。render、TP 写入、Ebox participant 或发布回调失败时,必须保留之前的 buffer 文本、属性、TP revision、Ebox runtime identity、滚动状态和最近一次成功报告。如果目标 buffer 在发布期间被 kill,teardown 是最终状态,rollback 绝不能把它复活。
|
||
|
||
## Patch 顺序
|
||
|
||
规划器优先使用 `paint-patch`,再使用 `span-patch`、`owner-rerender`,最后在几何或 identity 使小操作不安全时使用 `root-rerender`。Patch 不得静默扩大语义范围。声明式整根报告保留该 Ebox strategy 与 planned scope,同时单独记录 TP 的实际 surface operation 和 revision。
|
||
|
||
## Identity 与坐标
|
||
|
||
Key 只在同级兄弟集合内有效。声明式 source tree 不拥有 live TP object、marker 或 buffer 坐标。live 逻辑 `:id` 通过 `ebox-region-resolve` 解析为绑定某个 TP surface object 的不透明 handle;同一 source 挂载到两个 buffer 时会得到不同 handle。Region 与 host-ref 位置绑定于 generation;buffer 变更后调用者必须通过公共 accessor 重新获得位置。Buffer marker、display span 和 text property 是发布事实,不是 source tree identity。
|
||
|
||
## 验证
|
||
|
||
每条更新路径都要验证:
|
||
|
||
- 发布后的可见文本和属性完全正确;
|
||
- 兄弟节点重排时 keyed identity 稳定;
|
||
- rollback 后没有候选数据残留;
|
||
- 可以局部更新时 patch 范围受控;
|
||
- native reflow 不可用时 fallback 正确。
|
||
|
||
聚焦测试使用 `tests/ebox-commit-tests.el`、`tests/ebox-core-render-tests.el` 和 `tests/ebox-grid-tests.el`,然后运行 `make check`。
|