8#ifndef ZEPHYR_INCLUDE_SETTINGS_SETTINGS_H_
9#define ZEPHYR_INCLUDE_SETTINGS_SETTINGS_H_
37#define SETTINGS_MAX_DIR_DEPTH 8
38#define SETTINGS_MAX_NAME_LEN (8 * SETTINGS_MAX_DIR_DEPTH)
39#define SETTINGS_MAX_VAL_LEN 256
40#define SETTINGS_NAME_SEPARATOR '/'
41#define SETTINGS_NAME_END '='
46#define SETTINGS_EXTRA_LEN ((SETTINGS_MAX_DIR_DEPTH - 1) + 2)
49#define SETTINGS_FULL_NAME_LEN ((SETTINGS_MAX_NAME_LEN) + (SETTINGS_EXTRA_LEN) + 1)
79 int (*
h_get)(
const char *key,
char *val,
int val_len_max);
148 int (*
h_get)(
const char *key,
char *val,
int val_len_max);
214#define SETTINGS_STATIC_HANDLER_DEFINE_WITH_CPRIO(_hname, _tree, _get, _set, \
215 _commit, _export, _cprio) \
216 const STRUCT_SECTION_ITERABLE(settings_handler_static, \
217 settings_handler_ ## _hname) = { \
222 .h_commit = _commit, \
223 .h_export = _export, \
227#define SETTINGS_STATIC_HANDLER_DEFINE(_hname, _tree, _get, _set, _commit, \
229 SETTINGS_STATIC_HANDLER_DEFINE_WITH_CPRIO(_hname, _tree, _get, _set, \
483 char *buf,
size_t buf_len);
510 const char *value,
size_t val_len);
633#ifdef CONFIG_SETTINGS_RUNTIME
void settings_dst_register(struct settings_store *cs)
Register a backend handler acting as destination.
struct settings_handler_static * settings_parse_and_lookup(const char *name, const char **next)
Parses a key to an array of elements and locate corresponding module handler.
void settings_src_register(struct settings_store *cs)
Register a backend handler acting as source.
int settings_call_set_handler(const char *name, size_t len, settings_read_cb read_cb, void *read_cb_arg, const struct settings_load_arg *load_arg)
Calls settings handler.
int settings_name_steq(const char *name, const char *key, const char **next)
Compares the start of name with a key.
int settings_name_next(const char *name, const char **next)
determine the number of characters before the first separator
int settings_runtime_get(const char *name, void *data, size_t len)
Get a value corresponding to a key from a module handler.
int settings_runtime_set(const char *name, const void *data, size_t len)
Set a value with a specific key to a module handler.
int settings_runtime_commit(const char *name)
Apply settings in a module handler.
int settings_delete(const char *name)
Delete a single serialized in persisted storage.
int settings_commit_subtree(const char *subtree)
Call commit for settings handler that belong to subtree.
int settings_load_subtree_direct(const char *subtree, settings_load_direct_cb cb, void *param)
Load limited set of serialized items using given callback.
ssize_t(* settings_read_cb)(void *cb_arg, void *data, size_t len)
Function used to read the data from the settings storage in h_set handler implementations.
Definition settings.h:64
int settings_commit(void)
Call commit for all settings handler.
ssize_t settings_load_one(const char *name, void *buf, size_t buf_len)
Load one serialized item from registered persistence sources.
int(* settings_load_direct_cb)(const char *key, size_t len, settings_read_cb read_cb, void *cb_arg, void *param)
Callback function used for direct loading.
Definition settings.h:318
int settings_save(void)
Save currently running serialized items.
int settings_load(void)
Load serialized items from registered persistence sources.
int settings_save_subtree(const char *subtree)
Save limited set of currently running serialized items.
int settings_register(struct settings_handler *cf)
Register a handler for settings items stored in RAM with commit priority set to default.
int settings_load_subtree(const char *subtree)
Load limited set of serialized items from registered persistence sources.
ssize_t settings_get_val_len(const char *key)
Get the data length of the value relative to the key.
int settings_register_with_cprio(struct settings_handler *cf, int cprio)
Register a handler for settings items stored in RAM with commit priority.
int settings_save_one(const char *name, const void *value, size_t val_len)
Write a single serialized value to persisted storage (if it has changed value).
int settings_subsys_init(void)
Initialization of settings and backend.
struct _snode sys_snode_t
Single-linked list node structure.
Definition slist.h:39
__SIZE_TYPE__ ssize_t
Definition types.h:28
int settings_storage_get(void **storage)
Get the storage instance used by zephyr.
Config handlers without the node element, used for static handlers.
Definition settings.h:140
int(* h_commit)(void)
This handler gets called after settings has been loaded in full.
Definition settings.h:175
int(* h_set)(const char *key, size_t len, settings_read_cb read_cb, void *cb_arg)
Set value handler of settings items identified by keyword names.
Definition settings.h:160
int cprio
Priority of commit, lower value is higher priority.
Definition settings.h:145
const char * name
Name of subtree.
Definition settings.h:142
int(* h_export)(int(*export_func)(const char *name, const void *val, size_t val_len))
This gets called to dump all current settings items.
Definition settings.h:180
int(* h_get)(const char *key, char *val, int val_len_max)
Get values handler of settings items identified by keyword names.
Definition settings.h:148
Config handlers for subtree implement a set of handler functions.
Definition settings.h:71
int(* h_export)(int(*export_func)(const char *name, const void *val, size_t val_len))
This gets called to dump all current settings items.
Definition settings.h:113
sys_snode_t node
Linked list node info for module internal usage.
Definition settings.h:131
int(* h_set)(const char *key, size_t len, settings_read_cb read_cb, void *cb_arg)
Set value handler of settings items identified by keyword names.
Definition settings.h:91
int(* h_get)(const char *key, char *val, int val_len_max)
Get values handler of settings items identified by keyword names.
Definition settings.h:79
const char * name
Name of subtree.
Definition settings.h:73
int cprio
Priority of commit, lower value is higher priority.
Definition settings.h:76
int(* h_commit)(void)
This handler gets called after settings has been loaded in full.
Definition settings.h:106
Arguments for data loading.
Definition settings.h:440
const char * subtree
Name of the subtree to be loaded.
Definition settings.h:446
void * param
Parameter for callback function.
Definition settings.h:458
settings_load_direct_cb cb
Pointer to the callback function.
Definition settings.h:452
Backend handler functions.
Definition settings.h:466
int(* csi_load)(struct settings_store *cs, const struct settings_load_arg *arg)
Loads values from storage limited to subtree defined by subtree.
Definition settings.h:467
int(* csi_save_end)(struct settings_store *cs)
Handler called after an export operation.
Definition settings.h:520
ssize_t(* csi_get_val_len)(struct settings_store *cs, const char *name)
Gets the value's length associated to the Key defined by name.
Definition settings.h:493
ssize_t(* csi_load_one)(struct settings_store *cs, const char *name, char *buf, size_t buf_len)
Loads one value from storage that corresponds to the key defined by name.
Definition settings.h:482
int(* csi_save_start)(struct settings_store *cs)
Handler called before an export operation.
Definition settings.h:502
int(* csi_save)(struct settings_store *cs, const char *name, const char *value, size_t val_len)
Save a single key-value pair to storage.
Definition settings.h:509
Backend handler node for storage handling.
Definition settings.h:428
sys_snode_t cs_next
Linked list node info for internal usage.
Definition settings.h:429
const struct settings_store_itf * cs_itf
Backend handler structure.
Definition settings.h:432