f68d73403a9601e70f4b2d57cdb750f6e37684f0
[awesomized/libmemcached] / lib / memcached_delete.c
1 #include "common.h"
2
3 memcached_return memcached_delete(memcached_st *ptr, char *key, size_t key_length,
4 time_t expiration)
5 {
6 return memcached_delete_by_key(ptr, key, key_length,
7 key, key_length, expiration);
8 }
9
10 memcached_return memcached_delete_by_key(memcached_st *ptr,
11 char *master_key, size_t master_key_length,
12 char *key, size_t key_length,
13 time_t expiration)
14 {
15 char to_write;
16 size_t send_length;
17 memcached_return rc;
18 char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE];
19 unsigned int server_key;
20
21 LIBMEMCACHED_MEMCACHED_DELETE_START();
22
23 if (key_length == 0)
24 return MEMCACHED_NO_KEY_PROVIDED;
25
26 if (ptr->hosts == NULL || ptr->number_of_hosts == 0)
27 return MEMCACHED_NO_SERVERS;
28
29 server_key= memcached_generate_hash(ptr, master_key, master_key_length);
30
31 if (expiration)
32 send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE,
33 "delete %.*s %llu\r\n", (int)key_length, key,
34 (unsigned long long)expiration);
35 else
36 send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE,
37 "delete %.*s\r\n", (int)key_length, key);
38
39 if (send_length >= MEMCACHED_DEFAULT_COMMAND_SIZE)
40 {
41 rc= MEMCACHED_WRITE_FAILURE;
42 goto error;
43 }
44
45 if ((ptr->flags & MEM_NO_BLOCK))
46 to_write= 0;
47 else
48 to_write= 1;
49
50 rc= memcached_do(ptr, server_key, buffer, send_length, to_write);
51 if (rc != MEMCACHED_SUCCESS)
52 goto error;
53
54 if ((ptr->flags & MEM_NO_BLOCK))
55 {
56 rc= MEMCACHED_SUCCESS;
57 }
58 else
59 {
60 rc= memcached_response(ptr, buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, server_key);
61 if (rc == MEMCACHED_DELETED)
62 rc= MEMCACHED_SUCCESS;
63 }
64
65 error:
66 LIBMEMCACHED_MEMCACHED_DELETE_END();
67 return rc;
68 }