3 static memcached_return
memcached_auto(memcached_st
*ptr
,
5 char *key
, size_t key_length
,
9 size_t send_length
, sent_length
;
11 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
12 unsigned int server_key
;
14 server_key
= memcached_generate_hash(ptr
, key
, key_length
);
16 if ((rc
= memcached_connect(ptr
, server_key
)) != MEMCACHED_SUCCESS
)
19 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
20 "%s %.*s %u\r\n", verb
,
23 if (send_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
)
24 return MEMCACHED_WRITE_FAILURE
;
25 sent_length
= memcached_io_write(ptr
, server_key
, buffer
, send_length
, 1);
27 if (sent_length
== -1 || sent_length
!= send_length
)
28 return MEMCACHED_WRITE_FAILURE
;
30 memset(buffer
, 0, MEMCACHED_DEFAULT_COMMAND_SIZE
);
32 rc
= memcached_response(ptr
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, server_key
);
35 So why recheck responce? Because the protocol is brain dead :)
36 The number returned might end up equaling one of the string
37 values. Less chance of a mistake with memcmp() so we will
38 use it. We still called memcached_response() though since it
39 worked its magic for non-blocking IO.
41 if (!memcmp(buffer
, "ERROR\r\n", MEMCACHED_DEFAULT_COMMAND_SIZE
))
44 rc
= MEMCACHED_PROTOCOL_ERROR
;
46 else if (!memcmp(buffer
, "NOT_FOUND\r\n", MEMCACHED_DEFAULT_COMMAND_SIZE
))
49 rc
= MEMCACHED_NOTFOUND
;
53 *value
= strtol(buffer
, (char **)NULL
, 10);
54 rc
= MEMCACHED_SUCCESS
;
60 memcached_return
memcached_increment(memcached_st
*ptr
,
61 char *key
, size_t key_length
,
67 LIBMEMCACHED_MEMCACHED_INCREMENT_START();
68 rc
= memcached_auto(ptr
, "incr", key
, key_length
, offset
, value
);
69 LIBMEMCACHED_MEMCACHED_INCREMENT_END();
74 memcached_return
memcached_decrement(memcached_st
*ptr
,
75 char *key
, size_t key_length
,
81 LIBMEMCACHED_MEMCACHED_DECREMENT_START();
82 rc
= memcached_auto(ptr
, "decr", key
, key_length
, offset
, value
);
83 LIBMEMCACHED_MEMCACHED_DECREMENT_END();