Merge branch 'sh/postgres-queries'
[collectd.git] / src / utils_complain.c
1 /**
2  * collectd - src/utils_complain.c
3  * Copyright (C) 2006-2007  Florian octo Forster
4  * Copyright (C) 2008  Sebastian tokkee Harl
5  *
6  * This program is free software; you can redistribute it and/or modify it
7  * under the terms of the GNU General Public License as published by the
8  * Free Software Foundation; only version 2 of the License is applicable.
9  *
10  * This program is distributed in the hope that it will be useful, but
11  * WITHOUT ANY WARRANTY; without even the implied warranty of
12  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
13  * General Public License for more details.
14  *
15  * You should have received a copy of the GNU General Public License along
16  * with this program; if not, write to the Free Software Foundation, Inc.,
17  * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
18  *
19  * Authors:
20  *   Florian octo Forster <octo at verplant.org>
21  *   Sebastian tokkee Harl <sh at tokkee.org>
22  **/
23
24 #include "collectd.h"
25 #include "utils_complain.h"
26 #include "plugin.h"
27
28 /* vcomplain returns 0 if it did not report, 1 else */
29 static int vcomplain (int level, c_complain_t *c,
30                 const char *format, va_list ap)
31 {
32         time_t now;
33         char   message[512];
34
35         now = time (NULL);
36
37         if (c->last + c->interval > now)
38                 return 0;
39
40         c->last = now;
41
42         if (c->interval < plugin_get_interval ())
43                 c->interval = plugin_get_interval ();
44         else
45                 c->interval *= 2;
46
47         if (c->interval > 86400)
48                 c->interval = 86400;
49
50         vsnprintf (message, sizeof (message), format, ap);
51         message[sizeof (message) - 1] = '\0';
52
53         plugin_log (level, "%s", message);
54         return 1;
55 } /* vcomplain */
56
57 void c_complain (int level, c_complain_t *c, const char *format, ...)
58 {
59         va_list ap;
60
61         /* reset the old interval */
62         if (c->interval < 0)
63                 c->interval *= -1;
64
65         va_start (ap, format);
66         vcomplain (level, c, format, ap);
67         va_end (ap);
68 } /* c_complain */
69
70 void c_complain_once (int level, c_complain_t *c, const char *format, ...)
71 {
72         va_list ap;
73
74         if (c->interval < 0)
75                 return;
76
77         va_start (ap, format);
78         if (vcomplain (level, c, format, ap))
79                 c->interval *= -1;
80         va_end (ap);
81 } /* c_complain_once */
82
83 void c_do_release (int level, c_complain_t *c, const char *format, ...)
84 {
85         char message[512];
86         va_list ap;
87
88         if (c->interval == 0)
89                 return;
90
91         c->interval = 0;
92
93         va_start (ap, format);
94         vsnprintf (message, sizeof (message), format, ap);
95         message[sizeof (message) - 1] = '\0';
96         va_end (ap);
97
98         plugin_log (level, "%s", message);
99 } /* c_release */
100
101 /* vim: set sw=4 ts=4 tw=78 noexpandtab : */
102