Framework Extensions
Last updated
Last updated
Cement defines an , as well as the default that implements the interface. Its purpose is to manage loading framework extensions and making them usable by the application. Extensions are similar to , but at the framework level (application agnostic).
Cement often includes multiple handler implementations of an interface that may or may not have additional features or functionality than the interface requires. The documentation below only references usage based on the interface and default handler (not the full capabilities of an implementation).
API References:
The following options under modify extension handling:
Option
Description
extension_handler
extensions
In general, extensions are only loaded and accessed by the framework. That said the extension handler can be used to access information about loaded extensions, as well as manually load extensions if necessary.
The extension system is a mechanism for dynamically loading code to extend the functionality of the framework. In general, this includes the registration of interfaces, handlers, and/or hooks but can include controllers, command-line options, or anything else.
This would produce something like the following:
You will notice that extensions are essentially the same as application plugins. The difference is found both in when/how the code is loaded, as well as the purpose of that code.
To load the above example into our application, we just add it to the list of App.Meta.extensions
. Let's assume the extension code lives in myapp/ext/ext_myextension.py
:
Some use cases may require that end-users be able to modify what framework extensions are loaded depending on the needs of the application, while most extensions are defined by the developer to support key features.
The following example demonstrates an application loading extensions defined via the extensions
setting under the application's configuration settings.
Note that extensions loaded in this way will happen after the config handler is setup. Normally, extensions are loaded just before the configuration files are read. Therefore, some extensions may not be compatible with this method if they attempt to perform any actions before app.setup()
completes (such as in early framework hooks before configuration files are loaded).
A handler class that implements the Extension Interface. This can be a string (label of a registered handler), an uninstantiated class, or an instantiated class object. Default:
A list of additional framework extensions to load. Will be merged together with .
The preferred method of creating an extension would be via the included :
Extensions are loaded when is called on an application. Cement automatically loads all extensions listed under the application's and meta options.