X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=lib%2Fmemcached_delete.c;h=5ec5d1b4c11d353a52857ae25a9037193cd5260c;hb=246060cb7056a0aced6f164faaa1f16b8cf90ccf;hp=e601e6fa969fca32cbb4a6e9c879edb6215cec75;hpb=3efc2e6fb6a17e8eb52dbe3590a5dcb063b30537;p=m6w6%2Flibmemcached diff --git a/lib/memcached_delete.c b/lib/memcached_delete.c index e601e6fa..5ec5d1b4 100644 --- a/lib/memcached_delete.c +++ b/lib/memcached_delete.c @@ -1,13 +1,15 @@ -#include +#include "common.h" memcached_return memcached_delete(memcached_st *ptr, char *key, size_t key_length, time_t expiration) { - size_t send_length; + size_t send_length, sent_length; memcached_return rc; char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE]; unsigned int server_key; + LIBMEMCACHED_MEMCACHED_DELETE_START(); + rc= memcached_connect(ptr); if (rc != MEMCACHED_SUCCESS) @@ -17,16 +19,22 @@ memcached_return memcached_delete(memcached_st *ptr, char *key, size_t key_lengt if (expiration) send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, - "delete %.*s %u\r\n", key_length, key, expiration); + "delete %.*s %llu\r\n", (int)key_length, key, + (unsigned long long)expiration); else send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, - "delete %.*s\r\n", key_length, key); - if ((write(ptr->hosts[server_key].fd, buffer, send_length) == -1)) - { - fprintf(stderr, "failed set on %.*s TCP\n", key_length+1, key); + "delete %.*s\r\n", (int)key_length, key); + if (send_length >= MEMCACHED_DEFAULT_COMMAND_SIZE) return MEMCACHED_WRITE_FAILURE; - } - return memcached_response(ptr, buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, server_key); + sent_length= send(ptr->hosts[server_key].fd, buffer, send_length, 0); + + if (sent_length == -1 || sent_length != send_length) + return MEMCACHED_WRITE_FAILURE; + + rc= memcached_response(ptr, buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, server_key); + LIBMEMCACHED_MEMCACHED_DELETE_END(); + + return rc; }