X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Fmemcached.c;h=59973b0b09bf32ef374e70d35443621acc42853b;hb=0568fc5868295669f20ed5b61f2b3ab0692e3cb4;hp=2df28877252a2d3d0ec95a4dbd7675ad38c159a8;hpb=5e505d5063b668b17ac84f1ad474b0e3fc338818;p=collectd.git diff --git a/src/memcached.c b/src/memcached.c index 2df28877..59973b0b 100644 --- a/src/memcached.c +++ b/src/memcached.c @@ -53,8 +53,6 @@ typedef struct memcached_s memcached_t; static _Bool memcached_have_instances = 0; -static int memcached_read (user_data_t *user_data); - static void memcached_free (memcached_t *st) { if (st == NULL) @@ -233,174 +231,36 @@ static int memcached_query_daemon (char *buffer, size_t buffer_size, memcached_t return (status); } /* int memcached_query_daemon */ -static int memcached_add_read_callback (memcached_t *st) -{ - user_data_t ud; - char callback_name[3*DATA_MAX_NAME_LEN]; - int status; - - memset (&ud, 0, sizeof (ud)); - ud.data = st; - ud.free_func = (void *) memcached_free; - - assert (st->name != NULL); - ssnprintf (callback_name, sizeof (callback_name), "memcached/%s", st->name); - - status = plugin_register_complex_read (/* group = */ "memcached", - /* name = */ callback_name, - /* callback = */ memcached_read, - /* interval = */ NULL, - /* user_data = */ &ud); - return (status); -} /* int memcached_add_read_callback */ - -/* Configuration handling functiions - * - * - * Host foo.zomg.com - * Port "1234" - * - * - */ -static int config_add_instance(oconfig_item_t *ci) +static void memcached_init_vl (value_list_t *vl, memcached_t const *st) { - memcached_t *st; - int i; - int status = 0; - - /* Disable automatic generation of default instance in the init callback. */ - memcached_have_instances = 1; - - st = malloc (sizeof (*st)); - if (st == NULL) + sstrncpy (vl->plugin, "memcached", sizeof (vl->plugin)); + if (strcmp (st->name, "__legacy__") == 0) /* legacy mode */ { - ERROR ("memcached plugin: malloc failed."); - return (-1); - } - - memset (st, 0, sizeof (*st)); - st->name = NULL; - st->socket = NULL; - st->host = NULL; - st->port = NULL; - - if (strcasecmp (ci->key, "Plugin") == 0) /* default instance */ - st->name = sstrdup ("default"); - else /* block */ - status = cf_util_get_string (ci, &st->name); - if (status != 0) - { - sfree (st); - return (status); + sstrncpy (vl->host, hostname_g, sizeof (vl->host)); } - assert (st->name != NULL); - - for (i = 0; i < ci->children_num; i++) + else { - oconfig_item_t *child = ci->children + i; - - if (strcasecmp ("Socket", child->key) == 0) - status = cf_util_get_string (child, &st->socket); - else if (strcasecmp ("Host", child->key) == 0) - status = cf_util_get_string (child, &st->host); - else if (strcasecmp ("Port", child->key) == 0) - status = cf_util_get_service (child, &st->port); + if (st->socket != NULL) + sstrncpy (vl->host, hostname_g, sizeof (vl->host)); else - { - WARNING ("memcached plugin: Option `%s' not allowed here.", - child->key); - status = -1; - } - - if (status != 0) - break; + sstrncpy (vl->host, + (st->host != NULL) ? st->host : MEMCACHED_DEF_HOST, + sizeof (vl->host)); + sstrncpy (vl->plugin_instance, st->name, sizeof (vl->plugin_instance)); } - - if (status == 0) - status = memcached_add_read_callback (st); - - if (status != 0) - { - memcached_free(st); - return (-1); - } - - return (0); -} - -static int memcached_config (oconfig_item_t *ci) -{ - int status = 0; - _Bool have_instance_block = 0; - int i; - - for (i = 0; i < ci->children_num; i++) - { - oconfig_item_t *child = ci->children + i; - - if (strcasecmp ("Instance", child->key) == 0) - { - config_add_instance (child); - have_instance_block = 1; - } - else if (!have_instance_block) - { - /* Non-instance option: Assume legacy configuration (without - * blocks) and call config_add_instance() with the block. */ - return (config_add_instance (ci)); - } - else - WARNING ("memcached plugin: The configuration option " - "\"%s\" is not allowed here. Did you " - "forget to add an block " - "around the configuration?", - child->key); - } /* for (ci->children) */ - - return (status); } -static int memcached_init (void) -{ - memcached_t *st; - int status; - - if (memcached_have_instances) - return (0); - - /* No instances were configured, lets start a default instance. */ - st = malloc (sizeof (*st)); - if (st == NULL) - return (ENOMEM); - memset (st, 0, sizeof (*st)); - st->name = sstrdup ("default"); - st->socket = NULL; - st->host = NULL; - st->port = NULL; - - status = memcached_add_read_callback (st); - if (status == 0) - memcached_have_instances = 1; - else - memcached_free (st); - - return (status); -} /* int memcached_init */ - static void submit_derive (const char *type, const char *type_inst, derive_t value, memcached_t *st) { value_t values[1]; value_list_t vl = VALUE_LIST_INIT; + memcached_init_vl (&vl, st); values[0].derive = value; vl.values = values; vl.values_len = 1; - sstrncpy (vl.host, hostname_g, sizeof (vl.host)); - sstrncpy (vl.plugin, "memcached", sizeof (vl.plugin)); - if (st->name != NULL) - sstrncpy (vl.plugin_instance, st->name, sizeof (vl.plugin_instance)); sstrncpy (vl.type, type, sizeof (vl.type)); if (type_inst != NULL) sstrncpy (vl.type_instance, type_inst, sizeof (vl.type_instance)); @@ -413,16 +273,13 @@ static void submit_derive2 (const char *type, const char *type_inst, { value_t values[2]; value_list_t vl = VALUE_LIST_INIT; + memcached_init_vl (&vl, st); values[0].derive = value0; values[1].derive = value1; vl.values = values; vl.values_len = 2; - sstrncpy (vl.host, hostname_g, sizeof (vl.host)); - sstrncpy (vl.plugin, "memcached", sizeof (vl.plugin)); - if (st->name != NULL) - sstrncpy (vl.plugin_instance, st->name, sizeof (vl.plugin_instance)); sstrncpy (vl.type, type, sizeof (vl.type)); if (type_inst != NULL) sstrncpy (vl.type_instance, type_inst, sizeof (vl.type_instance)); @@ -435,15 +292,12 @@ static void submit_gauge (const char *type, const char *type_inst, { value_t values[1]; value_list_t vl = VALUE_LIST_INIT; + memcached_init_vl (&vl, st); values[0].gauge = value; vl.values = values; vl.values_len = 1; - sstrncpy (vl.host, hostname_g, sizeof (vl.host)); - sstrncpy (vl.plugin, "memcached", sizeof (vl.plugin)); - if (st->name != NULL) - sstrncpy (vl.plugin_instance, st->name, sizeof (vl.plugin_instance)); sstrncpy (vl.type, type, sizeof (vl.type)); if (type_inst != NULL) sstrncpy (vl.type_instance, type_inst, sizeof (vl.type_instance)); @@ -456,16 +310,13 @@ static void submit_gauge2 (const char *type, const char *type_inst, { value_t values[2]; value_list_t vl = VALUE_LIST_INIT; + memcached_init_vl (&vl, st); values[0].gauge = value0; values[1].gauge = value1; vl.values = values; vl.values_len = 2; - sstrncpy (vl.host, hostname_g, sizeof (vl.host)); - sstrncpy (vl.plugin, "memcached", sizeof (vl.plugin)); - if (st->name != NULL) - sstrncpy (vl.plugin_instance, st->name, sizeof (vl.plugin_instance)); sstrncpy (vl.type, type, sizeof (vl.type)); if (type_inst != NULL) sstrncpy (vl.type_instance, type_inst, sizeof (vl.type_instance)); @@ -634,6 +485,160 @@ static int memcached_read (user_data_t *user_data) return 0; } /* int memcached_read */ +static int memcached_add_read_callback (memcached_t *st) +{ + user_data_t ud; + char callback_name[3*DATA_MAX_NAME_LEN]; + int status; + + memset (&ud, 0, sizeof (ud)); + ud.data = st; + ud.free_func = (void *) memcached_free; + + assert (st->name != NULL); + ssnprintf (callback_name, sizeof (callback_name), "memcached/%s", st->name); + + status = plugin_register_complex_read (/* group = */ "memcached", + /* name = */ callback_name, + /* callback = */ memcached_read, + /* interval = */ NULL, + /* user_data = */ &ud); + return (status); +} /* int memcached_add_read_callback */ + +/* Configuration handling functiions + * + * + * Host foo.zomg.com + * Port "1234" + * + * + */ +static int config_add_instance(oconfig_item_t *ci) +{ + memcached_t *st; + int i; + int status = 0; + + /* Disable automatic generation of default instance in the init callback. */ + memcached_have_instances = 1; + + st = malloc (sizeof (*st)); + if (st == NULL) + { + ERROR ("memcached plugin: malloc failed."); + return (-1); + } + + memset (st, 0, sizeof (*st)); + st->name = NULL; + st->socket = NULL; + st->host = NULL; + st->port = NULL; + + if (strcasecmp (ci->key, "Plugin") == 0) /* default instance */ + st->name = sstrdup ("__legacy__"); + else /* block */ + status = cf_util_get_string (ci, &st->name); + if (status != 0) + { + sfree (st); + return (status); + } + assert (st->name != NULL); + + for (i = 0; i < ci->children_num; i++) + { + oconfig_item_t *child = ci->children + i; + + if (strcasecmp ("Socket", child->key) == 0) + status = cf_util_get_string (child, &st->socket); + else if (strcasecmp ("Host", child->key) == 0) + status = cf_util_get_string (child, &st->host); + else if (strcasecmp ("Port", child->key) == 0) + status = cf_util_get_service (child, &st->port); + else + { + WARNING ("memcached plugin: Option `%s' not allowed here.", + child->key); + status = -1; + } + + if (status != 0) + break; + } + + if (status == 0) + status = memcached_add_read_callback (st); + + if (status != 0) + { + memcached_free(st); + return (-1); + } + + return (0); +} + +static int memcached_config (oconfig_item_t *ci) +{ + int status = 0; + _Bool have_instance_block = 0; + int i; + + for (i = 0; i < ci->children_num; i++) + { + oconfig_item_t *child = ci->children + i; + + if (strcasecmp ("Instance", child->key) == 0) + { + config_add_instance (child); + have_instance_block = 1; + } + else if (!have_instance_block) + { + /* Non-instance option: Assume legacy configuration (without + * blocks) and call config_add_instance() with the block. */ + return (config_add_instance (ci)); + } + else + WARNING ("memcached plugin: The configuration option " + "\"%s\" is not allowed here. Did you " + "forget to add an block " + "around the configuration?", + child->key); + } /* for (ci->children) */ + + return (status); +} + +static int memcached_init (void) +{ + memcached_t *st; + int status; + + if (memcached_have_instances) + return (0); + + /* No instances were configured, lets start a default instance. */ + st = malloc (sizeof (*st)); + if (st == NULL) + return (ENOMEM); + memset (st, 0, sizeof (*st)); + st->name = sstrdup ("__legacy__"); + st->socket = NULL; + st->host = NULL; + st->port = NULL; + + status = memcached_add_read_callback (st); + if (status == 0) + memcached_have_instances = 1; + else + memcached_free (st); + + return (status); +} /* int memcached_init */ + void module_register (void) { plugin_register_complex_config ("memcached", memcached_config);