7a9afee589db5945a9800662fb0d85ba004fa304
[collectd.git] / src / meta_data.h
1 /**
2  * collectd - src/meta_data.h
3  * Copyright (C) 2008,2009  Florian octo Forster
4  *
5  * This program is free software; you can redistribute it and/or modify it
6  * under the terms of the GNU General Public License as published by the
7  * Free Software Foundation; only version 2 of the License is applicable.
8  *
9  * This program is distributed in the hope that it will be useful, but
10  * WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
12  * General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License along
15  * with this program; if not, write to the Free Software Foundation, Inc.,
16  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
17  *
18  * Authors:
19  *   Florian octo Forster <octo at verplant.org>
20  **/
21
22 #ifndef META_DATA_H
23 #define META_DATA_H
24
25 #include "collectd.h"
26
27 /*
28  * Defines
29  */
30 #define MD_TYPE_STRING       1
31 #define MD_TYPE_SIGNED_INT   2
32 #define MD_TYPE_UNSIGNED_INT 3
33 #define MD_TYPE_DOUBLE       4
34 #define MD_TYPE_BOOLEAN      5
35
36 struct meta_data_s;
37 typedef struct meta_data_s meta_data_t;
38
39 meta_data_t *meta_data_create (void);
40 void meta_data_destroy (meta_data_t *md);
41
42 int meta_data_exists (meta_data_t *md, const char *key);
43 int meta_data_type (meta_data_t *md, const char *key);
44 int meta_data_delete (meta_data_t *md, const char *key);
45
46 int meta_data_add_string (meta_data_t *md,
47     const char *key,
48     const char *value);
49 int meta_data_add_signed_int (meta_data_t *md,
50     const char *key,
51     int64_t value);
52 int meta_data_add_unsigned_int (meta_data_t *md,
53     const char *key,
54     uint64_t value);
55 int meta_data_add_double (meta_data_t *md,
56     const char *key,
57     double value);
58 int meta_data_add_boolean (meta_data_t *md,
59     const char *key,
60     _Bool value);
61
62 int meta_data_get_string (meta_data_t *md,
63     const char *key,
64     char **value);
65 int meta_data_get_signed_int (meta_data_t *md,
66     const char *key,
67     int64_t *value);
68 int meta_data_get_unsigned_int (meta_data_t *md,
69     const char *key,
70     uint64_t *value);
71 int meta_data_get_double (meta_data_t *md,
72     const char *key,
73     double *value);
74 int meta_data_get_boolean (meta_data_t *md,
75     const char *key,
76     _Bool *value);
77
78 #endif /* META_DATA_H */
79 /* vim: set sw=2 sts=2 et : */