Partly remove Compositor restart functionality
ClosedPublic

Authored by romangg on Jul 2 2019, 8:42 PM.

Details

Summary

This removes the restart function of the Compositor class and renames the
internal reinitialize function.

Instead of the restart function reinitialize can be called. Reading again
the settings in this case is fine, since it is done rarely. This reduces
the code complexity.

Test Plan

Manually on Wayland and X. 100% autotests pass.

Diff Detail

Repository
R108 KWin
Branch
rmReinitRestart
Lint
Lint OK
Unit
No Unit Test Coverage
Build Status
Buildable 13595
Build 13613: arc lint + arc unit
romangg created this revision.Jul 2 2019, 8:42 PM
Restricted Application added a project: KWin. · View Herald TranscriptJul 2 2019, 8:42 PM
Restricted Application added a subscriber: kwin. · View Herald Transcript
romangg requested review of this revision.Jul 2 2019, 8:42 PM
romangg edited the summary of this revision. (Show Details)Jul 2 2019, 9:13 PM
zzag added a subscriber: zzag.Jul 2 2019, 10:30 PM

This removes the dbus method to reinit the compositor

No, no, no. It's used by Compositing KCN.

romangg updated this revision to Diff 61043.Jul 2 2019, 11:49 PM
  • Rebase on series changes
  • Don't remove the reinit dbus method
romangg edited the summary of this revision. (Show Details)Jul 2 2019, 11:50 PM
romangg edited the summary of this revision. (Show Details)Jul 3 2019, 12:43 AM
zzag added a comment.Jul 3 2019, 8:50 PM

Have you measured how long it takes to reinitialize and restart compositor? Could you please share with us numbers?

In D22225#490465, @zzag wrote:

Have you measured how long it takes to reinitialize and restart compositor? Could you please share with us numbers?

I have not and I also don't plan on doing it. restart is called once in the constructor (where we need to read in the config anyway), when the default refresh rate changes or when the scene registered an Gl error. So in 99.9999999999% of sessions this call should be made exactly once.

davidedmundson added inline comments.
composite.h
116 ↗(On Diff #61043)

Not your fault, but that all 3 parts of that documentation are wrong.

The service name isn't part of the match rule.

The path is /Compositor

The method is "org.kde.kwin.Compositing.reinit"

Probably why you didn't see it was used.

zzag added inline comments.Jul 4 2019, 8:19 AM
composite.cpp
597

Do you know why setup is delayed?

composite.h
186

Don't introduce whitespace in one patch (D22218), and then remove it in a follow-up patch (this one).

romangg added inline comments.Jul 4 2019, 12:40 PM
composite.cpp
597

No, 1c2ba6ea17bd adds it 10 years ago without more info. Nowadays restart() was either called on a different timer. so it should not have any influence or on Scene::resetCompositing. Didn't test if it has some sort of impact there, but I would just assume that it doesn't since in the reinitialize call we also do it timer-less without issues.

romangg marked an inline comment as done.Jul 4 2019, 12:54 PM
zzag accepted this revision.Jul 4 2019, 1:18 PM
This revision is now accepted and ready to land.Jul 4 2019, 1:18 PM
This revision was automatically updated to reflect the committed changes.