Elektra  0.9.5
Plugin: keytometa

Note: This plugin uses a deprecated way to store comments.

This plugin converts keys into metakeys of other keys. The keys to be converted are tagged with special metadata. Converting keys into metakeys basically raises two questions:

The keys to be converted are identified by metakeys below convert (e.g. convert/append). The keys receiving the resulting metadata are identified by append strategies. The plugin currently supports the following metakeys for controlling the conversion:

The keys converted to metadata are restored as soon as the keyset is written back. However, the plugin is stateful. This means that a keyset must be read and keys must be converted by the plugin in order to undo this conversion in the set direction. Modifications to the metadata which resulted from converted keys are propagated back to the corresponding key (see merging for more details).

The keys are ordered by the "order" metadata. If two keys are equal according to the order metadata, they are ordered by name instead.

The append strategy specifies which key will receive the resulting metadata. Currently the plugin supports the following strategies:

The metadata is added to the first existing parent of the converted key. This does not necessarily have to be the parent of the keyset. If no such key is found, the first key in a sorted keyset will receive the metadata (this is usually the parent key of the keyset). For example consider the following keyset:

user:/config/key1
user:/config/key1/child1
user:/config/key2
user:/config/key2/deeper/child2
user:/config/child3

If child1, child2 and child3 were tagged with convert/append = parent, key1 would receive the metadata from child1 and child3. Key2 would receive the metadata from child2.

The metadata is added to the key following the converted key in a sorted keyset. If no such key is found (for example because the key to be converted is the last one), the strategy is reverted to parent. For example consider the following keyset:

user:/config/deeper/key1
user:/config/key2
user:/config/key3
user:/config/key4

If key1 and key3 were tagged with convert/append = next, key2 would receive the metadata resulting from key1 and key4 would receive the metadata resulting from key3.

The metadata is added to the key preceding the converted key in a sorted keyset. If no such key is found (for example because the key to be converted is the first one), the strategy is reverted to parent. For example consider the following keyset:

user:/config/key1
user:/config/deeper/key2
user:/config/key3
user:/config/key4

If key2 and key4 were tagged with convert/append = previous, key1 would receive the metadata resulting from key2 and key3 would receive the metadata resulting from key4.

The metadata resulting from a converted key is never appended to another key which is going to be converted. This prevents that the data of converted keys is invisible after the conversion. Instead the metadata resulting from different converted keys with the same append strategy is merged together (separated by a newline). Keys with different append strategies are skipped, until either a key with the same strategy is found (which is simply merged as described above) or the target key is found. The keys are always processed in the order of an ordered keyset. For example consider the following keyset:

user:/config/key0
user:/config/key1 = value1
user:/config/key2 = value2
user:/config/key3 = value3
user:/config/key4 = value4
user:/config/key5

If key1 and key2 were tagged with convert/append = next and key3 and key4 were tagged with convert/append = previous the following would happen:

The option convert/append/samelevel can be used to force that the metadata is only appended to a key on the same hierarchy level. If no such key is found, the strategy is reverted to parent. Note, that the value of the samelevel key does not matter. Only its existence is relevant. For example consider the following keyset:

user:/config/key0
user:/config/key1/child1
user:/config/key2
user:/config/key3/child2
user:/config/key4
user:/config/key5
user:/config/key6

If child1, child2 and key4 were each tagged with convert/append = next and child2 and key4 were tagged with convert/append/samelevel, key2 would receive the metadata resulting from child1. key0 would receive the metadata resulting from child2 (strategy reverted to parent, as the samelevel request cannot be fulfilled). key5 would receive the metadata resulting from key4.

The keytometa plugin was initially developed to aid the integration of the Augeas plugin. The Augeas plugin represents comments in configuration files as keys. However, in Elektra comments are usually represented within comment metakeys. Therefore it would be desirable to convert all comment keys to comment metakeys. This is achieved by adding the following to the Augeas plugin contract.

// ...
keyNew ("system:/elektra/modules/augeas/config/needs/glob/get/#1",
KEY_VALUE, "*#comment*",
KEY_META, "convert/metaname", "comment",
KEY_META, "convert/append", "next",
keyNew ("system:/elektra/modules/augeas/config/needs/glob/get/#1/flags",
KEY_VALUE, "", /* disable the path matching mode */
// ...
;

Tagging the keys to be converted to comment metakeys happens via the glob plugin. The metadata set on the key glob/get/#1 is copied to each key that matches the pattern *#comment*, i.e. each comment key generated by the Augeas plugin. convert/metaname = comment because we want the comment keys to be converted to the comment metadata. convert/append = next is chosen because usually comments occur before the key they describe.