#include "plugin.h"
#include "common.h"
#include "configfile.h"
+#include "utils_avltree.h"
#include "network.h"
"Listen",
"Server",
"TimeToLive",
- NULL
+ "Forward"
};
-static int config_keys_num = 3;
+static int config_keys_num = STATIC_ARRAY_SIZE (config_keys);
static int network_config_ttl = 0;
+static int network_config_forward = 0;
static sockent_t *sending_sockets = NULL;
static char send_buffer_type[DATA_MAX_NAME_LEN];
static pthread_mutex_t send_buffer_lock = PTHREAD_MUTEX_INITIALIZER;
+static avl_tree_t *cache_tree = NULL;
+static pthread_mutex_t cache_lock = PTHREAD_MUTEX_INITIALIZER;
+
/*
* Private functions
*/
+static int cache_check (const char *type, const value_list_t *vl)
+{
+ char key[1024];
+ time_t *value = NULL;
+ int retval = -1;
+
+ if (cache_tree == NULL)
+ return (-1);
+
+ if (format_name (key, sizeof (key), vl->host, vl->plugin,
+ vl->plugin_instance, type, vl->type_instance))
+ return (-1);
+
+ pthread_mutex_lock (&cache_lock);
+
+ if (avl_get (cache_tree, key, (void *) &value) == 0)
+ {
+ if (*value < vl->time)
+ {
+ *value = vl->time;
+ retval = 0;
+ }
+ else
+ {
+ DEBUG ("network plugin: cache_check: *value = %i >= vl->time = %i",
+ (int) *value, (int) vl->time);
+ retval = 1;
+ }
+ }
+ else
+ {
+ char *key_copy = strdup (key);
+ value = malloc (sizeof (time_t));
+ if ((key_copy != NULL) && (value != NULL))
+ {
+ *value = vl->time;
+ avl_insert (cache_tree, key_copy, value);
+ retval = 0;
+ }
+ else
+ {
+ sfree (key_copy);
+ sfree (value);
+ }
+ }
+
+ /* TODO: Flush cache */
+
+ pthread_mutex_unlock (&cache_lock);
+
+ DEBUG ("network plugin: cache_check: key = %s; time = %i; retval = %i",
+ key, (int) vl->time, retval);
+
+ return (retval);
+} /* int cache_check */
+
static int write_part_values (char **ret_buffer, int *ret_buffer_len,
const data_set_t *ds, const value_list_t *vl)
{
if ((vl.time > 0)
&& (strlen (vl.host) > 0)
&& (strlen (vl.plugin) > 0)
- && (strlen (type) > 0))
+ && (strlen (type) > 0)
+ && (cache_check (type, &vl) == 0))
{
DEBUG ("dispatching values");
plugin_dispatch_values (type, &vl);
{
status = parse_part_string (&buffer, &buffer_len,
vl.type_instance, sizeof (vl.type_instance));
- DEBUG ("network type: parse_packet: vl.type_instance = %s", vl.type_instance);
+ DEBUG ("network plugin: parse_packet: vl.type_instance = %s", vl.type_instance);
}
else
{
vl->host, strlen (vl->host)) != 0)
return (-1);
strcpy (vl_def->host, vl->host);
- DEBUG ("host = %s", vl->host);
+ DEBUG ("network plugin: add_to_buffer: host = %s", vl->host);
}
if (vl_def->time != vl->time)
(uint64_t) vl->time))
return (-1);
vl_def->time = vl->time;
- DEBUG ("time = %u", (unsigned int) vl->time);
+ DEBUG ("network plugin: add_to_buffer: time = %u",
+ (unsigned int) vl->time);
}
if (strcmp (vl_def->plugin, vl->plugin) != 0)
vl->plugin, strlen (vl->plugin)) != 0)
return (-1);
strcpy (vl_def->plugin, vl->plugin);
- DEBUG ("plugin = %s", vl->plugin);
+ DEBUG ("network plugin: add_to_buffer: plugin = %s",
+ vl->plugin);
}
if (strcmp (vl_def->plugin_instance, vl->plugin_instance) != 0)
strlen (vl->plugin_instance)) != 0)
return (-1);
strcpy (vl_def->plugin_instance, vl->plugin_instance);
- DEBUG ("plugin_instance = %s", vl->plugin_instance);
+ DEBUG ("network plugin: add_to_buffer: plugin_instance = %s",
+ vl->plugin_instance);
}
if (strcmp (type_def, ds->type) != 0)
ds->type, strlen (ds->type)) != 0)
return (-1);
strcpy (type_def, ds->type);
- DEBUG ("type = %s", ds->type);
+ DEBUG ("network plugin: add_to_buffer: type = %s", ds->type);
}
if (strcmp (vl_def->type_instance, vl->type_instance) != 0)
strlen (vl->type_instance)) != 0)
return (-1);
strcpy (vl_def->type_instance, vl->type_instance);
- DEBUG ("type_instance = %s", vl->type_instance);
+ DEBUG ("network plugin: add_to_buffer: type_instance = %s",
+ vl->type_instance);
}
if (write_part_values (&buffer, &buffer_size, ds, vl) != 0)
{
int status;
+ /* If the value is already in the cache, we have received it via the
+ * network. We write it again if forwarding is activated. It's then in
+ * the cache and should we receive it again we will ignore it. */
+ status = cache_check (ds->type, vl);
+ if ((network_config_forward == 0)
+ && (status != 0))
+ return (0);
+
pthread_mutex_lock (&send_buffer_lock);
status = add_to_buffer (send_buffer_ptr,
else
return (1);
}
+ else if (strcasecmp ("Forward", key) == 0)
+ {
+ if ((strcasecmp ("true", value) == 0)
+ || (strcasecmp ("yes", value) == 0)
+ || (strcasecmp ("on", value) == 0))
+ network_config_forward = 1;
+ else
+ network_config_forward = 0;
+ }
else
{
return (-1);
listen_thread = 0;
+ if (cache_tree != NULL)
+ {
+ void *key;
+ void *value;
+
+ while (avl_pick (cache_tree, &key, &value) == 0)
+ {
+ sfree (key);
+ sfree (value);
+ }
+ avl_destroy (cache_tree);
+ cache_tree = NULL;
+ }
+
/* TODO: Close `sending_sockets' */
plugin_unregister_config ("network");
memset (&send_buffer_vl, '\0', sizeof (send_buffer_vl));
memset (send_buffer_type, '\0', sizeof (send_buffer_type));
+ cache_tree = avl_create ((int (*) (const void *, const void *)) strcmp);
+
/* setup socket(s) and so on */
if (sending_sockets != NULL)
plugin_register_write ("network", network_write);