.TH "KDB Backends :: Elektra framework for pluggable backends" 3 "30 Jun 2009" "Elektra Projekt" \" -*- nroff -*- .ad l .nh .SH NAME KDB Backends :: Elektra framework for pluggable backends \- The tactics to create pluggable backends to libelektra.so. .PP .SS "Enumerations" .in +1c .ti -1c .RI "enum \fBbackend_t\fP { \fBKDB_BE_OPEN\fP = 1, \fBKDB_BE_CLOSE\fP = 1<<1, \fBKDB_BE_GET\fP = 1<<2, \fBKDB_BE_SET\fP = 1<<3, \fBKDB_BE_VERSION\fP = 1<<4, \fBKDB_BE_DESCRIPTION\fP = 1<<5, \fBKDB_BE_AUTHOR\fP = 1<<6, \fBKDB_BE_LICENCE\fP = 1<<7, \fBKDB_BE_END\fP = 0 }" .br .in -1c .SS "Functions" .in +1c .ti -1c .RI "KDB * \fBkdbBackendExport\fP (const char *backendName,...)" .br .ti -1c .RI "int \fBkdbOpen_backend\fP (KDB *handle)" .br .ti -1c .RI "int \fBkdbClose_backend\fP (KDB *handle)" .br .ti -1c .RI "ssize_t \fBkdbGet_backend\fP (KDB *handle, KeySet *returned, const Key *parentKey)" .br .ti -1c .RI "ssize_t \fBkdbSet_backend\fP (KDB *handle, KeySet *returned, const Key *parentKey)" .br .ti -1c .RI "\fBKDBEXPORT\fP (backend)" .br .in -1c .SH "Detailed Description" .PP The tactics to create pluggable backends to libelektra.so. .PP .SH "Introduction" .PP \fBSince:\fP .RS 4 Since version 0.4.9, Elektra can dynamically load different key storage backends. .PP Since version 0.7.0 Elektra can have multiple storage backends, called just backends henceforth, at once for different purposes. .RE .PP \fBDefinition: You refers to the implementation of the function in this specification.\fP.RS 4 If you read the documentation about \fBkdbGet_backend()\fP, then the caller is \fBkdbGet()\fP which is the only function which can and will call (invoke) you. The Preconditions will always be met by the caller, you can count on them. But you (as said before we speak about the function) need to take care that all Postconditions are met. .RE .PP .SS "Overview" The methods of class KDB that are backend dependent are only \fBkdbOpen_backend()\fP, \fBkdbClose_backend()\fP, \fBkdbGet_backend()\fP, \fBkdbSet_backend()\fP and \fBKDBEXPORT()\fP to export these methods. A backend must implement each of them. A detailed specification of these methods and methods needed in that context follows in this Documentation Module. .PP The other KDB methods are higher level. They use the above methods to do their job, and generally don't have to be reimplemented for a different backend, but there might be a solution to do so for higher performance in future. kdbh* methods are for access to the internals of KDB, which will be passed to all functions. .SS "Include Files" The backend implementation must include: .PP .nf #include .fi .PP to have direct access to the structs, which is currently needed to access the capability structure. .PP Don't include kdb.h, it will be automatically included and some macros will avoid redefining structs where you have more insight from a backend than you would normally have. Additionally you get the declaration of all functions described here, except the one you have to implement. .SS "Dynamic Mounting" An elektrified program will use elektra/libelektra-default.so as its default backend. This backend provides the system/ hierarchy and some base configuration in system/elektra for elektra itself. Everything below system/ and the other hierarchies can be stored in any different backend. This is allowed through the technique mounting. A backend can be mounted to any path except system/ and system/elektra. .PP A backends is guaranteed to be loaded whenever calling \fBkdbGet()\fP or \fBkdbSet()\fP requires the backend, but may already be loaded at \fBkdbOpen()\fP. It might be loaded explizit by \fBkdbMount()\fP at any time after \fBkdbOpen()\fP. Backends get a chance to initialize by calling \fBkdbOpen_backend()\fP whenever they are loaded. .PP Using \fBkdbUnmount()\fP a backend may closed during runtime. All backends will be closed when \fBkdbClose()\fP is called. Backends might be unloaded after some time of inactivity or other reasons. After loading backends get a chance to cleanup by calling \fBkdbClose_backend()\fP. .PP That means it is not guaranteed that the backend live the whole time nor it will be loaded only one time. A tactic to handle this well is to build stateless backends referring to \fBkdbGet_backend()\fP and \fBkdbSet_backend()\fP. That means that there is no more information present than in the storage itself. Be aware that you must not have any global variables in your backend. Read more about that in \fBkdbOpen_backend()\fP. But to be stateless you also have to consider not to store any other than caching information into \fBkdbhGetBackendData()\fP. I repeat: it must be possible to restore everything dynamically stored without exception. .SS "Library Names" Elektra source code or development package provides a skeleton and Makefile to implement a backend. Copy src/backends/template to have a good starting point. See the CODING document to know how to integrate the backend in the build system or how to compile it external. .PP A backend is defined by a single name, for example \fCBACKENDNAME\fP, that causes libelektra.so look for its library as \fClibelektra-BACKENDNAME.so\fP. .PP \fBExample of a complete backend:\fP.RS 4 .PP .nf // // This is my implementation for an Elektra backend storage. // // To compile it: // $ cc -fpic `pkg-config --cflags elektra` -o myback.o -c myback.c // $ cc -shared -fpic `pkg-config --libs elektra` -o libelektra-myback.so myback.o // // To use it: // $ preload mount myback system/myback myback /tmp/nofile // $ kdb ls system/myback // $ kdb set system/myback/key 'value' // $ kdb get system/myback/key // #include #define BACKENDNAME 'backend' int kdbOpen_backend(KDB *handle) {...} int kdbClose_backend(KDB *handle) {...} int kdbGet_backend(KDB handle, KeySet *returned, Key *key) {...} int kdbSet_backend(KDB handle, KeySet *returned, Key *key) {...} KDBEXPORT(backend) { return kdbBackendExport(BACKENDNAME, KDB_BE_OPEN, &kdbOpen_backend, KDB_BE_CLOSE, &kdbClose_backend, KDB_BE_GET, &kdbGet_backend, KDB_BE_SET, &kdbSet_backend, KDB_BE_END); } .fi .PP .RE .PP In the example, the *_backend() methods can have other random names, since you'll correctly pass them later to \fBkdbBackendExport()\fP. It is recommended to use names according to your backendname to avoid name clashes. Be aware that every symbol name in the linked application must be unique. .PP Don't copy above example out, use src/backends/template, it does compile as-is and does some initialization and cleanup already. .PP Elektra source code tree includes several backend implementations https://svn.libelektra.org/svn/elektra/trunk/src/backends/ that can also be used as a reference. .SH "Details" .PP .SS "Introduction" Capabilities may make your live much easier. If it is impossible, very hard or would impact performance badly you may leave out some parts described here, but need to declare that you have done so with capabilites. .PP It is allowed to provide additional information, even if you declared you don't have it. If you declare that you are capable of doing something, you must provide it without exceptions. .SS "Owner" You need to set the owner of keys by \fBkeySetOwner()\fP. Owner is the name to whom a specific key of the user/ hierarchy belongs. If you declare kdbcGetnoOwner() you need not to set the owner of the keys. It also means that even if you want to get keys from another user hierarchy you get yours. .SS "Values" Values are the central information of keys next to the name describing what informations it holds. Parse them out of your backend and put them into the key with \fBkeySetString()\fP. The information will be duplicated, so you might need to free() your string. Don't try to directly access key->data, things may change there and your backend might be compiled with a different libc than elektra. If you support types, you might want to use keySetRaw() to not change the key type. If you don't support values for all keys declare kdbcGetnoValue(). .SS "IDs" You need to set uid respective gid for any key not having the uid and gid of the current process. This will be set by default in every key. You can do it with \fBkeySetUID()\fP and \fBkeySetGID()\fP. Declaring kdbcGetnoUID() and kdbcGetnoGID() you need not set uid and gid. .SS "Mode" Mode shows what can be done with the key having or not having the above uid and gid. Use \fBkeySetMode()\fP to set the correct mode description, read the description in \fBkeySetMode()\fP for the semantics of the 3 octal representation. Declaring kdbcGetnoMode() means mode will remain default. .PP The very related method \fBkeySetDir()\fP sets the executable bits of mode. Even if your backend does not support mode, it might support directories, meaning that keys have the mode 0664 or 0775 for directories. Declaring kdbcGetnoDir() means that the backend is flat, no key will be true for \fBkeyIsDir()\fP and so can't have any subkeys. .SS "Timing" Keys should have exact timing information of their modification and access times. Use \fBkeySetATime()\fP, \fBkeySetMTime()\fP and \fBkeySetCTime()\fP to store appropriate information. ATime need to be stored in database, if you stat a key the backend need to return the time \fBkdbGet()\fP was last used for the keys. If you don't support this, declare kdbcGetnoATime() and simple store time(0) in the atime. This must be the same for every key for a single \fBkdbGet_backend()\fP. If you only stat keys with \fBkdbGet()\fP, see below, then the access time should not be updated. MTime is the last modification time of value or comment. If you don't support this, declare kdbcGetnoMTime() and simple store time(0) in the mtime. This must be the same for every key for a single \fBkdbGet_backend()\fP. CTime is the last change time of any metadata or add/remove of subkeys. If you don't support this, declare kdbcGetnoCTime() and simple store time(0) in the ctime. This must be the same for every key for a single \fBkdbGet_backend()\fP. .SS "Types" Keys having value and comment can be one of two fundamental types, string or binary, both called value. While string is a null terminated utf8 character sequence, binary is any data of a specific length. Be sure to use \fBkeySetString()\fP for string and \fBkeySetBinary()\fP if you want to store binary data. If you do not support one of these, be sure to declare kdbcGetnoBinary() or kdbcGetnoString(), if you don't support both make sure to also declare kdbcGetnoValue(). .PP Using keySetRaw() does not set the type, be sure to use \fBkeySetType()\fP afterwards. This can be KEY_TYPE_STRING and KEY_TYPE_BINARY or any other type in type_t, leading to same results as explained above, but also any other number in the range of type_t. Declare kdbcGetnoTypes() when your backend does not support arbitrary types. .SH "Enumeration Type Documentation" .PP .SS "enum \fBbackend_t\fP" .PP Switches to denote the backend methods. Used in calls to \fBkdbBackendExport()\fP. .PP \fBEnumerator: \fP .in +1c .TP \fB\fIKDB_BE_OPEN \fP\fP Next arg is backend for \fBkdbOpen()\fP .TP \fB\fIKDB_BE_CLOSE \fP\fP Next arg is backend for \fBkdbClose()\fP .TP \fB\fIKDB_BE_GET \fP\fP Next arg is backend for \fBkdbGet()\fP .TP \fB\fIKDB_BE_SET \fP\fP Next arg is backend for \fBkdbSet()\fP .TP \fB\fIKDB_BE_VERSION \fP\fP Next arg is char * for Version .TP \fB\fIKDB_BE_DESCRIPTION \fP\fP Next arg is char * for Description .TP \fB\fIKDB_BE_AUTHOR \fP\fP Next arg is char * for Author .TP \fB\fIKDB_BE_LICENCE \fP\fP Next arg is char * for Licence .TP \fB\fIKDB_BE_END \fP\fP End of arguments .SH "Function Documentation" .PP .SS "KDB* kdbBackendExport (const char * backendName, ...)" .PP This function must be called by a backend's kdbBackendFactory() to define the backend's methods that will be exported. .PP See \fBKDBEXPORT()\fP how to use it for backends. .PP The order and number of arguments are flexible (as in \fBkeyNew()\fP and \fBksNew()\fP) to let libelektra.so evolve without breaking its ABI compatibility with backends. So for each method a backend must export, there is a flag defined by \fBbackend_t\fP. Each flag tells \fBkdbBackendExport()\fP which method comes next. A backend 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 \fBkdbBackendExport()\fP about them. .PP \fBParameters:\fP .RS 4 \fIbackendName\fP a simple name for this backend .RE .PP \fBReturns:\fP .RS 4 an object that contains all backend informations needed by libelektra.so .RE .PP .SS "int kdbClose_backend (KDB * handle)" .PP Finalize the backend. Called prior to unloading the backend dynamic module. Should ensure that no functions or static/global variables from the module will ever be accessed again. .PP Make sure to free all memory that your backend requested at runtime. .PP Specifically make sure to capDel() all capabilites and free your backendData in \fBkdbhGetBackendData()\fP. .PP After this call, libelektra.so will unload the backend library, so this is the point to shutdown any affairs with the storage. .PP \fBParameters:\fP .RS 4 \fIhandle\fP contains internal information of \fBopened \fP key database .RE .PP \fBReturns:\fP .RS 4 0 on success, anything else otherwise. .RE .PP \fBSee also:\fP .RS 4 \fBkdbClose()\fP .RE .PP .SS "KDBEXPORT (backend)" .PP All KDB methods implemented by the backend can have random names, except kdbBackendFactory(). This is the single symbol that will be looked up when loading the backend, and the first method of the backend implementation that will be called. .PP Its purpose is to publish the exported methods for libelektra.so. The implementation inside the provided skeleton is usually enough: simply call \fBkdbBackendExport()\fP with all methods that must be exported. .PP The first paramter is the name of the backend. Then every backend must have: \fCKDB_BE_OPEN\fP, \fCKDB_BE_CLOSE\fP, \fCKDB_BE_GET\fP and \fCKDB_BE_SET\fP .PP You might also give following information by char *: \fCKDB_BE_VERSION\fP, \fCKDB_BE_AUTHOR\fP, \fCKDB_BE_LICENCE\fP and \fCKDB_BE_DESCRIPTION\fP .PP You must use static 'char arrays' in a read only segment. Don't allocate storage, it won't be freed. .PP With capability you can get that information on runtime from any backend with kdbGetCapability(). .PP The last parameter must be \fCKDB_BE_END\fP. .PP \fBReturns:\fP .RS 4 \fBkdbBackendExport()\fP with the above described parameters. .RE .PP \fBSee also:\fP .RS 4 \fBkdbBackendExport()\fP for an example .PP kdbOpenBackend() .RE .PP .SS "ssize_t kdbGet_backend (KDB * handle, KeySet * returned, const Key * parentKey)" .PP Retrieve information from a permanent storage to construct a keyset. .SH "Introduction" .PP This function does everything related to get keys out from a backend. There is only one function for that purpose to make implementation and locking much easier. .PP The keyset \fCreturned\fP needs to be filled with information so that the application using elektra can access it. See the live cycle of a comment to understand: .PP .nf kdbGet_backend(KDB *handle, KeySet *returned, Key *parentKey) { // the task of kdbGet_backend is to retrieve the comment out of the permanent storage Key *key = keyDup (parentKey); // generate a new key to hold the information char *comment; loadfromdisc (comment); keySetComment (key, comment, size); // set the information ksAppendKey(returned, key); } // Now return to kdbGet int kdbGet(KDB *handle, KeySet *keyset, Key *parentKey, options) { kdbGet_backend (handle, keyset, 0); // postprocess the keyset and return it } // Now return to usercode, waiting for the comment void usercode (Key *key) { kdbGet (handle, keyset, parentKey, 0); key = ksCurrent (keyset, key); // lookup the key from the keyset keyGetComment (key); // now the usercode retrieves the comment } .fi .PP Of course not only the comment, but all information of every key in the keyset \fCreturned\fP need to be fetched from permanent storage and stored in the key. So this specification needs to give an exhaustive list of information present in a key. .SH "Conditions" .PP \fBPrecondition:\fP .RS 4 The caller \fBkdbGet()\fP will make sure before you are called that the parentKey: .IP "\(bu" 2 is a valid key (means that it is a system or user key). .IP "\(bu" 2 is below (see \fBkeyIsBelow()\fP) your mountpoint and that your backend is responsible for it. .IP "\(bu" 2 has \fBkeyNeedStat()\fP set when you should only stat keys (see later). and that the returned: .IP "\(bu" 2 is a valid keyset. .IP "\(bu" 2 has \fCall\fP keys with the flag KEY_FLAG_SYNC set. .IP "\(bu" 2 \fCmay\fP has keys with the flag KEY_FLAG_STAT set. .IP "\(bu" 2 contains only valid keys direct below (see \fBkeyIsDirectBelow()\fP) your parentKey. That also means, that the parentKey will not be in that keyset. .IP "\(bu" 2 have keyIsStat() set when the value/comment information is not necessary. .IP "\(bu" 2 is in a sorted order, see \fBksSort()\fP. and that the handle: .IP " \(bu" 4 is a valid KDB for your backend. .IP " \(bu" 4 that kdbhGetBackendHandle() contains the same handle for lifetime \fBkdbOpen_backend()\fP until \fBkdbClose_backend()\fP was called. .PP .PP .PP The caller \fBkdbGet()\fP will make sure that afterwards you were called, whenever the user requested it with the options, that: .IP "\(bu" 2 hidden keys they will be thrown away. .IP "\(bu" 2 dirs or only dirs \fBkdbGet()\fP will remove the other. .IP "\(bu" 2 you will be called again recursively with all subdirectories. .IP "\(bu" 2 the keyset will be sorted when needed. .IP "\(bu" 2 the keys in returned having KEY_FLAG_SYNC will be sorted out. .PP .RE .PP \fBInvariant:\fP .RS 4 There are no global variables and \fBkdbhGetBackendData()\fP only stores information which can be regenerated any time. The handle is the same when it is the same backend. .RE .PP \fBPostcondition:\fP .RS 4 The keyset \fCreturned\fP has the \fCparentKey\fP and all keys direct below (\fBkeyIsDirectBelow()\fP) 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 \fBkdbGet()\fP will drop these keys, see above. .RE .PP .SH "Details" .PP Now lets look at an example how the typical \fBkdbGet_backend()\fP 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 backend): .IP "\(bu" 2 find_key() gets an key out from the storage and memorize the position. .IP "\(bu" 2 next_key() will find the next key and return it (with the name). .IP "\(bu" 2 fetch_key() gets out all information of a key from storage (details see below example). It removes the \fBkeyNeedStat()\fP and \fBkeyNeedSync()\fP flag afterwards. .IP "\(bu" 2 stat_key() gets all meta information (everything but value and comment). It removes the key \fBkeyNeedSync()\fP flag afterwards. returns the next key out from the storage. The typical loop now will be like: .PP .nf ssize_t kdbGet_backend(KDB *handle, KeySet *update, const Key *parentKey) { Key * current; KeySet *returned = ksNew(ksGetSize(update)*2, KS_END); find_key (parentKey); current = keyDup (parentKey); if (keyNeedStat(parentKey)) { current = stat_key(current); } else { current = fetch_key(current); } clear_bit (KEY_FLAG_SYNC, current->flags); ksAppendKey(returned, current); while ((current = next_key()) != 0) { // search if key was passed in update by caller Key * tmp = ksLookup (update, current, KDB_O_WITHOWNER|KDB_O_POP); if (tmp) current = tmp; // key was passed, so use it if (keyNeedStat(parentKey) || keyNeedStat(current)) { current = stat_key (current); set_bit (KEY_FLAG_STAT, current->flags); } else { current = fetch_key(current); } clear_bit (KEY_FLAG_SYNC, current->flags); ksAppendKey(returned, current); // TODO: delete lookup key } if (error_happened()) { errno = restore_errno(); return -1; } ksClear (update); // the rest of update keys is not in storage anymore ksAppend(update, returned); // append the keys ksDel (returned); return nr_keys(); } .fi .PP .PP .PP \fBNote:\fP .RS 4 - returned and update are separated, for details why see \fBksLookup()\fP .IP "\(bu" 2 the bit KEY_FLAG_SYNC is always cleared, see postconditions .PP .RE .PP So your mission is simple: Search the \fCparentKey\fP and add it and then search all keys below and add them too, of course with all requested information (which is only depended on \fBkeyNeedStat()\fP). .SH "Stat" .PP Sometimes value and comment are not of interest, but metadata. To avoid a potential time-consuming \fBkdbGet()\fP you can \fBkeyNeedStat()\fP the \fCparentKey\fP. If the backend supports a less time-consuming method to just get names and metadata, implement it, otherwise declare kdbcGetnoStat(). .PP The implementation works as follows: When the \fCparentKey\fP has \fBkeyNeedStat()\fP set, all keys need to be stated instead of getting them. So the keys you \fBksAppendKey()\fP don't have a value nor a comment and make sure that KEY_FLAG_SYNC is not set, but \fBkeyNeedStat()\fP must be set for all keys which are only stated. .PP The keys in \fCreturned\fP may already have \fBkeyNeedStat()\fP set. These keys must keep the status \fBkeyNeedStat()\fP and you don't need to get the value and comment. See the example above for code. .SH "Updating" .PP 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. In that case you can make use of \fCreturned\fP KeySet. There are following possibilities: .IP "\(bu" 2 The key is in returned and up to date. You just need to remove the KEY_FLAG_SYNC flag. .IP "\(bu" 2 The key is in returned but \fBkeyNeedStat()\fP is true. You just need to stat the key and remove the KEY_FLAG_SYNC flag and set the KEY_FLAG_STAT flag. .IP "\(bu" 2 The key is in returned, \fBkeyNeedStat()\fP is false (for the key and the \fCparentKey\fP) and you know that the key has changed. You need to fully retrieve the key and remove the KEY_FLAG_SYNC flag. .IP "\(bu" 2 The key is not in returned, the \fCparentKey\fP has \fBkeyNeedStat()\fP. You just need to stat the key. Make sure that KEY_FLAG_SYNC is not set, but KEY_FLAG_STAT needs to be set. Append the key to \fCreturned\fP. .IP "\(bu" 2 The key is not in returned and the \fCparentKey\fP \fBkeyNeedStat()\fP is false. You need to fully retrieve the key out of storage, clear KEY_FLAG_STAT and KEY_FLAG_SYNC and \fBksAppendKey()\fP it to the \fCreturned\fP keyset. .PP .PP \fBNote:\fP .RS 4 You must clear the flag KEY_FLAG_SYNC at the very last point where no more modification on the key will take place, because any modification on the key will set the KEY_FLAG_SYNC flag again. With that \fBkeyNeedSync()\fP will return true and the caller will sort this key out. .RE .PP .SH "only Full Get" .PP In some backends it is not useful to get only a part of the configuration, because getting all keys would take as long as getting some. For this situation, you can declare onlyFullGet, see kdbcGetonlyFullGet(). .PP The only valid call for your backend is then that \fCparentKey\fP equals the \fCmountpoint\fP. For all other \fCparentKey\fP you must, add nothing and just return 0. .PP .PP .nf if (strcmp (keyName(kdbhGetMountpoint(handle)), keyName(parentKey))) return 0; .fi .PP .PP If the \fCparentKey\fP is your mountpoint you will of course fetch all keys, and not only the keys direct below the \fCparentKey\fP. So \fCreturned\fP is valid iff: .IP "\(bu" 2 every key is below ( \fBkeyIsBelow()\fP) the parentKey .IP "\(bu" 2 every key has a direct parent (\fBkeyIsDirectBelow()\fP) in the keyset .PP .PP \fBNote:\fP .RS 4 This statement is only valid for backends with kdbcGetonlyFullGet() set. .PP If any calls you use change errno, make sure to restore the old errno. .RE .PP \fBSee also:\fP .RS 4 \fBkdbGet()\fP for caller. .RE .PP \fBParameters:\fP .RS 4 \fIhandle\fP contains internal information of \fBopened \fP key database .br \fIreturned\fP 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 \fBUpdating\fP. .br \fIparentKey\fP contains the information below which key the keys should be gotten. .RE .PP \fBReturns:\fP .RS 4 Return how many keys you added. .PP -1 on failure, the current key in returned shows the position. In normal execution cases a positive value will be returned. But in some cases you are not able to get 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 in 0.7.1) .RE .PP .SS "int kdbOpen_backend (KDB * handle)" .PP Initialize the backend. This is the first method kdbOpenBackend() calls after dynamically loading the backend library. .PP This method is responsible of: .IP "\(bu" 2 backend's specific configuration gathering .IP "\(bu" 2 all backend's internal structs initialization .IP "\(bu" 2 initial setup of all I/O details such as opening a file, connecting to a database, etc .PP .PP If your backend does not support all aspects described in \fBkdbGet_backend()\fP and \fBkdbSet_backend()\fP you need capabilities to export this information. Per default you declare to be fully compliant to the specification given here, to change it get a pointer to KDBCap structure by using \fBkdbhGetCapability()\fP. .PP You may also read the configuration you can get with \fBkdbhGetConfig()\fP and transform it into other structures used by your backend. .PP But be aware that you don't have any global variables. If you do your backend will not be threadsafe. You can use \fBkdbhSetBackendData()\fP and \fBkdbhGetBackendData()\fP to store and get any information related to your backend. .PP The correct substitute for global variables will be: .PP .nf struct _GlobalData{ int global; }; typedef struct _GlobalData GlobalData; int kdbOpen_backend(KDB *handle) { PasswdData *data; data=malloc(sizeof(PasswdData)); data.global = 20; kdbhSetBackendData(handle,data); } .fi .PP .PP Make sure to free everything in \fBkdbClose_backend()\fP. .PP \fBReturns:\fP .RS 4 0 on success .RE .PP \fBParameters:\fP .RS 4 \fIhandle\fP contains internal information of \fBopened \fP key database .RE .PP \fBSee also:\fP .RS 4 \fBkdbOpen()\fP .RE .PP .SS "ssize_t kdbSet_backend (KDB * handle, KeySet * returned, const Key * parentKey)" .PP Store a keyset permanently. .PP This function does everything related to set and remove keys in a backend. There is only one function for that purpose to make implementation and locking much easier. .PP The keyset \fCreturned\fP 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 \fBkdbGet_backend()\fP can rebuild the keyset as it was before. See the live cycle of a comment to understand: .PP .nf 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 backend kdbSet_backend (handle, keyset, 0); // the keyset with the key will be passed to this function } // so now kdbSet_backend(), which is the function described here, is called kdbSet_backend(KDB *handle, KeySet *keyset, Key *parentKey) { // the task of kdbSet_backend 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); } .fi .PP Of course not only the comment, but all information of every key in the keyset \fCreturned\fP need to be stored permanetly. So this specification needs to give an exhaustive list of information present in a key. .PP \fBPrecondition:\fP .RS 4 The keyset \fCreturned\fP 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 \fBkeyIsDir()\fP. .PP The \fCparentKey\fP is the key which is the ancestor for all other keys in the keyset. The first key of the keyset \fCreturned\fP has the same keyname. The parentKey is below the mountpoint, see \fBkdbhGetMountpoint()\fP. .PP The caller kdbSet will fulfill following parts: .IP "\(bu" 2 If the user does not want hidden keys they will be thrown away. All keys in \fCreturned\fP need to be stored permanently. .IP "\(bu" 2 If the user does not want dirs or only dirs \fBkdbGet()\fP will remove the other. .IP "\(bu" 2 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 \fBkdbSet()\fP will sort them out. .PP .RE .PP \fBInvariant:\fP .RS 4 There are no global variables and \fBkdbhGetBackendData()\fP only stores information which can be regenerated any time. The handle is the same when it is the same backend. .RE .PP \fBPostcondition:\fP .RS 4 The information of the keyset \fCreturned\fP is stored permanently. .RE .PP When some keys have KEY_FLAG_REMOVE set, that means return true for \fBkeyNeedRemove()\fP, remove the keys instead of getting them. In this case the sorting order will be the reverse way, first will be the children, then the parentKey when iterating over the KeySet returned. .PP Lock your permanent storage in an exclusive way, no access of a concurrent \fBkdbSet_backend()\fP or \fBkdbGet_backend()\fP is possible and these methods block until the function has finished. Otherwise declare kdbcGetnoLock(). .PP \fBSee also:\fP .RS 4 \fBkdbSet()\fP for caller. .RE .PP \fBParameters:\fP .RS 4 \fIhandle\fP contains internal information of \fBopened \fP key database .br \fIreturned\fP contains a keyset with relevant keys .br \fIparentKey\fP contains the information where to set the keys .RE .PP \fBReturns:\fP .RS 4 When everything works gracefully return the number of keys you set. The cursor position and the keys remaining in the keyset are not important. .PP Return 0 on success with no changed key in database .PP Return -1 on failure. .RE .PP \fBNote:\fP .RS 4 If any calls you use change errno, make sure to restore the old errno. .RE .PP \fBError\fP .RS 4 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) .RE .PP You also have to make sure that \fBksGetCursor()\fP shows to the position where the error appeared.