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: Get functions for libmemcached
15 What happens if no servers exist?
17 char *memcached_get(memcached_st
*ptr
, const char *key
,
21 memcached_return_t
*error
)
23 return memcached_get_by_key(ptr
, NULL
, 0, key
, key_length
, value_length
,
27 static memcached_return_t
memcached_mget_by_key_real(memcached_st
*ptr
,
28 const char *master_key
,
29 size_t master_key_length
,
30 const char * const *keys
,
31 const size_t *key_length
,
32 size_t number_of_keys
,
35 char *memcached_get_by_key(memcached_st
*ptr
,
36 const char *master_key
,
37 size_t master_key_length
,
38 const char *key
, size_t key_length
,
41 memcached_return_t
*error
)
46 memcached_return_t dummy_error
;
48 unlikely (ptr
->flags
.use_udp
)
50 *error
= MEMCACHED_NOT_SUPPORTED
;
55 *error
= memcached_mget_by_key_real(ptr
, master_key
, master_key_length
,
56 (const char * const *)&key
,
57 &key_length
, 1, false);
59 value
= memcached_fetch(ptr
, NULL
, NULL
,
60 value_length
, flags
, error
);
61 /* This is for historical reasons */
62 if (*error
== MEMCACHED_END
)
63 *error
= MEMCACHED_NOTFOUND
;
67 if (ptr
->get_key_failure
&& *error
== MEMCACHED_NOTFOUND
)
69 memcached_return_t rc
;
71 memcached_result_reset(&ptr
->result
);
72 rc
= ptr
->get_key_failure(ptr
, key
, key_length
, &ptr
->result
);
74 /* On all failure drop to returning NULL */
75 if (rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
)
77 if (rc
== MEMCACHED_BUFFERED
)
79 uint64_t latch
; /* We use latch to track the state of the original socket */
80 latch
= memcached_behavior_get(ptr
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
);
82 memcached_behavior_set(ptr
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, 1);
84 rc
= memcached_set(ptr
, key
, key_length
,
85 (memcached_result_value(&ptr
->result
)),
86 (memcached_result_length(&ptr
->result
)),
88 (memcached_result_flags(&ptr
->result
)));
90 if (rc
== MEMCACHED_BUFFERED
&& latch
== 0)
91 memcached_behavior_set(ptr
, MEMCACHED_BEHAVIOR_BUFFER_REQUESTS
, 0);
95 rc
= memcached_set(ptr
, key
, key_length
,
96 (memcached_result_value(&ptr
->result
)),
97 (memcached_result_length(&ptr
->result
)),
99 (memcached_result_flags(&ptr
->result
)));
102 if (rc
== MEMCACHED_SUCCESS
|| rc
== MEMCACHED_BUFFERED
)
105 *value_length
= memcached_result_length(&ptr
->result
);
106 *flags
= memcached_result_flags(&ptr
->result
);
107 return memcached_string_c_copy(&ptr
->result
.value
);
115 (void)memcached_fetch(ptr
, NULL
, NULL
,
116 &dummy_length
, &dummy_flags
,
118 WATCHPOINT_ASSERT(dummy_length
== 0);
123 memcached_return_t
memcached_mget(memcached_st
*ptr
,
124 const char * const *keys
,
125 const size_t *key_length
,
126 size_t number_of_keys
)
128 return memcached_mget_by_key(ptr
, NULL
, 0, keys
, key_length
, number_of_keys
);
131 static memcached_return_t
binary_mget_by_key(memcached_st
*ptr
,
132 unsigned int master_server_key
,
133 bool is_master_key_set
,
134 const char * const *keys
,
135 const size_t *key_length
,
136 size_t number_of_keys
,
139 static memcached_return_t
memcached_mget_by_key_real(memcached_st
*ptr
,
140 const char *master_key
,
141 size_t master_key_length
,
142 const char * const *keys
,
143 const size_t *key_length
,
144 size_t number_of_keys
,
148 memcached_return_t rc
= MEMCACHED_NOTFOUND
;
149 const char *get_command
= "get ";
150 uint8_t get_command_length
= 4;
151 unsigned int master_server_key
= (unsigned int)-1; /* 0 is a valid server id! */
152 bool is_master_key_set
= false;
154 unlikely (ptr
->flags
.use_udp
)
155 return MEMCACHED_NOT_SUPPORTED
;
157 LIBMEMCACHED_MEMCACHED_MGET_START();
158 ptr
->cursor_server
= 0;
160 if (number_of_keys
== 0)
161 return MEMCACHED_NOTFOUND
;
163 if (ptr
->number_of_hosts
== 0)
164 return MEMCACHED_NO_SERVERS
;
166 if (ptr
->flags
.verify_key
&& (memcached_key_test(keys
, key_length
, number_of_keys
) == MEMCACHED_BAD_KEY_PROVIDED
))
167 return MEMCACHED_BAD_KEY_PROVIDED
;
169 if (master_key
&& master_key_length
)
171 if (ptr
->flags
.verify_key
&& (memcached_key_test((const char * const *)&master_key
, &master_key_length
, 1) == MEMCACHED_BAD_KEY_PROVIDED
))
172 return MEMCACHED_BAD_KEY_PROVIDED
;
173 master_server_key
= memcached_generate_hash(ptr
, master_key
, master_key_length
);
174 is_master_key_set
= true;
178 Here is where we pay for the non-block API. We need to remove any data sitting
179 in the queue before we start our get.
181 It might be optimum to bounce the connection if count > some number.
183 for (x
= 0; x
< ptr
->number_of_hosts
; x
++)
185 if (memcached_server_response_count(&ptr
->hosts
[x
]))
187 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
189 if (ptr
->flags
.no_block
)
190 (void)memcached_io_write(&ptr
->hosts
[x
], NULL
, 0, 1);
192 while(memcached_server_response_count(&ptr
->hosts
[x
]))
193 (void)memcached_response(&ptr
->hosts
[x
], buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, &ptr
->result
);
197 if (ptr
->flags
.binary_protocol
)
198 return binary_mget_by_key(ptr
, master_server_key
, is_master_key_set
, keys
,
199 key_length
, number_of_keys
, mget_mode
);
201 if (ptr
->flags
.support_cas
)
203 get_command
= "gets ";
204 get_command_length
= 5;
208 If a server fails we warn about errors and start all over with sending keys
211 for (x
= 0; x
< number_of_keys
; x
++)
213 unsigned int server_key
;
215 if (is_master_key_set
)
216 server_key
= master_server_key
;
218 server_key
= memcached_generate_hash(ptr
, keys
[x
], key_length
[x
]);
220 if (memcached_server_response_count(&ptr
->hosts
[server_key
]) == 0)
222 rc
= memcached_connect(&ptr
->hosts
[server_key
]);
224 if (rc
!= MEMCACHED_SUCCESS
)
227 if ((memcached_io_write(&ptr
->hosts
[server_key
], get_command
, get_command_length
, 0)) == -1)
229 rc
= MEMCACHED_SOME_ERRORS
;
232 WATCHPOINT_ASSERT(ptr
->hosts
[server_key
].cursor_active
== 0);
233 memcached_server_response_increment(&ptr
->hosts
[server_key
]);
234 WATCHPOINT_ASSERT(ptr
->hosts
[server_key
].cursor_active
== 1);
237 /* Only called when we have a prefix key */
238 if (ptr
->prefix_key
[0] != 0)
240 if ((memcached_io_write(&ptr
->hosts
[server_key
], ptr
->prefix_key
, ptr
->prefix_key_length
, 0)) == -1)
242 memcached_server_response_reset(&ptr
->hosts
[server_key
]);
243 rc
= MEMCACHED_SOME_ERRORS
;
248 if ((memcached_io_write(&ptr
->hosts
[server_key
], keys
[x
], key_length
[x
], 0)) == -1)
250 memcached_server_response_reset(&ptr
->hosts
[server_key
]);
251 rc
= MEMCACHED_SOME_ERRORS
;
255 if ((memcached_io_write(&ptr
->hosts
[server_key
], " ", 1, 0)) == -1)
257 memcached_server_response_reset(&ptr
->hosts
[server_key
]);
258 rc
= MEMCACHED_SOME_ERRORS
;
264 Should we muddle on if some servers are dead?
266 for (x
= 0; x
< ptr
->number_of_hosts
; x
++)
268 if (memcached_server_response_count(&ptr
->hosts
[x
]))
270 /* We need to do something about non-connnected hosts in the future */
271 if ((memcached_io_write(&ptr
->hosts
[x
], "\r\n", 2, 1)) == -1)
273 rc
= MEMCACHED_SOME_ERRORS
;
278 LIBMEMCACHED_MEMCACHED_MGET_END();
282 memcached_return_t
memcached_mget_by_key(memcached_st
*ptr
,
283 const char *master_key
,
284 size_t master_key_length
,
285 const char * const *keys
,
286 const size_t *key_length
,
287 size_t number_of_keys
)
289 return memcached_mget_by_key_real(ptr
, master_key
, master_key_length
, keys
,
290 key_length
, number_of_keys
, true);
293 memcached_return_t
memcached_mget_execute(memcached_st
*ptr
,
294 const char * const *keys
,
295 const size_t *key_length
,
296 size_t number_of_keys
,
297 memcached_execute_fn
*callback
,
299 unsigned int number_of_callbacks
)
301 return memcached_mget_execute_by_key(ptr
, NULL
, 0, keys
, key_length
,
302 number_of_keys
, callback
,
303 context
, number_of_callbacks
);
306 memcached_return_t
memcached_mget_execute_by_key(memcached_st
*ptr
,
307 const char *master_key
,
308 size_t master_key_length
,
309 const char * const *keys
,
310 const size_t *key_length
,
311 size_t number_of_keys
,
312 memcached_execute_fn
*callback
,
314 unsigned int number_of_callbacks
)
316 if ((ptr
->flags
.binary_protocol
) == 0)
317 return MEMCACHED_NOT_SUPPORTED
;
319 memcached_return_t rc
;
320 memcached_callback_st
*original_callbacks
= ptr
->callbacks
;
321 memcached_callback_st cb
= {
324 .number_of_callback
= number_of_callbacks
328 rc
= memcached_mget_by_key(ptr
, master_key
, master_key_length
, keys
,
329 key_length
, number_of_keys
);
330 ptr
->callbacks
= original_callbacks
;
334 static memcached_return_t
simple_binary_mget(memcached_st
*ptr
,
335 unsigned int master_server_key
,
336 bool is_master_key_set
,
337 const char * const *keys
,
338 const size_t *key_length
,
339 size_t number_of_keys
, bool mget_mode
)
341 memcached_return_t rc
= MEMCACHED_NOTFOUND
;
344 int flush
= number_of_keys
== 1;
347 If a server fails we warn about errors and start all over with sending keys
350 for (x
= 0; x
< number_of_keys
; x
++)
352 unsigned int server_key
;
354 if (is_master_key_set
)
355 server_key
= master_server_key
;
357 server_key
= memcached_generate_hash(ptr
, keys
[x
], key_length
[x
]);
359 if (memcached_server_response_count(&ptr
->hosts
[server_key
]) == 0)
361 rc
= memcached_connect(&ptr
->hosts
[server_key
]);
362 if (rc
!= MEMCACHED_SUCCESS
)
366 protocol_binary_request_getk request
= {.bytes
= {0}};
367 request
.message
.header
.request
.magic
= PROTOCOL_BINARY_REQ
;
369 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_GETKQ
;
371 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_GETK
;
373 memcached_return_t vk
;
374 vk
= memcached_validate_key_length(key_length
[x
],
375 ptr
->flags
.binary_protocol
);
376 unlikely (vk
!= MEMCACHED_SUCCESS
)
379 memcached_io_reset(&ptr
->hosts
[server_key
]);
383 request
.message
.header
.request
.keylen
= htons((uint16_t)key_length
[x
]);
384 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
385 request
.message
.header
.request
.bodylen
= htonl((uint32_t) key_length
[x
]);
387 if ((memcached_io_write(&ptr
->hosts
[server_key
], request
.bytes
,
388 sizeof(request
.bytes
), 0) == -1) ||
389 (memcached_io_write(&ptr
->hosts
[server_key
], keys
[x
],
390 key_length
[x
], (char) flush
) == -1))
392 memcached_server_response_reset(&ptr
->hosts
[server_key
]);
393 rc
= MEMCACHED_SOME_ERRORS
;
397 /* We just want one pending response per server */
398 memcached_server_response_reset(&ptr
->hosts
[server_key
]);
399 memcached_server_response_increment(&ptr
->hosts
[server_key
]);
400 if ((x
> 0 && x
== ptr
->io_key_prefetch
) &&
401 memcached_flush_buffers(ptr
) != MEMCACHED_SUCCESS
)
402 rc
= MEMCACHED_SOME_ERRORS
;
408 * Send a noop command to flush the buffers
410 protocol_binary_request_noop request
= {.bytes
= {0}};
411 request
.message
.header
.request
.magic
= PROTOCOL_BINARY_REQ
;
412 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_NOOP
;
413 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
415 for (x
= 0; x
< ptr
->number_of_hosts
; x
++)
416 if (memcached_server_response_count(&ptr
->hosts
[x
]))
418 if (memcached_io_write(&ptr
->hosts
[x
], NULL
, 0, 1) == -1)
420 memcached_server_response_reset(&ptr
->hosts
[x
]);
421 memcached_io_reset(&ptr
->hosts
[x
]);
422 rc
= MEMCACHED_SOME_ERRORS
;
425 if (memcached_io_write(&ptr
->hosts
[x
], request
.bytes
,
426 sizeof(request
.bytes
), 1) == -1)
428 memcached_server_response_reset(&ptr
->hosts
[x
]);
429 memcached_io_reset(&ptr
->hosts
[x
]);
430 rc
= MEMCACHED_SOME_ERRORS
;
439 static memcached_return_t
replication_binary_mget(memcached_st
*ptr
,
442 const char *const *keys
,
443 const size_t *key_length
,
444 size_t number_of_keys
)
446 memcached_return_t rc
= MEMCACHED_NOTFOUND
;
447 uint32_t x
, start
= 0;
448 uint64_t randomize_read
= memcached_behavior_get(ptr
, MEMCACHED_BEHAVIOR_RANDOMIZE_REPLICA_READ
);
451 start
= (uint32_t)random() % (uint32_t)(ptr
->number_of_replicas
+ 1);
453 /* Loop for each replica */
454 for (uint32_t replica
= 0; replica
<= ptr
->number_of_replicas
; ++replica
)
458 for (x
= 0; x
< number_of_keys
; ++x
)
460 if (hash
[x
] == ptr
->number_of_hosts
)
461 continue; /* Already successfully sent */
463 uint32_t server
= hash
[x
] + replica
;
465 /* In case of randomized reads */
466 if (randomize_read
&& ((server
+ start
) <= (hash
[x
] + ptr
->number_of_replicas
)))
469 while (server
>= ptr
->number_of_hosts
)
470 server
-= ptr
->number_of_hosts
;
472 if (dead_servers
[server
])
475 if (memcached_server_response_count(&ptr
->hosts
[server
]) == 0)
477 rc
= memcached_connect(&ptr
->hosts
[server
]);
478 if (rc
!= MEMCACHED_SUCCESS
)
480 memcached_io_reset(&ptr
->hosts
[server
]);
481 dead_servers
[server
]= true;
487 protocol_binary_request_getk request
= {
488 .message
.header
.request
= {
489 .magic
= PROTOCOL_BINARY_REQ
,
490 .opcode
= PROTOCOL_BINARY_CMD_GETK
,
491 .keylen
= htons((uint16_t)key_length
[x
]),
492 .datatype
= PROTOCOL_BINARY_RAW_BYTES
,
493 .bodylen
= htonl((uint32_t)key_length
[x
])
498 * We need to disable buffering to actually know that the request was
499 * successfully sent to the server (so that we should expect a result
500 * back). It would be nice to do this in buffered mode, but then it
501 * would be complex to handle all error situations if we got to send
502 * some of the messages, and then we failed on writing out some others
503 * and we used the callback interface from memcached_mget_execute so
504 * that we might have processed some of the responses etc. For now,
505 * just make sure we work _correctly_
507 if ((memcached_io_write(&ptr
->hosts
[server
], request
.bytes
,
508 sizeof(request
.bytes
), 0) == -1) ||
509 (memcached_io_write(&ptr
->hosts
[server
], keys
[x
],
510 key_length
[x
], 1) == -1))
512 memcached_io_reset(&ptr
->hosts
[server
]);
513 dead_servers
[server
]= true;
518 memcached_server_response_increment(&ptr
->hosts
[server
]);
519 hash
[x
]= ptr
->number_of_hosts
;
529 static memcached_return_t
binary_mget_by_key(memcached_st
*ptr
,
530 unsigned int master_server_key
,
531 bool is_master_key_set
,
532 const char * const *keys
,
533 const size_t *key_length
,
534 size_t number_of_keys
,
537 memcached_return_t rc
;
539 if (ptr
->number_of_replicas
== 0)
541 rc
= simple_binary_mget(ptr
, master_server_key
, is_master_key_set
,
542 keys
, key_length
, number_of_keys
, mget_mode
);
549 hash
= ptr
->call_malloc(ptr
, sizeof(uint32_t) * number_of_keys
);
550 dead_servers
= ptr
->call_calloc(ptr
, ptr
->number_of_hosts
, sizeof(bool));
552 if (hash
== NULL
|| dead_servers
== NULL
)
554 ptr
->call_free(ptr
, hash
);
555 ptr
->call_free(ptr
, dead_servers
);
556 return MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
559 if (is_master_key_set
)
560 for (unsigned int x
= 0; x
< number_of_keys
; x
++)
561 hash
[x
]= master_server_key
;
563 for (unsigned int x
= 0; x
< number_of_keys
; x
++)
564 hash
[x
]= memcached_generate_hash(ptr
, keys
[x
], key_length
[x
]);
566 rc
= replication_binary_mget(ptr
, hash
, dead_servers
, keys
,
567 key_length
, number_of_keys
);
569 ptr
->call_free(ptr
, hash
);
570 ptr
->call_free(ptr
, dead_servers
);
572 return MEMCACHED_SUCCESS
;