summary | shortlog | log | commit | commitdiff | tree
raw | patch | inline | side by side (parent: 985cc61)
raw | patch | inline | side by side (parent: 985cc61)
author | Florian Forster <octo@huhu.verplant.org> | |
Wed, 27 Feb 2008 09:08:54 +0000 (10:08 +0100) | ||
committer | Florian Forster <octo@huhu.verplant.org> | |
Wed, 27 Feb 2008 09:08:54 +0000 (10:08 +0100) |
src/unixsock.c | patch | blob | history |
diff --git a/src/unixsock.c b/src/unixsock.c
index 63c3ae958d2e5aece8e857f738ad474196961b00..ca7aa2e6ed77fb513be6b82ef7980562069c8ab5 100644 (file)
--- a/src/unixsock.c
+++ b/src/unixsock.c
#include "plugin.h"
#include "configfile.h"
+/* FIXME: Replace this with "utils_cmd_getval.h" asap */
+#include "utils_cache.h"
+
#include "utils_cmd_putval.h"
#include "utils_cmd_putnotif.h"
char *plugin_instance;
char *type;
char *type_instance;
- char name[4*DATA_MAX_NAME_LEN];
- value_cache_t *vc;
+ gauge_t *values;
+ size_t values_num;
+
+ const data_set_t *ds;
+
int status;
int i;
}
DEBUG ("unixsock plugin: Got query for `%s'", fields[1]);
+ if (strlen (fields[1]) < strlen ("h/p/t"))
+ {
+ fprintf (fh, "-1 Invalied identifier, %s", fields[1]);
+ fflush (fh);
+ return (-1);
+ }
+
status = parse_identifier (fields[1], &hostname,
&plugin, &plugin_instance,
&type, &type_instance);
return (-1);
}
- status = format_name (name, sizeof (name),
- hostname, plugin, plugin_instance, type, type_instance);
- if (status != 0)
+ ds = plugin_get_ds (type);
+ if (ds == NULL)
{
- fprintf (fh, "-1 format_name failed.\n");
+ DEBUG ("unixsock plugin: plugin_get_ds (%s) == NULL;", type);
+ fprintf (fh, "-1 Type `%s' is unknown.\n", type);
+ fflush (fh);
return (-1);
}
- pthread_mutex_lock (&cache_lock);
-
- DEBUG ("vc = cache_search (%s)", name);
- vc = cache_search (name);
-
- if (vc == NULL)
+ values = NULL;
+ values_num = 0;
+ status = uc_get_rate_by_name (fields[1], &values, &values_num);
+ if (status != 0)
{
- DEBUG ("Did not find cache entry.");
fprintf (fh, "-1 No such value");
+ fflush (fh);
+ return (-1);
}
- else
+
+ if (ds->ds_num != values_num)
{
- DEBUG ("Found cache entry.");
- fprintf (fh, "%i", vc->values_num);
- for (i = 0; i < vc->values_num; i++)
- {
- fprintf (fh, " %s=", vc->ds->ds[i].name);
- if (isnan (vc->gauge[i]))
- fprintf (fh, "NaN");
- else
- fprintf (fh, "%12e", vc->gauge[i]);
- }
+ ERROR ("ds[%s]->ds_num = %i, "
+ "but uc_get_rate_by_name returned %i values.",
+ ds->type, ds->ds_num, values_num);
+ fprintf (fh, "-1 Error reading value from cache.\n");
+ fflush (fh);
+ sfree (values);
+ return (-1);
}
- /* Free the mutex as soon as possible and definitely before flushing */
- pthread_mutex_unlock (&cache_lock);
+ fprintf (fh, "%u", (unsigned int) values_num);
+ for (i = 0; i < values_num; i++)
+ {
+ fprintf (fh, " %s=", ds->ds[i].name);
+ if (isnan (values[i]))
+ fprintf (fh, "NaN");
+ else
+ fprintf (fh, "%12e", values[i]);
+ }
fprintf (fh, "\n");
fflush (fh);
+ sfree (values);
+
return (0);
} /* int us_handle_getval */