2 * Copyright (C) 2006-2009 Brian Aker
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
8 * Summary: Methods for adding or decrementing values from an object in memcached
14 static memcached_return_t
memcached_auto(memcached_st
*ptr
,
16 const char *master_key
, size_t master_key_length
,
17 const char *key
, size_t key_length
,
22 memcached_return_t rc
;
23 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
25 memcached_server_instance_st
*instance
;
26 bool no_reply
= ptr
->flags
.no_reply
;
28 unlikely (memcached_server_count(ptr
) == 0)
29 return MEMCACHED_NO_SERVERS
;
31 if (ptr
->flags
.verify_key
&& (memcached_key_test((const char **)&key
, &key_length
, 1) == MEMCACHED_BAD_KEY_PROVIDED
))
32 return MEMCACHED_BAD_KEY_PROVIDED
;
34 server_key
= memcached_generate_hash(ptr
, master_key
, master_key_length
);
35 instance
= memcached_server_instance_fetch(ptr
, server_key
);
37 send_length
= (size_t)snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
38 "%s %s%.*s %" PRIu64
"%s\r\n", verb
,
41 offset
, no_reply
? " noreply" : "");
42 unlikely (send_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
)
43 return MEMCACHED_WRITE_FAILURE
;
45 rc
= memcached_do(instance
, buffer
, send_length
, 1);
46 if (no_reply
|| rc
!= MEMCACHED_SUCCESS
)
49 rc
= memcached_response(instance
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, NULL
);
52 So why recheck responce? Because the protocol is brain dead :)
53 The number returned might end up equaling one of the string
54 values. Less chance of a mistake with strncmp() so we will
55 use it. We still called memcached_response() though since it
56 worked its magic for non-blocking IO.
58 if (!strncmp(buffer
, "ERROR\r\n", 7))
61 rc
= MEMCACHED_PROTOCOL_ERROR
;
63 else if (!strncmp(buffer
, "NOT_FOUND\r\n", 11))
66 rc
= MEMCACHED_NOTFOUND
;
70 *value
= strtoull(buffer
, (char **)NULL
, 10);
71 rc
= MEMCACHED_SUCCESS
;
77 static memcached_return_t
binary_incr_decr(memcached_st
*ptr
, uint8_t cmd
,
78 const char *master_key
, size_t master_key_length
,
79 const char *key
, size_t key_length
,
80 uint64_t offset
, uint64_t initial
,
85 memcached_server_instance_st
*instance
;
86 bool no_reply
= ptr
->flags
.no_reply
;
88 unlikely (memcached_server_count(ptr
) == 0)
89 return MEMCACHED_NO_SERVERS
;
91 server_key
= memcached_generate_hash(ptr
, master_key
, master_key_length
);
92 instance
= memcached_server_instance_fetch(ptr
, server_key
);
96 if(cmd
== PROTOCOL_BINARY_CMD_DECREMENT
)
97 cmd
= PROTOCOL_BINARY_CMD_DECREMENTQ
;
98 if(cmd
== PROTOCOL_BINARY_CMD_INCREMENT
)
99 cmd
= PROTOCOL_BINARY_CMD_INCREMENTQ
;
101 protocol_binary_request_incr request
= {.bytes
= {0}};
103 request
.message
.header
.request
.magic
= PROTOCOL_BINARY_REQ
;
104 request
.message
.header
.request
.opcode
= cmd
;
105 request
.message
.header
.request
.keylen
= htons((uint16_t) key_length
);
106 request
.message
.header
.request
.extlen
= 20;
107 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
108 request
.message
.header
.request
.bodylen
= htonl((uint32_t) (key_length
+ request
.message
.header
.request
.extlen
));
109 request
.message
.body
.delta
= htonll(offset
);
110 request
.message
.body
.initial
= htonll(initial
);
111 request
.message
.body
.expiration
= htonl((uint32_t) expiration
);
113 if ((memcached_do(instance
, request
.bytes
,
114 sizeof(request
.bytes
), 0)!=MEMCACHED_SUCCESS
) ||
115 (memcached_io_write(instance
, key
, key_length
, 1) == -1))
117 memcached_io_reset(instance
);
118 return MEMCACHED_WRITE_FAILURE
;
122 return MEMCACHED_SUCCESS
;
123 return memcached_response(instance
, (char*)value
, sizeof(*value
), NULL
);
126 memcached_return_t
memcached_increment(memcached_st
*ptr
,
127 const char *key
, size_t key_length
,
131 return memcached_increment_by_key(ptr
, key
, key_length
, key
, key_length
, offset
, value
);
134 memcached_return_t
memcached_decrement(memcached_st
*ptr
,
135 const char *key
, size_t key_length
,
139 return memcached_decrement_by_key(ptr
, key
, key_length
, key
, key_length
, offset
, value
);
142 memcached_return_t
memcached_increment_by_key(memcached_st
*ptr
,
143 const char *master_key
, size_t master_key_length
,
144 const char *key
, size_t key_length
,
148 memcached_return_t rc
= memcached_validate_key_length(key_length
, ptr
->flags
.binary_protocol
);
149 unlikely (rc
!= MEMCACHED_SUCCESS
)
152 LIBMEMCACHED_MEMCACHED_INCREMENT_START();
153 if (ptr
->flags
.binary_protocol
)
155 rc
= binary_incr_decr(ptr
, PROTOCOL_BINARY_CMD_INCREMENT
,
156 master_key
, master_key_length
, key
, key_length
,
157 (uint64_t)offset
, 0, MEMCACHED_EXPIRATION_NOT_ADD
,
162 rc
= memcached_auto(ptr
, "incr", master_key
, master_key_length
, key
, key_length
, offset
, value
);
165 LIBMEMCACHED_MEMCACHED_INCREMENT_END();
170 memcached_return_t
memcached_decrement_by_key(memcached_st
*ptr
,
171 const char *master_key
, size_t master_key_length
,
172 const char *key
, size_t key_length
,
176 memcached_return_t rc
= memcached_validate_key_length(key_length
, ptr
->flags
.binary_protocol
);
177 unlikely (rc
!= MEMCACHED_SUCCESS
)
180 LIBMEMCACHED_MEMCACHED_DECREMENT_START();
181 if (ptr
->flags
.binary_protocol
)
182 rc
= binary_incr_decr(ptr
, PROTOCOL_BINARY_CMD_DECREMENT
,
183 master_key
, master_key_length
, key
, key_length
,
184 (uint64_t)offset
, 0, MEMCACHED_EXPIRATION_NOT_ADD
,
187 rc
= memcached_auto(ptr
, "decr", master_key
, master_key_length
, key
, key_length
, offset
, value
);
189 LIBMEMCACHED_MEMCACHED_DECREMENT_END();
194 memcached_return_t
memcached_increment_with_initial(memcached_st
*ptr
,
202 return memcached_increment_with_initial_by_key(ptr
, key
, key_length
,
204 offset
, initial
, expiration
, value
);
207 memcached_return_t
memcached_increment_with_initial_by_key(memcached_st
*ptr
,
208 const char *master_key
,
209 size_t master_key_length
,
217 memcached_return_t rc
= memcached_validate_key_length(key_length
, ptr
->flags
.binary_protocol
);
218 unlikely (rc
!= MEMCACHED_SUCCESS
)
221 LIBMEMCACHED_MEMCACHED_INCREMENT_WITH_INITIAL_START();
222 if (ptr
->flags
.binary_protocol
)
223 rc
= binary_incr_decr(ptr
, PROTOCOL_BINARY_CMD_INCREMENT
,
224 master_key
, master_key_length
, key
, key_length
,
225 offset
, initial
, (uint32_t)expiration
,
228 rc
= MEMCACHED_PROTOCOL_ERROR
;
230 LIBMEMCACHED_MEMCACHED_INCREMENT_WITH_INITIAL_END();
235 memcached_return_t
memcached_decrement_with_initial(memcached_st
*ptr
,
243 return memcached_decrement_with_initial_by_key(ptr
, key
, key_length
,
245 offset
, initial
, expiration
, value
);
248 memcached_return_t
memcached_decrement_with_initial_by_key(memcached_st
*ptr
,
249 const char *master_key
,
250 size_t master_key_length
,
258 memcached_return_t rc
= memcached_validate_key_length(key_length
, ptr
->flags
.binary_protocol
);
259 unlikely (rc
!= MEMCACHED_SUCCESS
)
262 LIBMEMCACHED_MEMCACHED_INCREMENT_WITH_INITIAL_START();
263 if (ptr
->flags
.binary_protocol
)
265 rc
= binary_incr_decr(ptr
, PROTOCOL_BINARY_CMD_DECREMENT
,
266 master_key
, master_key_length
, key
, key_length
,
267 offset
, initial
, (uint32_t)expiration
,
272 rc
= MEMCACHED_PROTOCOL_ERROR
;
275 LIBMEMCACHED_MEMCACHED_INCREMENT_WITH_INITIAL_END();