8381871892f56a198d35be014b41cc22f8ab3d06
[collectd.git] / src / plugin.h
1 #ifndef PLUGIN_H
2 #define PLUGIN_H
3
4 /**
5  * collectd - src/plugin.h
6  * Copyright (C) 2005,2006  Florian octo Forster
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU General Public License as published by the
10  * Free Software Foundation; only version 2 of the License is applicable.
11  *
12  * This program is distributed in the hope that it will be useful, but
13  * WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
15  * General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License along
18  * with this program; if not, write to the Free Software Foundation, Inc.,
19  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
20  *
21  * Authors:
22  *   Florian octo Forster <octo at verplant.org>
23  **/
24
25 #define DATA_MAX_NAME_LEN 64
26
27 #define DS_TYPE_COUNTER 0
28 #define DS_TYPE_GAUGE   1
29
30 /*
31  * Public data types
32  */
33 typedef unsigned long long counter_t;
34 typedef double gauge_t;
35
36 union value_u
37 {
38         counter_t counter;
39         gauge_t   gauge;
40 };
41 typedef union value_u value_t;
42
43 struct value_list_s
44 {
45         value_t *values;
46         int      values_len;
47         time_t   time;
48         char     host[DATA_MAX_NAME_LEN];
49         char     plugin[DATA_MAX_NAME_LEN];
50         char     plugin_instance[DATA_MAX_NAME_LEN];
51         char     type_instance[DATA_MAX_NAME_LEN];
52 };
53 typedef struct value_list_s value_list_t;
54
55 struct data_source_s
56 {
57         char   name[DATA_MAX_NAME_LEN];
58         int    type;
59         double min;
60         double max;
61 };
62 typedef struct data_source_s data_source_t;
63
64 struct data_set_s
65 {
66         char           type[DATA_MAX_NAME_LEN];
67         int            ds_num;
68         data_source_t *ds;
69 };
70 typedef struct data_set_s data_set_t;
71
72 typedef struct complain_s
73 {
74         unsigned int interval; /* how long we wait for reporting this error again */
75         unsigned int delay;    /* how many more iterations we still need to wait */
76 } complain_t;
77
78 /*
79  * NAME
80  *  plugin_set_dir
81  *
82  * DESCRIPTION
83  *  Sets the current `plugindir'
84  *
85  * ARGUMENTS
86  *  `dir'       Path to the plugin directory
87  *
88  * NOTES
89  *  If `dir' is NULL the compiled in default `PLUGINDIR' is used.
90  */
91 void plugin_set_dir (const char *dir);
92
93 /*
94  * NAME
95  *  plugin_load
96  *
97  * DESCRIPTION
98  *  Searches the current `plugindir' (see `plugin_set_dir') for the plugin
99  *  named $type and loads it. Afterwards the plugin's `module_register'
100  *  function is called, which then calls `plugin_register' to register callback
101  *  functions.
102  *
103  * ARGUMENTS
104  *  `type'      Name of the plugin to load.
105  *
106  * RETURN VALUE
107  *  Returns zero upon success, a value greater than zero if no plugin was found
108  *  and a value below zero if an error occurs.
109  *
110  * NOTES
111  *  No attempt is made to re-load an already loaded module.
112  */
113 int  plugin_load (const char *name);
114
115 void plugin_init_all (void);
116 void plugin_read_all (const int *loop);
117 void plugin_shutdown_all (void);
118
119 /*
120  * The `plugin_register_*' functions are used to make `config', `init',
121  * `read', `write' and `shutdown' functions known to the plugin
122  * infrastructure. Also, the data-formats are made public like this.
123  */
124 int plugin_register_config (const char *name,
125                 int (*callback) (const char *key, const char *val),
126                 const char **keys, int keys_num);
127 int plugin_register_init (const char *name,
128                 int (*callback) (void));
129 int plugin_register_read (const char *name,
130                 int (*callback) (void));
131 int plugin_register_write (const char *name,
132                 int (*callback) (const data_set_t *ds, const value_list_t *vl));
133 int plugin_register_shutdown (char *name,
134                 int (*callback) (void));
135 int plugin_register_data_set (const data_set_t *ds);
136
137 /*
138  * NAME
139  *  plugin_dispatch_values
140  *
141  * DESCRIPTION
142  *  This function is called by reading processes with the values they've
143  *  aquired. The function fetches the data-set definition (that has been
144  *  registered using `plugin_register_data_set') and calls _all_ registered
145  *  write-functions.
146  *
147  * ARGUMENTS
148  *  `name'      Name/type of the data-set that describe the values in `vl'.
149  *  `vl'        Value list of the values that have been read by a `read'
150  *              function.
151  */
152 int plugin_dispatch_values (const char *name, const value_list_t *vl);
153
154 /* TODO: Move plugin_{complain,relief} into `utils_complain.[ch]'. -octo */
155 void plugin_complain (int level, complain_t *c, const char *format, ...);
156 void plugin_relief (int level, complain_t *c, const char *format, ...);
157
158 #endif /* PLUGIN_H */