Skip to content

Give each engine its own key queue; serialize engine state - #612

Open
EzeriumChristinal wants to merge 2 commits into
BambooEngine:masterfrom
EzeriumChristinal:audit/engine-queue
Open

EzeriumChristinal wants to merge 2 commits into
BambooEngine:masterfrom
EzeriumChristinal:audit/engine-queue

Conversation

@EzeriumChristinal

Copy link
Copy Markdown

Part of a stack with "Settle composition state on focus change, reset, disable" — merge in that order.

The key queue and its dispatch function were process-wide globals, so with two engine instances alive (Bamboo plus BambooUs, or a fresh instance after daemon re-init) the newest init received every queued keystroke. Two engines sharing the queue showed engine 1's input committing on engine 2.

Each engine now owns its queue and consumer goroutine. ProcessKeyEvent and the consumer hold the engine mutex around preeditor access; the send that can block (full queue) drops the lock across the send, so the consumer can always drain.

No new sleeps were added. Key handling serializes behind the backspace sends that were already there (20-150 ms in fallback modes); in XTestFakeKeyEventIM mode a fake-backspace roundtrip can add a bounded ~50 ms while it waits.

Tests: per-engine isolation, concurrent hammer run under -race.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant