settings.h 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602
  1. /*
  2. * Copyright (c) 2018 Nordic Semiconductor ASA
  3. * Copyright (c) 2015 Runtime Inc
  4. *
  5. * SPDX-License-Identifier: Apache-2.0
  6. */
  7. #ifndef ZEPHYR_INCLUDE_SETTINGS_SETTINGS_H_
  8. #define ZEPHYR_INCLUDE_SETTINGS_SETTINGS_H_
  9. #include <sys/types.h>
  10. #include <sys/util.h>
  11. #include <sys/slist.h>
  12. #include <stdint.h>
  13. #ifdef __cplusplus
  14. extern "C" {
  15. #endif
  16. /**
  17. * @defgroup file_system_storage File System Storage
  18. * @{
  19. * @}
  20. */
  21. /**
  22. * @defgroup settings Settings
  23. * @ingroup file_system_storage
  24. * @{
  25. */
  26. #define SETTINGS_MAX_DIR_DEPTH 8 /* max depth of settings tree */
  27. #define SETTINGS_MAX_NAME_LEN (8 * SETTINGS_MAX_DIR_DEPTH)
  28. #define SETTINGS_MAX_VAL_LEN 256
  29. #define SETTINGS_NAME_SEPARATOR '/'
  30. #define SETTINGS_NAME_END '='
  31. /* pleace for settings additions:
  32. * up to 7 separators, '=', '\0'
  33. */
  34. #define SETTINGS_EXTRA_LEN ((SETTINGS_MAX_DIR_DEPTH - 1) + 2)
  35. /**
  36. * Function used to read the data from the settings storage in
  37. * h_set handler implementations.
  38. *
  39. * @param[in] cb_arg arguments for the read function. Appropriate cb_arg is
  40. * transferred to h_set handler implementation by
  41. * the backend.
  42. * @param[out] data the destination buffer
  43. * @param[in] len length of read
  44. *
  45. * @return positive: Number of bytes read, 0: key-value pair is deleted.
  46. * On error returns -ERRNO code.
  47. */
  48. typedef ssize_t (*settings_read_cb)(void *cb_arg, void *data, size_t len);
  49. /**
  50. * @struct settings_handler
  51. * Config handlers for subtree implement a set of handler functions.
  52. * These are registered using a call to @ref settings_register.
  53. */
  54. struct settings_handler {
  55. const char *name;
  56. /**< Name of subtree. */
  57. int (*h_get)(const char *key, char *val, int val_len_max);
  58. /**< Get values handler of settings items identified by keyword names.
  59. *
  60. * Parameters:
  61. * - key[in] the name with skipped part that was used as name in
  62. * handler registration
  63. * - val[out] buffer to receive value.
  64. * - val_len_max[in] size of that buffer.
  65. *
  66. * Return: length of data read on success, negative on failure.
  67. */
  68. int (*h_set)(const char *key, size_t len, settings_read_cb read_cb,
  69. void *cb_arg);
  70. /**< Set value handler of settings items identified by keyword names.
  71. *
  72. * Parameters:
  73. * - key[in] the name with skipped part that was used as name in
  74. * handler registration
  75. * - len[in] the size of the data found in the backend.
  76. * - read_cb[in] function provided to read the data from the backend.
  77. * - cb_arg[in] arguments for the read function provided by the
  78. * backend.
  79. *
  80. * Return: 0 on success, non-zero on failure.
  81. */
  82. int (*h_commit)(void);
  83. /**< This handler gets called after settings has been loaded in full.
  84. * User might use it to apply setting to the application.
  85. *
  86. * Return: 0 on success, non-zero on failure.
  87. */
  88. int (*h_export)(int (*export_func)(const char *name, const void *val,
  89. size_t val_len));
  90. /**< This gets called to dump all current settings items.
  91. *
  92. * This happens when @ref settings_save tries to save the settings.
  93. * Parameters:
  94. * - export_func: the pointer to the internal function which appends
  95. * a single key-value pair to persisted settings. Don't store
  96. * duplicated value. The name is subtree/key string, val is the string
  97. * with value.
  98. *
  99. * @remarks The User might limit a implementations of handler to serving
  100. * only one keyword at one call - what will impose limit to get/set
  101. * values using full subtree/key name.
  102. *
  103. * Return: 0 on success, non-zero on failure.
  104. */
  105. sys_snode_t node;
  106. /**< Linked list node info for module internal usage. */
  107. };
  108. /**
  109. * @struct settings_handler_static
  110. * Config handlers without the node element, used for static handlers.
  111. * These are registered using a call to SETTINGS_REGISTER_STATIC().
  112. */
  113. struct settings_handler_static {
  114. const char *name;
  115. /**< Name of subtree. */
  116. int (*h_get)(const char *key, char *val, int val_len_max);
  117. /**< Get values handler of settings items identified by keyword names.
  118. *
  119. * Parameters:
  120. * - key[in] the name with skipped part that was used as name in
  121. * handler registration
  122. * - val[out] buffer to receive value.
  123. * - val_len_max[in] size of that buffer.
  124. *
  125. * Return: length of data read on success, negative on failure.
  126. */
  127. int (*h_set)(const char *key, size_t len, settings_read_cb read_cb,
  128. void *cb_arg);
  129. /**< Set value handler of settings items identified by keyword names.
  130. *
  131. * Parameters:
  132. * - key[in] the name with skipped part that was used as name in
  133. * handler registration
  134. * - len[in] the size of the data found in the backend.
  135. * - read_cb[in] function provided to read the data from the backend.
  136. * - cb_arg[in] arguments for the read function provided by the
  137. * backend.
  138. *
  139. * Return: 0 on success, non-zero on failure.
  140. */
  141. int (*h_commit)(void);
  142. /**< This handler gets called after settings has been loaded in full.
  143. * User might use it to apply setting to the application.
  144. */
  145. int (*h_export)(int (*export_func)(const char *name, const void *val,
  146. size_t val_len));
  147. /**< This gets called to dump all current settings items.
  148. *
  149. * This happens when @ref settings_save tries to save the settings.
  150. * Parameters:
  151. * - export_func: the pointer to the internal function which appends
  152. * a single key-value pair to persisted settings. Don't store
  153. * duplicated value. The name is subtree/key string, val is the string
  154. * with value.
  155. *
  156. * @remarks The User might limit a implementations of handler to serving
  157. * only one keyword at one call - what will impose limit to get/set
  158. * values using full subtree/key name.
  159. *
  160. * Return: 0 on success, non-zero on failure.
  161. */
  162. };
  163. /**
  164. * Define a static handler for settings items
  165. *
  166. * @param _hname handler name
  167. * @param _tree subtree name
  168. * @param _get get routine (can be NULL)
  169. * @param _set set routine (can be NULL)
  170. * @param _commit commit routine (can be NULL)
  171. * @param _export export routine (can be NULL)
  172. *
  173. * This creates a variable _hname prepended by settings_handler_.
  174. *
  175. */
  176. #define SETTINGS_STATIC_HANDLER_DEFINE(_hname, _tree, _get, _set, _commit, \
  177. _export) \
  178. const STRUCT_SECTION_ITERABLE(settings_handler_static, \
  179. settings_handler_ ## _hname) = { \
  180. .name = _tree, \
  181. .h_get = _get, \
  182. .h_set = _set, \
  183. .h_commit = _commit, \
  184. .h_export = _export, \
  185. }
  186. /**
  187. * Initialization of settings and backend
  188. *
  189. * Can be called at application startup.
  190. * In case the backend is a FS Remember to call it after the FS was mounted.
  191. * For FCB backend it can be called without such a restriction.
  192. *
  193. * @return 0 on success, non-zero on failure.
  194. */
  195. int settings_subsys_init(void);
  196. /**
  197. * Register a handler for settings items stored in RAM.
  198. *
  199. * @param cf Structure containing registration info.
  200. *
  201. * @return 0 on success, non-zero on failure.
  202. */
  203. int settings_register(struct settings_handler *cf);
  204. /**
  205. * Load serialized items from registered persistence sources. Handlers for
  206. * serialized item subtrees registered earlier will be called for encountered
  207. * values.
  208. *
  209. * @return 0 on success, non-zero on failure.
  210. */
  211. int settings_load(void);
  212. /**
  213. * Load limited set of serialized items from registered persistence sources.
  214. * Handlers for serialized item subtrees registered earlier will be called for
  215. * encountered values that belong to the subtree.
  216. *
  217. * @param[in] subtree name of the subtree to be loaded.
  218. * @return 0 on success, non-zero on failure.
  219. */
  220. int settings_load_subtree(const char *subtree);
  221. /**
  222. * Callback function used for direct loading.
  223. * Used by @ref settings_load_subtree_direct function.
  224. *
  225. * @param[in] key the name with skipped part that was used as name in
  226. * handler registration
  227. * @param[in] len the size of the data found in the backend.
  228. * @param[in] read_cb function provided to read the data from the backend.
  229. * @param[in,out] cb_arg arguments for the read function provided by the
  230. * backend.
  231. * @param[in,out] param parameter given to the
  232. * @ref settings_load_subtree_direct function.
  233. *
  234. * - key[in] the name with skipped part that was used as name in
  235. * handler registration
  236. * - len[in] the size of the data found in the backend.
  237. * - read_cb[in] function provided to read the data from the backend.
  238. * - cb_arg[in] arguments for the read function provided by the
  239. * backend.
  240. *
  241. * @return When nonzero value is returned, further subtree searching is stopped.
  242. * Use with care as some settings backends would iterate through old
  243. * values, and the current value is returned last.
  244. */
  245. typedef int (*settings_load_direct_cb)(
  246. const char *key,
  247. size_t len,
  248. settings_read_cb read_cb,
  249. void *cb_arg,
  250. void *param);
  251. /**
  252. * Load limited set of serialized items using given callback.
  253. *
  254. * This function bypasses the normal data workflow in settings module.
  255. * All the settings values that are found are passed to the given callback.
  256. *
  257. * @note
  258. * This function does not call commit function.
  259. * It works as a blocking function, so it is up to the user to call
  260. * any kind of commit function when this operation ends.
  261. *
  262. * @param[in] subtree subtree name of the subtree to be loaded.
  263. * @param[in] cb pointer to the callback function.
  264. * @param[in,out] param parameter to be passed when callback
  265. * function is called.
  266. * @return 0 on success, non-zero on failure.
  267. */
  268. int settings_load_subtree_direct(
  269. const char *subtree,
  270. settings_load_direct_cb cb,
  271. void *param);
  272. /**
  273. * Save currently running serialized items. All serialized items which are
  274. * different from currently persisted values will be saved.
  275. *
  276. * @return 0 on success, non-zero on failure.
  277. */
  278. int settings_save(void);
  279. /**
  280. * Write a single serialized value to persisted storage (if it has
  281. * changed value).
  282. *
  283. * @param name Name/key of the settings item.
  284. * @param value Pointer to the value of the settings item. This value will
  285. * be transferred to the @ref settings_handler::h_export handler implementation.
  286. * @param val_len Length of the value.
  287. *
  288. * @return 0 on success, non-zero on failure.
  289. */
  290. int settings_save_one(const char *name, const void *value, size_t val_len);
  291. /**
  292. * Delete a single serialized in persisted storage.
  293. *
  294. * Deleting an existing key-value pair in the settings mean
  295. * to set its value to NULL.
  296. *
  297. * @param name Name/key of the settings item.
  298. *
  299. * @return 0 on success, non-zero on failure.
  300. */
  301. int settings_delete(const char *name);
  302. /**
  303. * Call commit for all settings handler. This should apply all
  304. * settings which has been set, but not applied yet.
  305. *
  306. * @return 0 on success, non-zero on failure.
  307. */
  308. int settings_commit(void);
  309. /**
  310. * Call commit for settings handler that belong to subtree.
  311. * This should apply all settings which has been set, but not applied yet.
  312. *
  313. * @param[in] subtree name of the subtree to be committed.
  314. *
  315. * @return 0 on success, non-zero on failure.
  316. */
  317. int settings_commit_subtree(const char *subtree);
  318. /**
  319. * @} settings
  320. */
  321. /**
  322. * @defgroup settings_backend Settings backend interface
  323. * @ingroup settings
  324. * @{
  325. */
  326. /*
  327. * API for config storage
  328. */
  329. struct settings_store_itf;
  330. /**
  331. * Backend handler node for storage handling.
  332. */
  333. struct settings_store {
  334. sys_snode_t cs_next;
  335. /**< Linked list node info for internal usage. */
  336. const struct settings_store_itf *cs_itf;
  337. /**< Backend handler structure. */
  338. };
  339. /**
  340. * Arguments for data loading.
  341. * Holds all parameters that changes the way data should be loaded from backend.
  342. */
  343. struct settings_load_arg {
  344. /**
  345. * @brief Name of the subtree to be loaded
  346. *
  347. * If NULL, all values would be loaded.
  348. */
  349. const char *subtree;
  350. /**
  351. * @brief Pointer to the callback function.
  352. *
  353. * If NULL then matching registered function would be used.
  354. */
  355. settings_load_direct_cb cb;
  356. /**
  357. * @brief Parameter for callback function
  358. *
  359. * Parameter to be passed to the callback function.
  360. */
  361. void *param;
  362. };
  363. /**
  364. * Backend handler functions.
  365. * Sources are registered using a call to @ref settings_src_register.
  366. * Destinations are registered using a call to @ref settings_dst_register.
  367. */
  368. struct settings_store_itf {
  369. int (*csi_load)(struct settings_store *cs,
  370. const struct settings_load_arg *arg);
  371. /**< Loads values from storage limited to subtree defined by subtree.
  372. *
  373. * Parameters:
  374. * - cs - Corresponding backend handler node,
  375. * - arg - Structure that holds additional data for data loading.
  376. *
  377. * @note
  378. * Backend is expected not to provide duplicates of the entities.
  379. * It means that if the backend does not contain any functionality to
  380. * really delete old keys, it has to filter out old entities and call
  381. * load callback only on the final entity.
  382. */
  383. int (*csi_save_start)(struct settings_store *cs);
  384. /**< Handler called before an export operation.
  385. *
  386. * Parameters:
  387. * - cs - Corresponding backend handler node
  388. */
  389. int (*csi_save)(struct settings_store *cs, const char *name,
  390. const char *value, size_t val_len);
  391. /**< Save a single key-value pair to storage.
  392. *
  393. * Parameters:
  394. * - cs - Corresponding backend handler node
  395. * - name - Key in string format
  396. * - value - Binary value
  397. * - val_len - Length of value in bytes.
  398. */
  399. int (*csi_save_end)(struct settings_store *cs);
  400. /**< Handler called after an export operation.
  401. *
  402. * Parameters:
  403. * - cs - Corresponding backend handler node
  404. */
  405. };
  406. /**
  407. * Register a backend handler acting as source.
  408. *
  409. * @param cs Backend handler node containing handler information.
  410. *
  411. */
  412. void settings_src_register(struct settings_store *cs);
  413. /**
  414. * Register a backend handler acting as destination.
  415. *
  416. * @param cs Backend handler node containing handler information.
  417. *
  418. */
  419. void settings_dst_register(struct settings_store *cs);
  420. /*
  421. * API for handler lookup
  422. */
  423. /**
  424. * Parses a key to an array of elements and locate corresponding module handler.
  425. *
  426. * @param[in] name in string format
  427. * @param[out] next remaining of name after matched handler
  428. *
  429. * @return settings_handler_static on success, NULL on failure.
  430. */
  431. struct settings_handler_static *settings_parse_and_lookup(const char *name,
  432. const char **next);
  433. /**
  434. * Calls settings handler.
  435. *
  436. * @param[in] name The name of the data found in the backend.
  437. * @param[in] len The size of the data found in the backend.
  438. * @param[in] read_cb Function provided to read the data from
  439. * the backend.
  440. * @param[in,out] read_cb_arg Arguments for the read function provided by
  441. * the backend.
  442. * @param[in,out] load_arg Arguments for data loading.
  443. *
  444. * @return 0 or negative error code
  445. */
  446. int settings_call_set_handler(const char *name,
  447. size_t len,
  448. settings_read_cb read_cb,
  449. void *read_cb_arg,
  450. const struct settings_load_arg *load_arg);
  451. /**
  452. * @}
  453. */
  454. /**
  455. * @defgroup settings_name_proc Settings name processing
  456. * @brief API for const name processing
  457. * @ingroup settings
  458. * @{
  459. */
  460. /**
  461. * Compares the start of name with a key
  462. *
  463. * @param[in] name in string format
  464. * @param[in] key comparison string
  465. * @param[out] next pointer to remaining of name, when the remaining part
  466. * starts with a separator the separator is removed from next
  467. *
  468. * Some examples:
  469. * settings_name_steq("bt/btmesh/iv", "b", &next) returns 1, next="t/btmesh/iv"
  470. * settings_name_steq("bt/btmesh/iv", "bt", &next) returns 1, next="btmesh/iv"
  471. * settings_name_steq("bt/btmesh/iv", "bt/", &next) returns 0, next=NULL
  472. * settings_name_steq("bt/btmesh/iv", "bta", &next) returns 0, next=NULL
  473. *
  474. * REMARK: This routine could be simplified if the settings_handler names
  475. * would include a separator at the end.
  476. *
  477. * @return 0: no match
  478. * 1: match, next can be used to check if match is full
  479. */
  480. int settings_name_steq(const char *name, const char *key, const char **next);
  481. /**
  482. * determine the number of characters before the first separator
  483. *
  484. * @param[in] name in string format
  485. * @param[out] next pointer to remaining of name (excluding separator)
  486. *
  487. * @return index of the first separator, in case no separator was found this
  488. * is the size of name
  489. *
  490. */
  491. int settings_name_next(const char *name, const char **next);
  492. /**
  493. * @}
  494. */
  495. #ifdef CONFIG_SETTINGS_RUNTIME
  496. /**
  497. * @defgroup settings_rt Settings subsystem runtime
  498. * @brief API for runtime settings
  499. * @ingroup settings
  500. * @{
  501. */
  502. /**
  503. * Set a value with a specific key to a module handler.
  504. *
  505. * @param name Key in string format.
  506. * @param data Binary value.
  507. * @param len Value length in bytes.
  508. *
  509. * @return 0 on success, non-zero on failure.
  510. */
  511. int settings_runtime_set(const char *name, const void *data, size_t len);
  512. /**
  513. * Get a value corresponding to a key from a module handler.
  514. *
  515. * @param name Key in string format.
  516. * @param data Returned binary value.
  517. * @param len requested value length in bytes.
  518. *
  519. * @return length of data read on success, negative on failure.
  520. */
  521. int settings_runtime_get(const char *name, void *data, size_t len);
  522. /**
  523. * Apply settings in a module handler.
  524. *
  525. * @param name Key in string format.
  526. *
  527. * @return 0 on success, non-zero on failure.
  528. */
  529. int settings_runtime_commit(const char *name);
  530. /**
  531. * @}
  532. */
  533. #endif /* CONFIG_SETTINGS_RUNTIME */
  534. #ifdef __cplusplus
  535. }
  536. #endif
  537. #endif /* ZEPHYR_INCLUDE_SETTINGS_SETTINGS_H_ */