Merge in fetch updates/break out memory/create error bits for host failures.
[awesomized/libmemcached] / libmemcached / fetch.cc
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * Libmemcached library
4 *
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker All rights reserved.
7 *
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
10 * met:
11 *
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
14 *
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
18 * distribution.
19 *
20 * * The names of its contributors may not be used to endorse or
21 * promote products derived from this software without specific prior
22 * written permission.
23 *
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.
35 *
36 */
37
38 #include <libmemcached/common.h>
39
40 char *memcached_fetch(memcached_st *ptr, char *key, size_t *key_length,
41 size_t *value_length,
42 uint32_t *flags,
43 memcached_return_t *error)
44 {
45 memcached_result_st *result_buffer= &ptr->result;
46 memcached_return_t unused;
47 if (not error)
48 error= &unused;
49
50
51 unlikely (ptr->flags.use_udp)
52 {
53 *error= MEMCACHED_NOT_SUPPORTED;
54 return NULL;
55 }
56
57 result_buffer= memcached_fetch_result(ptr, result_buffer, error);
58
59 if (result_buffer == NULL || *error != MEMCACHED_SUCCESS)
60 {
61 WATCHPOINT_ASSERT(result_buffer == NULL);
62 *value_length= 0;
63 return NULL;
64 }
65
66 *value_length= memcached_string_length(&result_buffer->value);
67
68 if (key)
69 {
70 if (result_buffer->key_length > MEMCACHED_MAX_KEY)
71 {
72 *error= MEMCACHED_KEY_TOO_BIG;
73 *value_length= 0;
74
75 return NULL;
76 }
77 strncpy(key, result_buffer->item_key, result_buffer->key_length); // For the binary protocol we will cut off the key :(
78 *key_length= result_buffer->key_length;
79 }
80
81 *flags= result_buffer->item_flags;
82
83 return memcached_string_c_copy(&result_buffer->value);
84 }
85
86 memcached_result_st *memcached_fetch_result(memcached_st *ptr,
87 memcached_result_st *result,
88 memcached_return_t *error)
89 {
90 memcached_server_st *server;
91
92 unlikely (ptr->flags.use_udp)
93 {
94 *error= MEMCACHED_NOT_SUPPORTED;
95 return NULL;
96 }
97
98 if (result == NULL)
99 if ((result= memcached_result_create(ptr, NULL)) == NULL)
100 return NULL;
101
102 while ((server= memcached_io_get_readable_server(ptr)) != NULL)
103 {
104 char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE];
105 *error= memcached_response(server, buffer, sizeof(buffer), result);
106
107 if (*error == MEMCACHED_SUCCESS)
108 return result;
109 else if (*error == MEMCACHED_END)
110 memcached_server_response_reset(server);
111 else if (*error != MEMCACHED_NOTFOUND)
112 break;
113 }
114
115 /* We have completed reading data */
116 if (memcached_is_allocated(result))
117 {
118 memcached_result_free(result);
119 }
120 else
121 {
122 memcached_string_reset(&result->value);
123 }
124
125 return NULL;
126 }
127
128 memcached_return_t memcached_fetch_execute(memcached_st *ptr,
129 memcached_execute_fn *callback,
130 void *context,
131 uint32_t number_of_callbacks)
132 {
133 memcached_result_st *result= &ptr->result;
134 memcached_return_t rc= MEMCACHED_FAILURE;
135
136 while ((result= memcached_fetch_result(ptr, result, &rc)) != NULL)
137 {
138 if (rc == MEMCACHED_SUCCESS)
139 {
140 for (uint32_t x= 0; x < number_of_callbacks; x++)
141 {
142 rc= (*callback[x])(ptr, result, context);
143 if (rc != MEMCACHED_SUCCESS)
144 break;
145 }
146 }
147 }
148 return rc;
149 }