2 * Copyright (C) 2006-2009 Brian Aker
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
8 * Summary: Storage related functions, aka set, replace,..
21 } memcached_storage_action_t
;
24 static inline const char *storage_op_string(memcached_storage_action_t verb
)
41 return "tosserror"; /* This is impossible, fixes issue for compiler warning in VisualStudio */
47 static memcached_return_t
memcached_send_binary(memcached_st
*ptr
,
48 const char *master_key
,
49 size_t master_key_length
,
57 memcached_storage_action_t verb
);
59 static inline memcached_return_t
memcached_send(memcached_st
*ptr
,
60 const char *master_key
, size_t master_key_length
,
61 const char *key
, size_t key_length
,
62 const char *value
, size_t value_length
,
66 memcached_storage_action_t verb
)
71 memcached_return_t rc
;
72 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
73 unsigned int server_key
;
75 WATCHPOINT_ASSERT(!(value
== NULL
&& value_length
> 0));
77 rc
= memcached_validate_key_length(key_length
, ptr
->flags
.binary_protocol
);
78 unlikely (rc
!= MEMCACHED_SUCCESS
)
81 unlikely (ptr
->number_of_hosts
== 0)
82 return MEMCACHED_NO_SERVERS
;
84 if (ptr
->flags
.verify_key
&& (memcached_key_test((const char **)&key
, &key_length
, 1) == MEMCACHED_BAD_KEY_PROVIDED
))
85 return MEMCACHED_BAD_KEY_PROVIDED
;
87 if (ptr
->flags
.binary_protocol
)
89 return memcached_send_binary(ptr
, master_key
, master_key_length
,
91 value
, value_length
, expiration
,
95 server_key
= memcached_generate_hash(ptr
, master_key
, master_key_length
);
99 write_length
= (size_t) snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
100 "%s %s%.*s %u %llu %zu %llu%s\r\n",
101 storage_op_string(verb
),
103 (int)key_length
, key
, flags
,
104 (unsigned long long)expiration
, value_length
,
105 (unsigned long long)cas
,
106 (ptr
->flags
.no_reply
) ? " noreply" : "");
110 char *buffer_ptr
= buffer
;
111 const char *command
= storage_op_string(verb
);
113 /* Copy in the command, no space needed, we handle that in the command function*/
114 memcpy(buffer_ptr
, command
, strlen(command
));
116 /* Copy in the key prefix, switch to the buffer_ptr */
117 buffer_ptr
= memcpy(buffer_ptr
+ strlen(command
) , ptr
->prefix_key
, strlen(ptr
->prefix_key
));
119 /* Copy in the key, adjust point if a key prefix was used. */
120 buffer_ptr
= memcpy(buffer_ptr
+ (ptr
->prefix_key
? strlen(ptr
->prefix_key
) : 0),
122 buffer_ptr
+= key_length
;
126 write_length
= (size_t)(buffer_ptr
- buffer
);
127 write_length
+= (size_t) snprintf(buffer_ptr
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
130 (unsigned long long)expiration
, value_length
,
131 ptr
->flags
.no_reply
? " noreply" : "");
134 if (ptr
->flags
.use_udp
&& ptr
->flags
.buffer_requests
)
136 size_t cmd_size
= write_length
+ value_length
+ 2;
137 if (cmd_size
> MAX_UDP_DATAGRAM_LENGTH
- UDP_DATAGRAM_HEADER_LENGTH
)
138 return MEMCACHED_WRITE_FAILURE
;
139 if (cmd_size
+ ptr
->hosts
[server_key
].write_buffer_offset
> MAX_UDP_DATAGRAM_LENGTH
)
140 memcached_io_write(&ptr
->hosts
[server_key
], NULL
, 0, 1);
143 if (write_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
)
145 rc
= MEMCACHED_WRITE_FAILURE
;
149 /* Send command header */
150 rc
= memcached_do(&ptr
->hosts
[server_key
], buffer
, write_length
, 0);
151 if (rc
!= MEMCACHED_SUCCESS
)
154 /* Send command body */
155 if ((sent_length
= memcached_io_write(&ptr
->hosts
[server_key
], value
, value_length
, 0)) == -1)
157 rc
= MEMCACHED_WRITE_FAILURE
;
161 if (ptr
->flags
.buffer_requests
&& verb
== SET_OP
)
170 if ((sent_length
= memcached_io_write(&ptr
->hosts
[server_key
], "\r\n", 2, to_write
)) == -1)
172 rc
= MEMCACHED_WRITE_FAILURE
;
176 if (ptr
->flags
.no_reply
)
177 return (to_write
== 0) ? MEMCACHED_BUFFERED
: MEMCACHED_SUCCESS
;
180 return MEMCACHED_BUFFERED
;
182 rc
= memcached_response(&ptr
->hosts
[server_key
], buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, NULL
);
184 if (rc
== MEMCACHED_STORED
)
185 return MEMCACHED_SUCCESS
;
190 memcached_io_reset(&ptr
->hosts
[server_key
]);
196 memcached_return_t
memcached_set(memcached_st
*ptr
, const char *key
, size_t key_length
,
197 const char *value
, size_t value_length
,
201 memcached_return_t rc
;
202 LIBMEMCACHED_MEMCACHED_SET_START();
203 rc
= memcached_send(ptr
, key
, key_length
,
204 key
, key_length
, value
, value_length
,
205 expiration
, flags
, 0, SET_OP
);
206 LIBMEMCACHED_MEMCACHED_SET_END();
210 memcached_return_t
memcached_add(memcached_st
*ptr
,
211 const char *key
, size_t key_length
,
212 const char *value
, size_t value_length
,
216 memcached_return_t rc
;
217 LIBMEMCACHED_MEMCACHED_ADD_START();
218 rc
= memcached_send(ptr
, key
, key_length
,
219 key
, key_length
, value
, value_length
,
220 expiration
, flags
, 0, ADD_OP
);
221 LIBMEMCACHED_MEMCACHED_ADD_END();
225 memcached_return_t
memcached_replace(memcached_st
*ptr
,
226 const char *key
, size_t key_length
,
227 const char *value
, size_t value_length
,
231 memcached_return_t rc
;
232 LIBMEMCACHED_MEMCACHED_REPLACE_START();
233 rc
= memcached_send(ptr
, key
, key_length
,
234 key
, key_length
, value
, value_length
,
235 expiration
, flags
, 0, REPLACE_OP
);
236 LIBMEMCACHED_MEMCACHED_REPLACE_END();
240 memcached_return_t
memcached_prepend(memcached_st
*ptr
,
241 const char *key
, size_t key_length
,
242 const char *value
, size_t value_length
,
246 memcached_return_t rc
;
247 rc
= memcached_send(ptr
, key
, key_length
,
248 key
, key_length
, value
, value_length
,
249 expiration
, flags
, 0, PREPEND_OP
);
253 memcached_return_t
memcached_append(memcached_st
*ptr
,
254 const char *key
, size_t key_length
,
255 const char *value
, size_t value_length
,
259 memcached_return_t rc
;
260 rc
= memcached_send(ptr
, key
, key_length
,
261 key
, key_length
, value
, value_length
,
262 expiration
, flags
, 0, APPEND_OP
);
266 memcached_return_t
memcached_cas(memcached_st
*ptr
,
267 const char *key
, size_t key_length
,
268 const char *value
, size_t value_length
,
273 memcached_return_t rc
;
274 rc
= memcached_send(ptr
, key
, key_length
,
275 key
, key_length
, value
, value_length
,
276 expiration
, flags
, cas
, CAS_OP
);
280 memcached_return_t
memcached_set_by_key(memcached_st
*ptr
,
281 const char *master_key
__attribute__((unused
)),
282 size_t master_key_length
__attribute__((unused
)),
283 const char *key
, size_t key_length
,
284 const char *value
, size_t value_length
,
288 memcached_return_t rc
;
289 LIBMEMCACHED_MEMCACHED_SET_START();
290 rc
= memcached_send(ptr
, master_key
, master_key_length
,
291 key
, key_length
, value
, value_length
,
292 expiration
, flags
, 0, SET_OP
);
293 LIBMEMCACHED_MEMCACHED_SET_END();
297 memcached_return_t
memcached_add_by_key(memcached_st
*ptr
,
298 const char *master_key
, size_t master_key_length
,
299 const char *key
, size_t key_length
,
300 const char *value
, size_t value_length
,
304 memcached_return_t rc
;
305 LIBMEMCACHED_MEMCACHED_ADD_START();
306 rc
= memcached_send(ptr
, master_key
, master_key_length
,
307 key
, key_length
, value
, value_length
,
308 expiration
, flags
, 0, ADD_OP
);
309 LIBMEMCACHED_MEMCACHED_ADD_END();
313 memcached_return_t
memcached_replace_by_key(memcached_st
*ptr
,
314 const char *master_key
, size_t master_key_length
,
315 const char *key
, size_t key_length
,
316 const char *value
, size_t value_length
,
320 memcached_return_t rc
;
321 LIBMEMCACHED_MEMCACHED_REPLACE_START();
322 rc
= memcached_send(ptr
, master_key
, master_key_length
,
323 key
, key_length
, value
, value_length
,
324 expiration
, flags
, 0, REPLACE_OP
);
325 LIBMEMCACHED_MEMCACHED_REPLACE_END();
329 memcached_return_t
memcached_prepend_by_key(memcached_st
*ptr
,
330 const char *master_key
, size_t master_key_length
,
331 const char *key
, size_t key_length
,
332 const char *value
, size_t value_length
,
336 memcached_return_t rc
;
337 rc
= memcached_send(ptr
, master_key
, master_key_length
,
338 key
, key_length
, value
, value_length
,
339 expiration
, flags
, 0, PREPEND_OP
);
343 memcached_return_t
memcached_append_by_key(memcached_st
*ptr
,
344 const char *master_key
, size_t master_key_length
,
345 const char *key
, size_t key_length
,
346 const char *value
, size_t value_length
,
350 memcached_return_t rc
;
351 rc
= memcached_send(ptr
, master_key
, master_key_length
,
352 key
, key_length
, value
, value_length
,
353 expiration
, flags
, 0, APPEND_OP
);
357 memcached_return_t
memcached_cas_by_key(memcached_st
*ptr
,
358 const char *master_key
, size_t master_key_length
,
359 const char *key
, size_t key_length
,
360 const char *value
, size_t value_length
,
365 memcached_return_t rc
;
366 rc
= memcached_send(ptr
, master_key
, master_key_length
,
367 key
, key_length
, value
, value_length
,
368 expiration
, flags
, cas
, CAS_OP
);
372 static inline uint8_t get_com_code(memcached_storage_action_t verb
, bool noreply
)
374 /* 0 isn't a value we want, but GCC 4.2 seems to think ret can otherwise
375 * be used uninitialized in this function. FAIL */
382 ret
=PROTOCOL_BINARY_CMD_SETQ
;
385 ret
=PROTOCOL_BINARY_CMD_ADDQ
;
387 case CAS_OP
: /* FALLTHROUGH */
389 ret
=PROTOCOL_BINARY_CMD_REPLACEQ
;
392 ret
=PROTOCOL_BINARY_CMD_APPENDQ
;
395 ret
=PROTOCOL_BINARY_CMD_PREPENDQ
;
398 WATCHPOINT_ASSERT(verb
);
405 ret
=PROTOCOL_BINARY_CMD_SET
;
408 ret
=PROTOCOL_BINARY_CMD_ADD
;
410 case CAS_OP
: /* FALLTHROUGH */
412 ret
=PROTOCOL_BINARY_CMD_REPLACE
;
415 ret
=PROTOCOL_BINARY_CMD_APPEND
;
418 ret
=PROTOCOL_BINARY_CMD_PREPEND
;
421 WATCHPOINT_ASSERT(verb
);
430 static memcached_return_t
memcached_send_binary(memcached_st
*ptr
,
431 const char *master_key
,
432 size_t master_key_length
,
440 memcached_storage_action_t verb
)
443 protocol_binary_request_set request
= {.bytes
= {0}};
444 size_t send_length
= sizeof(request
.bytes
);
445 uint32_t server_key
= memcached_generate_hash(ptr
, master_key
,
447 memcached_server_st
*server
= &ptr
->hosts
[server_key
];
448 bool noreply
= server
->root
->flags
.no_reply
;
450 request
.message
.header
.request
.magic
= PROTOCOL_BINARY_REQ
;
451 request
.message
.header
.request
.opcode
= get_com_code(verb
, noreply
);
452 request
.message
.header
.request
.keylen
= htons((uint16_t)key_length
);
453 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
454 if (verb
== APPEND_OP
|| verb
== PREPEND_OP
)
455 send_length
-= 8; /* append & prepend does not contain extras! */
458 request
.message
.header
.request
.extlen
= 8;
459 request
.message
.body
.flags
= htonl(flags
);
460 request
.message
.body
.expiration
= htonl((uint32_t)expiration
);
463 request
.message
.header
.request
.bodylen
= htonl((uint32_t) (key_length
+ value_length
+
464 request
.message
.header
.request
.extlen
));
467 request
.message
.header
.request
.cas
= htonll(cas
);
469 flush
= (uint8_t) ((server
->root
->flags
.buffer_requests
&& verb
== SET_OP
) ? 0 : 1);
471 if (server
->root
->flags
.use_udp
&& !flush
)
473 size_t cmd_size
= send_length
+ key_length
+ value_length
;
475 if (cmd_size
> MAX_UDP_DATAGRAM_LENGTH
- UDP_DATAGRAM_HEADER_LENGTH
)
476 return MEMCACHED_WRITE_FAILURE
;
477 if (cmd_size
+ server
->write_buffer_offset
> MAX_UDP_DATAGRAM_LENGTH
)
478 memcached_io_write(server
,NULL
,0, 1);
481 /* write the header */
482 if ((memcached_do(server
, (const char*)request
.bytes
, send_length
, 0) != MEMCACHED_SUCCESS
) ||
483 (memcached_io_write(server
, key
, key_length
, 0) == -1) ||
484 (memcached_io_write(server
, value
, value_length
, (char) flush
) == -1))
486 memcached_io_reset(server
);
487 return MEMCACHED_WRITE_FAILURE
;
490 unlikely (verb
== SET_OP
&& ptr
->number_of_replicas
> 0)
492 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_SETQ
;
494 for (uint32_t x
= 0; x
< ptr
->number_of_replicas
; x
++)
497 if (server_key
== ptr
->number_of_hosts
)
500 memcached_server_st
*srv
= &ptr
->hosts
[server_key
];
501 if ((memcached_do(srv
, (const char*)request
.bytes
,
502 send_length
, 0) != MEMCACHED_SUCCESS
) ||
503 (memcached_io_write(srv
, key
, key_length
, 0) == -1) ||
504 (memcached_io_write(srv
, value
, value_length
, (char) flush
) == -1))
505 memcached_io_reset(srv
);
507 memcached_server_response_decrement(srv
);
512 return MEMCACHED_BUFFERED
;
515 return MEMCACHED_SUCCESS
;
517 return memcached_response(server
, NULL
, 0, NULL
);