488e041ed44964de0260ee5ac0d7f1e2b27ae0f3
[collectd.git] / src / plugin.h
1 #ifndef PLUGIN_H
2 #define PLUGIN_H
3 /**
4  * collectd - src/plugin.h
5  * Copyright (C) 2005-2008  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  *   Sebastian Harl <sh at tokkee.org>
23  **/
24
25 #include "collectd.h"
26 #include "configfile.h"
27
28 #define DATA_MAX_NAME_LEN 64
29
30 #define DS_TYPE_COUNTER 0
31 #define DS_TYPE_GAUGE   1
32
33 #ifndef LOG_ERR
34 # define LOG_ERR 3
35 #endif
36 #ifndef LOG_WARNING
37 # define LOG_WARNING 4
38 #endif
39 #ifndef LOG_NOTICE
40 # define LOG_NOTICE 5
41 #endif
42 #ifndef LOG_INFO
43 # define LOG_INFO 6
44 #endif
45 #ifndef LOG_DEBUG
46 # define LOG_DEBUG 7
47 #endif
48
49 #define NOTIF_MAX_MSG_LEN 256
50
51 #define NOTIF_FAILURE 1
52 #define NOTIF_WARNING 2
53 #define NOTIF_OKAY    4
54
55 /*
56  * Public data types
57  */
58 typedef unsigned long long counter_t;
59 typedef double gauge_t;
60
61 union value_u
62 {
63         counter_t counter;
64         gauge_t   gauge;
65 };
66 typedef union value_u value_t;
67
68 struct value_list_s
69 {
70         value_t *values;
71         int      values_len;
72         time_t   time;
73         int      interval;
74         char     host[DATA_MAX_NAME_LEN];
75         char     plugin[DATA_MAX_NAME_LEN];
76         char     plugin_instance[DATA_MAX_NAME_LEN];
77         char     type[DATA_MAX_NAME_LEN];
78         char     type_instance[DATA_MAX_NAME_LEN];
79 };
80 typedef struct value_list_s value_list_t;
81
82 #define VALUE_LIST_INIT { NULL, 0, 0, interval_g, "localhost", "", "", "", "" }
83 #define VALUE_LIST_STATIC { NULL, 0, 0, 0, "localhost", "", "", "", "" }
84
85 struct data_source_s
86 {
87         char   name[DATA_MAX_NAME_LEN];
88         int    type;
89         double min;
90         double max;
91 };
92 typedef struct data_source_s data_source_t;
93
94 struct data_set_s
95 {
96         char           type[DATA_MAX_NAME_LEN];
97         int            ds_num;
98         data_source_t *ds;
99 };
100 typedef struct data_set_s data_set_t;
101
102 typedef struct notification_s
103 {
104         int    severity;
105         time_t time;
106         char   message[NOTIF_MAX_MSG_LEN];
107         char   host[DATA_MAX_NAME_LEN];
108         char   plugin[DATA_MAX_NAME_LEN];
109         char   plugin_instance[DATA_MAX_NAME_LEN];
110         char   type[DATA_MAX_NAME_LEN];
111         char   type_instance[DATA_MAX_NAME_LEN];
112 } notification_t;
113
114 /*
115  * NAME
116  *  plugin_set_dir
117  *
118  * DESCRIPTION
119  *  Sets the current `plugindir'
120  *
121  * ARGUMENTS
122  *  `dir'       Path to the plugin directory
123  *
124  * NOTES
125  *  If `dir' is NULL the compiled in default `PLUGINDIR' is used.
126  */
127 void plugin_set_dir (const char *dir);
128
129 /*
130  * NAME
131  *  plugin_load
132  *
133  * DESCRIPTION
134  *  Searches the current `plugindir' (see `plugin_set_dir') for the plugin
135  *  named $type and loads it. Afterwards the plugin's `module_register'
136  *  function is called, which then calls `plugin_register' to register callback
137  *  functions.
138  *
139  * ARGUMENTS
140  *  `name'      Name of the plugin to load.
141  *  `mr'        Types of functions to request from the plugin.
142  *
143  * RETURN VALUE
144  *  Returns zero upon success, a value greater than zero if no plugin was found
145  *  and a value below zero if an error occurs.
146  *
147  * NOTES
148  *  No attempt is made to re-load an already loaded module.
149  */
150 int plugin_load (const char *name);
151
152 void plugin_init_all (void);
153 void plugin_read_all (void);
154 void plugin_flush_all (int timeout);
155 void plugin_shutdown_all (void);
156
157 int plugin_flush_one (int timeout, const char *name);
158
159 /*
160  * The `plugin_register_*' functions are used to make `config', `init',
161  * `read', `write' and `shutdown' functions known to the plugin
162  * infrastructure. Also, the data-formats are made public like this.
163  */
164 int plugin_register_config (const char *name,
165                 int (*callback) (const char *key, const char *val),
166                 const char **keys, int keys_num);
167 int plugin_register_complex_config (const char *type,
168                 int (*callback) (oconfig_item_t *));
169 int plugin_register_init (const char *name,
170                 int (*callback) (void));
171 int plugin_register_read (const char *name,
172                 int (*callback) (void));
173 int plugin_register_write (const char *name,
174                 int (*callback) (const data_set_t *ds, const value_list_t *vl));
175 int plugin_register_flush (const char *name,
176                 int (*callback) (const int));
177 int plugin_register_shutdown (char *name,
178                 int (*callback) (void));
179 int plugin_register_data_set (const data_set_t *ds);
180 int plugin_register_log (char *name,
181                 void (*callback) (int, const char *));
182 int plugin_register_notification (const char *name,
183                 int (*callback) (const notification_t *notif));
184
185 int plugin_unregister_config (const char *name);
186 int plugin_unregister_complex_config (const char *name);
187 int plugin_unregister_init (const char *name);
188 int plugin_unregister_read (const char *name);
189 int plugin_unregister_write (const char *name);
190 int plugin_unregister_flush (const char *name);
191 int plugin_unregister_shutdown (const char *name);
192 int plugin_unregister_data_set (const char *name);
193 int plugin_unregister_log (const char *name);
194 int plugin_unregister_notification (const char *name);
195
196
197 /*
198  * NAME
199  *  plugin_dispatch_values
200  *
201  * DESCRIPTION
202  *  This function is called by reading processes with the values they've
203  *  aquired. The function fetches the data-set definition (that has been
204  *  registered using `plugin_register_data_set') and calls _all_ registered
205  *  write-functions.
206  *
207  * ARGUMENTS
208  *  `vl'        Value list of the values that have been read by a `read'
209  *              function.
210  */
211 int plugin_dispatch_values (value_list_t *vl);
212
213 int plugin_dispatch_notification (const notification_t *notif);
214
215 void plugin_log (int level, const char *format, ...);
216 #define ERROR(...)   plugin_log (LOG_ERR,     __VA_ARGS__)
217 #define WARNING(...) plugin_log (LOG_WARNING, __VA_ARGS__)
218 #define NOTICE(...)  plugin_log (LOG_NOTICE,  __VA_ARGS__)
219 #define INFO(...)    plugin_log (LOG_INFO,    __VA_ARGS__)
220 #if COLLECT_DEBUG
221 # define DEBUG(...)  plugin_log (LOG_DEBUG,   __VA_ARGS__)
222 #else /* COLLECT_DEBUG */
223 # define DEBUG(...)  /* noop */
224 #endif /* ! COLLECT_DEBUG */
225
226 const data_set_t *plugin_get_ds (const char *name);
227
228 #endif /* PLUGIN_H */