TranslateProject/sources/talk/20220724 Wayland Core Protocol is Tailored Only for GNOME and That-s Not a Good Thing [Opinion].md

11 KiB
Raw Blame History

Wayland Core Protocol is Tailored Only for GNOME and Thats Not a Good Thing

And the idea of protocol extensions doesnt work

Wayland GNOME

Wayland is a display server system based on the idea of protocols. That means that there is no Wayland display server that clients need to talk to. Instead, Wayland defines a protocol for creating display servers. Any client application that is programmed to use this protocol can work on any display server(or compositor) that fully supports this protocol. Its like the world wide web protocols, where any website can work on any browser as long as the browser is completely supporting the web protocols. So you dont create websites for specific browsers.

That also means that the functions defined in the protocol decide what applications (aka clients) can do & what they cant do. Returning to the example of the website, if the protocol doesnt define necessary functions, it will limit the web developers. Take CSS as an example; if it wasnt available in the web protocols, all websites would have looked the same and boring. So the protocol must include all necessary basics in a way that doesnt limit developers to a few cases and uses.

When Wayland developers started defining the protocol, they had to decide what functionalities to include in the protocol. Their decision was to make the protocol as minimal as possible, and compositors shall create new protocols for their specific use cases if they desire to offer more functionality not included in the main protocol. The main protocol was called Wayland Core protocol, and other protocols are called protocol extensions. All compositors are expected to support the core protocol, and they may not support other protocol extensions. That means that applications that depend on certain functionality defined in one of the protocol extensions will not work on all compositors.

All of the above is what Wayland developers intended for the Wayland world to be. Now lets delve into more detail. How much is Wayland core protocol minimal? In other words, what determines what shall be in the core protocol and what shall not be? In this article, Im going to give you an answer to this question based on my opinion, which is in turn based on a group of simple facts.

My opinion is that Waylands Core protocol is tailored only for GNOME needs.

I mean that the functionalities which exist in Waylands core protocol are the bare minimum required for GNOME desktop and apps to work on Wayland.

Thats bad (still in my opinion) because its simply not enough for other desktop environments and apps other than GNOME desktop and apps, as I will show you in this article.

1. The core protocol requires that desktop visual components be drawn by the compositor

First, lets explain something. In most desktop environments, desktop components (like dock, panel, wallpaper, desktop icons, etc.) are regular clients. For those components to work, they need certain functions to be implemented by the compositor; those functions include:

  • Ability to move the window
  • Ability to tell the compositor to not draw decorations around said windows.
  • Ability to keep it above all windows(in case of the panel) or keep it below all windows (in case of the background).
  • In addition to some other functionalities.

On X11, those were defined in the ICCCM specification, which allows X11 clients to tell the compositor to do any of the above. On Wayland, there is not anything in the core protocol that allows that. This means that desktop environment creators have to draw all these in the compositor.

GNOME is the only desktop that does that, while many other desktops (KDE, XFCE, Lxqt, etc.) draw their components outside the compositor (an exception to that is Cinnamon because it started as a fork of GNOME 3). The situation is even worse. Apps like plank dock, latte dock and other independent desktop components cant exist in Wayland. There are protocol extensions that fix that, and I will discuss them later.

In summary, the situation is:

  • Desktop environments have to draw everything in the compositor.
  • Its impossible to create cross-desktop desktop components like Plank and Latte dock

2. CSD is implementable, although clients cant move their window

We have known before that the core protocol doesnt define a way for clients to move their windows. So how is CSD implemented? Well, there is a function in the protocol that tells the compositor to start dragging the window. So instead of having a function for moving the window, which would had been useful in many cases, they resorted to having a function only helpful in implementing CSD.

3. CSD is a must in Wayland core protocol

On X11, the situation was that apps expect to get decorated by the compositor (which is SSD) and if they wish to decorate themselves (by CSD) they tell the compositor to not draw its decorations. On Wayland, compositors are free to draw their decorations if they wish.

The problem is that there is no way (inside the core protocol) for apps to know whether they are being decorated or not. In other words, clients cant tell the compositor whether they prefer CSD or SSD, which is problematic for both CSD and SSD (in theory). But in practice, GNOME decided not to decorate clients at all. So apps have to assume that they are not decorated due to GNOMEs decision, so they must go for CSD. Again, there is a protocol extension that fixes that; more on that later.

To summarize

The above three facts regarding the core protocol in summary are:

  1. Desktop components need to be drawn by the compositor
  2. CSD is a must.
  3. CSD is implementable, although clients cant move their windows.

According to these 3 facts, Ive concluded my opinion that Waylands core protocol is tailored only for GNOME needs.

What if you wanted some functionalities not available in the core protocol. Wayland or GNOME developers answer to this is Waylands protocol extensions. That simply means that compositors can offer extra functionality by creating new protocols. The problem with this approach is that means that some apps may work on some compositors and may not work on the rest of the compositors (thats if it needs some of the protocol extensions). That may have resulted in severe fragmentation in theory, but the reality is less than worse thanks to the efforts of wlroots project and KDE.

Wlroots has mostly saved the situation

Wlroots is a library created by Sway compositor developers. It enables developers to create Wayland/X11 compositors easily. Their main focus is Wayland. There are already many compositors available based on wlroots. What is interesting though is the protocol extensions that wlroots implement.

Wlroots has many protocol extensions, including:

The LayerShell protocol enables desktop components to be drawn outside the compositor. Which also makes it possible to create independent cross-desktop desktop components. Many projects utilize this protocol that you can explore in the following repositories:

Also, have a look at GtkLayerShell library. Which is a library for writing Gtk apps with LayerShell protocol.Because LayerShell protocol is not a part of the core protocol apps using it work on wlroots based compositors and KDE, its not supported only on GNOME.

The second protocol is xdg-decoration protocol. Made by wlroots and KDE, it enables apps to choose between CSD and SSD.

These protocols work on wlroots compositor and KDE. The only obstacle preventing the unification of Linux desktop is GNOME. They have decided not to implement any of these protocol extensions. Which put all apps that use SSD in a situation where they have to use SSD in supporting environments and CSD in gnome. The people actually feeling the pain are toolkits developers. To give you more context, have a look at the “CSD initiative” started by Tobias Bernard from GNOME, and this blog post from Martins blog (kwins developer). Also, have a look at this issue. The situation is mostly solved by now, that Qt and Gtk draw CSD always on GNOME and utilize the xdg-decoration on other environments. However, in my opinion, that is not good because it makes the platform less standardized/unified for no good reason. After all, in the future, toolkits developers may decide to just go for CSD to avoid the pain.

The root of all these problems

The root of all these is GNOME or Wayland developers decision to have the core as minimum as possible and require the creation of protocol extensions.

Imagine if the web worked in a similar way. That means that websites would not be able to target the standardized (minimal) protocols because they are not enough and will rely on protocols created by certain browsers. So websites would target specific browsers, not the core protocol. That would had been a nightmare, right? Well, thats the current Wayland situation.

What is the solution?

The solution, in my opinion, is to put all these protocol extensions in the core protocol, or that might not be necessary if GNOME implements the above protocols (Which is not likely to happen anytime soon.)In simple words, GNOME is the root cause of the problem, and it can solve the problem if it decides to do so.

Author Info: This article has been contributed by Its FOSS reader Hamza Algohary. Hamza is a computer engineering student and a Linux and open source enthusiast. He also develops apps for Linux desktop. You can find his work on his GitHub profile.

The views and opinions expressed are those of the authors and do not necessarily reflect the official policy or position of Its FOSS.


via: https://news.itsfoss.com/wayland-core-protocol-issue/

作者:Community 选题:lkxed 译者:译者ID 校对:校对者ID

本文由 LCTT 原创编译,Linux中国 荣誉推出