Just hand over memory ownership when the caller is supposed to free it (we have befor...
[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 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 (ptr->flags.use_udp)
132 {
133 *error= MEMCACHED_NOT_SUPPORTED;
134 return NULL;
135 }
136
137 if (not result)
138 {
139 if (not (result= memcached_result_create(ptr, NULL)))
140 {
141 *error= MEMCACHED_MEMORY_ALLOCATION_FAILURE;
142 return NULL;
143 }
144 }
145
146 *error= MEMCACHED_MAXIMUM_RETURN; // We use this to see if we ever go into the loop
147 while ((server= memcached_io_get_readable_server(ptr)))
148 {
149 char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE];
150 *error= memcached_response(server, buffer, sizeof(buffer), result);
151
152 if (*error == MEMCACHED_SUCCESS)
153 {
154 result->count++;
155 return result;
156 }
157 else if (*error == MEMCACHED_END)
158 {
159 memcached_server_response_reset(server);
160 }
161 else if (*error != MEMCACHED_NOTFOUND)
162 {
163 break;
164 }
165 }
166
167 if (*error == MEMCACHED_NOTFOUND and result->count)
168 {
169 *error= MEMCACHED_END;
170 }
171 else if (*error == MEMCACHED_MAXIMUM_RETURN and result->count)
172 {
173 *error= MEMCACHED_END;
174 }
175 else if (*error == MEMCACHED_MAXIMUM_RETURN) // while() loop was never entered
176 {
177 *error= MEMCACHED_NOTFOUND;
178 }
179 else if (*error == MEMCACHED_SUCCESS)
180 {
181 *error= MEMCACHED_END;
182 }
183 else if (result->count == 0)
184 {
185 *error= MEMCACHED_NOTFOUND;
186 }
187
188 /* We have completed reading data */
189 if (memcached_is_allocated(result))
190 {
191 memcached_result_free(result);
192 }
193 else
194 {
195 result->count= 0;
196 memcached_string_reset(&result->value);
197 }
198
199 return NULL;
200 }
201
202 memcached_return_t memcached_fetch_execute(memcached_st *ptr,
203 memcached_execute_fn *callback,
204 void *context,
205 uint32_t number_of_callbacks)
206 {
207 memcached_result_st *result= &ptr->result;
208 memcached_return_t rc;
209 bool some_errors= false;
210
211 while ((result= memcached_fetch_result(ptr, result, &rc)))
212 {
213 if (memcached_failed(rc) and rc == MEMCACHED_NOTFOUND)
214 {
215 continue;
216 }
217 else if (memcached_failed(rc))
218 {
219 memcached_set_error(*ptr, rc, MEMCACHED_AT);
220 some_errors= true;
221 continue;
222 }
223
224 for (uint32_t x= 0; x < number_of_callbacks; x++)
225 {
226 memcached_return_t ret= (*callback[x])(ptr, result, context);
227 if (memcached_failed(ret))
228 {
229 some_errors= true;
230 memcached_set_error(*ptr, ret, MEMCACHED_AT);
231 break;
232 }
233 }
234 }
235
236 if (some_errors)
237 {
238 return MEMCACHED_SOME_ERRORS;
239 }
240
241 // If we were able to run all keys without issue we return
242 // MEMCACHED_SUCCESS
243 if (memcached_success(rc))
244 {
245 return MEMCACHED_SUCCESS;
246 }
247
248 return rc;
249 }