Functions

Plugins :: Elektra framework for plugins

Functions

PluginelektraPluginExport (const char *pluginName,...)
KeySetelektraPluginGetConfig (Plugin *handle)
void elektraPluginSetData (Plugin *plugin, void *data)
void * elektraPluginGetData (Plugin *plugin)
int elektraDocOpen (Plugin *handle, Key *errorKey)
int elektraDocClose (Plugin *handle, Key *errorKey)
int elektraDocGet (Plugin *handle, KeySet *returned, Key *parentKey)
int elektraDocSet (Plugin *handle, KeySet *returned, Key *parentKey)
PluginELEKTRA_PLUGIN_EXPORT (doc)

Detailed Description

History

Since:
Since version 0.4.9, Elektra can dynamically load different key storage plugins.
Since version 0.7.0 Elektra can have multiple backends, mounted at any place in the key database.
Since version 0.8.0 Elektra backends are composed out of multiple plugins.

Overview

There are different types of plugins for different concerns. The types of plugins handled in this document:

See http://www.libelektra.org/ftp/elektra/thesis.pdf for an detailed explanation and description of other types of plugins.

A plugin can implement anything related to configuration. There are 5 possible entry points, as described in this document:

Depending of the type of plugin you need not to implement all of them.

Note:
that the Doc within the name is just because the plugin described here is called doc (see src/plugins/doc/doc.c). Always replace Doc with the name of the plugin you are going to implement.

See the descriptions below what each of them is supposed to do.

Storage Plugins

A filter plugin is a plugin which already receives some keys. It may process or change the keyset. Or it may reject specific keysets which do not meet some criteria.

Filter Plugins

A storage plugin gets an empty keyset and constructs the information out from a file.

Other persistent storage then a file is not handled within this document because it involves many other issues. For files the resolver plugin already takes care for transactions and rollback.

Error and Wanrings

In any case of trouble, use ELEKTRA_SET_ERROR and return with -1. You might add warnings with ELEKTRA_ADD_WARNING if you think it is appropriate.


Function Documentation

Plugin* ELEKTRA_PLUGIN_EXPORT ( doc   ) 

All KDB methods implemented by the plugin can have random names, except ELEKTRA_PLUGIN_EXPORT. This is the single symbol that will be looked up when loading the plugin, and the first method of the backend implementation that will be called.

You need to use a macro so that both dynamic and static loading of the plugin works.

The first paramter is the name of the plugin. Then every plugin should have: ELEKTRA_PLUGIN_OPEN, ELEKTRA_PLUGIN_CLOSE, ELEKTRA_PLUGIN_GET, ELEKTRA_PLUGIN_SET and optionally ELEKTRA_PLUGIN_ERROR.

The list is terminated with ELEKTRA_PLUGIN_END.

You must use static "char arrays" in a read only segment. Don't allocate storage, it won't be freed.

Returns:
Plugin
See also:
elektraPluginExport()
int elektraDocClose ( Plugin handle,
Key errorKey 
)

Finalize the plugin.

Called prior to unloading the plugin dynamic module. Should ensure that no functions or static/global variables from the module will ever be accessed again.

Make sure to free all memory that your plugin requested at runtime.

After this call, libelektra.so will unload the plugin library, so this is the point to shutdown any affairs with the storage.

Parameters:
handle contains internal information of the plugin
errorKey is needed to add warnings using ELEKTRA_ADD_WARNING
Return values:
0 on success
See also:
kdbClose()
elektraPluginGetData(), elektraPluginSetData() and elektraPluginGetConfig()
int elektraDocGet ( Plugin handle,
KeySet returned,
Key parentKey 
)

Retrieve information from a permanent storage to construct a keyset.

Introduction

The elektraDocGet() function handle everything related to receiving keys.

Storage Plugins

For storage plugins the filename is written in the value of the parentKey. So the first task of the plugin is to open that file. Then it should parse its content and construct a keyset with all information of that file.

You need to be able to reconstruct the same file with the information of the keyset. So be sure to copy all comments, whitespaces and so on into some metadata of the keys. Otherwise the information is lost after writing the file the next time.

Now lets look at an example how the typical elektraDocGet() might be implemented. To explain we introduce some pseudo functions which do all the work with the storage (which is of course 90% of the work for a real plugin):

  • parse_key will parse a key and a value from an open file handle

The typical loop for a storage plugin will be like:

int elektraDocGet(Plugin *handle, KeySet *returned, const Key *parentKey)
{
        // contract handling, see below

        FILE *fp = fopen (keyString(parentKey), "r");
        char *key;
        char *value;

        while ((n = parse_key(fp, &key, &value)) >= 1)
        {
                Key *read = keyNew(0);
                if (keySetName(read, key) == -1)
                {
                        fclose (fp);
                        keyDel (read);
                        ELEKTRA_SET_ERROR(59, parentKey, key);
                        return -1;
                }
                keySetString(read, value);

                ksAppendKey (returned, read);
                free (key);
                free (value);
        }

        if (feof(fp) == 0)
        {
                fclose (fp);
                ELEKTRA_SET_ERROR(60, parentKey, "not at the end of file");
                return -1;
        }

        fclose (fp);

        return 1; // success
}

Filter Plugins

For filter plugins the actual task is rather unspecified. You basically can do anything with the keyset. To get roundtrip properties you might want to undo any changes you did in elektraDocSet().

The pseudo functions (which do the real work) are:

  • do_action() which processes every key in this filter
int elektraDocGet(Plugin *handle, KeySet *returned, Key *parentKey)
{
        // contract handling

        Key *k;
        ksRewind (returned);
        while ((k = ksNext (returned)) != 0)
        {
                do_action(k);
        }

        return 1; // success
}

Conditions

Todo:
needs some updates
Precondition:
The caller kdbGet() will make sure before you are called that the parentKey:
  • is a valid key (means that it is a system or user key).
  • is below (see keyIsBelow()) your mountpoint and that your plugin is responsible for it. and that the returned:
  • is a valid keyset.
  • has all keys with the flag KEY_FLAG_SYNC set.
  • contains only valid keys direct below (see keyIsDirectBelow()) your parentKey. That also means, that the parentKey will not be in that keyset.
  • is in a sorted order, see ksSort(). and that the handle:
    • is a valid KDB for your plugin.
    • that elektraPluginhGetBackendHandle() contains the same handle for lifetime kdbOpen() until elektraPluginClose() was called.
The caller kdbGet() will make sure that afterwards you were called, whenever the user requested it with the options, that:
  • hidden keys they will be thrown away.
  • dirs or only dirs kdbGet() will remove the other.
  • you will be called again recursively with all subdirectories.
  • the keyset will be sorted when needed.
  • the keys in returned having KEY_FLAG_SYNC will be sorted out.
Invariant:
There are no global variables and elektraPluginSetData() stores all information. The handle is to be guaranteed to be the same if it is the same plugin.
Postcondition:
The keyset returned has the parentKey and all keys direct below (keyIsDirectBelow()) with all information from the storage. Make sure to return all keys, all directories and also all hidden keys. If some of them are not wished, the caller kdbGet() will drop these keys, see above.

Updating

To get all keys out of the storage over and over again can be very inefficient. You might know a more efficient method to know if the key needs update or not, e.g. by stating it or by an external time stamp info. For file storage plugins this is automatically done for you. For other types (e.g. databases) you need to implement your own resolver doing this.

Note:
If any calls you use change errno, make sure to restore the old errno.
See also:
kdbGet() for caller.
Parameters:
handle contains internal information of opened key database
returned contains a keyset where the function need to append the keys got from the storage. There might be also some keys inside it, see conditions. You may use them to support efficient updating of keys, see Updating.
parentKey contains the information below which key the keys should be gotten.
Returns:
1 on success
0 when nothing was to do
-1 on failure, the current key in returned shows the position. use ELEKTRA_SET_ERROR of kdberrors.h to define the error code
int elektraDocOpen ( Plugin handle,
Key errorKey 
)

Initialize the plugin.

This is the first method called after dynamically loading this plugin.

This method is responsible for:

  • plugin's specific configuration gathering
  • all plugin's internal structs initialization
  • if unavoidable initial setup of all I/O details such as opening a file, connecting to a database, setup connection to a server, etc.

You may also read the configuration you can get with elektraPluginGetConfig() and transform it into other structures used by your plugin.

Note:
The plugin must not have any global variables. If you do Elektra will not be threadsafe. It is not a good assumption that your plugin will be opened only once.

Instead you can use elektraPluginGetData() and elektraPluginSetData() to store and get any information related to your plugin.

The correct substitute for global variables will be:

struct _GlobalData{ int global; };
typedef struct _GlobalData GlobalData;
int elektraDocOpen(Plugin *handle, Key *errorKey)
{
        GlobalData *data;
        data=malloc(sizeof(GlobalData));
        data.global = 20;
        elektraPluginSetData(handle,data);
}
Note:
Make sure to free everything you allocate here within elektraDocClose().
Returns:
0 on success
Parameters:
handle contains internal information of opened key database
errorKey defines an errorKey
See also:
kdbOpen() which will call elektraDocOpen()
elektraPluginGetData(), elektraPluginSetData() and elektraPluginGetConfig()
int elektraDocSet ( Plugin handle,
KeySet returned,
Key parentKey 
)

Store a keyset permanently.

This function does everything related to set and remove keys in a plugin. There is only one function for that purpose to make implementation and locking much easier.

The keyset returned was filled in with information from the application using elektra and the task of this function is to store it in a permanent way so that a subsequent call of elektraPluginGet() can rebuild the keyset as it was before. See the live cycle of a comment to understand:

void usercode (Key *key)
{
        keySetComment (key, "mycomment"); // the usercode stores a comment for the key
        ksAppendKey(keyset, key); // append the key to the keyset
        kdbSet (handle, keyset, 0, 0);
}

// so now kdbSet is called
int kdbSet(KDB *handle, KeySet *keyset, Key *parentKey, options)
{
        // find appropriate plugin
        elektraPluginSet (handle, keyset, 0); // the keyset with the key will be passed to this function
}

// so now elektraPluginSet(), which is the function described here, is called
elektraPluginSet(KDB *handle, KeySet *keyset, Key *parentKey)
{
        // the task of elektraPluginSet is now to store the comment
        Key *key = ksCurrent (keyset); // get out the key where the user set the comment before
        char *comment = allocate(size);
        keyGetComment (key, comment, size);
        savetodisc (comment);
}

Of course not only the comment, but all information of every key in the keyset returned need to be stored permanetly. So this specification needs to give an exhaustive list of information present in a key.

Precondition:
The keyset returned holds all keys which must be saved permanently for this keyset. The keyset is sorted and rewinded. All keys having children must be true for keyIsDir().
The parentKey is the key which is the ancestor for all other keys in the keyset. The first key of the keyset returned has the same keyname. The parentKey is below the mountpoint, see kdbhGetMountpoint().
The caller kdbSet will fulfill following parts:
  • If the user does not want hidden keys they will be thrown away. All keys in returned need to be stored permanently.
  • If the user does not want dirs or only dirs kdbGet() will remove the other.
  • Sorting of the keyset. It is not important in which order the keys are appended. So make sure to set all keys, all directories and also all hidden keys. If some of them are not wished, the caller kdbSet() will sort them out.
Invariant:
There are no global variables and kdbhGetBackendData() only stores information which can be regenerated any time. The handle is the same when it is the same plugin.
Postcondition:
The information of the keyset returned is stored permanently.

Lock your permanent storage in an exclusive way, no access of a concurrent elektraPluginSet_plugin() or kdbGet() is possible and these methods block until the function has finished. Otherwise declare kdbcGetnoLock().

See also:
kdbSet() for caller.
Parameters:
handle contains internal information of opened key database
returned contains a keyset with relevant keys
parentKey contains the information where to set the keys
Returns:
When everything works gracefully return the number of keys you set. The cursor position and the keys remaining in the keyset are not important.
Return 0 on success with no changed key in database
Return -1 on failure.
Note:
If any calls you use change errno, make sure to restore the old errno.
Error:
In normal execution cases a positive value will be returned. But in some cases you are not able to set keys and have to return -1. If you declare kdbcGetnoError() you are done, but otherwise you have to set the cause of the error. (Will be added with 0.7.1)

You also have to make sure that ksGetCursor() shows to the position where the error appeared.

Plugin* elektraPluginExport ( const char *  pluginName,
  ... 
)

This function must be called by a plugin's elektraPluginSymbol() to define the plugin's methods that will be exported.

See ELEKTRA_PLUGIN_EXPORT() how to use it for plugins.

The order and number of arguments are flexible (as in keyNew() and ksNew()) to let libelektra.so evolve without breaking its ABI compatibility with plugins. So for each method a plugin must export, there is a flag defined by plugin_t. Each flag tells kdbPluginExport() which method comes next. A plugin can have no implementation for a few methods that have default inefficient high-level implementations and to use these defaults, simply don't pass anything to kdbPluginExport() about them.

Parameters:
pluginName a simple name for this plugin
Returns:
an object that contains all plugin informations needed by libelektra.so
KeySet* elektraPluginGetConfig ( Plugin handle  ) 

Returns the configuration of that plugin.

Parameters:
handle a pointer to the plugin
Returns:
keyset to the configuration for that plugin
void* elektraPluginGetData ( Plugin plugin  ) 

Get a pointer to any plugin related data stored before.

Parameters:
plugin a pointer to the plugin
Returns:
a pointer to the data
void elektraPluginSetData ( Plugin plugin,
void *  data 
)

Store a pointer to any plugin related data.

Parameters:
plugin a pointer to the plugin
data the pointer to the data