Code

src/plugin.[ch]: Removed the complain functions.
authorFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sun, 9 Dec 2007 15:42:14 +0000 (16:42 +0100)
committerFlorian Forster <octo@leeloo.lan.home.verplant.org>
Sun, 9 Dec 2007 15:42:14 +0000 (16:42 +0100)
src/plugin.c
src/plugin.h

index 6b17290f32dbe08a9a4bb6406cbc8fef35efdd01..7cf54c375ca52f269cf090d284950ef72c56ae86 100644 (file)
@@ -769,53 +769,6 @@ void plugin_log (int level, const char *format, ...)
        }
 } /* void plugin_log */
 
-void plugin_complain (int level, complain_t *c, const char *format, ...)
-{
-       char message[512];
-       va_list ap;
-
-       if (c->delay > 0)
-       {
-               c->delay--;
-               return;
-       }
-
-       if (c->interval < interval_g)
-               c->interval = interval_g;
-       else
-               c->interval *= 2;
-
-       if (c->interval > 86400)
-               c->interval = 86400;
-
-       c->delay = c->interval / interval_g;
-
-       va_start (ap, format);
-       vsnprintf (message, 512, format, ap);
-       message[511] = '\0';
-       va_end (ap);
-
-       plugin_log (level, message);
-}
-
-void plugin_relief (int level, complain_t *c, const char *format, ...)
-{
-       char message[512];
-       va_list ap;
-
-       if (c->interval == 0)
-               return;
-
-       c->interval = 0;
-
-       va_start (ap, format);
-       vsnprintf (message, 512, format, ap);
-       message[511] = '\0';
-       va_end (ap);
-
-       plugin_log (level, message);
-}
-
 const data_set_t *plugin_get_ds (const char *name)
 {
        data_set_t *ds;
index 96eb0cb5633cf1cbe5fe6153b176f46040b49c5e..428c4f09319c5818c7ad89985a2561d12dd5cc4e 100644 (file)
@@ -97,12 +97,6 @@ struct data_set_s
 };
 typedef struct data_set_s data_set_t;
 
-typedef struct complain_s
-{
-       unsigned int interval; /* how long we wait for reporting this error again */
-       unsigned int delay;    /* how many more iterations we still need to wait */
-} complain_t;
-
 typedef struct notification_s
 {
        int    severity;
@@ -218,10 +212,6 @@ void plugin_log (int level, const char *format, ...);
 # define DEBUG(...)  /* noop */
 #endif /* ! COLLECT_DEBUG */
 
-/* TODO: Move plugin_{complain,relief} into `utils_complain.[ch]'. -octo */
-void plugin_complain (int level, complain_t *c, const char *format, ...);
-void plugin_relief (int level, complain_t *c, const char *format, ...);
-
 const data_set_t *plugin_get_ds (const char *name);
 
 #endif /* PLUGIN_H */