2 #include "memcached/protocol_binary.h"
4 memcached_return_t
memcached_delete(memcached_st
*ptr
, const char *key
, size_t key_length
,
7 return memcached_delete_by_key(ptr
, key
, key_length
,
8 key
, key_length
, expiration
);
11 static inline memcached_return_t
binary_delete(memcached_st
*ptr
,
17 memcached_return_t
memcached_delete_by_key(memcached_st
*ptr
,
18 const char *master_key
, size_t master_key_length
,
19 const char *key
, size_t key_length
,
24 memcached_return_t rc
;
25 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
27 memcached_server_instance_st
*instance
;
29 LIBMEMCACHED_MEMCACHED_DELETE_START();
31 rc
= memcached_validate_key_length(key_length
,
32 ptr
->flags
.binary_protocol
);
33 unlikely (rc
!= MEMCACHED_SUCCESS
)
36 unlikely (memcached_server_count(ptr
) == 0)
37 return MEMCACHED_NO_SERVERS
;
39 server_key
= memcached_generate_hash(ptr
, master_key
, master_key_length
);
40 instance
= memcached_server_instance_fetch(ptr
, server_key
);
42 to_write
= (uint8_t)((ptr
->flags
.buffer_requests
) ? 0 : 1);
44 bool no_reply
= (ptr
->flags
.no_reply
);
46 if (ptr
->flags
.binary_protocol
)
50 rc
= binary_delete(ptr
, server_key
, key
, key_length
, to_write
);
54 rc
= MEMCACHED_INVALID_ARGUMENTS
;
61 if ((instance
->major_version
== 1 &&
62 instance
->minor_version
> 2) ||
63 instance
->major_version
> 1)
65 rc
= MEMCACHED_INVALID_ARGUMENTS
;
70 /* ensure that we are connected, otherwise we might bump the
71 * command counter before connection */
72 if ((rc
= memcached_connect(instance
)) != MEMCACHED_SUCCESS
)
78 if (instance
->minor_version
== 0)
80 if (no_reply
|| !to_write
)
82 /* We might get out of sync with the server if we
83 * send this command to a server newer than 1.2.x..
84 * disable no_reply and buffered mode.
88 memcached_server_response_increment(instance
);
92 send_length
= (size_t) snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
93 "delete %.*s%.*s %u%s\r\n",
94 (int)ptr
->prefix_key_length
,
96 (int) key_length
, key
,
98 no_reply
? " noreply" :"" );
102 send_length
= (size_t) snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
103 "delete %.*s%.*s%s\r\n",
104 (int)ptr
->prefix_key_length
,
106 (int)key_length
, key
, no_reply
? " noreply" :"");
108 if (send_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
)
110 rc
= MEMCACHED_WRITE_FAILURE
;
114 if (ptr
->flags
.use_udp
&& !to_write
)
116 if (send_length
> MAX_UDP_DATAGRAM_LENGTH
- UDP_DATAGRAM_HEADER_LENGTH
)
117 return MEMCACHED_WRITE_FAILURE
;
118 if (send_length
+ instance
->write_buffer_offset
> MAX_UDP_DATAGRAM_LENGTH
)
119 memcached_io_write(instance
, NULL
, 0, 1);
122 rc
= memcached_do(instance
, buffer
, send_length
, to_write
);
125 if (rc
!= MEMCACHED_SUCCESS
)
129 rc
= MEMCACHED_BUFFERED
;
132 rc
= memcached_response(instance
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, NULL
);
133 if (rc
== MEMCACHED_DELETED
)
134 rc
= MEMCACHED_SUCCESS
;
137 if (rc
== MEMCACHED_SUCCESS
&& ptr
->delete_trigger
)
138 ptr
->delete_trigger(ptr
, key
, key_length
);
141 LIBMEMCACHED_MEMCACHED_DELETE_END();
145 static inline memcached_return_t
binary_delete(memcached_st
*ptr
,
151 memcached_server_instance_st
*instance
;
152 protocol_binary_request_delete request
= {.bytes
= {0}};
154 instance
= memcached_server_instance_fetch(ptr
, server_key
);
156 request
.message
.header
.request
.magic
= PROTOCOL_BINARY_REQ
;
157 if (ptr
->flags
.no_reply
)
158 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_DELETEQ
;
160 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_DELETE
;
161 request
.message
.header
.request
.keylen
= htons((uint16_t)key_length
);
162 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
163 request
.message
.header
.request
.bodylen
= htonl((uint32_t) key_length
);
165 if (ptr
->flags
.use_udp
&& !flush
)
167 size_t cmd_size
= sizeof(request
.bytes
) + key_length
;
168 if (cmd_size
> MAX_UDP_DATAGRAM_LENGTH
- UDP_DATAGRAM_HEADER_LENGTH
)
169 return MEMCACHED_WRITE_FAILURE
;
170 if (cmd_size
+ instance
->write_buffer_offset
> MAX_UDP_DATAGRAM_LENGTH
)
171 memcached_io_write(instance
, NULL
, 0, 1);
174 memcached_return_t rc
= MEMCACHED_SUCCESS
;
176 if ((memcached_do(instance
, request
.bytes
,
177 sizeof(request
.bytes
), 0) != MEMCACHED_SUCCESS
) ||
178 (memcached_io_write(instance
, key
,
179 key_length
, (char) flush
) == -1))
181 memcached_io_reset(instance
);
182 rc
= MEMCACHED_WRITE_FAILURE
;
185 unlikely (ptr
->number_of_replicas
> 0)
187 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_DELETEQ
;
189 for (uint32_t x
= 0; x
< ptr
->number_of_replicas
; ++x
)
191 memcached_server_instance_st
*replica
;
194 if (server_key
== memcached_server_count(ptr
))
197 replica
= memcached_server_instance_fetch(ptr
, server_key
);
199 if ((memcached_do(replica
, (const char*)request
.bytes
,
200 sizeof(request
.bytes
), 0) != MEMCACHED_SUCCESS
) ||
201 (memcached_io_write(replica
, key
, key_length
, (char) flush
) == -1))
203 memcached_io_reset(replica
);
207 memcached_server_response_decrement(replica
);