3 static memcached_return
memcached_auto(memcached_st
*ptr
,
5 const char *key
, size_t key_length
,
11 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
12 unsigned int server_key
;
14 unlikely (key_length
== 0)
15 return MEMCACHED_NO_KEY_PROVIDED
;
17 unlikely (ptr
->hosts
== NULL
|| ptr
->number_of_hosts
== 0)
18 return MEMCACHED_NO_SERVERS
;
20 if ((ptr
->flags
& MEM_VERIFY_KEY
) && (memcachd_key_test((char **)&key
, &key_length
, 1) == MEMCACHED_BAD_KEY_PROVIDED
))
21 return MEMCACHED_BAD_KEY_PROVIDED
;
23 server_key
= memcached_generate_hash(ptr
, key
, key_length
);
25 send_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
26 "%s %s%.*s %u\r\n", verb
,
30 unlikely (send_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
)
31 return MEMCACHED_WRITE_FAILURE
;
33 rc
= memcached_do(&ptr
->hosts
[server_key
], buffer
, send_length
, 1);
34 if (rc
!= MEMCACHED_SUCCESS
)
37 rc
= memcached_response(&ptr
->hosts
[server_key
], buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, NULL
);
40 So why recheck responce? Because the protocol is brain dead :)
41 The number returned might end up equaling one of the string
42 values. Less chance of a mistake with strncmp() so we will
43 use it. We still called memcached_response() though since it
44 worked its magic for non-blocking IO.
46 if (!strncmp(buffer
, "ERROR\r\n", 7))
49 rc
= MEMCACHED_PROTOCOL_ERROR
;
51 else if (!strncmp(buffer
, "NOT_FOUND\r\n", 11))
54 rc
= MEMCACHED_NOTFOUND
;
58 *value
= strtoull(buffer
, (char **)NULL
, 10);
59 rc
= MEMCACHED_SUCCESS
;
65 static memcached_return
binary_incr_decr(memcached_st
*ptr
, uint8_t cmd
,
66 const char *key
, size_t key_length
,
67 uint32_t offset
, uint64_t *value
)
69 unsigned int server_key
;
71 unlikely (key_length
== 0)
72 return MEMCACHED_NO_KEY_PROVIDED
;
74 unlikely (ptr
->hosts
== NULL
|| ptr
->number_of_hosts
== 0)
75 return MEMCACHED_NO_SERVERS
;
77 if ((ptr
->flags
& MEM_VERIFY_KEY
) && (memcachd_key_test(&key
, &key_length
, 1) == MEMCACHED_BAD_KEY_PROVIDED
))
78 return MEMCACHED_BAD_KEY_PROVIDED
;
80 server_key
= memcached_generate_hash(ptr
, key
, key_length
);
82 protocol_binary_request_incr request
= {0};
84 request
.message
.header
.request
.magic
= PROTOCOL_BINARY_REQ
;
85 request
.message
.header
.request
.opcode
= cmd
;
86 request
.message
.header
.request
.keylen
= htons((uint16_t)key_length
);
87 request
.message
.header
.request
.extlen
= 20;
88 request
.message
.header
.request
.datatype
= PROTOCOL_BINARY_RAW_BYTES
;
89 request
.message
.header
.request
.bodylen
= htonl(key_length
+ request
.message
.header
.request
.extlen
);
90 request
.message
.body
.delta
= htonll(offset
);
92 /* TODO: The binary protocol allows you to specify initial and expiry time */
93 if ((memcached_do(&ptr
->hosts
[server_key
], request
.bytes
,
94 sizeof(request
.bytes
), 0)!=MEMCACHED_SUCCESS
) ||
95 (memcached_io_write(&ptr
->hosts
[server_key
], key
, key_length
, 1) == -1))
97 memcached_io_reset(&ptr
->hosts
[server_key
]);
98 return MEMCACHED_WRITE_FAILURE
;
101 return memcached_response(&ptr
->hosts
[server_key
], value
, sizeof(*value
), NULL
);
104 memcached_return
memcached_increment(memcached_st
*ptr
,
105 const char *key
, size_t key_length
,
111 LIBMEMCACHED_MEMCACHED_INCREMENT_START();
112 if (ptr
->flags
& MEM_BINARY_PROTOCOL
)
113 rc
= binary_incr_decr(ptr
, PROTOCOL_BINARY_CMD_INCREMENT
, key
,
114 key_length
, offset
, value
);
116 rc
= memcached_auto(ptr
, "incr", key
, key_length
, offset
, value
);
118 LIBMEMCACHED_MEMCACHED_INCREMENT_END();
123 memcached_return
memcached_decrement(memcached_st
*ptr
,
124 const char *key
, size_t key_length
,
130 LIBMEMCACHED_MEMCACHED_DECREMENT_START();
131 if (ptr
->flags
& MEM_BINARY_PROTOCOL
)
132 rc
= binary_incr_decr(ptr
, PROTOCOL_BINARY_CMD_DECREMENT
, key
,
133 key_length
, offset
, value
);
135 rc
= memcached_auto(ptr
, "decr", key
, key_length
, offset
, value
);
137 LIBMEMCACHED_MEMCACHED_DECREMENT_END();