X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=lib%2Fmemcached_delete.c;h=ff085453ab63a0fc602df81205b3348c59ddd118;hb=2c7a6aaf4a69aab11206078afcd3355271ddf128;hp=75087bd491b3c65a397ed798427fc920ae5c052b;hpb=557de9b08007dd2b482778ba934574bcf7ee531f;p=m6w6%2Flibmemcached diff --git a/lib/memcached_delete.c b/lib/memcached_delete.c index 75087bd4..ff085453 100644 --- a/lib/memcached_delete.c +++ b/lib/memcached_delete.c @@ -1,4 +1,4 @@ -#include +#include "common.h" memcached_return memcached_delete(memcached_st *ptr, char *key, size_t key_length, time_t expiration) @@ -8,12 +8,13 @@ memcached_return memcached_delete(memcached_st *ptr, char *key, size_t key_lengt char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE]; unsigned int server_key; - rc= memcached_connect(ptr); + LIBMEMCACHED_MEMCACHED_DELETE_START(); - if (rc != MEMCACHED_SUCCESS) + server_key= memcached_generate_hash(ptr, key, key_length); + + if ((rc= memcached_connect(ptr, server_key)) != MEMCACHED_SUCCESS) return rc; - server_key= memcached_generate_hash(key, key_length) % ptr->number_of_hosts; if (expiration) send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, @@ -24,22 +25,26 @@ memcached_return memcached_delete(memcached_st *ptr, char *key, size_t key_lengt "delete %.*s\r\n", (int)key_length, key); if (send_length >= MEMCACHED_DEFAULT_COMMAND_SIZE) - return MEMCACHED_WRITE_FAILURE; - - sent_length= write(ptr->hosts[server_key].fd, buffer, send_length); - - if (sent_length == -1) { - fprintf(stderr, "error %s: write: %m\n", __FUNCTION__); - return MEMCACHED_WRITE_FAILURE; + rc= MEMCACHED_WRITE_FAILURE; + goto error; } - if (sent_length != send_length) + sent_length= memcached_io_write(ptr, server_key, buffer, send_length, 1); + + if (sent_length == -1 || sent_length != send_length) { - fprintf(stderr, "error %s: short write %d %d: %m\n", - __FUNCTION__, sent_length, send_length); - return MEMCACHED_WRITE_FAILURE; + rc= MEMCACHED_WRITE_FAILURE; + goto error; } - return memcached_response(ptr, buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, server_key); + rc= memcached_response(ptr, buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, server_key); + + if (rc == MEMCACHED_DELETED) + rc= MEMCACHED_SUCCESS; + + LIBMEMCACHED_MEMCACHED_DELETE_END(); + +error: + return rc; }