1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * * Redistributions in binary form must reproduce the above
16 * copyright notice, this list of conditions and the following disclaimer
17 * in the documentation and/or other materials provided with the
20 * * The names of its contributors may not be used to endorse or
21 * promote products derived from this software without specific prior
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
38 #include <libmemcached/common.h>
39 #include <libmemcached/memcached/protocol_binary.h>
41 memcached_return_t
memcached_delete(memcached_st
*ptr
, const char *key
, size_t key_length
,
44 return memcached_delete_by_key(ptr
, key
, key_length
, key
, key_length
, expiration
);
47 static inline memcached_return_t
ascii_delete(memcached_st
*ptr
,
48 memcached_server_write_instance_st instance
,
55 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
56 int send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
57 "delete %.*s%.*s%s\r\n",
58 memcached_print_array(ptr
->_namespace
),
60 reply
? "" : " noreply");
62 if (send_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
|| send_length
< 0)
64 return memcached_set_error(*ptr
, MEMCACHED_MEMORY_ALLOCATION_FAILURE
, MEMCACHED_AT
,
65 memcached_literal_param("snprintf(MEMCACHED_DEFAULT_COMMAND_SIZE)"));
68 if (ptr
->flags
.use_udp
and flush
== false)
70 if (send_length
> MAX_UDP_DATAGRAM_LENGTH
- UDP_DATAGRAM_HEADER_LENGTH
)
72 return MEMCACHED_WRITE_FAILURE
;
75 if (send_length
+instance
->write_buffer_offset
> MAX_UDP_DATAGRAM_LENGTH
)
77 memcached_io_write(instance
, NULL
, 0, true);
81 return memcached_do(instance
, buffer
, (size_t)send_length
, flush
);
84 static inline memcached_return_t
binary_delete(memcached_st
*ptr
,
85 memcached_server_write_instance_st instance
,
92 protocol_binary_request_delete request
= {};
94 request
.message
.header
.request
.magic
= PROTOCOL_BINARY_REQ
;
97 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_DELETE
;
101 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_DELETEQ
;
103 request
.message
.header
.request
.keylen
= htons((uint16_t)(key_length
+ memcached_array_size(ptr
->_namespace
)));
104 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
105 request
.message
.header
.request
.bodylen
= htonl((uint32_t)(key_length
+ memcached_array_size(ptr
->_namespace
)));
107 if (ptr
->flags
.use_udp
and flush
== false)
109 size_t cmd_size
= sizeof(request
.bytes
) + key_length
;
110 if (cmd_size
> MAX_UDP_DATAGRAM_LENGTH
- UDP_DATAGRAM_HEADER_LENGTH
)
112 return MEMCACHED_WRITE_FAILURE
;
115 if (cmd_size
+instance
->write_buffer_offset
> MAX_UDP_DATAGRAM_LENGTH
)
117 memcached_io_write(instance
, NULL
, 0, true);
121 struct libmemcached_io_vector_st vector
[]=
123 { request
.bytes
, sizeof(request
.bytes
) },
124 { memcached_array_string(ptr
->_namespace
), memcached_array_size(ptr
->_namespace
) },
128 memcached_return_t rc
= MEMCACHED_SUCCESS
;
130 if ((rc
= memcached_vdo(instance
, vector
, 3, flush
)) != MEMCACHED_SUCCESS
)
132 memcached_io_reset(instance
);
135 if (ptr
->number_of_replicas
> 0)
137 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_DELETEQ
;
139 for (uint32_t x
= 0; x
< ptr
->number_of_replicas
; ++x
)
141 memcached_server_write_instance_st replica
;
144 if (server_key
== memcached_server_count(ptr
))
147 replica
= memcached_server_instance_fetch(ptr
, server_key
);
149 if (memcached_vdo(replica
, vector
, 3, flush
) != MEMCACHED_SUCCESS
)
151 memcached_io_reset(replica
);
155 memcached_server_response_decrement(replica
);
163 memcached_return_t
memcached_delete_by_key(memcached_st
*ptr
,
164 const char *group_key
, size_t group_key_length
,
165 const char *key
, size_t key_length
,
168 LIBMEMCACHED_MEMCACHED_DELETE_START();
170 memcached_return_t rc
;
171 if (memcached_failed(rc
= initialize_query(ptr
)))
176 rc
= memcached_validate_key_length(key_length
, ptr
->flags
.binary_protocol
);
177 if (memcached_failed(rc
))
184 return memcached_set_error(*ptr
, MEMCACHED_INVALID_ARGUMENTS
, MEMCACHED_AT
,
185 memcached_literal_param("Memcached server version does not allow expiration of deleted items"));
188 // If a delete trigger exists, we need a response, so no buffering/noreply
189 if (ptr
->delete_trigger
)
191 if (ptr
->flags
.buffer_requests
)
193 return memcached_set_error(*ptr
, MEMCACHED_INVALID_ARGUMENTS
, MEMCACHED_AT
,
194 memcached_literal_param("Delete triggers cannot be used if buffering is enabled"));
197 if (ptr
->flags
.no_reply
)
199 return memcached_set_error(*ptr
, MEMCACHED_INVALID_ARGUMENTS
, MEMCACHED_AT
,
200 memcached_literal_param("Delete triggers cannot be used if MEMCACHED_BEHAVIOR_NOREPLY is set"));
205 uint32_t server_key
= memcached_generate_hash_with_redistribution(ptr
, group_key
, group_key_length
);
206 memcached_server_write_instance_st instance
= memcached_server_instance_fetch(ptr
, server_key
);
208 bool to_write
= (ptr
->flags
.buffer_requests
) ? false : true;
210 // Invert the logic to make it simpler to read the code
211 bool reply
= (ptr
->flags
.no_reply
) ? false : true;
213 if (ptr
->flags
.binary_protocol
)
215 rc
= binary_delete(ptr
, instance
, server_key
, key
, key_length
, reply
, to_write
);
219 rc
= ascii_delete(ptr
, instance
, server_key
, key
, key_length
, reply
, to_write
);
222 if (rc
== MEMCACHED_SUCCESS
)
224 if (to_write
== false)
226 rc
= MEMCACHED_BUFFERED
;
230 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
231 rc
= memcached_response(instance
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, NULL
);
232 if (rc
== MEMCACHED_DELETED
)
234 rc
= MEMCACHED_SUCCESS
;
238 if (rc
== MEMCACHED_SUCCESS
and ptr
->delete_trigger
)
240 ptr
->delete_trigger(ptr
, key
, key_length
);
244 LIBMEMCACHED_MEMCACHED_DELETE_END();