]> git.meshlink.io Git - meshlink/blob - src/conf.h
Use a key/value store with configurable storage callbacks.
[meshlink] / src / conf.h
1 #ifndef MESHLINK_CONF_H
2 #define MESHLINK_CONF_H
3
4 /*
5     econf.h -- header for econf.c
6     Copyright (C) 2018 Guus Sliepen <guus@meshlink.io>
7
8     This program is free software; you can redistribute it and/or modify
9     it under the terms of the GNU General Public License as published by
10     the Free Software Foundation; either version 2 of the License, or
11     (at your option) any later version.
12
13     This program is distributed in the hope that it will be useful,
14     but WITHOUT ANY WARRANTY; without even the implied warranty of
15     MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16     GNU General Public License for more details.
17
18     You should have received a copy of the GNU General Public License along
19     with this program; if not, write to the Free Software Foundation, Inc.,
20     51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
21 */
22
23 struct meshlink_handle;
24 struct meshlink_open_params;
25
26 typedef struct config_t {
27         const uint8_t *buf;
28         size_t len;
29 } config_t;
30
31 typedef bool (*config_scan_action_t)(struct meshlink_handle *mesh, const char *name, size_t len);
32
33 void config_free(struct config_t *config);
34
35 bool config_init(struct meshlink_handle *mesh, const struct meshlink_open_params *params) __attribute__((__warn_unused_result__));
36 void config_exit(struct meshlink_handle *mesh);
37 bool config_destroy(const struct meshlink_open_params *params) __attribute__((__warn_unused_result__));
38
39 bool config_load(struct meshlink_handle *mesh, const char *name, struct config_t *) __attribute__((__warn_unused_result__));
40 bool config_store(struct meshlink_handle *mesh, const char *name, const struct config_t *) __attribute__((__warn_unused_result__));
41 bool config_ls(struct meshlink_handle *mesh, config_scan_action_t action) __attribute__((__warn_unused_result__));
42
43 bool config_exists(struct meshlink_handle *mesh, const char *name) __attribute__((__warn_unused_result__));
44
45 bool config_change_key(struct meshlink_handle *mesh, void *new_key) __attribute__((__warn_unused_result__));
46 bool config_cleanup_old_files(struct meshlink_handle *mesh);
47
48 bool invitation_read(struct meshlink_handle *mesh, const char *name, struct config_t *) __attribute__((__warn_unused_result__));
49 bool invitation_write(struct meshlink_handle *mesh, const char *name, const struct config_t *) __attribute__((__warn_unused_result__));
50 size_t invitation_purge_old(struct meshlink_handle *mesh, time_t deadline);
51 size_t invitation_purge_node(struct meshlink_handle *mesh, const char *name);
52
53 #endif