107078e7ca6e75909d3ecd6559749a37575009e8
[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 #define VALUE_LIST_INIT { NULL, 0, 0, "localhost", "", "", "" }
56
57 struct data_source_s
58 {
59         char   name[DATA_MAX_NAME_LEN];
60         int    type;
61         double min;
62         double max;
63 };
64 typedef struct data_source_s data_source_t;
65
66 struct data_set_s
67 {
68         char           type[DATA_MAX_NAME_LEN];
69         int            ds_num;
70         data_source_t *ds;
71 };
72 typedef struct data_set_s data_set_t;
73
74 typedef struct complain_s
75 {
76         unsigned int interval; /* how long we wait for reporting this error again */
77         unsigned int delay;    /* how many more iterations we still need to wait */
78 } complain_t;
79
80 extern char hostname[DATA_MAX_NAME_LEN];
81
82 /*
83  * NAME
84  *  plugin_set_dir
85  *
86  * DESCRIPTION
87  *  Sets the current `plugindir'
88  *
89  * ARGUMENTS
90  *  `dir'       Path to the plugin directory
91  *
92  * NOTES
93  *  If `dir' is NULL the compiled in default `PLUGINDIR' is used.
94  */
95 void plugin_set_dir (const char *dir);
96
97 /*
98  * NAME
99  *  plugin_load
100  *
101  * DESCRIPTION
102  *  Searches the current `plugindir' (see `plugin_set_dir') for the plugin
103  *  named $type and loads it. Afterwards the plugin's `module_register'
104  *  function is called, which then calls `plugin_register' to register callback
105  *  functions.
106  *
107  * ARGUMENTS
108  *  `type'      Name of the plugin to load.
109  *
110  * RETURN VALUE
111  *  Returns zero upon success, a value greater than zero if no plugin was found
112  *  and a value below zero if an error occurs.
113  *
114  * NOTES
115  *  No attempt is made to re-load an already loaded module.
116  */
117 int  plugin_load (const char *name);
118
119 void plugin_init_all (void);
120 void plugin_read_all (const int *loop);
121 void plugin_shutdown_all (void);
122
123 /*
124  * The `plugin_register_*' functions are used to make `config', `init',
125  * `read', `write' and `shutdown' functions known to the plugin
126  * infrastructure. Also, the data-formats are made public like this.
127  */
128 int plugin_register_config (const char *name,
129                 int (*callback) (const char *key, const char *val),
130                 const char **keys, int keys_num);
131 int plugin_register_init (const char *name,
132                 int (*callback) (void));
133 int plugin_register_read (const char *name,
134                 int (*callback) (void));
135 int plugin_register_write (const char *name,
136                 int (*callback) (const data_set_t *ds, const value_list_t *vl));
137 int plugin_register_shutdown (char *name,
138                 int (*callback) (void));
139 int plugin_register_data_set (const data_set_t *ds);
140
141 /*
142  * NAME
143  *  plugin_dispatch_values
144  *
145  * DESCRIPTION
146  *  This function is called by reading processes with the values they've
147  *  aquired. The function fetches the data-set definition (that has been
148  *  registered using `plugin_register_data_set') and calls _all_ registered
149  *  write-functions.
150  *
151  * ARGUMENTS
152  *  `name'      Name/type of the data-set that describe the values in `vl'.
153  *  `vl'        Value list of the values that have been read by a `read'
154  *              function.
155  */
156 int plugin_dispatch_values (const char *name, const value_list_t *vl);
157
158 /* TODO: Move plugin_{complain,relief} into `utils_complain.[ch]'. -octo */
159 void plugin_complain (int level, complain_t *c, const char *format, ...);
160 void plugin_relief (int level, complain_t *c, const char *format, ...);
161
162 #endif /* PLUGIN_H */