-
Notifications
You must be signed in to change notification settings - Fork 89
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Please reduce the dependencies of the dbus backend #356
Comments
The reason why printer setup tools (KDE Printer Manager, GNOME Control Center "Printers" module, and system-config-printer itself) all use the D-Bus service In some stage of the development of system-config-printer the algorithms got separated out into a D-Bus service (not by me) so that other printer setup tools can benefit from them and even every printer setup tool finds the same driver for a given printer. AFAIR there are some situations where the D-Bus service can pop up a dialog, for example if no driver is found for a printer and for downloading drivers from the internet in such a case. One needs to identify the cases when the service would try to pop up a dialog, a progress window, a message box, ... Even without the functionality of that pop-up dialogs the service does great work which is useful for any printer setup tool, so that suppressing this functionality does not restrict the functionality of the D-Bus service too much.. The first approach would be, at the points where a dialog is popped up, to check at first whether GTK (and its Python bindings) is installed and only then pop up the dialog, otherwise skip this functionality. A next step would be that in case of GTK being absent the function which would cause the dialog pop-up would return somehow the reason for the pop-up (ex.: no locally installed driver available, load from internet). This way the caller could proceed with downloading/installing drivers, or just say that for this printer there are no readily installed drivers available. So for solving this, we need to start with finding out all situations where the D-Bus service would pop up a dialog and then add code to skip the dialog-based steps. It is possible, but I am not sure that it is tried to download or directly install LSB-based RPM or DEB packages. these packages are discontinued in favor of Snap and OCI containers. So any pop-up call for handling these packages can get removed. |
Also note that system-config-printer was discontinued and we are now reviving the development to make system-config-printer ready for CUPS 3.x. See https://wiki.linuxfoundation.org/gsoc/google-summer-code-2024-openprinting-projects#introduction and especially In this Google Summer of Code project we will make system-config-printer working with CUPS 3.x, in an all-IPP world without PPD files and with driverless printers and Printer Applications. I have made the GSoC contributor who will do this project aware of this issue. He will probably comment here soon. |
Another option for the (fairly simple) dialogs that can be displayed would be to call an external application -- there's a few "dialog from shell" applications that provide the same command line interface, but use the user's preferred toolkit (e.g. Qt qarma provides the same interface as GTK zenity, and there's kdialog/xdialog/cdialog). |
For the authentication related dialogs (in |
KDE Plasma's print-manager relies on the system-config-printer dbus services for some functionality:
It doesn't use the UI parts of system-config-printer (that look a bit out of place in a Plasma desktop). Nevertheless, because system-config-printer is currently quite monolithic (even
scp-dbus-service.py
imports Gtk and friends and their python bindings), it pulls in a large dependency chain.It would be great if the dbus functionality relied upon by alternative UIs like plasma print-manager could be made independent of the UI portions to avoid the dependency chain (and memory usage by multiple toolkits etc).
The text was updated successfully, but these errors were encountered: