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();
159 if (number_of_keys
== 0)
160 return MEMCACHED_NOTFOUND
;
162 if (memcached_server_count(ptr
) == 0)
163 return MEMCACHED_NO_SERVERS
;
165 if (ptr
->flags
.verify_key
&& (memcached_key_test(keys
, key_length
, number_of_keys
) == MEMCACHED_BAD_KEY_PROVIDED
))
166 return MEMCACHED_BAD_KEY_PROVIDED
;
168 if (master_key
&& master_key_length
)
170 if (ptr
->flags
.verify_key
&& (memcached_key_test((const char * const *)&master_key
, &master_key_length
, 1) == MEMCACHED_BAD_KEY_PROVIDED
))
171 return MEMCACHED_BAD_KEY_PROVIDED
;
172 master_server_key
= memcached_generate_hash(ptr
, master_key
, master_key_length
);
173 is_master_key_set
= true;
177 Here is where we pay for the non-block API. We need to remove any data sitting
178 in the queue before we start our get.
180 It might be optimum to bounce the connection if count > some number.
182 for (x
= 0; x
< memcached_server_count(ptr
); x
++)
184 if (memcached_server_response_count(&ptr
->hosts
[x
]))
186 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
188 if (ptr
->flags
.no_block
)
189 (void)memcached_io_write(&ptr
->hosts
[x
], NULL
, 0, 1);
191 while(memcached_server_response_count(&ptr
->hosts
[x
]))
192 (void)memcached_response(&ptr
->hosts
[x
], buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, &ptr
->result
);
196 if (ptr
->flags
.binary_protocol
)
197 return binary_mget_by_key(ptr
, master_server_key
, is_master_key_set
, keys
,
198 key_length
, number_of_keys
, mget_mode
);
200 if (ptr
->flags
.support_cas
)
202 get_command
= "gets ";
203 get_command_length
= 5;
207 If a server fails we warn about errors and start all over with sending keys
210 for (x
= 0; x
< number_of_keys
; x
++)
212 unsigned int server_key
;
214 if (is_master_key_set
)
215 server_key
= master_server_key
;
217 server_key
= memcached_generate_hash(ptr
, keys
[x
], key_length
[x
]);
219 if (memcached_server_response_count(&ptr
->hosts
[server_key
]) == 0)
221 rc
= memcached_connect(&ptr
->hosts
[server_key
]);
223 if (rc
!= MEMCACHED_SUCCESS
)
226 if ((memcached_io_write(&ptr
->hosts
[server_key
], get_command
, get_command_length
, 0)) == -1)
228 rc
= MEMCACHED_SOME_ERRORS
;
231 WATCHPOINT_ASSERT(ptr
->hosts
[server_key
].cursor_active
== 0);
232 memcached_server_response_increment(&ptr
->hosts
[server_key
]);
233 WATCHPOINT_ASSERT(ptr
->hosts
[server_key
].cursor_active
== 1);
236 /* Only called when we have a prefix key */
237 if (ptr
->prefix_key
[0] != 0)
239 if ((memcached_io_write(&ptr
->hosts
[server_key
], ptr
->prefix_key
, ptr
->prefix_key_length
, 0)) == -1)
241 memcached_server_response_reset(&ptr
->hosts
[server_key
]);
242 rc
= MEMCACHED_SOME_ERRORS
;
247 if ((memcached_io_write(&ptr
->hosts
[server_key
], keys
[x
], key_length
[x
], 0)) == -1)
249 memcached_server_response_reset(&ptr
->hosts
[server_key
]);
250 rc
= MEMCACHED_SOME_ERRORS
;
254 if ((memcached_io_write(&ptr
->hosts
[server_key
], " ", 1, 0)) == -1)
256 memcached_server_response_reset(&ptr
->hosts
[server_key
]);
257 rc
= MEMCACHED_SOME_ERRORS
;
263 Should we muddle on if some servers are dead?
265 for (x
= 0; x
< memcached_server_count(ptr
); x
++)
267 if (memcached_server_response_count(&ptr
->hosts
[x
]))
269 /* We need to do something about non-connnected hosts in the future */
270 if ((memcached_io_write(&ptr
->hosts
[x
], "\r\n", 2, 1)) == -1)
272 rc
= MEMCACHED_SOME_ERRORS
;
277 LIBMEMCACHED_MEMCACHED_MGET_END();
281 memcached_return_t
memcached_mget_by_key(memcached_st
*ptr
,
282 const char *master_key
,
283 size_t master_key_length
,
284 const char * const *keys
,
285 const size_t *key_length
,
286 size_t number_of_keys
)
288 return memcached_mget_by_key_real(ptr
, master_key
, master_key_length
, keys
,
289 key_length
, number_of_keys
, true);
292 memcached_return_t
memcached_mget_execute(memcached_st
*ptr
,
293 const char * const *keys
,
294 const size_t *key_length
,
295 size_t number_of_keys
,
296 memcached_execute_fn
*callback
,
298 unsigned int number_of_callbacks
)
300 return memcached_mget_execute_by_key(ptr
, NULL
, 0, keys
, key_length
,
301 number_of_keys
, callback
,
302 context
, number_of_callbacks
);
305 memcached_return_t
memcached_mget_execute_by_key(memcached_st
*ptr
,
306 const char *master_key
,
307 size_t master_key_length
,
308 const char * const *keys
,
309 const size_t *key_length
,
310 size_t number_of_keys
,
311 memcached_execute_fn
*callback
,
313 unsigned int number_of_callbacks
)
315 if ((ptr
->flags
.binary_protocol
) == 0)
316 return MEMCACHED_NOT_SUPPORTED
;
318 memcached_return_t rc
;
319 memcached_callback_st
*original_callbacks
= ptr
->callbacks
;
320 memcached_callback_st cb
= {
323 .number_of_callback
= number_of_callbacks
327 rc
= memcached_mget_by_key(ptr
, master_key
, master_key_length
, keys
,
328 key_length
, number_of_keys
);
329 ptr
->callbacks
= original_callbacks
;
333 static memcached_return_t
simple_binary_mget(memcached_st
*ptr
,
334 unsigned int master_server_key
,
335 bool is_master_key_set
,
336 const char * const *keys
,
337 const size_t *key_length
,
338 size_t number_of_keys
, bool mget_mode
)
340 memcached_return_t rc
= MEMCACHED_NOTFOUND
;
343 int flush
= number_of_keys
== 1;
346 If a server fails we warn about errors and start all over with sending keys
349 for (x
= 0; x
< number_of_keys
; x
++)
351 unsigned int server_key
;
353 if (is_master_key_set
)
354 server_key
= master_server_key
;
356 server_key
= memcached_generate_hash(ptr
, keys
[x
], key_length
[x
]);
358 if (memcached_server_response_count(&ptr
->hosts
[server_key
]) == 0)
360 rc
= memcached_connect(&ptr
->hosts
[server_key
]);
361 if (rc
!= MEMCACHED_SUCCESS
)
365 protocol_binary_request_getk request
= {.bytes
= {0}};
366 request
.message
.header
.request
.magic
= PROTOCOL_BINARY_REQ
;
368 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_GETKQ
;
370 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_GETK
;
372 memcached_return_t vk
;
373 vk
= memcached_validate_key_length(key_length
[x
],
374 ptr
->flags
.binary_protocol
);
375 unlikely (vk
!= MEMCACHED_SUCCESS
)
378 memcached_io_reset(&ptr
->hosts
[server_key
]);
382 request
.message
.header
.request
.keylen
= htons((uint16_t)key_length
[x
]);
383 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
384 request
.message
.header
.request
.bodylen
= htonl((uint32_t) key_length
[x
]);
386 if ((memcached_io_write(&ptr
->hosts
[server_key
], request
.bytes
,
387 sizeof(request
.bytes
), 0) == -1) ||
388 (memcached_io_write(&ptr
->hosts
[server_key
], keys
[x
],
389 key_length
[x
], (char) flush
) == -1))
391 memcached_server_response_reset(&ptr
->hosts
[server_key
]);
392 rc
= MEMCACHED_SOME_ERRORS
;
396 /* We just want one pending response per server */
397 memcached_server_response_reset(&ptr
->hosts
[server_key
]);
398 memcached_server_response_increment(&ptr
->hosts
[server_key
]);
399 if ((x
> 0 && x
== ptr
->io_key_prefetch
) &&
400 memcached_flush_buffers(ptr
) != MEMCACHED_SUCCESS
)
401 rc
= MEMCACHED_SOME_ERRORS
;
407 * Send a noop command to flush the buffers
409 protocol_binary_request_noop request
= {.bytes
= {0}};
410 request
.message
.header
.request
.magic
= PROTOCOL_BINARY_REQ
;
411 request
.message
.header
.request
.opcode
= PROTOCOL_BINARY_CMD_NOOP
;
412 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
414 for (x
= 0; x
< memcached_server_count(ptr
); x
++)
415 if (memcached_server_response_count(&ptr
->hosts
[x
]))
417 if (memcached_io_write(&ptr
->hosts
[x
], NULL
, 0, 1) == -1)
419 memcached_server_response_reset(&ptr
->hosts
[x
]);
420 memcached_io_reset(&ptr
->hosts
[x
]);
421 rc
= MEMCACHED_SOME_ERRORS
;
424 if (memcached_io_write(&ptr
->hosts
[x
], request
.bytes
,
425 sizeof(request
.bytes
), 1) == -1)
427 memcached_server_response_reset(&ptr
->hosts
[x
]);
428 memcached_io_reset(&ptr
->hosts
[x
]);
429 rc
= MEMCACHED_SOME_ERRORS
;
438 static memcached_return_t
replication_binary_mget(memcached_st
*ptr
,
441 const char *const *keys
,
442 const size_t *key_length
,
443 size_t number_of_keys
)
445 memcached_return_t rc
= MEMCACHED_NOTFOUND
;
446 uint32_t x
, start
= 0;
447 uint64_t randomize_read
= memcached_behavior_get(ptr
, MEMCACHED_BEHAVIOR_RANDOMIZE_REPLICA_READ
);
450 start
= (uint32_t)random() % (uint32_t)(ptr
->number_of_replicas
+ 1);
452 /* Loop for each replica */
453 for (uint32_t replica
= 0; replica
<= ptr
->number_of_replicas
; ++replica
)
457 for (x
= 0; x
< number_of_keys
; ++x
)
459 if (hash
[x
] == memcached_server_count(ptr
))
460 continue; /* Already successfully sent */
462 uint32_t server
= hash
[x
] + replica
;
464 /* In case of randomized reads */
465 if (randomize_read
&& ((server
+ start
) <= (hash
[x
] + ptr
->number_of_replicas
)))
468 while (server
>= memcached_server_count(ptr
))
469 server
-= memcached_server_count(ptr
);
471 if (dead_servers
[server
])
474 if (memcached_server_response_count(&ptr
->hosts
[server
]) == 0)
476 rc
= memcached_connect(&ptr
->hosts
[server
]);
477 if (rc
!= MEMCACHED_SUCCESS
)
479 memcached_io_reset(&ptr
->hosts
[server
]);
480 dead_servers
[server
]= true;
486 protocol_binary_request_getk request
= {
487 .message
.header
.request
= {
488 .magic
= PROTOCOL_BINARY_REQ
,
489 .opcode
= PROTOCOL_BINARY_CMD_GETK
,
490 .keylen
= htons((uint16_t)key_length
[x
]),
491 .datatype
= PROTOCOL_BINARY_RAW_BYTES
,
492 .bodylen
= htonl((uint32_t)key_length
[x
])
497 * We need to disable buffering to actually know that the request was
498 * successfully sent to the server (so that we should expect a result
499 * back). It would be nice to do this in buffered mode, but then it
500 * would be complex to handle all error situations if we got to send
501 * some of the messages, and then we failed on writing out some others
502 * and we used the callback interface from memcached_mget_execute so
503 * that we might have processed some of the responses etc. For now,
504 * just make sure we work _correctly_
506 if ((memcached_io_write(&ptr
->hosts
[server
], request
.bytes
,
507 sizeof(request
.bytes
), 0) == -1) ||
508 (memcached_io_write(&ptr
->hosts
[server
], keys
[x
],
509 key_length
[x
], 1) == -1))
511 memcached_io_reset(&ptr
->hosts
[server
]);
512 dead_servers
[server
]= true;
517 memcached_server_response_increment(&ptr
->hosts
[server
]);
518 hash
[x
]= memcached_server_count(ptr
);
528 static memcached_return_t
binary_mget_by_key(memcached_st
*ptr
,
529 unsigned int master_server_key
,
530 bool is_master_key_set
,
531 const char * const *keys
,
532 const size_t *key_length
,
533 size_t number_of_keys
,
536 memcached_return_t rc
;
538 if (ptr
->number_of_replicas
== 0)
540 rc
= simple_binary_mget(ptr
, master_server_key
, is_master_key_set
,
541 keys
, key_length
, number_of_keys
, mget_mode
);
548 hash
= ptr
->call_malloc(ptr
, sizeof(uint32_t) * number_of_keys
);
549 dead_servers
= ptr
->call_calloc(ptr
, memcached_server_count(ptr
), sizeof(bool));
551 if (hash
== NULL
|| dead_servers
== NULL
)
553 ptr
->call_free(ptr
, hash
);
554 ptr
->call_free(ptr
, dead_servers
);
555 return MEMCACHED_MEMORY_ALLOCATION_FAILURE
;
558 if (is_master_key_set
)
559 for (unsigned int x
= 0; x
< number_of_keys
; x
++)
560 hash
[x
]= master_server_key
;
562 for (unsigned int x
= 0; x
< number_of_keys
; x
++)
563 hash
[x
]= memcached_generate_hash(ptr
, keys
[x
], key_length
[x
]);
565 rc
= replication_binary_mget(ptr
, hash
, dead_servers
, keys
,
566 key_length
, number_of_keys
);
568 ptr
->call_free(ptr
, hash
);
569 ptr
->call_free(ptr
, dead_servers
);
571 return MEMCACHED_SUCCESS
;