|
Elektra
0.8.18
|
spec is a special namespace that describes via meta data the semantics of individual keys.
Most importantly it:
0. describes which keys are of interest to the application
It is, however, not limited to this but can express any other key database semantics (new plugins might be necessary, though).
The most simple use is to enlist all keys that will be used by an application and maybe give a description for them (we use ini syntax in this document):
``` [mykey]
[folder/anotherkey] description = set this key if you want another behaviour ```
So Keys in spec allow us to specify which keys are read by the application. The description key will be copied (referred to) to folder/anotherkey of any namespace, so that it can easily be accessed.
Other features are directly implemented in ksLookup. When cascading keys (those starting with /) are used following features are now available (in the meta data of respective spec-keys):
override/#: use these keys in favour of the key itself (note that # is the syntax for arrays, e.g. #0 for the first element, #_10 for the 11th and so on)namespace/#: instead of using all namespaces in the predefined order, one can specify which namespaces should be searched in which orderfallback/#: when no key was found in any of the (specified) namespaces the fallback-keys will be searcheddefault: this value will be used if nothing else was foundE.g.
``` [promise] default=20 fallback/#0=/somewhere/else namespace/#0=user ```
spec/sw/app/#0 we specify, that for the key /sw/app/#0/promise only the namespace user should be used./somewhere/else is present, we will use this key instead. The fallback technique is very powerful: it allows us to have (recursive) links between applications. In the example above, the application is tricked in receiving e.g. the key user/somewhere/else when promise was not available.20 will be used as default, even if no configuration file is found.Note that the fallback, override and cascading works on key level, and not like most other systems have implemented, on configuration file level.
You can tag any key using the check meta data so that it will be validated.
For example:
``` [folder/anotherkey] check/validation = abc.* check/validation/message = def does not start with abc ```
In the spec namespace you can also specify mountpoints. First you need the meta key mountpoint and a configuration file name. Otherwise, it basically works in the same way as the contracts in plugins using infos and config:
``` [] mountpoint=file.abc config/plugin/code/escape = 40 config/plugin/lua#abc/script = abc_storage.lua infos/author = Markus Raab infos/needs = resolver_abc rename code lua::abc infos/recommends = hexcode ```
1.8.8