From Fedora Project Wiki

< Anaconda‎ | Features

Revision as of 21:53, 31 January 2011 by Akozumpl (talk | contribs)

Threaded Anaconda GUI

Summary

Do not run the gtk.main() in the same thread as all other processing (e.g. probing storage devices or installing packages).

Owner

  • Name: Ales Kozumplik

Current status

  • Targeted release: Fedora X
  • Last updated: 08:37, 12 January 2011 (UTC)
  • Percentage of completion: 1%

Detailed Description

Anaconda's GTK UI and the backend are running in the same thread. GTK is unfortunately not designed to be run in the same thread as the app. Although this arrangement sort of works for the moment problems can be noticed: for instance on a virtual machine (slow) there is a visible lag between the time "scanning storage devices" dialog pops up and the time this dialog gets window decorations by metacity. What we do at the moment when we want to update the UI and the processing happens outside of the gtk.main function is calling gtk.main_iteration(False) to manually enforce one gtk main loop. Coming to #pygtk at gnome's IRC I was repeatedly told by the gurus that this is a hack bound to randomly fail to accomplish what we expect.

Also separating the threads will allow us to do certain tasks in the background, not blocking the user from continuing with other parts of installation. For instance Anaconda can already be initializing the filesystem while the user is picking packages to be installed.

Bugzilla to track this is https://bugzilla.redhat.com/show_bug.cgi?id=581912.

fixing dispatch.py

It might be necessary to fix/replace dispatch.py to do this. What people complain about is:

  • it is difficult to be sure whether a particular step is going to be skipped or not in the end
  • we are modelling a queue with much more complex structure, that makes the possible interactions (step forward, step backward) difficult to figure out
  • the string binding
  • intermixing interactive and direct steps at the same place (is this a problem?)

A suggested general solution to all of this:

  • every step at its start checks it has all necessary information, if not it raises an exception that mentions all steps that need to happen before this step in order to collect all needed information: those will be added before the current step in the queue and the queue is re-executed from the start.
  • add more here...

Benefit to Fedora

Improved experience for the installer users.

Scope

Huge and but limited to anaconda.

Test Plan

User Experience

Dependencies

Contingency Plan

Documentation

Release Notes