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_success(rc
))
57 *value
= instance
->root
->result
.numeric_value
;
65 static memcached_return_t
text_incr_decr(org::libmemcached::Instance
* instance
,
67 const char *key
, size_t key_length
,
68 const uint64_t offset
,
71 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
73 int send_length
= snprintf(buffer
, sizeof(buffer
), " %" PRIu64
, offset
);
74 if (size_t(send_length
) >= sizeof(buffer
) or send_length
< 0)
76 return memcached_set_error(*instance
, MEMCACHED_MEMORY_ALLOCATION_FAILURE
, MEMCACHED_AT
,
77 memcached_literal_param("snprintf(MEMCACHED_DEFAULT_COMMAND_SIZE)"));
80 libmemcached_io_vector_st vector
[]=
83 { memcached_literal_param("incr ") },
84 { memcached_array_string(instance
->root
->_namespace
), memcached_array_size(instance
->root
->_namespace
) },
86 { buffer
, size_t(send_length
) },
87 { " noreply", reply
? 0 : memcached_literal_param_size(" noreply") },
88 { memcached_literal_param("\r\n") }
93 vector
[1].buffer
= "decr ";
96 return memcached_vdo(instance
, vector
, 7, true);
99 static memcached_return_t
binary_incr_decr(org::libmemcached::Instance
* instance
,
100 protocol_binary_command cmd
,
101 const char *key
, const size_t key_length
,
102 const uint64_t offset
,
103 const uint64_t initial
,
104 const uint32_t expiration
,
109 if(cmd
== PROTOCOL_BINARY_CMD_DECREMENT
)
111 cmd
= PROTOCOL_BINARY_CMD_DECREMENTQ
;
114 if(cmd
== PROTOCOL_BINARY_CMD_INCREMENT
)
116 cmd
= PROTOCOL_BINARY_CMD_INCREMENTQ
;
119 protocol_binary_request_incr request
= {}; // = {.bytes= {0}};
121 initialize_binary_request(instance
, request
.message
.header
);
123 request
.message
.header
.request
.opcode
= cmd
;
124 request
.message
.header
.request
.keylen
= htons((uint16_t)(key_length
+ memcached_array_size(instance
->root
->_namespace
)));
125 request
.message
.header
.request
.extlen
= 20;
126 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
127 request
.message
.header
.request
.bodylen
= htonl((uint32_t)(key_length
+ memcached_array_size(instance
->root
->_namespace
) +request
.message
.header
.request
.extlen
));
128 request
.message
.body
.delta
= memcached_htonll(offset
);
129 request
.message
.body
.initial
= memcached_htonll(initial
);
130 request
.message
.body
.expiration
= htonl((uint32_t) expiration
);
132 libmemcached_io_vector_st vector
[]=
135 { request
.bytes
, sizeof(request
.bytes
) },
136 { memcached_array_string(instance
->root
->_namespace
), memcached_array_size(instance
->root
->_namespace
) },
140 return memcached_vdo(instance
, vector
, 4, true);
143 memcached_return_t
memcached_increment(memcached_st
*memc
,
144 const char *key
, size_t key_length
,
148 return memcached_increment_by_key(memc
, key
, key_length
, key
, key_length
, offset
, value
);
151 static memcached_return_t
increment_decrement_by_key(const protocol_binary_command command
,
153 const char *group_key
, size_t group_key_length
,
154 const char *key
, size_t key_length
,
158 uint64_t local_value
;
164 memcached_return_t rc
;
165 if (memcached_failed(rc
= initialize_query(memc
, true)))
170 if (memcached_is_encrypted(memc
))
172 return memcached_set_error(*memc
, MEMCACHED_NOT_SUPPORTED
, MEMCACHED_AT
,
173 memcached_literal_param("Operation not allowed while encyrption is enabled"));
176 if (memcached_failed(rc
= memcached_key_test(*memc
, (const char **)&key
, &key_length
, 1)))
178 return memcached_last_error(memc
);
181 uint32_t server_key
= memcached_generate_hash_with_redistribution(memc
, group_key
, group_key_length
);
182 org::libmemcached::Instance
* instance
= memcached_instance_fetch(memc
, server_key
);
184 bool reply
= memcached_is_replying(instance
->root
);
186 if (memcached_is_binary(memc
))
188 rc
= binary_incr_decr(instance
, command
,
190 uint64_t(offset
), 0, MEMCACHED_EXPIRATION_NOT_ADD
,
195 rc
= text_incr_decr(instance
,
196 command
== PROTOCOL_BINARY_CMD_INCREMENT
? true : false,
201 auto_response(instance
, reply
, rc
, value
);
206 static memcached_return_t
increment_decrement_with_initial_by_key(const protocol_binary_command command
,
208 const char *group_key
,
209 size_t group_key_length
,
217 uint64_t local_value
;
223 memcached_return_t rc
;
224 if (memcached_failed(rc
= initialize_query(memc
, true)))
229 if (memcached_is_encrypted(memc
))
231 return memcached_set_error(*memc
, MEMCACHED_NOT_SUPPORTED
, MEMCACHED_AT
,
232 memcached_literal_param("Operation not allowed while encyrption is enabled"));
235 if (memcached_failed(rc
= memcached_key_test(*memc
, (const char **)&key
, &key_length
, 1)))
237 return memcached_last_error(memc
);
240 uint32_t server_key
= memcached_generate_hash_with_redistribution(memc
, group_key
, group_key_length
);
241 org::libmemcached::Instance
* instance
= memcached_instance_fetch(memc
, server_key
);
243 bool reply
= memcached_is_replying(instance
->root
);
245 if (memcached_is_binary(memc
))
247 rc
= binary_incr_decr(instance
, command
,
249 offset
, initial
, uint32_t(expiration
),
255 rc
= memcached_set_error(*memc
, MEMCACHED_INVALID_ARGUMENTS
, MEMCACHED_AT
,
256 memcached_literal_param("memcached_increment_with_initial_by_key() is not supported via the ASCII protocol"));
259 auto_response(instance
, reply
, rc
, value
);
264 memcached_return_t
memcached_decrement(memcached_st
*memc
,
265 const char *key
, size_t key_length
,
269 return memcached_decrement_by_key(memc
, key
, key_length
, key
, key_length
, offset
, value
);
273 memcached_return_t
memcached_increment_by_key(memcached_st
*memc
,
274 const char *group_key
, size_t group_key_length
,
275 const char *key
, size_t key_length
,
279 LIBMEMCACHED_MEMCACHED_INCREMENT_START();
280 memcached_return_t rc
= increment_decrement_by_key(PROTOCOL_BINARY_CMD_INCREMENT
,
282 group_key
, group_key_length
,
286 LIBMEMCACHED_MEMCACHED_INCREMENT_END();
291 memcached_return_t
memcached_decrement_by_key(memcached_st
*memc
,
292 const char *group_key
, size_t group_key_length
,
293 const char *key
, size_t key_length
,
297 LIBMEMCACHED_MEMCACHED_DECREMENT_START();
298 memcached_return_t rc
= increment_decrement_by_key(PROTOCOL_BINARY_CMD_DECREMENT
,
300 group_key
, group_key_length
,
303 LIBMEMCACHED_MEMCACHED_DECREMENT_END();
308 memcached_return_t
memcached_increment_with_initial(memcached_st
*memc
,
316 return memcached_increment_with_initial_by_key(memc
, key
, key_length
,
318 offset
, initial
, expiration
, value
);
321 memcached_return_t
memcached_increment_with_initial_by_key(memcached_st
*memc
,
322 const char *group_key
,
323 size_t group_key_length
,
331 LIBMEMCACHED_MEMCACHED_INCREMENT_WITH_INITIAL_START();
332 memcached_return_t rc
= increment_decrement_with_initial_by_key(PROTOCOL_BINARY_CMD_INCREMENT
,
334 group_key
, group_key_length
,
336 offset
, initial
, expiration
, value
);
337 LIBMEMCACHED_MEMCACHED_INCREMENT_WITH_INITIAL_END();
342 memcached_return_t
memcached_decrement_with_initial(memcached_st
*memc
,
350 return memcached_decrement_with_initial_by_key(memc
, key
, key_length
,
352 offset
, initial
, expiration
, value
);
355 memcached_return_t
memcached_decrement_with_initial_by_key(memcached_st
*memc
,
356 const char *group_key
,
357 size_t group_key_length
,
365 LIBMEMCACHED_MEMCACHED_INCREMENT_WITH_INITIAL_START();
366 memcached_return_t rc
= increment_decrement_with_initial_by_key(PROTOCOL_BINARY_CMD_DECREMENT
,
368 group_key
, group_key_length
,
370 offset
, initial
, expiration
, value
);
372 LIBMEMCACHED_MEMCACHED_INCREMENT_WITH_INITIAL_END();