Merge in code for improving fetch operation.
[m6w6/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 if (value_length)
54 *value_length= 0;
55
56 if (key_length)
57 *key_length= 0;
58
59 if (flags)
60 *flags= 0;
61
62 if (key)
63 *key= 0;
64
65 *error= MEMCACHED_NOT_SUPPORTED;
66 return NULL;
67 }
68
69 result_buffer= memcached_fetch_result(ptr, result_buffer, error);
70 if (result_buffer == NULL or memcached_failed(*error))
71 {
72 WATCHPOINT_ASSERT(result_buffer == NULL);
73 if (value_length)
74 *value_length= 0;
75
76 if (key_length)
77 *key_length= 0;
78
79 if (flags)
80 *flags= 0;
81
82 if (key)
83 *key= 0;
84
85 return NULL;
86 }
87
88 if (value_length)
89 *value_length= memcached_string_length(&result_buffer->value);
90
91 if (key)
92 {
93 if (result_buffer->key_length > MEMCACHED_MAX_KEY)
94 {
95 *error= MEMCACHED_KEY_TOO_BIG;
96 if (value_length)
97 *value_length= 0;
98
99 if (key_length)
100 *key_length= 0;
101
102 if (flags)
103 *flags= 0;
104
105 if (key)
106 *key= 0;
107
108 return NULL;
109 }
110 strncpy(key, result_buffer->item_key, result_buffer->key_length); // For the binary protocol we will cut off the key :(
111 if (key_length)
112 *key_length= result_buffer->key_length;
113 }
114
115 if (flags)
116 *flags= result_buffer->item_flags;
117
118 return memcached_string_take_value(&result_buffer->value);
119 }
120
121 memcached_result_st *memcached_fetch_result(memcached_st *ptr,
122 memcached_result_st *result,
123 memcached_return_t *error)
124 {
125 memcached_server_st *server;
126
127 memcached_return_t unused;
128 if (not error)
129 error= &unused;
130
131 if (not ptr)
132 {
133 *error= MEMCACHED_INVALID_ARGUMENTS;
134 return NULL;
135 }
136
137 if (ptr->flags.use_udp)
138 {
139 *error= MEMCACHED_NOT_SUPPORTED;
140 return NULL;
141 }
142
143 if (not result)
144 {
145 // If we have already initialized (ie it is in use) our internal, we
146 // create one.
147 if (memcached_is_initialized(&ptr->result))
148 {
149 if (not (result= memcached_result_create(ptr, NULL)))
150 {
151 *error= MEMCACHED_MEMORY_ALLOCATION_FAILURE;
152 return NULL;
153 }
154 }
155 else
156 {
157 result= memcached_result_create(ptr, &ptr->result);
158 }
159 }
160
161 *error= MEMCACHED_MAXIMUM_RETURN; // We use this to see if we ever go into the loop
162 while ((server= memcached_io_get_readable_server(ptr)))
163 {
164 char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE];
165 *error= memcached_response(server, buffer, sizeof(buffer), result);
166
167 if (*error == MEMCACHED_SUCCESS)
168 {
169 result->count++;
170 return result;
171 }
172 else if (*error == MEMCACHED_END)
173 {
174 memcached_server_response_reset(server);
175 }
176 else if (*error != MEMCACHED_NOTFOUND)
177 {
178 break;
179 }
180 }
181
182 if (*error == MEMCACHED_NOTFOUND and result->count)
183 {
184 *error= MEMCACHED_END;
185 }
186 else if (*error == MEMCACHED_MAXIMUM_RETURN and result->count)
187 {
188 *error= MEMCACHED_END;
189 }
190 else if (*error == MEMCACHED_MAXIMUM_RETURN) // while() loop was never entered
191 {
192 *error= MEMCACHED_NOTFOUND;
193 }
194 else if (*error == MEMCACHED_SUCCESS)
195 {
196 *error= MEMCACHED_END;
197 }
198 else if (result->count == 0)
199 {
200 *error= MEMCACHED_NOTFOUND;
201 }
202
203 /* We have completed reading data */
204 if (memcached_is_allocated(result))
205 {
206 memcached_result_free(result);
207 }
208 else
209 {
210 result->count= 0;
211 memcached_string_reset(&result->value);
212 }
213
214 return NULL;
215 }
216
217 memcached_return_t memcached_fetch_execute(memcached_st *ptr,
218 memcached_execute_fn *callback,
219 void *context,
220 uint32_t number_of_callbacks)
221 {
222 memcached_result_st *result= &ptr->result;
223 memcached_return_t rc;
224 bool some_errors= false;
225
226 while ((result= memcached_fetch_result(ptr, result, &rc)))
227 {
228 if (memcached_failed(rc) and rc == MEMCACHED_NOTFOUND)
229 {
230 continue;
231 }
232 else if (memcached_failed(rc))
233 {
234 memcached_set_error(*ptr, rc, MEMCACHED_AT);
235 some_errors= true;
236 continue;
237 }
238
239 for (uint32_t x= 0; x < number_of_callbacks; x++)
240 {
241 memcached_return_t ret= (*callback[x])(ptr, result, context);
242 if (memcached_failed(ret))
243 {
244 some_errors= true;
245 memcached_set_error(*ptr, ret, MEMCACHED_AT);
246 break;
247 }
248 }
249 }
250
251 if (some_errors)
252 {
253 return MEMCACHED_SOME_ERRORS;
254 }
255
256 // If we were able to run all keys without issue we return
257 // MEMCACHED_SUCCESS
258 if (memcached_success(rc))
259 {
260 return MEMCACHED_SUCCESS;
261 }
262
263 return rc;
264 }