1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
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
20 * * The names of its contributors may not be used to endorse or
21 * promote products derived from this software without specific prior
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.
38 #include <libmemcached/common.h>
40 static void auto_response(org::libmemcached::Instance
* instance
, const bool reply
, memcached_return_t
& rc
, uint64_t* value
)
42 // If the message was successfully sent, then get the response, otherwise
44 if (memcached_success(rc
))
52 rc
= memcached_response(instance
, &instance
->root
->result
);
55 if (memcached_fatal(rc
))
57 fprintf(stderr
, "%s\n", memcached_strerror(NULL
, rc
));
58 assert(memcached_last_error(instance
->root
) != MEMCACHED_SUCCESS
);
63 *value
= instance
->root
->result
.numeric_value
;
67 static memcached_return_t
text_incr_decr(org::libmemcached::Instance
* instance
,
69 const char *key
, size_t key_length
,
70 const uint64_t offset
,
73 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
75 int send_length
= snprintf(buffer
, sizeof(buffer
), " %" PRIu64
, offset
);
76 if (size_t(send_length
) >= sizeof(buffer
) or send_length
< 0)
78 return memcached_set_error(*instance
, MEMCACHED_MEMORY_ALLOCATION_FAILURE
, MEMCACHED_AT
,
79 memcached_literal_param("snprintf(MEMCACHED_DEFAULT_COMMAND_SIZE)"));
82 libmemcached_io_vector_st vector
[]=
85 { memcached_literal_param("incr ") },
86 { memcached_array_string(instance
->root
->_namespace
), memcached_array_size(instance
->root
->_namespace
) },
88 { buffer
, size_t(send_length
) },
89 { " noreply", reply
? 0 : memcached_literal_param_size(" noreply") },
90 { memcached_literal_param("\r\n") }
95 vector
[1].buffer
= "decr ";
98 return memcached_vdo(instance
, vector
, 7, true);
101 static memcached_return_t
binary_incr_decr(org::libmemcached::Instance
* instance
,
102 protocol_binary_command cmd
,
103 const char *key
, const size_t key_length
,
104 const uint64_t offset
,
105 const uint64_t initial
,
106 const uint32_t expiration
,
111 if(cmd
== PROTOCOL_BINARY_CMD_DECREMENT
)
113 cmd
= PROTOCOL_BINARY_CMD_DECREMENTQ
;
116 if(cmd
== PROTOCOL_BINARY_CMD_INCREMENT
)
118 cmd
= PROTOCOL_BINARY_CMD_INCREMENTQ
;
121 protocol_binary_request_incr request
= {}; // = {.bytes= {0}};
123 initialize_binary_request(instance
, request
.message
.header
);
125 request
.message
.header
.request
.opcode
= cmd
;
126 request
.message
.header
.request
.keylen
= htons((uint16_t)(key_length
+ memcached_array_size(instance
->root
->_namespace
)));
127 request
.message
.header
.request
.extlen
= 20;
128 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
129 request
.message
.header
.request
.bodylen
= htonl((uint32_t)(key_length
+ memcached_array_size(instance
->root
->_namespace
) +request
.message
.header
.request
.extlen
));
130 request
.message
.body
.delta
= memcached_htonll(offset
);
131 request
.message
.body
.initial
= memcached_htonll(initial
);
132 request
.message
.body
.expiration
= htonl((uint32_t) expiration
);
134 libmemcached_io_vector_st vector
[]=
137 { request
.bytes
, sizeof(request
.bytes
) },
138 { memcached_array_string(instance
->root
->_namespace
), memcached_array_size(instance
->root
->_namespace
) },
142 return memcached_vdo(instance
, vector
, 4, true);
145 memcached_return_t
memcached_increment(memcached_st
*memc
,
146 const char *key
, size_t key_length
,
150 return memcached_increment_by_key(memc
, key
, key_length
, key
, key_length
, offset
, value
);
153 static memcached_return_t
increment_decrement_by_key(const protocol_binary_command command
,
155 const char *group_key
, size_t group_key_length
,
156 const char *key
, size_t key_length
,
160 uint64_t local_value
;
166 memcached_return_t rc
;
167 if (memcached_failed(rc
= initialize_query(memc
, true)))
172 if (memcached_is_encrypted(memc
))
174 return memcached_set_error(*memc
, MEMCACHED_NOT_SUPPORTED
, MEMCACHED_AT
,
175 memcached_literal_param("Operation not allowed while encyrption is enabled"));
178 if (memcached_failed(rc
= memcached_key_test(*memc
, (const char **)&key
, &key_length
, 1)))
180 return memcached_last_error(memc
);
183 uint32_t server_key
= memcached_generate_hash_with_redistribution(memc
, group_key
, group_key_length
);
184 org::libmemcached::Instance
* instance
= memcached_instance_fetch(memc
, server_key
);
186 bool reply
= memcached_is_replying(instance
->root
);
188 if (memcached_is_binary(memc
))
190 rc
= binary_incr_decr(instance
, command
,
192 uint64_t(offset
), 0, MEMCACHED_EXPIRATION_NOT_ADD
,
197 rc
= text_incr_decr(instance
,
198 command
== PROTOCOL_BINARY_CMD_INCREMENT
? true : false,
203 auto_response(instance
, reply
, rc
, value
);
208 static memcached_return_t
increment_decrement_with_initial_by_key(const protocol_binary_command command
,
210 const char *group_key
,
211 size_t group_key_length
,
219 uint64_t local_value
;
225 memcached_return_t rc
;
226 if (memcached_failed(rc
= initialize_query(memc
, true)))
231 if (memcached_is_encrypted(memc
))
233 return memcached_set_error(*memc
, MEMCACHED_NOT_SUPPORTED
, MEMCACHED_AT
,
234 memcached_literal_param("Operation not allowed while encyrption is enabled"));
237 if (memcached_failed(rc
= memcached_key_test(*memc
, (const char **)&key
, &key_length
, 1)))
239 return memcached_last_error(memc
);
242 uint32_t server_key
= memcached_generate_hash_with_redistribution(memc
, group_key
, group_key_length
);
243 org::libmemcached::Instance
* instance
= memcached_instance_fetch(memc
, server_key
);
245 bool reply
= memcached_is_replying(instance
->root
);
247 if (memcached_is_binary(memc
))
249 rc
= binary_incr_decr(instance
, command
,
251 offset
, initial
, uint32_t(expiration
),
257 rc
= memcached_set_error(*memc
, MEMCACHED_INVALID_ARGUMENTS
, MEMCACHED_AT
,
258 memcached_literal_param("memcached_increment_with_initial_by_key() is not supported via the ASCII protocol"));
261 auto_response(instance
, reply
, rc
, value
);
266 memcached_return_t
memcached_decrement(memcached_st
*memc
,
267 const char *key
, size_t key_length
,
271 return memcached_decrement_by_key(memc
, key
, key_length
, key
, key_length
, offset
, value
);
275 memcached_return_t
memcached_increment_by_key(memcached_st
*memc
,
276 const char *group_key
, size_t group_key_length
,
277 const char *key
, size_t key_length
,
281 LIBMEMCACHED_MEMCACHED_INCREMENT_START();
282 memcached_return_t rc
= increment_decrement_by_key(PROTOCOL_BINARY_CMD_INCREMENT
,
284 group_key
, group_key_length
,
288 LIBMEMCACHED_MEMCACHED_INCREMENT_END();
293 memcached_return_t
memcached_decrement_by_key(memcached_st
*memc
,
294 const char *group_key
, size_t group_key_length
,
295 const char *key
, size_t key_length
,
299 LIBMEMCACHED_MEMCACHED_DECREMENT_START();
300 memcached_return_t rc
= increment_decrement_by_key(PROTOCOL_BINARY_CMD_DECREMENT
,
302 group_key
, group_key_length
,
305 LIBMEMCACHED_MEMCACHED_DECREMENT_END();
310 memcached_return_t
memcached_increment_with_initial(memcached_st
*memc
,
318 return memcached_increment_with_initial_by_key(memc
, key
, key_length
,
320 offset
, initial
, expiration
, value
);
323 memcached_return_t
memcached_increment_with_initial_by_key(memcached_st
*memc
,
324 const char *group_key
,
325 size_t group_key_length
,
333 LIBMEMCACHED_MEMCACHED_INCREMENT_WITH_INITIAL_START();
334 memcached_return_t rc
= increment_decrement_with_initial_by_key(PROTOCOL_BINARY_CMD_INCREMENT
,
336 group_key
, group_key_length
,
338 offset
, initial
, expiration
, value
);
339 LIBMEMCACHED_MEMCACHED_INCREMENT_WITH_INITIAL_END();
344 memcached_return_t
memcached_decrement_with_initial(memcached_st
*memc
,
352 return memcached_decrement_with_initial_by_key(memc
, key
, key_length
,
354 offset
, initial
, expiration
, value
);
357 memcached_return_t
memcached_decrement_with_initial_by_key(memcached_st
*memc
,
358 const char *group_key
,
359 size_t group_key_length
,
367 LIBMEMCACHED_MEMCACHED_INCREMENT_WITH_INITIAL_START();
368 memcached_return_t rc
= increment_decrement_with_initial_by_key(PROTOCOL_BINARY_CMD_DECREMENT
,
370 group_key
, group_key_length
,
372 offset
, initial
, expiration
, value
);
374 LIBMEMCACHED_MEMCACHED_INCREMENT_WITH_INITIAL_END();