X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fstats.c;h=fcafe2154c910ca47f29c3e6b76f59fb133f1421;hb=f9f501287ffa6a2c69a9033536d3b6f14db34204;hp=e5f9a20f3eb1df41ba76eb56458fc724bfd8050d;hpb=7c7750f02368b570353ea109f23a0ea26d226e02;p=awesomized%2Flibmemcached diff --git a/libmemcached/stats.c b/libmemcached/stats.c index e5f9a20f..fcafe215 100644 --- a/libmemcached/stats.c +++ b/libmemcached/stats.c @@ -33,7 +33,7 @@ static const char *memcached_stat_keys[] = { static memcached_return_t set_data(memcached_stat_st *memc_stat, char *key, char *value) { - if (strlen(key) < 1) + if (strlen(key) < 1) { WATCHPOINT_STRING(key); return MEMCACHED_UNKNOWN_STAT_KEY; @@ -79,7 +79,7 @@ static memcached_return_t set_data(memcached_stat_st *memc_stat, char *key, char } else if (!strcmp("curr_items", key)) { - memc_stat->curr_items= (uint32_t) strtol(value, (char **)NULL, 10); + memc_stat->curr_items= (uint32_t) strtol(value, (char **)NULL, 10); } else if (!strcmp("total_items", key)) { @@ -149,7 +149,10 @@ static memcached_return_t set_data(memcached_stat_st *memc_stat, char *key, char strcmp("cmd_flush", key) == 0 || strcmp("accepting_conns", key) == 0 || strcmp("listen_disabled_num", key) == 0 || - strcmp("conn_yields", key) == 0)) + strcmp("conn_yields", key) == 0 || + strcmp("auth_cmds", key) == 0 || + strcmp("auth_errors", key) == 0 || + strcmp("reclaimed", key) == 0)) { WATCHPOINT_STRING(key); return MEMCACHED_UNKNOWN_STAT_KEY; @@ -158,7 +161,7 @@ static memcached_return_t set_data(memcached_stat_st *memc_stat, char *key, char return MEMCACHED_SUCCESS; } -char *memcached_stat_get_value(memcached_st *ptr, memcached_stat_st *memc_stat, +char *memcached_stat_get_value(const memcached_st *ptr, memcached_stat_st *memc_stat, const char *key, memcached_return_t *error) { char buffer[SMALL_STRING_LEN]; @@ -217,17 +220,16 @@ char *memcached_stat_get_value(memcached_st *ptr, memcached_stat_st *memc_stat, return NULL; } - ret= ptr->call_malloc(ptr, (size_t) (length + 1)); + ret= libmemcached_malloc(ptr, (size_t) (length + 1)); memcpy(ret, buffer, (size_t) length); ret[length]= '\0'; return ret; } -static memcached_return_t binary_stats_fetch(memcached_st *ptr, - memcached_stat_st *memc_stat, +static memcached_return_t binary_stats_fetch(memcached_stat_st *memc_stat, char *args, - unsigned int server_key) + memcached_server_write_instance_st instance) { memcached_return_t rc; @@ -237,7 +239,7 @@ static memcached_return_t binary_stats_fetch(memcached_st *ptr, request.message.header.request.opcode= PROTOCOL_BINARY_CMD_STAT; request.message.header.request.datatype= PROTOCOL_BINARY_RAW_BYTES; - if (args != NULL) + if (args != NULL) { size_t len= strlen(args); @@ -248,35 +250,35 @@ static memcached_return_t binary_stats_fetch(memcached_st *ptr, request.message.header.request.keylen= htons((uint16_t)len); request.message.header.request.bodylen= htonl((uint32_t) len); - if ((memcached_do(&ptr->hosts[server_key], request.bytes, - sizeof(request.bytes), 0) != MEMCACHED_SUCCESS) || - (memcached_io_write(&ptr->hosts[server_key], args, len, 1) == -1)) + if ((memcached_do(instance, request.bytes, + sizeof(request.bytes), false) != MEMCACHED_SUCCESS) || + (memcached_io_write(instance, args, len, true) == -1)) { - memcached_io_reset(&ptr->hosts[server_key]); + memcached_io_reset(instance); return MEMCACHED_WRITE_FAILURE; } } else { - if (memcached_do(&ptr->hosts[server_key], request.bytes, - sizeof(request.bytes), 1) != MEMCACHED_SUCCESS) + if (memcached_do(instance, request.bytes, + sizeof(request.bytes), true) != MEMCACHED_SUCCESS) { - memcached_io_reset(&ptr->hosts[server_key]); + memcached_io_reset(instance); return MEMCACHED_WRITE_FAILURE; } } - memcached_server_response_decrement(&ptr->hosts[server_key]); - do + memcached_server_response_decrement(instance); + do { - rc= memcached_response(&ptr->hosts[server_key], buffer, + rc= memcached_response(instance, buffer, sizeof(buffer), NULL); if (rc == MEMCACHED_END) break; - unlikely (rc != MEMCACHED_SUCCESS) + unlikely (rc != MEMCACHED_SUCCESS) { - memcached_io_reset(&ptr->hosts[server_key]); + memcached_io_reset(instance); return rc; } @@ -290,37 +292,36 @@ static memcached_return_t binary_stats_fetch(memcached_st *ptr, /* shit... memcached_response will decrement the counter, so I need to ** reset it.. todo: look at this and try to find a better solution. */ - ptr->hosts[server_key].cursor_active= 0; + instance->cursor_active= 0; return MEMCACHED_SUCCESS; } -static memcached_return_t ascii_stats_fetch(memcached_st *ptr, - memcached_stat_st *memc_stat, +static memcached_return_t ascii_stats_fetch(memcached_stat_st *memc_stat, char *args, - unsigned int server_key) + memcached_server_write_instance_st instance) { memcached_return_t rc; char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE]; size_t send_length; if (args) - send_length= (size_t) snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, + send_length= (size_t) snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, "stats %s\r\n", args); else - send_length= (size_t) snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, + send_length= (size_t) snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, "stats\r\n"); if (send_length >= MEMCACHED_DEFAULT_COMMAND_SIZE) return MEMCACHED_WRITE_FAILURE; - rc= memcached_do(&ptr->hosts[server_key], buffer, send_length, 1); + rc= memcached_do(instance, buffer, send_length, true); if (rc != MEMCACHED_SUCCESS) goto error; while (1) { - rc= memcached_response(&ptr->hosts[server_key], buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, NULL); + rc= memcached_response(instance, buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, NULL); if (rc == MEMCACHED_STAT) { @@ -357,7 +358,6 @@ error: memcached_stat_st *memcached_stat(memcached_st *ptr, char *args, memcached_return_t *error) { - unsigned int x; memcached_return_t rc; memcached_stat_st *stats; @@ -367,23 +367,35 @@ memcached_stat_st *memcached_stat(memcached_st *ptr, char *args, memcached_retur return NULL; } - stats= ptr->call_calloc(ptr, ptr->number_of_hosts, sizeof(memcached_stat_st)); + stats= libmemcached_calloc(ptr, memcached_server_count(ptr), sizeof(memcached_stat_st)); - if (!stats) + if (! stats) { *error= MEMCACHED_MEMORY_ALLOCATION_FAILURE; return NULL; } rc= MEMCACHED_SUCCESS; - for (x= 0; x < ptr->number_of_hosts; x++) + for (uint32_t x= 0; x < memcached_server_count(ptr); x++) { memcached_return_t temp_return; + memcached_server_write_instance_st instance; + memcached_stat_st *stat_instance; + + stat_instance= stats + x; + + stat_instance->root= ptr; + + instance= memcached_server_instance_fetch(ptr, x); if (ptr->flags.binary_protocol) - temp_return= binary_stats_fetch(ptr, stats + x, args, x); + { + temp_return= binary_stats_fetch(stat_instance, args, instance); + } else - temp_return= ascii_stats_fetch(ptr, stats + x, args, x); + { + temp_return= ascii_stats_fetch(stat_instance, args, instance); + } if (temp_return != MEMCACHED_SUCCESS) rc= MEMCACHED_SOME_ERRORS; @@ -393,42 +405,53 @@ memcached_stat_st *memcached_stat(memcached_st *ptr, char *args, memcached_retur return stats; } -memcached_return_t memcached_stat_servername(memcached_stat_st *memc_stat, char *args, +memcached_return_t memcached_stat_servername(memcached_stat_st *memc_stat, char *args, const char *hostname, in_port_t port) { memcached_return_t rc; memcached_st memc; memcached_st *memc_ptr; + memcached_server_write_instance_st instance; + + memset(memc_stat, 0, sizeof(memcached_stat_st)); memc_ptr= memcached_create(&memc); WATCHPOINT_ASSERT(memc_ptr); memcached_server_add(&memc, hostname, port); + instance= memcached_server_instance_fetch(memc_ptr, 0); + if (memc.flags.binary_protocol) - rc= binary_stats_fetch(&memc, memc_stat, args, 0); + { + rc= binary_stats_fetch(memc_stat, args, instance); + } else - rc= ascii_stats_fetch(&memc, memc_stat, args, 0); + { + rc= ascii_stats_fetch(memc_stat, args, instance); + } memcached_free(&memc); return rc; } -/* +/* We make a copy of the keys since at some point in the not so distant future we will add support for "found" keys. */ -char ** memcached_stat_get_keys(memcached_st *ptr, memcached_stat_st *memc_stat, +char ** memcached_stat_get_keys(const memcached_st *ptr, + memcached_stat_st *memc_stat, memcached_return_t *error) { - (void) memc_stat; char **list; size_t length= sizeof(memcached_stat_keys); - list= ptr->call_malloc(ptr, length); + (void)memc_stat; + + list= libmemcached_malloc(ptr, length); - if (!list) + if (! list) { *error= MEMCACHED_MEMORY_ALLOCATION_FAILURE; return NULL; @@ -441,7 +464,7 @@ char ** memcached_stat_get_keys(memcached_st *ptr, memcached_stat_st *memc_stat, return list; } -void memcached_stat_free(memcached_st *ptr, memcached_stat_st *memc_stat) +void memcached_stat_free(const memcached_st *ptr, memcached_stat_st *memc_stat) { if (memc_stat == NULL) { @@ -449,8 +472,16 @@ void memcached_stat_free(memcached_st *ptr, memcached_stat_st *memc_stat) return; } - if (ptr) - ptr->call_free(ptr, memc_stat); + if (memc_stat->root) + { + libmemcached_free(memc_stat->root, memc_stat); + } + else if (ptr) + { + libmemcached_free(ptr, memc_stat); + } else + { free(memc_stat); + } }