summaryrefslogtreecommitdiff
path: root/shared/nm-glib-aux/nm-keyfile-aux.h
blob: 0f729c720d3704bb97ec6ee2d1148f1ce2050899 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
// SPDX-License-Identifier: LGPL-2.1+
/*
 * Copyright (C) 2019 Red Hat, Inc.
 */

#ifndef __NM_KEYFILE_AUX_H__
#define __NM_KEYFILE_AUX_H__

/*****************************************************************************/

typedef struct _NMKeyFileDB NMKeyFileDB;

typedef void (*NMKeyFileDBLogFcn) (NMKeyFileDB *self,
                                   int syslog_level,
                                   gpointer user_data,
                                   const char *fmt,
                                   ...) G_GNUC_PRINTF (4, 5);

typedef void (*NMKeyFileDBGotDirtyFcn) (NMKeyFileDB *self,
                                        gpointer user_data);

NMKeyFileDB *nm_key_file_db_new (const char *filename,
                                 const char *group,
                                 NMKeyFileDBLogFcn log_fcn,
                                 NMKeyFileDBGotDirtyFcn got_dirty_fcn,
                                 gpointer user_data);

void nm_key_file_db_start (NMKeyFileDB *self);

NMKeyFileDB *nm_key_file_db_ref (NMKeyFileDB *self);
void nm_key_file_db_unref (NMKeyFileDB *self);

void nm_key_file_db_destroy (NMKeyFileDB *self);

const char *nm_key_file_db_get_filename (NMKeyFileDB *self);

gboolean nm_key_file_db_is_dirty (NMKeyFileDB *self);

char *nm_key_file_db_get_value (NMKeyFileDB *self,
                                const char *key);

char **nm_key_file_db_get_string_list (NMKeyFileDB *self,
                                       const char *key,
                                       gsize *out_len);

void nm_key_file_db_remove_key (NMKeyFileDB *self,
                                const char *key);

void nm_key_file_db_set_value (NMKeyFileDB *self,
                               const char *key,
                               const char *value);

void nm_key_file_db_set_string_list (NMKeyFileDB *self,
                                     const char *key,
                                     const char *const*value,
                                     gssize len);

void nm_key_file_db_to_file (NMKeyFileDB *self,
                             gboolean force);

/*****************************************************************************/

#endif /* __NM_KEYFILE_AUX_H__ */