Merge branch 'collectd-4.2'
[collectd.git] / src / plugin.h
1 #ifndef PLUGIN_H
2 #define PLUGIN_H
3 /**
4  * collectd - src/plugin.h
5  * Copyright (C) 2005-2007  Florian octo Forster
6  *
7  * This program is free software; you can redistribute it and/or modify it
8  * under the terms of the GNU General Public License as published by the
9  * Free Software Foundation; only version 2 of the License is applicable.
10  *
11  * This program is distributed in the hope that it will be useful, but
12  * WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
14  * General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License along
17  * with this program; if not, write to the Free Software Foundation, Inc.,
18  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19  *
20  * Authors:
21  *   Florian octo Forster <octo at verplant.org>
22  **/
23
24 #include "collectd.h"
25 #include "configfile.h"
26
27 #define DATA_MAX_NAME_LEN 64
28
29 #define DS_TYPE_COUNTER 0
30 #define DS_TYPE_GAUGE   1
31
32 #ifndef LOG_ERR
33 # define LOG_ERR 3
34 #endif
35 #ifndef LOG_WARNING
36 # define LOG_WARNING 4
37 #endif
38 #ifndef LOG_NOTICE
39 # define LOG_NOTICE 5
40 #endif
41 #ifndef LOG_INFO
42 # define LOG_INFO 6
43 #endif
44 #ifndef LOG_DEBUG
45 # define LOG_DEBUG 7
46 #endif
47
48 #define NOTIF_MAX_MSG_LEN 256
49
50 #define NOTIF_FAILURE 1
51 #define NOTIF_WARNING 2
52 #define NOTIF_OKAY    4
53
54 /*
55  * Public data types
56  */
57 typedef unsigned long long counter_t;
58 typedef double gauge_t;
59
60 union value_u
61 {
62         counter_t counter;
63         gauge_t   gauge;
64 };
65 typedef union value_u value_t;
66
67 struct value_list_s
68 {
69         value_t *values;
70         int      values_len;
71         time_t   time;
72         int      interval;
73         char     host[DATA_MAX_NAME_LEN];
74         char     plugin[DATA_MAX_NAME_LEN];
75         char     plugin_instance[DATA_MAX_NAME_LEN];
76         char     type_instance[DATA_MAX_NAME_LEN];
77 };
78 typedef struct value_list_s value_list_t;
79
80 #define VALUE_LIST_INIT { NULL, 0, 0, interval_g, "localhost", "", "", "" }
81 #define VALUE_LIST_STATIC { NULL, 0, 0, 0, "localhost", "", "", "" }
82
83 struct data_source_s
84 {
85         char   name[DATA_MAX_NAME_LEN];
86         int    type;
87         double min;
88         double max;
89 };
90 typedef struct data_source_s data_source_t;
91
92 struct data_set_s
93 {
94         char           type[DATA_MAX_NAME_LEN];
95         int            ds_num;
96         data_source_t *ds;
97 };
98 typedef struct data_set_s data_set_t;
99
100 typedef struct notification_s
101 {
102         int    severity;
103         char   message[NOTIF_MAX_MSG_LEN];
104         time_t time;
105         char   host[DATA_MAX_NAME_LEN];
106 } notification_t;
107
108 /*
109  * NAME
110  *  plugin_set_dir
111  *
112  * DESCRIPTION
113  *  Sets the current `plugindir'
114  *
115  * ARGUMENTS
116  *  `dir'       Path to the plugin directory
117  *
118  * NOTES
119  *  If `dir' is NULL the compiled in default `PLUGINDIR' is used.
120  */
121 void plugin_set_dir (const char *dir);
122
123 /*
124  * NAME
125  *  plugin_load
126  *
127  * DESCRIPTION
128  *  Searches the current `plugindir' (see `plugin_set_dir') for the plugin
129  *  named $type and loads it. Afterwards the plugin's `module_register'
130  *  function is called, which then calls `plugin_register' to register callback
131  *  functions.
132  *
133  * ARGUMENTS
134  *  `name'      Name of the plugin to load.
135  *  `mr'        Types of functions to request from the plugin.
136  *
137  * RETURN VALUE
138  *  Returns zero upon success, a value greater than zero if no plugin was found
139  *  and a value below zero if an error occurs.
140  *
141  * NOTES
142  *  No attempt is made to re-load an already loaded module.
143  */
144 int plugin_load (const char *name);
145
146 void plugin_init_all (void);
147 void plugin_read_all (const int *loop);
148 void plugin_shutdown_all (void);
149
150 /*
151  * The `plugin_register_*' functions are used to make `config', `init',
152  * `read', `write' and `shutdown' functions known to the plugin
153  * infrastructure. Also, the data-formats are made public like this.
154  */
155 int plugin_register_config (const char *name,
156                 int (*callback) (const char *key, const char *val),
157                 const char **keys, int keys_num);
158 int plugin_register_complex_config (const char *type,
159                 int (*callback) (oconfig_item_t *));
160 int plugin_register_init (const char *name,
161                 int (*callback) (void));
162 int plugin_register_read (const char *name,
163                 int (*callback) (void));
164 int plugin_register_write (const char *name,
165                 int (*callback) (const data_set_t *ds, const value_list_t *vl));
166 int plugin_register_shutdown (char *name,
167                 int (*callback) (void));
168 int plugin_register_data_set (const data_set_t *ds);
169 int plugin_register_log (char *name,
170                 void (*callback) (int, const char *));
171 int plugin_register_notification (const char *name,
172                 int (*callback) (const notification_t *notif));
173
174 int plugin_unregister_config (const char *name);
175 int plugin_unregister_complex_config (const char *name);
176 int plugin_unregister_init (const char *name);
177 int plugin_unregister_read (const char *name);
178 int plugin_unregister_write (const char *name);
179 int plugin_unregister_shutdown (const char *name);
180 int plugin_unregister_data_set (const char *name);
181 int plugin_unregister_log (const char *name);
182 int plugin_unregister_notification (const char *name);
183
184
185 /*
186  * NAME
187  *  plugin_dispatch_values
188  *
189  * DESCRIPTION
190  *  This function is called by reading processes with the values they've
191  *  aquired. The function fetches the data-set definition (that has been
192  *  registered using `plugin_register_data_set') and calls _all_ registered
193  *  write-functions.
194  *
195  * ARGUMENTS
196  *  `name'      Name/type of the data-set that describe the values in `vl'.
197  *  `vl'        Value list of the values that have been read by a `read'
198  *              function.
199  */
200 int plugin_dispatch_values (const char *name, value_list_t *vl);
201
202 int plugin_dispatch_notification (const notification_t *notif);
203
204 void plugin_log (int level, const char *format, ...);
205 #define ERROR(...)   plugin_log (LOG_ERR,     __VA_ARGS__)
206 #define WARNING(...) plugin_log (LOG_WARNING, __VA_ARGS__)
207 #define NOTICE(...)  plugin_log (LOG_NOTICE,  __VA_ARGS__)
208 #define INFO(...)    plugin_log (LOG_INFO,    __VA_ARGS__)
209 #if COLLECT_DEBUG
210 # define DEBUG(...)  plugin_log (LOG_DEBUG,   __VA_ARGS__)
211 #else /* COLLECT_DEBUG */
212 # define DEBUG(...)  /* noop */
213 #endif /* ! COLLECT_DEBUG */
214
215 const data_set_t *plugin_get_ds (const char *name);
216
217 #endif /* PLUGIN_H */