Elektra  0.9.7
Macros | Functions
Plugins

Elektra plugin framework. More...

Macros

#define ELEKTRA_PLUGIN_FUNCTION(function)   ELEKTRA_PLUGIN_FUNCTION2 (ELEKTRA_PLUGIN_NAME_C, function)
 Declare a plugin's function name suitable for compilation variants (see doc/tutorials). More...
 
#define ELEKTRA_README   ELEKTRA_README2 (ELEKTRA_PLUGIN_NAME_C)
 The filename for inclusion of the readme for compilation variants (see doc/tutorials). More...
 
#define ELEKTRA_SET_ERROR(number, key, text)
 Sets the error in the keys metadata. More...
 
#define ELEKTRA_SET_ERRORF(number, key, formatstring, ...)
 Sets the error in the keys metadata. More...
 
#define ELEKTRA_ADD_WARNINGF(number, key, formatstring, ...)
 Adds a warning in the keys metadata. More...
 
#define ELEKTRA_ADD_WARNING(number, key, text)
 Adds a warning in the keys metadata. More...
 
#define ELEKTRA_SET_ERROR_GET(parentKey)
 Set error in kdbGet() when opening the file failed. More...
 
#define ELEKTRA_SET_ERROR_SET(parentKey)
 Set error in kdbSet() when opening the file failed. More...
 

Functions

Plugin * elektraPluginExport (const char *pluginName,...)
 Allows one to Export Methods for a Plugin. More...
 
KeySet * elektraPluginGetConfig (Plugin *handle)
 Returns the configuration of that plugin. More...
 
void elektraPluginSetData (Plugin *plugin, void *data)
 Store a pointer to plugin specific data. More...
 
void * elektraPluginGetData (Plugin *plugin)
 Get a pointer to the plugin specific data stored before. More...
 
KeySet * elektraPluginGetGlobalKeySet (Plugin *plugin)
 Get a pointer to the global keyset. More...
 
int elektraDocOpen (Plugin *handle, Key *warningsKey)
 Initialize data for the plugin. More...
 
int elektraDocClose (Plugin *handle, Key *warningsKey)
 Finalize the plugin. More...
 
int elektraDocGet (Plugin *handle, KeySet *returned, Key *parentKey)
 Get data from storage to application. More...
 
int elektraDocSet (Plugin *handle, KeySet *returned, Key *parentKey)
 Set data from application to storage. More...
 
int elektraDocCommit (Plugin *handle, KeySet *returned, Key *parentKey)
 Make changes to storage final. More...
 
int elektraDocError (Plugin *handle, KeySet *returned, Key *parentKey)
 Rollback in case of errors. More...
 
int elektraDocCheckConf (Key *errorKey, KeySet *conf)
 Validate plugin configuration at mount time. More...
 

Detailed Description

Elektra plugin framework.

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

To get started with writing plugins, first read our Plugin Tutorial.

A plugin can implement any functionality related to configuration. There are 6 possible entry points for a plugin.

Additionally, make sure that you write a contract in the README.md. It is used by the build system and the mounting tools.

Plugins should not change the keyname of the key that is passed to the entry points (warningsKey and parentKey in this documentation). These keys might be members in keysets.

The names described here contain "Doc" within the method's name just because the plugin described in this document is called doc (the doxygen source was generated from src/plugins/doc/doc.h). Always replace Doc with the name of the plugin you are going to implement or use ELEKTRA_PLUGIN_FUNCTION.

Overview
There are different types of plugins for different concerns. They all only have the entry points as defined above. The types of plugins handled in this document:
  • A storage plugin gets an empty keyset in elektraDocGet() and constructs the information out from a file. In elektraDocSet() the keyset is written to 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 of transactions and rollback. So the storage plugin is the source and dump as known from pipes and filters.
  • A filter plugin is a plugin which operates on existing keys. It may process or change the keyset. Or it may reject specific keysets which do not meet some criteria.

Use following include to have the functions that are not implemented by you available:

#include <kdbplugin.h>
Methods for plugin programing.
Error and Warnings
In case of trouble, in some methods you can use the macro ELEKTRA_SET_ERROR (in other methods it is not allowed). You might add warnings with the macro ELEKTRA_ADD_WARNING. You can also use their pedants that accept a format string as known by printf: ELEKTRA_SET_ERRORF and ELEKTRA_ADD_WARNINGF. Make sure to define and use a macro in the error specification (/src/error/specification) so that you can easily renumber your error/warning codes:
number:60
description:Invalid Line encountered
severity:error
macro:NOEOF
module:simpleini

Use following include to have the macros for setting the error and adding the warnings available:

// using namespace ckdb; // for C++
#include <kdberrors.h>
Provides all macros and definitions which are used for emitting error or warnings.

and then you can use:

ELEKTRA_SET_VALIDATION_SYNTACTIC_ERROR ( parentKey, "Not at the end of file");

Note that you also need to return -1 in the case of error. See individual description of entry points to implement below.

Global KeySet Handle

This keyset allows plugins to exchange information with other plugins.

The keyset is initialized by the KDB for all plugins, except for manually created plugins with elektraPluginOpen(). The global keyset is tied to a KDB handle, initialized on kdbOpen() and deleted on kdbClose().

Obtain a handle to the global keyset and work with it:

KeySet * globalKS = elektraPluginGetGlobalKeySet (plugin);
// now we can read something from the global keyset
// or add something for us or others to read
Key * important = keyNew ("user:/global/myDocKey", KEY_VALUE, "global plugins can see me", KEY_END);
ksAppendKey (globalKS, important);
Key * keyNew(const char *name,...)
A practical way to fully create a Key object in one step.
Definition: key.c:141
@ KEY_END
Definition: kdbenum.c:97
@ KEY_VALUE
Definition: kdbenum.c:89
ssize_t ksAppendKey(KeySet *ks, Key *toAppend)
Appends a Key to the end of ks.
Definition: keyset.c:786
KeySet * elektraPluginGetGlobalKeySet(Plugin *plugin)
Get a pointer to the global keyset.
Definition: plugin/plugin.c:167

Clean up keys which you do not need any more, to keep the global keyset compact:

// clean up parts of the global keyset which we do not need
Key * cutKey = keyNew ("user:/global/myDocKey", KEY_END);
KeySet * notNeeded = ksCut (globalKS, cutKey);
ksDel (notNeeded);
int ksDel(KeySet *ks)
A destructor for KeySet objects.
Definition: keyset.c:451
KeySet * ksCut(KeySet *ks, const Key *cutpoint)
Cuts out all Keys from KeySet ks that are below or at cutpoint.
Definition: keyset.c:1281
Further help
Do not hesitate to open an issue if anything is unclear.

Macro Definition Documentation

◆ ELEKTRA_ADD_WARNING

#define ELEKTRA_ADD_WARNING (   number,
  key,
  text 
)

Adds a warning in the keys metadata.

Include kdberrors.h to make it work:

// using namespace ckdb; // for C++
#include <kdberrors.h>
Parameters
numberthe warning number from src/error/specification
keyto write the error to
textadditional text for the user

◆ ELEKTRA_ADD_WARNINGF

#define ELEKTRA_ADD_WARNINGF (   number,
  key,
  formatstring,
  ... 
)

Adds a warning in the keys metadata.

Include kdberrors.h to make it work:

// using namespace ckdb; // for C++
#include <kdberrors.h>
Parameters
numberthe warning number from src/error/specification
keyto write the error to
formatstringa format string as in printf
...further arguments as in printf

◆ ELEKTRA_PLUGIN_FUNCTION

#define ELEKTRA_PLUGIN_FUNCTION (   function)    ELEKTRA_PLUGIN_FUNCTION2 (ELEKTRA_PLUGIN_NAME_C, function)

Declare a plugin's function name suitable for compilation variants (see doc/tutorials).

It can be used in the same way as elektraPluginExport().

See also
ELEKTRA_PLUGIN_EXPORT
Parameters
pluginthe name of the plugin
functionwhich function it is (open, close, get, set, error, commit)

◆ ELEKTRA_README

#define ELEKTRA_README   ELEKTRA_README2 (ELEKTRA_PLUGIN_NAME_C)

The filename for inclusion of the readme for compilation variants (see doc/tutorials).

Parameters
pluginthe name of the plugin

◆ ELEKTRA_SET_ERROR

#define ELEKTRA_SET_ERROR (   number,
  key,
  text 
)

Sets the error in the keys metadata.

Include kdberrors.h to make it work. Only a single error can be written to the key.

// using namespace ckdb; // for C++
#include <kdberrors.h>
Parameters
numberthe error number from src/error/specification
keyto write the error to
textadditional text for the user

◆ ELEKTRA_SET_ERROR_GET

#define ELEKTRA_SET_ERROR_GET (   parentKey)

Set error in kdbGet() when opening the file failed.

Assumes that error reason is in errno.

Parameters
parentKeykey to append error to

To use it include:

#include <kdbplugin.h>
// using namespace ckdb; // for C++
#include <kdberrors.h>
Returns

◆ ELEKTRA_SET_ERROR_SET

#define ELEKTRA_SET_ERROR_SET (   parentKey)

Set error in kdbSet() when opening the file failed.

Assumes that error reason is in errno.

Parameters
parentKeykey to append error to

To use it include:

#include <kdbplugin.h>
// using namespace ckdb; // for C++
#include <kdberrors.h>
Returns

◆ ELEKTRA_SET_ERRORF

#define ELEKTRA_SET_ERRORF (   number,
  key,
  formatstring,
  ... 
)

Sets the error in the keys metadata.

Include kdberrors.h to make it work. Only a single error can be written to the key.

// using namespace ckdb; // for C++
#include <kdberrors.h>
Parameters
numberthe error number from src/error/specification
keyto write the error to
formatstringa format string as in printf
...further arguments as in printf

Function Documentation

◆ elektraDocCheckConf()

int elektraDocCheckConf ( Key *  errorKey,
KeySet *  conf 
)

Validate plugin configuration at mount time.

During the mount phase the BackendBuilder calls this method, if it is provided by the plugin.

In this method the plugin configuration can be checked for validity or integrity. Missing items can be added to complete the configuration.

Parameters
errorKeyis used to propagate error messages to the caller
confcontains the plugin configuration to be validated
Return values
0on success: the configuration was OK and has not been changed.
1on success: the configuration has been changed and now it is OK.
-1on failure: the configuration was not OK and could not be fixed. Set an error using ELEKTRA_SET_ERROR to inform the user what went wrong. Additionally you can add any number of warnings with ELEKTRA_ADD_WARNING.

◆ elektraDocClose()

int elektraDocClose ( Plugin *  handle,
Key *  warningsKey 
)

Finalize the plugin.

Called prior to unloading the plugin dynamic module. After this function is called, it is ensured that no functions from your plugin will ever be accessed again.

Make sure to free all memory that your plugin requested at runtime. Also make sure to free what you stored by elektraPluginSetData() before.

So for the Doc plugin we need to:

int elektraDocClose (Plugin * handle, Key * warningsKey ELEKTRA_UNUSED)
{
return 0; /* success */
}
int elektraDocClose(Plugin *handle, Key *warningsKey)
Finalize the plugin.
void * elektraPluginGetData(Plugin *plugin)
Get a pointer to the plugin specific data stored before.
Definition: plugin/plugin.c:147
void elektraFree(void *ptr)
Free memory of Elektra or its backends.
Definition: internal.c:306

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

Parameters
handlecontains internal information of the plugin
warningsKeycan be used to to add warnings using ELEKTRA_ADD_WARNING (Do not add errors!)
Return values
1on success (no other return value currently allowed)
-1on problems (only use ELEKTRA_ADD_WARNING, but never set an error).
See also
kdbClose()
elektraPluginGetData(), elektraPluginSetData() and elektraPluginGetConfig()

◆ elektraDocCommit()

int elektraDocCommit ( Plugin *  handle,
KeySet *  returned,
Key *  parentKey 
)

Make changes to storage final.

Once the content of returned has been stored, the changes need to be made final and visible to other users, which is done by this function. After this function has been called, no further changes can be made by elektraPluginSet() functions within this invocation of kdbSet().

The function is called by kdbSet() if the plugin implementing it fulfills the commit role.

Precondition
The keyset returned holds all stored keys which must be made final for this keyset. The keyset is sorted and rewinded.
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 name of the parentKey marks the mountpoint.
Postcondition
the storage changes made by the plugins previously called by kdbSet() will be made final.
See also
kdbSet() for caller.
Parameters
handlecontains internal information of the plugin
returnedcontains a keyset with relevant keys
parentKeycontains the location of the relevant keys within the key database.
Return values
1on success
0on success without any changes
-1on failure. The cause of the error needs to be entered into parentKey, ksGetCursor() needs to point to the position where the error appeared. The error can be specified using ELEKTRA_SET_ERROR. ELEKTRA_ADD_WARNING can be used to add warnings for the user.

◆ elektraDocError()

int elektraDocError ( Plugin *  handle,
KeySet *  returned,
Key *  parentKey 
)

Rollback in case of errors.

First for all plugins elektraDocSet() will be called. If any plugin had problems before the commit (done by the resolver plugin), we can safely rollback our changes.

This method is rarely used by plugins, it is mainly used for resolvers (to implement rollback) or by logging plugins. It is not needed for storage plugins, because they only operate on temporary files created by the resolver.

Parameters
handlecontains internal information of the plugin
returnedcontains a keyset with relevant keys
parentKeycontains the information where to set the keys. can be used to add warnings with the macro ELEKTRA_ADD_WARNING, but do not add errors!
Return values
1on success
0on success with no action
-1on failure (you can add warnings, but we are already in an error state, so do not set the error).

◆ elektraDocGet()

int elektraDocGet ( Plugin *  handle,
KeySet *  returned,
Key *  parentKey 
)

Get data from storage to application.

Retrieve information from a permanent storage to construct a keyset.

Introduction

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

Contract Handling

The contract is a keyset that needs to be returned if the parentKey is system:/elektra/modules/yourpluginname.

Which keys and their meaning is specified in doc/CONTRACT.ini

Here is an example for our doc plugin:

int elektraDocGet (Plugin * plugin ELEKTRA_UNUSED, KeySet * returned, Key * parentKey)
{
if (!strcmp (keyName (parentKey), "system:/elektra/modules/doc"))
{
KeySet * contract =
ksNew (30, keyNew ("system:/elektra/modules/doc", KEY_VALUE, "doc plugin waits for your orders", KEY_END),
keyNew ("system:/elektra/modules/doc/exports", KEY_END),
keyNew ("system:/elektra/modules/doc/exports/open", KEY_FUNC, elektraDocOpen, KEY_END),
keyNew ("system:/elektra/modules/doc/exports/close", KEY_FUNC, elektraDocClose, KEY_END),
keyNew ("system:/elektra/modules/doc/exports/get", KEY_FUNC, elektraDocGet, KEY_END),
keyNew ("system:/elektra/modules/doc/exports/set", KEY_FUNC, elektraDocSet, KEY_END),
keyNew ("system:/elektra/modules/doc/exports/commit", KEY_FUNC, elektraDocCommit, KEY_END),
keyNew ("system:/elektra/modules/doc/exports/error", KEY_FUNC, elektraDocError, KEY_END),
keyNew ("system:/elektra/modules/doc/exports/checkconf", KEY_FUNC, elektraDocCheckConf, KEY_END),
keyNew ("system:/elektra/modules/doc/infos/version", KEY_VALUE, PLUGINVERSION, KEY_END), KS_END);
ksAppend (returned, contract);
ksDel (contract);
return 1; /* success */
}
const char * keyName(const Key *key)
Returns a pointer to the abbreviated real internal key name.
Definition: elektra/keyname.c:254
ssize_t ksAppend(KeySet *ks, const KeySet *toAppend)
Append all Keys in toAppend to the end of the KeySet ks.
Definition: keyset.c:898
KeySet * ksNew(size_t alloc,...)
Allocate, initialize and return a new KeySet object.
Definition: keyset.c:229
#define KS_END
End of a list of keys.
Definition: kdbenum.c:158
int elektraDocCheckConf(Key *errorKey, KeySet *conf)
Validate plugin configuration at mount time.
int elektraDocOpen(Plugin *handle, Key *warningsKey)
Initialize data for the plugin.
int elektraDocCommit(Plugin *handle, KeySet *returned, Key *parentKey)
Make changes to storage final.
#define ELEKTRA_README
The filename for inclusion of the readme for compilation variants (see doc/tutorials).
Definition: kdbplugin.h:56
int elektraDocGet(Plugin *handle, KeySet *returned, Key *parentKey)
Get data from storage to application.
int elektraDocError(Plugin *handle, KeySet *returned, Key *parentKey)
Rollback in case of errors.
int elektraDocSet(Plugin *handle, KeySet *returned, Key *parentKey)
Set data from application to storage.

Some clauses of the contract, especially the description of the plugin can be done more conveniently directly in a README.md that is included by ELEKTRA_README.

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:

FILE * fp = fopen (keyString (parentKey), "r");
char * key = 0;
char * value = 0;
while (parseKey (fp, &key, &value) >= 1)
{
Key * read = keyNew (keyName (parentKey), KEY_END);
if (keyAddName (read, key) == -1)
{
ELEKTRA_ADD_VALIDATION_SYNTACTIC_WARNINGF (parentKey, "Key name %s is not valid, discarding key", key);
keyDel (read);
continue;
}
keySetString (read, value);
ksAppendKey (returned, read);
}
if (feof (fp) == 0)
{
fclose (fp);
ELEKTRA_SET_VALIDATION_SYNTACTIC_ERROR (parentKey, "Invalid line encountered: not at the end of file");
return -1;
}
fclose (fp);
int keyDel(Key *key)
A destructor for Key objects.
Definition: key.c:500
ssize_t keyAddName(Key *key, const char *newName)
Add an already escaped name part to the Key's name.
Definition: elektra/keyname.c:566
ssize_t keySetString(Key *key, const char *newStringValue)
Set the value for key as newStringValue.
Definition: keyvalue.c:372
const char * keyString(const Key *key)
Get a pointer to the c-string representing the value.
Definition: keyvalue.c:206

When opening files, make sure to use the macros ELEKTRA_SET_ERROR_SET and ELEKTRA_SET_ERROR_GET for errors, as shown here:

FILE * fp = fopen (keyString (parentKey), "w");
if (!fp)
{
ELEKTRA_SET_ERROR_SET (parentKey);
return -1;
}
#define ELEKTRA_SET_ERROR_SET(parentKey)
Set error in kdbSet() when opening the file failed.
Definition: doc.h:227

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
Key * k;
ksRewind (returned);
while ((k = ksNext (returned)) != 0)
{
doAction (k);
}
return 1; // success
}
Key * ksNext(KeySet *ks)
Returns the next Key in a KeySet.
Definition: keyset.c:1489
int ksRewind(KeySet *ks)
Rewinds the KeySet internal cursor.
Definition: keyset.c:1451
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 your mountpoint and that your plugin is responsible for it.
and that the returned:
  • is a valid keyset.
  • your plugin is only called when needed (e.g. only if file was modified)
  • has all keys related to your plugin.
  • contains only valid keys below (see keyIsBelow()) your parentKey.
  • is in a sorted order (given implicit by KeySet)
and that the handle:
The caller kdbGet() will make sure that afterwards you were called, that:
  • other plugins below your plugin will be called again recursively.
  • that all keys are merged to one keyset the user gets
  • that all keys (that should not be removed) are passed to kdbSet() if writing to disc is needed.
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 below (keyIsBelow()) 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 with additional plugins.
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 by the resolver. For other types (e.g. databases) you need to implement your own resolver doing this.
See also
kdbGet() for caller.
Parameters
handlecontains internal information of opened key database
returnedcontains 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.
parentKeycontains the information below which key the keys should be gotten.
Return values
1on success
0when nothing was to do
-1on failure, the current key in returned shows the position. use ELEKTRA_SET_ERROR of kdberrors.h to define the error code. You additionally can add as many warnings as you would like to add.

◆ elektraDocOpen()

int elektraDocOpen ( Plugin *  handle,
Key *  warningsKey 
)

Initialize data for the plugin.

This is the first method called after dynamically loading this plugin. It is guaranteed, that this method will be called before any other method.

This method is responsible for:

  • plugin's specific configuration gathering
  • initialization of all plugin's internal structs
  • initial setup of all I/O details such as opening a file, connecting to a database, setup connection to a server, iff this cannot be done per invocation in elektraDocGet() and elektraDocSet().

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 have one Elektra will not be threadsafe. Do not assume that your plugin will be opened only once or will not be reopened at a later time.

Instead of global variables the methods elektraPluginGetData() and elektraPluginSetData() exist to store and get any information related to your plugin.

The correct substitute for global variables will be:

typedef struct
{
int global;
} GlobalData;

and then initialize it using:

int elektraDocOpen (Plugin * handle, Key * warningsKey ELEKTRA_UNUSED)
{
GlobalData * data;
KeySet * config = elektraPluginGetConfig (handle);
Key * kg = ksLookupByName (config, "/global", 0);
data = elektraMalloc (sizeof (GlobalData));
data->global = 0;
if (kg) data->global = atoi (keyString (kg));
elektraPluginSetData (handle, data);
Key * ksLookupByName(KeySet *ks, const char *name, elektraLookupFlags options)
Convenience method to look for a Key contained in ks with name name.
Definition: keyset.c:2496
KeySet * elektraPluginGetConfig(Plugin *handle)
Returns the configuration of that plugin.
Definition: plugin/plugin.c:115
void elektraPluginSetData(Plugin *plugin, void *data)
Store a pointer to plugin specific data.
Definition: plugin/plugin.c:130
void * elektraMalloc(size_t size)
Allocate memory for Elektra.
Definition: internal.c:274

Make sure to free everything you allocate within elektraDocClose().

If your plugin has no useful way to startup without config, the module loader would not be able to load the module. We need, however, to still load the plugin to get the contract.

To solve that problem the module loader adds the configuration key /module. Even if your plugin is basically not able to startup successfully, it should still provide a fallback when /module is present, so that elektraDocGet() on system:/elektra/modules can be called successfully later on.

if (ksLookupByName (config, "/module", 0))
{
return 0;
}
// do some setup that will fail without configuration

Note that for plugins where the contract will be altered based on configuration this specific configuration should be considered. In fact the idea of /module is to get the correct contract.

Return values
-1on error, your plugin will be removed then and the missing plugin added instead. Use ELEKTRA_ADD_WARNING to indicate the problem. The system will automatically add the information that the plugin was removed, so you do not need the user give that information.
1on success
Parameters
handlecontains internal information of the plugin
warningsKeycan be used to add warnings with the macro ELEKTRA_ADD_WARNING (Do not add errors!)
See also
elektraPluginGetData(), elektraPluginSetData() and elektraPluginGetConfig()
elektraDocClose()

◆ elektraDocSet()

int elektraDocSet ( Plugin *  handle,
KeySet *  returned,
Key *  parentKey 
)

Set data from application to storage.

This function does everything related to set and remove keys in a plugin. There is only one function for that purpose to make implementation of file based plugins 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 to understand:

static void usercode (KDB * handle, KeySet * keyset, Key * key)
{
// some more user code
keySetString (key, "mycomment"); // the user changes the key
ksAppendKey (keyset, key); // append the key to the keyset
kdbSet (handle, keyset, 0); // and syncs it to disc
}
// so now kdbSet is called
int elektraKdbSet (KDB * handle, KeySet * keyset, Key * parentKey)
{
int ret = 0;
// find appropriate plugin and then call it:
Plugin * plugin = findPlugin (handle);
ret = elektraDocSet (plugin, keyset, parentKey);
// the keyset with the key (and others for this plugin)
// will be passed to this function
return ret;
}
// so now elektraPluginSet(), which is the function described here,
// is called:
int elektraPluginSet (Plugin * plugin ELEKTRA_UNUSED, KeySet * returned, Key * parentKey ELEKTRA_UNUSED)
{
// the task of elektraPluginSet is now to store the keys
Key * k;
ksRewind (returned);
while ((k = ksNext (returned)) != 0)
{
saveToDisc (k);
}
return 1; /* success */
}
int kdbSet(KDB *handle, KeySet *ks, Key *parentKey)
Set Keys to a Key database in an atomic and universal way.
Definition: kdb.c:1743

Of course all information of every key in the keyset returned need to be stored permanently. 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.
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 name of the parentKey marks the mountpoint. The string of the parentKey is the filename to write to.

Make sure to set all keys, all directories and also all hidden keys. If some of them are not wished, the caller kdbSet() and plugins will sort them out.

Invariant
There are no global variables, but instead elektraPluginGetData() will be used. The handle is the same when it is the same plugin.
Postcondition
The information of the keyset returned is stored permanently.
See also
kdbSet() for caller.
Parameters
handlecontains internal information of the plugin
returnedcontains a keyset with relevant keys
parentKeycontains the information where to set the keys (name is mountpoint your plugin is mounted, string is the file to write to)
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 values
1on success
0on success with no changed key in database
-1on failure. The cause of the error needs to be added in parentKey You also have to make sure that ksGetCursor() shows to the position where the error appeared. Set an error using ELEKTRA_SET_ERROR to inform the user what went wrong. Additionally you can add any number of warnings with ELEKTRA_ADD_WARNING.

◆ elektraPluginExport()

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

Allows one to Export Methods for a Plugin.

This function must be called within ELEKTRA_PLUGIN_EXPORT. It define the plugin's methods that will be exported.

All KDB methods implemented by the plugin basically could have random names (convention is elektraName*), 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. For example for the doc plugin:

Plugin * ELEKTRA_PLUGIN_EXPORT
{
// clang-format off
return elektraPluginExport(DOC_PLUGIN_NAME,
}
Plugin * elektraPluginExport(const char *pluginName,...)
Allows one to Export Methods for a Plugin.
Definition: plugin/plugin.c:55
@ ELEKTRA_PLUGIN_GET
Definition: kdbplugin.h:71
@ ELEKTRA_PLUGIN_CLOSE
Definition: kdbplugin.h:70
@ ELEKTRA_PLUGIN_END
Definition: kdbplugin.h:75
@ ELEKTRA_PLUGIN_SET
Definition: kdbplugin.h:72
@ ELEKTRA_PLUGIN_ERROR
Definition: kdbplugin.h:73
@ ELEKTRA_PLUGIN_OPEN
Definition: kdbplugin.h:69
@ ELEKTRA_PLUGIN_COMMIT
Definition: kdbplugin.h:74

The first parameter 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 and ELEKTRA_PLUGIN_COMMIT.

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.

Parameters
pluginNamethe name of this plugin
Returns
an object that contains all plugin information needed by libelektra.so

◆ elektraPluginGetConfig()

KeySet* elektraPluginGetConfig ( Plugin *  handle)

Returns the configuration of that plugin.

  • The user:/ config holds plugin specific configuration
  • The system:/ config holds backend specific configuration

So prefer cascading lookups to honor both.

Parameters
handlea pointer to the plugin
Returns
keyset to the configuration for that plugin

◆ elektraPluginGetData()

void* elektraPluginGetData ( Plugin *  plugin)

Get a pointer to the plugin specific data stored before.

If elektraPluginSetData() was not called earlier, NULL will be returned.

This data is private to one instance of a plugin.

See also
elektraPluginSetData
Parameters
plugina pointer to the plugin
Returns
a pointer to the data

◆ elektraPluginGetGlobalKeySet()

KeySet* elektraPluginGetGlobalKeySet ( Plugin *  plugin)

Get a pointer to the global keyset.

Initialized for all plugins by the KDB, except for manually created plugins with elektraPluginOpen(). The global keyset is tied to a KDB handle, initialized on kdbOpen() and deleted on kdbClose().

Plugins using this keyset are responsible for cleaning up their parts of the keyset which they do not need any more.

Parameters
plugina pointer to the plugin
Returns
a pointer to the global keyset

◆ elektraPluginSetData()

void elektraPluginSetData ( Plugin *  plugin,
void *  data 
)

Store a pointer to plugin specific data.

This data is private to one instance of a plugin.

See also
elektraPluginGetData
Parameters
plugina pointer to the plugin
datathe pointer to the data