Files
obsidian-livesync/docs/specs_conflict_resolution.md
T

13 KiB

Conflict resolution and revision provenance

This document describes the conflict-resolution and file-reflection guarantees used by Self-hosted LiveSync 1.0, together with the cases which still require user judgement. The underlying revision-tree operations and injectable provenance contract are owned by @vrtmrz/livesync-commonlib; LiveSync owns persistent device-local composition, Vault reflection, settings, and dialogue policy.

Revision-tree model

PouchDB stores a document as a revision tree. It selects one live leaf as the deterministic winner and reports the other live leaves as conflicts. That winner is not proof that its content is newer, safer, or the version currently shown in the Vault.

For example:

A1
├── B1 ── C1 ── D1
└── B2 ── C2

The two live leaves are D1 and C2. Their nearest shared ancestor is A1; neither B1 nor B2 is shared. A conservative three-way merge therefore compares the changes from A1 to each leaf. Matching generation numbers, or selecting the first older revision from one branch, does not prove shared ancestry.

Resolving a conflict writes the selected or merged result on one observed branch and deletes the other observed live leaf. A stale device may still have the deleted leaf's content in its Vault when it receives the resolution.

Implemented 1.0 guarantees

  • Automatic text and structured-data merge uses the nearest available revision ID which is present in both leaf histories.
  • Missing or compacted history stops conservative automatic merge instead of guessing a base.
  • A receiving Vault file which exactly matches any available revision in the document tree is treated as previously synchronised content. This includes an ancestor below a deleted losing leaf.
  • A receiving Vault file whose bytes do not match any available revision is preserved as an unsynchronised local change.
  • File bytes, rather than path, size, modification time, or revision generation, determine whether content is known.
  • Each device records the exact revision most recently reflected in each Vault file. An edit, deletion, or case-only rename made while a conflict is active extends that displayed branch rather than the deterministic database winner.
  • A cross-path rename stores the target before logically deleting only the displayed source branch.

The all-branch history check prevents a resolved conflict from being recreated merely because the receiving Vault still contains the known losing version. If the user has edited that version again, its bytes differ and the overwrite guard preserves it.

Resolution patterns

State Safe action
Both leaves contain identical bytes Collapse the duplicate leaf.
Text or structured data has an available shared base and non-overlapping changes Perform a conservative three-way merge.
One side deletes content which the other leaves unchanged Preserve the deletion.
One side deletes content which the other modifies Ask the user.
A receiving file matches a revision available anywhere in the tree Apply the propagated database result.
A receiving file matches no available revision Preserve it and ask the user.
A required body or shared ancestor is missing or compacted Ask the user.
Binary contents differ Prefer an explicit user selection; semantic merge is unavailable.

The compatibility implementation currently selects the newer modification time for differing binary conflicts even when the general Always overwrite with a newer file option is disabled. This is existing behaviour, not a new 1.0 guarantee. Changing it to explicit selection only is a separate compatibility decision.

Stale and concurrent resolutions

A device can resolve only the leaves which it has observed. If another device has already extended a branch, later replication can reveal another live leaf and require another resolution. Two devices can also produce different resolutions concurrently, leaving multiple live leaves after their trees meet.

A higher revision generation or modification time does not make either result authoritative. The resolver must examine every current live leaf again until one result remains or user action is required. This is continued conflict processing, not a reset of the synchronisation checkpoint.

Device-local file provenance

LiveSync composes Commonlib's injected FileReflectionProvenance with its local key-value database. Each device stores:

path -> { revision, observedStorageMtime? }

revision identifies the exact database revision which most recently produced the displayed Vault file. observedStorageMtime is the raw local modification time observed after reflection. It is not rounded, combined with another device's value, or used as proof of branch identity. No content hash is persisted.

The record changes only after a successful database-to-Vault reflection or Vault-to-database write. Reading a file does not change it. The recorded revision remains authoritative even if the user edits the file to bytes which equal another branch; otherwise content equality could silently move the edit to a branch which was not displayed.

LiveSync creates the namespaced store handle during service composition, before the key-value database is open. The sequential onSettingLoaded lifecycle opens that database before Vault scanning, watching, or replication starts. Store operations do not wait for implicit readiness: a lifecycle violation fails promptly, avoiding an indefinite or self-referential initialisation wait. Local database reset is a transient unavailable boundary, after which scanning reconstructs derived state.

When no record exists, LiveSync may reconstruct the displayed revision only if the current Vault bytes match exactly one available revision body. No match, or identical content in multiple revisions, cannot prove branch identity.

Operations while a conflict exists

  • Editing a file writes a child of its recorded or uniquely reconstructed displayed revision.
  • Deleting a file writes a logical-deletion child of that revision. It uses LiveSync's deleted marker, rather than a PouchDB _deleted tombstone, so the deletion remains a live branch which can replicate and be resolved against the other branch.
  • A case-only rename writes the new path as a child in the same document tree.
  • A cross-path rename stores the target document first, then writes a logical-deletion child on the displayed source branch.

If an edit's base cannot be proved, LiveSync keeps the bytes as another manual-resolution branch instead of attaching them silently to the database winner. If a deletion's displayed branch cannot be proved after the file body has gone, LiveSync preserves every branch and requests conflict review. For an unproven cross-path rename, the new target remains stored and every source branch is preserved for review. These fallbacks can leave a temporary duplicate or unresolved source, but they do not discard an unproven branch.

Example device scenarios

A user edits the branch shown on one device

Mac and Android have produced two branches of shared.md. Mac's local database selects revision C1 as its deterministic winner, but the file currently shown in the Android Vault came from revision C2:

A1
├── B1 ── C1     database winner
└── B2 ── C2     displayed on Android

Android recorded C2 when it wrote that revision into the Vault. If the user edits the file on Android, the new revision extends C2:

A1
├── B1 ── C1
└── B2 ── C2 ── D2     Android edit

After synchronisation, both devices receive C1 and D2 as the live branches. The edit is not moved silently onto C1, and ordinary conflict resolution can compare the real descendants.

A user deletes the branch shown on one device

If Android deletes the file while it still displays C2, LiveSync writes a logical-deletion revision below C2:

A1
├── B1 ── C1
└── B2 ── C2 ── D2 (deleted: true)

The deletion remains one side of the live conflict. The user can still choose between the content at C1 and deleting the file. LiveSync does not delete C1 merely because PouchDB selected it as the winner.

A user renames a conflicted file

If the user changes only the spelling case, such as Note.md to note.md, LiveSync keeps the rename in the same revision tree and extends the revision displayed on that device.

If the user renames draft.md to published.md, LiveSync stores published.md before it marks the displayed draft.md branch as logically deleted. If an interruption occurs between those operations, the recoverable result is a duplicate which can be reviewed, rather than loss of the only copy. Any other live branch of draft.md remains available for conflict resolution.

A remote resolution reaches a device which still shows the losing content

Android may resolve a conflict and continue editing while Mac still shows the losing revision. When Mac receives the resolved tree, LiveSync searches every available branch and recognises Mac's unchanged bytes as content which was already synchronised below the deleted losing leaf. It can apply Android's resolution without asking Mac to resolve the same unchanged conflict again.

If the user edited the file on Mac before the resolution arrived, the bytes no longer match that historical revision. LiveSync preserves the Mac edit as an unsynchronised conflict instead of overwriting it.

The device-local record is missing

A local-database reset removes revision provenance. On the next scan, if the Vault file matches exactly one available revision, LiveSync can reconstruct which branch was displayed and continue from it. If the bytes match multiple revisions, or no available revision, the branch remains unproved.

In that unproved state, an edit is retained as another manual-resolution branch. A deletion leaves all existing branches intact. A cross-path rename stores the target but leaves every source branch for review. The result can require an extra decision, but it does not discard data by guessing the winner.

Start-up or reset overlaps a provenance operation

LiveSync creates the provenance handle during composition, then opens its backing store during the sequential settings lifecycle before starting scans, watchers, or replication. If the store cannot open, start-up stops rather than leaving file processing waiting indefinitely.

During reset, the store can be temporarily unavailable. A racing provenance lookup fails promptly and follows the same conservative missing-record behaviour. After reopen, scanning can reconstruct a record when one exact revision body matches the Vault file.

Unsafe shortcuts

Do not:

  • infer a common ancestor from generation numbers alone;
  • assume that the PouchDB winner is the version currently displayed in the Vault;
  • replace recorded displayed provenance merely because current bytes match another branch;
  • discard local content when revision-history lookup fails;
  • infer revision identity from path, size, modification time, or content hash without a revision ID;
  • select the newest modification time unless the user has explicitly chosen that destructive policy; or
  • merge overlapping text edits or unrelated binary contents automatically.

Verification

Commonlib's real-PouchDB and injected-boundary unit tests cover unequal branch lengths, exact shared ancestry, content below a deleted losing leaf, recorded and reconstructed branch identity, ambiguous matches, conflict-time editing, logical deletion, case-only rename, cross-path rename, and safe unproven fallbacks.

LiveSync's optional real-Obsidian two-Vault checks have two scopes. E2E_OBSIDIAN_INCLUDE_MARKDOWN_CONFLICT=true resolves and edits a Markdown conflict, propagates it to a Vault which still displays the deleted losing content, and requires one live result to remain. E2E_OBSIDIAN_INCLUDE_CONFLICT_OPERATIONS=true edits, deletes, case-renames, and cross-path-renames files while conflicts remain active; it verifies the parent revision of each resulting branch, replicates those exact trees, and confirms that the other live branches remain intact.