Hyprland/src/protocols/core
staticssleever668 d679d20029
seat: avoid sending pointless 'keymap' and 'repeat_info' events (#8276)
#### Describe your PR, what does it fix/add?

Fix lag spikes when pressing more than 6 keys at the same time.

 #### Is there anything you want to mention? (unchecked code, possible bugs, found problems, breaking compatibility, etc.)

Debugging process:
<details>
This is triggered by typing some applications, like CopyQ or XWayland.
Typing in Firefox doesn't lead to lag, however it itself does lag
handling these events.

Profiling CopyQ shows that paths leading to
`QtWaylandClient::QWaylandInputDevice::Keyboard::keyboard` take over
80% of processing time of an otherwise idle program.

Looking at output of 'wev' even when it's not focused shows same events
received over and over again.

```
[14:     wl_keyboard] repeat_info: rate: 25 keys/sec; delay: 300 ms
[14:     wl_keyboard] keymap: format: 1 (xkb v1), size: 64754
```

Looking at what passes through CInputManager::onKeyboardKey() ->
CSeatManager::setKeyboard() shows Hyprland 'switching' between endpoints
of the same keyboard, one of them being named like the other but with
'-1' suffix.
</details>

Tested changing layouts in Fcitx5 and with following config.

```
input:kb_layout = us,cz
input:kb_variant = ,qwerty
input:kb_options = grp:alt_shift_toggle
```

Also tested changing 'input:repeat_delay' while running.

Curiously, now these events appear in the output of 'wev' only once.
Changing layouts still seems to work fine though.

 #### Is it ready for merging, or does it need work?

Ready for merging.
2024-10-28 19:25:27 +00:00
..
Compositor.cpp internal: few more marginal optimisations from profiling (#8271) 2024-10-28 18:02:52 +00:00
Compositor.hpp internal: few more marginal optimisations from profiling (#8271) 2024-10-28 18:02:52 +00:00
DataDevice.cpp internal: Move CMonitor to SP (#8178) 2024-10-19 23:03:29 +01:00
DataDevice.hpp internal: Move CMonitor to SP (#8178) 2024-10-19 23:03:29 +01:00
Output.cpp internal: cleanup CMonitor usage and fix a few ref hogs 2024-10-26 02:06:13 +01:00
Output.hpp internal: cleanup CMonitor usage and fix a few ref hogs 2024-10-26 02:06:13 +01:00
Seat.cpp seat: avoid sending pointless 'keymap' and 'repeat_info' events (#8276) 2024-10-28 19:25:27 +00:00
Seat.hpp seat: avoid sending pointless 'keymap' and 'repeat_info' events (#8276) 2024-10-28 19:25:27 +00:00
Shm.cpp shm: send a static list of shm formats 2024-09-20 22:56:15 +01:00
Shm.hpp Core: Move to aquamarine (#6608) 2024-07-21 13:09:54 +02:00
Subcompositor.cpp misc: constify the remaining for loops (#7534) 2024-08-26 20:24:30 +02:00
Subcompositor.hpp wayland/surface: fixup self-owning surface roles 2024-08-03 17:58:06 +02:00