Plugins

Differences between revisions 22 and 29 (spanning 7 versions)
Revision 22 as of 2009-09-16 14:15:35
Size: 11465
Editor: pool-173-48-173-135
Comment:
Revision 29 as of 2013-01-16 10:57:22
Size: 11920
Editor: fourdollars
Comment:
Deletions are marked like this. Additions are marked like this.
Line 1: Line 1:
Here, I describe a possible system for enabling drop-in plugins for Ubiquity and OEM-config. This is the method for enabling drop-in plugins for Ubiquity and OEM-config.
Line 33: Line 33:
The plugin will have UI classes like 'PageGtk' or 'PageKde' or 'PageNoninteractive' which will be instantiated by Ubiquity and passed to the filter class. If the right class for the current frontend isn't find, the plugin is ignored. The plugin will have UI classes like '!PageGtk' or '!PageKde' or '!PageNoninteractive' which will be instantiated by Ubiquity and passed to the filter class. If the right class for the current frontend isn't find, the plugin is ignored.
Line 75: Line 75:
The PageGtk class must provide an init that takes at least one argument. Additional keyword arguments are allowed, but not currently used.

This first argument is a 'controller' class, specified below. This is how PageGtk can provide feedback to the 'real' frontend.
The !PageGtk class must provide an init that takes at least one argument. Additional keyword arguments are allowed, but not currently used.

This first argument is a 'controller' class, specified below. This is how !PageGtk can provide feedback to the 'real' frontend.
Line 90: Line 90:
The PageKde class must provide an init that takes at least one argument. Additional keyword arguments are allowed, but not currently used.

This first argument is a 'controller' class, specified below. This is how PageKde can provide feedback to the 'real' frontend.
The !PageKde class must provide an init that takes at least one argument. Additional keyword arguments are allowed, but not currently used.

This first argument is a 'controller' class, specified below. This is how !PageKde can provide feedback to the 'real' frontend.
Line 113: Line 113:
 * add_builder(self, builder) (register a gtk.Builder instance created by the plugin; GTK frontend only)
Line 119: Line 120:
 * toggle_top_level(self) (Hides or Shows the top level widget page)
Line 132: Line 134:
{{{install}}} is passed a progress class that can provide updates on what your plugin is doing. Currently, it only supports passing a text description. Each plugin takes up 1% on the install progress bar. {{{install}}} is passed a progress class that can provide updates on what your plugin is doing and query debconf. Each plugin takes up 1% on the install progress bar.
Line 137: Line 139:
    '''Sets the progress to a debconf text description'''
    pass

def get(self, question):
    '''Retrieves a debconf question's answer'''
    pass

def substitute(self, template, substr, data):
    '''Substitutes substr with data in template'''
Line 162: Line 173:
class PageGtk: class PageGtk(PluginUI):
Line 164: Line 175:
    plugin_title = 'ubiquity/text/ready_details_label'
Line 178: Line 190:
class PageKde: class PageKde(PluginUI):
Line 201: Line 213:
        # self.frontend is PageGtk above         # self.ui is PageGtk above

This is the method for enabling drop-in plugins for Ubiquity and OEM-config.

Requirements

  • Insert a page: The ability to add a page anywhere in the page sequence
  • Hide a page: The ability to stop a standard page from showing up (the combination of inserting/hiding lets you replace a page)
  • The ability to prevent going forward (say, a EULA page that requires an approval checkbox). Might as well also allow preventing going back.
  • Let plugins be translatable
  • Let plugins execute code after user is done entering any info, to actually do what user asks
  • Let plugins offer gtk or kde UI (or debconf or noninteractive, etc if desired)

Wants

  • Reduce plugin's exposure to Ubiquity internals, to make them more change-proof.
  • Allow plugins to be pure Python (no required shell)

Design

What a plugin looks like

Bits of a standard gtk page:

  • A glade file
  • A debconf filter
  • Ask and apply scripts

With the above, by providing the above files, we can do everything a normal page can in a plugin. Assuming Ubiquity knows how to find the files.

The asking can be provided by Ubiquity, as long as the plugin gives us a list of debconf questions to ask. And the apply script could just be done by the filter by a special 'apply' method. Then all a plugin needs is a filter and a UI file.

We could additionally dumb down the python a plugin needs to provide by having them be 'filter lites' custom classes that didn't do everything a filter does. But the filter parent classes already provide good default methods. We should probably have a plugin parent class that sits between the debconf filter and the plugin, just to provide further default methods and any special configuration we need.

How the plugin will talk to its own UI

The plugin will have UI classes like 'PageGtk' or 'PageKde' or 'PageNoninteractive' which will be instantiated by Ubiquity and passed to the filter class. If the right class for the current frontend isn't find, the plugin is ignored.

For GUI frontends, certain member data and methods may be expected depending on which frontend is being used. Any such member will be prefixed with 'plugin_'. For example, with the GTK+ frontend, 'plugin_widgets' containing a list of pages and other information. See below for more details.

The plugin can install the UI files (.glade, .ui) anywhere it wants, because it is responsible for loading it. The GTK and KDE frontends only want to see actual widgets.

How the plugin is translated

Plugins can use their own debconf template. Ubiquity will do the translation for it, from its template.

How to find the plugin

Plugins drop python page files in /usr/lib/ubiquity/plugins/

How to order/add/remove pages

Plugins has a module-wide NAME field that specifies a name to use. The recommended NAME for pages would be similar to the module name that defines the page. For third-party plugins, using a namespace (e.g. 'foo-page' and 'foo-page2') is recommended.

To insert your page into the sequence of pages, use AFTER or BEFORE fields.

AFTER='goober-language'
BEFORE=['language', None]

Pages can be hidden from a HIDDEN field (a list would also work):

HIDDEN='language'
  • If neither AFTER or BEFORE are specified, the page will not be used, but may still specify other plugin options, like HIDDEN. (i.e. a page that only hides, and does not insert itself)
  • If AFTER or BEFORE is a list of names, the first component that Ubiquity recognizes is used.
  • If both AFTER and BEFORE are specified, Ubiquity will use AFTER if it recognizes it, else use BEFORE.
  • If Ubiquity still can't find a value that it recognizes, the page is ignored (and other plugin options like HIDDEN are not used -- it's likely this page is optional, pending installation of some package we don't have or was written for an older Ubiquity).

  • If AFTER's value is None or otherwise 'Python-false', it is inserted at the beginning of the page sequence.
  • If BEFORE's value is None or otherwise 'Python-false', it is inserted at the end of the page sequence.

Ties (where two pages specify 'after language' for example) are broken by the attribute WEIGHT in the module. If not defined, it is 0. i.e. if both mypage (WEIGHT=10) and otherpage (WEIGHT=22) specify AFTER=language, otherpage would be first in the resulting sequence, then mypage.

Most Ubiquity built-in plugins are around WEIGHT=10.

PageGtk Design

The PageGtk class must provide an init that takes at least one argument. Additional keyword arguments are allowed, but not currently used.

This first argument is a 'controller' class, specified below. This is how PageGtk can provide feedback to the 'real' frontend.

Here's a list of supported member fields:

  • plugin_widgets: A GTK+ widget or a list of widgets to show as pages

  • plugin_optional_widgets: A GTK+ widget or a list of widgets that aren't likely to be shown. These widgets don't add to the step count in the bottom left of the UI (step X of Y), but can be shown via plugin_get_current_page as described below.

  • plugin_is_language: Indicates that 'plugin_widgets' describes a page that will possibly change the language. This is used to cache all possible translations for the widgets on the page.

  • plugin_prefix: Indicates a debconf template prefix to use for widget names when translating. Ubiquity will look up 'plugin_prefix/name' and use the string debconf gives as the UI translation.

It may provide a method called plugin_get_current_page(self) that will return which of the widgets in plugin_widgets or plugin_optional_widgets should be shown now. If not defined, the first in the lists will be used.

PageKde Design

The PageKde class must provide an init that takes at least one argument. Additional keyword arguments are allowed, but not currently used.

This first argument is a 'controller' class, specified below. This is how PageKde can provide feedback to the 'real' frontend.

Here's a list of supported member fields:

  • plugin_widgets: A Qt widget or a list of widgets to show as pages

  • plugin_breadcrumb: A debconf template key for the list of stages on the left of the UI. Setting 'plugin_breadcrumb' to None indicates that you don't want the breadcrumb list visible for your page.

  • plugin_is_language: Indicates that 'plugin_widgets' describes a page that will possibly change the language. This is used to cache all possible translations for the widgets on the page.

  • plugin_prefix: Indicates a debconf template prefix to use for widget names when translating. Ubiquity will look up 'plugin_prefix/name' and use the string debconf gives as the UI translation.

It may provide a method called plugin_get_current_page(self) that will return which of the widgets in widgets should be shown now. If not defined, the first in the lists will be used.

Controller Design

The controller object passed to Page UI classes is a simple mechanism for talking to the main frontend.

Here are the currently defined members:

  • dbfilter (lets you have access to your Page class)
  • oem_config
  • oem_user_config (flags for which mode we're in)

And the methods:

  • add_builder(self, builder) (register a gtk.Builder instance created by the plugin; GTK frontend only)
  • translate(self, lang=None, just_me=True, reget=False) (retranslate the UI)
  • allow_go_forward(self, bool) (page starts with forward allowed)
  • allow_go_backward(self, bool) (page starts with backward allowed)
  • go_forward(self) (clicks forward)
  • go_backward(self) (clicks back)
  • go_to_page(self, page) (jumps to the given page)
  • toggle_top_level(self) (Hides or Shows the top level widget page)

Applying the Page

If your plugin wants to perform install-time work, it can define a Install class that derives from the InstallPlugin class.

InstallPlugin is a Plugin and follows the same conventions -- it is a debconf filter that has prepare and cleanup methods. But additionally and more relevantly for us, it adds an install method.

install is passed a target directory (usually '/target' or '/'), a progress class (more on that below), and possibly some future arguments. It's recommended that plugins use *args and **kwargs to gracefully handle future extensions.

If install returns a Python-true value, it is considered an error (ala command line programs). The error value (a string or a number) will be printed to syslog.

Progress API

install is passed a progress class that can provide updates on what your plugin is doing and query debconf. Each plugin takes up 1% on the install progress bar.

   1 def info(self, title):
   2     '''Sets the progress to a debconf text description'''
   3     pass
   4 
   5 def get(self, question):
   6     '''Retrieves a debconf question's answer'''
   7     pass
   8 
   9 def substitute(self, template, substr, data):
  10     '''Substitutes substr with data in template'''
  11     pass

Install Example

   1 def install(self, target, progress, *args, **kwargs):
   2     progress.info('ubiquity/install/timezone')
   3     return InstallPlugin.install(self, target, progress, *args, **kwargs)

Example

In /usr/lib/ubiquity/plugins/foo.py

   1 import os
   2 from ubiquity.plugin import *
   3 
   4 # Plugin settings
   5 NAME='foo'
   6 AFTER='language'
   7 WEIGHT=30
   8 
   9 class PageGtk(PluginUI):
  10     plugin_prefix = 'tcpd'
  11     plugin_title = 'ubiquity/text/ready_details_label'
  12 
  13     def __init__(self, controller, *args, **kwargs):
  14         import gtk
  15         self.controller = controller
  16         self.page = gtk.CheckButton()
  17         self.page.set_name("paranoid-mode")
  18         self.plugin_widgets = self.page
  19 
  20     # Custom controls
  21     def get_mode(self):
  22         return self.page.get_active()
  23     def set_mode(self, on):
  24         self.page.set_active(on)
  25 
  26 class PageKde(PluginUI):
  27     # Just chosen because it's short and different.  You can use
  28     # any template name here -- it's not affected by prefix.
  29     plugin_breadcrumb = 'ubiquity/text/ready_details_label'
  30     plugin_prefix = 'tcpd'
  31 
  32     def __init__(self, controller, *args, **kwargs):
  33         from PyQt4.QtGui import QCheckBox
  34         self.controller = controller
  35         self.page = QCheckBox()
  36         self.page.setObjectName("paranoid-mode")
  37         self.plugin_widgets = self.page
  38 
  39     # Custom controls
  40     def get_mode(self):
  41         from PyQt4.QtCore import Qt
  42         return self.page.checkState() == Qt.Checked
  43     def set_mode(self, on):
  44         from PyQt4.QtCore import Qt
  45         self.page.setCheckState(Qt.Checked if on else Qt.Unchecked)
  46 
  47 class Page(Plugin):
  48     def prepare(self, unfiltered=False):
  49         # self.ui is PageGtk above
  50         mode = self.db.get('tcpd/paranoid-mode')
  51         self.ui.set_mode(mode == 'true')
  52         return Plugin.prepare(self, unfiltered=unfiltered)
  53 
  54     def ok_handler(self):
  55         mode = self.ui.get_mode()
  56         self.preseed_bool('tcpd/paranoid-mode', mode)
  57         Plugin.ok_handler(self)
  58 
  59 class Install(InstallPlugin):
  60     def install(self, target, progress, *args, **kwargs):
  61         progress.info('tcpd/paranoid-mode') # not really appropriate, but just an example
  62         cmd = 'touch' if self.db.get('tcpd/paranoid-mode') else 'rm'
  63         rv = os.system('%s %s' % (cmd, os.path.join(target, '/etc/bar')))
  64         import time
  65         time.sleep(45) # just to give you time to see this in the progress bar
  66         if rv:
  67             return rv
  68         return InstallPlugin.install(self, target, progress, *args, **kwargs)

Ubiquity/Plugins (last edited 2013-01-16 10:57:22 by fourdollars)