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 rc
= memcached_connect(ptr
);
16 if (rc
!= MEMCACHED_SUCCESS
)
19 server_key
= memcached_generate_hash(key
, key_length
) % ptr
->number_of_hosts
;
21 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
22 "%s %.*s %u\r\n", verb
,
25 if (send_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
)
26 return MEMCACHED_WRITE_FAILURE
;
27 sent_length
= write(ptr
->hosts
[server_key
].fd
, buffer
, send_length
);
29 if (sent_length
== -1 || sent_length
!= send_length
)
30 return MEMCACHED_WRITE_FAILURE
;
32 memset(buffer
, 0, MEMCACHED_DEFAULT_COMMAND_SIZE
);
33 send_length
= read(ptr
->hosts
[server_key
].fd
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
);
35 if (!memcmp(buffer
, "ERROR\r\n", MEMCACHED_DEFAULT_COMMAND_SIZE
))
38 rc
= MEMCACHED_PROTOCOL_ERROR
;
40 else if (!memcmp(buffer
, "NOT_FOUND\r\n", MEMCACHED_DEFAULT_COMMAND_SIZE
))
43 rc
= MEMCACHED_NOTFOUND
;
47 *value
= strtol(buffer
, (char **)NULL
, 10);
48 rc
= MEMCACHED_SUCCESS
;
54 memcached_return
memcached_increment(memcached_st
*ptr
,
55 char *key
, size_t key_length
,
59 return memcached_auto(ptr
, "incr", key
, key_length
, offset
, value
);
62 memcached_return
memcached_decrement(memcached_st
*ptr
,
63 char *key
, size_t key_length
,
67 return memcached_auto(ptr
, "decr", key
, key_length
, offset
, value
);