calamares/src/modules
Adriaan de Groot fee1794924 [partition] Use NamedEnumTable support code
- reduce amount of custom code by using the (new) generic implementation
2019-01-18 15:56:51 +01:00
..
bootloader [modules] Minor documentation work on modules a-g 2018-06-26 05:47:23 -04:00
contextualprocess CMake: clean up test setup 2018-10-05 09:41:37 -04:00
displaymanager [displaymanager] fix desktop_environment_setup ldm 2018-08-26 21:15:03 +02:00
dracut Documentation: change http links to GitHub to https 2017-12-20 08:39:09 -05:00
dracutlukscfg Documentation: change http links to GitHub to https 2017-12-20 08:39:09 -05:00
dummycpp [modules] Minor documentation work on modules a-g 2018-06-26 05:47:23 -04:00
dummyprocess Add option to run process jobmodules in chroot. 2014-08-12 14:26:10 +02:00
dummypython [modules] Minor documentation work on modules a-g 2018-06-26 05:47:23 -04:00
dummypythonqt i18n: [dummypythonqt] Automatic merge of Transifex translations 2019-01-09 14:06:46 +01:00
finished Copyright: update copyright lines on files touched in 2018 2018-06-15 05:59:11 -04:00
fsresizer [fsresizer] Be explicit about type of string 2019-01-14 12:49:58 +01:00
fstab [modules] Documentation for fstab, grubcfg, mkinitcpio 2018-06-26 06:39:30 -04:00
grubcfg grubcfg: Only try to decrypt disk that /boot is on 2018-08-25 15:21:40 +02:00
hwclock Copyright: update copyright lines on files touched in 2018 2018-06-15 05:59:11 -04:00
initcpio [modules] Documentation for fstab, grubcfg, mkinitcpio 2018-06-26 06:39:30 -04:00
initcpiocfg Merge branch 'kpmcore-3.2' 2018-01-02 13:25:11 +01:00
initramfs Documentation: change http links to GitHub to https 2017-12-20 08:39:09 -05:00
initramfscfg Documentation: change http links to GitHub to https 2017-12-20 08:39:09 -05:00
interactiveterminal [interactiveterminal] Make optional if requirements not met 2018-05-26 07:09:01 -04:00
keyboard [locale] prefer native language and country names when available 2018-12-13 23:18:37 +01:00
license Copyright: update copyright lines on files touched in 2018 2018-06-15 05:59:11 -04:00
locale Merge branch 'release-3.2.3' 2019-01-09 13:07:32 +01:00
localecfg [localecfg] Fix error in string-formatting. 2018-09-30 18:56:48 +02:00
luksbootkeyfile Documentation: change http links to GitHub to https 2017-12-20 08:39:09 -05:00
luksopenswaphookcfg [modules] Configuration documentation for mount and luksopenswaphookcfg 2018-06-26 06:50:16 -04:00
machineid Documentation: change http links to GitHub to https 2017-12-20 08:39:09 -05:00
mount [mount] Handle missing configuration keys gracefully 2018-11-28 13:26:40 +01:00
netinstall Copyright: update copyright lines on files touched in 2018 2018-06-15 05:59:11 -04:00
networkcfg Documentation: change http links to GitHub to https 2017-12-20 08:39:09 -05:00
openrcdmcryptcfg Documentation: change http links to GitHub to https 2017-12-20 08:39:09 -05:00
packages [packages] Fix cut-and-paste-o in packages try_remove 2019-01-03 14:36:48 +01:00
partition [partition] Use NamedEnumTable support code 2019-01-18 15:56:51 +01:00
plasmalnf Copyright: fix bad email address 2018-06-15 06:15:43 -04:00
plymouthcfg Copyright: update copyright lines on files touched in 2018 2018-06-15 05:59:11 -04:00
preservefiles [preservefiles] Apply restrictive default permissions 2018-10-01 11:31:54 +02:00
removeuser [removeuser] Minor documentation 2018-06-26 06:52:37 -04:00
services-openrc [services-openrc] Introduce *mandatory* subkey 2018-06-27 11:12:33 -04:00
services-systemd [services-systemd] Follow the flexible example of openrc 2018-06-27 11:25:11 -04:00
shellprocess CMake: clean up test setup 2018-10-05 09:41:37 -04:00
summary Documentation: change http links to GitHub to https 2017-12-20 08:39:09 -05:00
tracking Copyright: fix bad email address 2018-06-15 06:15:43 -04:00
umount [umount] Make a pretty_name() 2018-02-20 04:49:51 -05:00
unpackfs finally !must! never fail unhandled 2017-12-26 22:25:40 +01:00
users CMake: clean up test setup 2018-10-05 09:41:37 -04:00
webview Documentation: change http links to GitHub to https 2017-12-20 08:39:09 -05:00
welcome [libcalamaresui] Refactor: move LocaleLabel to UI library 2018-12-14 10:52:55 +01:00
CMakeLists.txt CMake: improve error-handling for USE_* 2018-06-26 05:33:01 -04:00
globalStorage.yaml Consistency: calamares_main ==> run; global_storage => globalStorage 2014-07-25 16:46:12 +02:00
README.md [libcalamaresui] Adjust the emergency-ness of modules 2018-06-15 09:32:19 -04:00
test_conf.cpp [calamares] Explain config-file failures better 2018-09-20 07:48:06 -04:00
testmodule.py Documentation: change http links to GitHub to https 2017-12-20 08:39:09 -05:00

Calamares modules

Calamares modules are plugins that provide features like installer pages, batch jobs, etc. An installer page (visible to the user) is called a "view", while other modules are "jobs".

Each Calamares module lives in its own directory.

All modules are installed in $DESTDIR/lib/calamares/modules.

Module types

There are two types of Calamares module:

  • viewmodule, for user-visible modules. These may be in C++, or PythonQt.
  • jobmodule, for not-user-visible modules. These may be done in C++, Python, or as external processes.

Module interfaces

There are three (four) interfaces for Calamares modules:

  • qtplugin,
  • python (jobmodules only),
  • pythonqt (optional),
  • process (jobmodules only).

Module directory

Each Calamares module lives in its own directory. The contents of the directory depend on the interface and type of the module.

Module descriptor

A Calamares module must have a module descriptor file, named module.desc. For C++ (qtplugin) modules using CMake as a build- system and using the calamares_add_plugin() function -- this is the recommended way to create such modules -- the module descriptor file is optional, since it can be generated by the build system. For other module interfaces, the module descriptor file is required.

The module descriptor file must be placed in the module's directory. The module descriptor file is a YAML 1.2 document which defines the module's name, type, interface and possibly other properties. The name of the module as defined in module.desc must be the same as the name of the module's directory.

Module descriptors must have the following keys:

  • name (an identifier; must be the same as the directory name)
  • type ("job" or "view")
  • interface (see below for the different interfaces; generally we refer to the kinds of modules by their interface)

Module descriptors may have the following keys:

  • required unimplemented (a list of modules which are required for this module to operate properly)
  • emergency (a boolean value, set to true to mark the module as an emergency module)

Module-specific configuration

A Calamares module may read a module configuration file, named <modulename>.conf. If such a file is present in the module's directory, it is shipped as a default configuration file. The module configuration file, if it exists, is a YAML 1.2 document which contains a YAML map of anything.

All default module configuration files are installed in $DESTDIR/share/calamares/modules but can be overridden by files with the same name placed manually (or by the packager) in /etc/calamares/modules.

C++ modules

Currently the recommended way to write a module which exposes one or more installer pages (viewmodule) is through a C++ and Qt plugin. Viewmodules must implement Calamares::ViewStep. They can also implement Calamares::Job to provide jobs.

To add a Qt plugin module, put it in a subdirectory and make sure it has a CMakeLists.txt with a calamares_add_plugin call. It will be picked up automatically by our CMake magic. The module.desc file is optional.

Python modules

Modules may use one of the python interfaces, which may be present in a Calamares installation (but also may not be). These modules must have a module.desc file. The Python script must implement one or more of the Python interfaces for Calamares -- either the python jobmodule interface, or the experimental pythonqt job- and viewmodule interfaces.

To add a Python or process jobmodule, put it in a subdirectory and make sure it has a module.desc. It will be picked up automatically by our CMake magic. For all kinds of Python jobs, the key script must be set to the name of the main python file for the job. This is almost universally "main.py".

CMakeLists.txt is not used for Python and process jobmodules.

Calamares offers a Python API for module developers, the core Calamares functionality is exposed as libcalamares.job for job data, libcalamares.globalstorage for shared data and libcalamares.utils for generic utility functions. Documentation is inline.

All code in Python job modules must obey PEP8, the only exception are libcalamares.globalstorage keys, which should always be camelCaseWithLowerCaseInitial to match the C++ identifier convention.

For testing and debugging we provide the testmodule.py script which fakes a limited Calamares Python environment for running a single jobmodule.

Python Jobmodule

A Python jobmodule is a Python program which imports libcalamares and has a function run() as entry point. The function run() must return None if everything went well, or a tuple (str,str) with an error message and description if something went wrong.

PythonQt Jobmodule

A PythonQt jobmodule implements the experimental Job interface by defining a subclass of something.

PythonQt Viewmodule

A PythonQt viewmodule implements the experimental View interface by defining a subclass of something.

Process jobmodules

A process jobmodule runs a (single) command. The interface is "process", while the module type must be "job" or "jobmodule".

The key command should have a string as value, which is passed to the shell -- remember to quote it properly.

Emergency Modules

Only C++ modules and job modules may be emergency modules. If, during an exec step in the sequence, a module fails, installation as a whole fails and the install is aborted. If there are emergency modules in the same exec block, those will be executed before the installation is aborted. Non-emergency modules are not executed.

If an emergency-module fails while processing emergency-modules for another failed module, that failure is ignored and emergency-module processing continues.

Use the EMERGENCY keyword in the CMake description of a C++ module to generate a suitable module.desc.

A module that is marked as an emergency module in its module.desc must also set the emergency key to true in its configuration file. If it does not, the module is not considered to be an emergency module after all (this is so that you can have modules that have several instances, only some of which are actually needed for emergencies.