sysrepo
2.12.0
YANG-based system repository for all-around configuration management.
|
API for datastore plugins. More...
Go to the source code of this file.
Data Structures | |
struct | srplg_ds_s |
Datastore plugin structure. More... | |
Macros | |
#define | SRPLG_DATASTORE |
Macro to define datastore plugin information in external plugins. More... | |
#define | SRPLG_DS_API_VERSION 11 |
Datastore plugin API version. More... | |
Typedefs | |
typedef sr_error_info_t *(* | srds_access_check )(const struct lys_module *mod, sr_datastore_t ds, void *plg_data, int *read, int *write) |
Check whether the current user has the required access to datastore data. More... | |
typedef sr_error_info_t *(* | srds_access_get )(const struct lys_module *mod, sr_datastore_t ds, void *plg_data, char **owner, char **group, mode_t *perm) |
Get access permissions for datastore data of a module. This function is also used for sysrepo access control checks for the module when SR_DS_STARTUP is used. More... | |
typedef sr_error_info_t *(* | srds_access_set )(const struct lys_module *mod, sr_datastore_t ds, const char *owner, const char *group, mode_t perm, void *plg_data) |
Set access permissions for datastore data of a module. More... | |
typedef sr_error_info_t *(* | srds_candidate_modified )(const struct lys_module *mod, void *plg_data, int *modified) |
Learn whether the candidate datastore was modified and is different from running. More... | |
typedef sr_error_info_t *(* | srds_candidate_reset )(const struct lys_module *mod, void *plg_data) |
Reset candidate datastore to "no changes" - mirroring running. More... | |
typedef void(* | srds_conn_destroy )(sr_conn_ctx_t *conn, void *plg_data) |
Destroy (free) per-connection plugin data. More... | |
typedef sr_error_info_t *(* | srds_conn_init )(sr_conn_ctx_t *conn, void **plg_data) |
Initialize per-connection plugin data. More... | |
typedef sr_error_info_t *(* | srds_copy )(const struct lys_module *mod, sr_datastore_t trg_ds, sr_datastore_t src_ds, void *plg_data) |
Copy data of a module from source datastore to the target datastore. More... | |
typedef sr_error_info_t *(* | srds_data_version )(const struct lys_module *mod, sr_datastore_t ds, void *plg_data, uint32_t *version) |
Get the current datastore data version, optional callback. More... | |
typedef sr_error_info_t *(* | srds_init )(const struct lys_module *mod, sr_datastore_t ds, void *plg_data) |
Initialize data of a newly installed module. More... | |
typedef sr_error_info_t *(* | srds_install )(const struct lys_module *mod, sr_datastore_t ds, const char *owner, const char *group, mode_t perm, void *plg_data) |
Setup datastore of a newly installed module. More... | |
typedef sr_error_info_t *(* | srds_last_modif )(const struct lys_module *mod, sr_datastore_t ds, void *plg_data, struct timespec *mtime) |
Get the time when the datastore data of the module were last modified or 0 if the datastore data are not modified (see ds ). More... | |
typedef sr_error_info_t *(* | srds_load )(const struct lys_module *mod, sr_datastore_t ds, const char **xpaths, uint32_t xpath_count, void *plg_data, struct lyd_node **mod_data) |
Load data of a module. More... | |
typedef void(* | srds_recover )(const struct lys_module *mod, sr_datastore_t ds, void *plg_data) |
Recover module data when a crash occurred while they were being written. More... | |
typedef sr_error_info_t *(* | srds_store )(const struct lys_module *mod, sr_datastore_t ds, const struct lyd_node *mod_diff, const struct lyd_node *mod_data, void *plg_data) |
Store data for a module. Either a diff can be applied manually or full new data tree stored. More... | |
typedef sr_error_info_t *(* | srds_uninstall )(const struct lys_module *mod, sr_datastore_t ds, void *plg_data) |
Destroy data of an uninstalled module. More... | |
API for datastore plugins.
This source code is licensed under BSD 3-Clause License (the "License"). You may not use this file except in compliance with the License. You may obtain a copy of the License at
https://opensource.org/licenses/BSD-3-Clause
Definition in file plugins_datastore.h.