X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libmemcached%2Fmemcached_delete.c;h=84b6160c2fe00a4058aed9013df56fc981d2f741;hb=29c13aacae8a79791e8912ff7520601aa8136d83;hp=a105f552e096a29be1075e2cfb3287ffe500faba;hpb=d5ffc30a6f369ea210e92e6a55333121d32b9a55;p=awesomized%2Flibmemcached diff --git a/libmemcached/memcached_delete.c b/libmemcached/memcached_delete.c index a105f552..84b6160c 100644 --- a/libmemcached/memcached_delete.c +++ b/libmemcached/memcached_delete.c @@ -7,6 +7,12 @@ memcached_return memcached_delete(memcached_st *ptr, const char *key, size_t key key, key_length, expiration); } +static inline memcached_return binary_delete(memcached_st *ptr, + unsigned int server_key, + const char *key, + size_t key_length, + int flush); + memcached_return memcached_delete_by_key(memcached_st *ptr, const char *master_key, size_t master_key_length, const char *key, size_t key_length, @@ -20,35 +26,42 @@ memcached_return memcached_delete_by_key(memcached_st *ptr, LIBMEMCACHED_MEMCACHED_DELETE_START(); - unlikely (key_length == 0) - return MEMCACHED_NO_KEY_PROVIDED; + rc= memcached_validate_key_length(key_length, + ptr->flags & MEM_BINARY_PROTOCOL); + unlikely (rc != MEMCACHED_SUCCESS) + return rc; unlikely (ptr->hosts == NULL || ptr->number_of_hosts == 0) return MEMCACHED_NO_SERVERS; server_key= memcached_generate_hash(ptr, master_key, master_key_length); - - if (expiration) - send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, - "delete %s%.*s %llu\r\n", - ptr->prefix_key, - (int)key_length, key, - (unsigned long long)expiration); - else - send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, - "delete %s%.*s\r\n", - ptr->prefix_key, - (int)key_length, key); - - if (send_length >= MEMCACHED_DEFAULT_COMMAND_SIZE) + to_write= (ptr->flags & MEM_BUFFER_REQUESTS) ? 0 : 1; + + if (ptr->flags & MEM_BINARY_PROTOCOL) + rc= binary_delete(ptr, server_key, key, key_length, to_write); + else { - rc= MEMCACHED_WRITE_FAILURE; - goto error; + if (expiration) + send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, + "delete %s%.*s %u\r\n", + ptr->prefix_key, + (int)key_length, key, + (uint32_t)expiration); + else + send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, + "delete %s%.*s\r\n", + ptr->prefix_key, + (int)key_length, key); + + if (send_length >= MEMCACHED_DEFAULT_COMMAND_SIZE) + { + rc= MEMCACHED_WRITE_FAILURE; + goto error; + } + + rc= memcached_do(&ptr->hosts[server_key], buffer, send_length, to_write); } - to_write= (ptr->flags & MEM_BUFFER_REQUESTS) ? 0 : 1; - - rc= memcached_do(&ptr->hosts[server_key], buffer, send_length, to_write); if (rc != MEMCACHED_SUCCESS) goto error; @@ -70,3 +83,29 @@ error: LIBMEMCACHED_MEMCACHED_DELETE_END(); return rc; } + +static inline memcached_return binary_delete(memcached_st *ptr, + unsigned int server_key, + const char *key, + size_t key_length, + int flush) +{ + protocol_binary_request_delete request= {.bytes= {0}}; + + request.message.header.request.magic= PROTOCOL_BINARY_REQ; + request.message.header.request.opcode= PROTOCOL_BINARY_CMD_DELETE; + request.message.header.request.keylen= htons((uint16_t)key_length); + request.message.header.request.datatype= PROTOCOL_BINARY_RAW_BYTES; + request.message.header.request.bodylen= htonl(key_length); + + if ((memcached_do(&ptr->hosts[server_key], request.bytes, + sizeof(request.bytes), 0) != MEMCACHED_SUCCESS) || + (memcached_io_write(&ptr->hosts[server_key], key, + key_length, flush) == -1)) + { + memcached_io_reset(&ptr->hosts[server_key]); + return MEMCACHED_WRITE_FAILURE; + } + + return MEMCACHED_SUCCESS; +}