11 #include "memcached_io.h"
20 } memcached_storage_action
;
23 char *storage_op_string(memcached_storage_action verb
)
44 static inline memcached_return
memcached_send(memcached_st
*ptr
,
45 char *key
, size_t key_length
,
46 char *value
, size_t value_length
,
50 memcached_storage_action verb
)
56 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
57 unsigned int server_key
;
59 WATCHPOINT_ASSERT(!(value
== NULL
&& value_length
> 0));
60 WATCHPOINT_ASSERT(!(value
&& value_length
== 0));
63 return MEMCACHED_NO_KEY_PROVIDED
;
65 if (ptr
->number_of_hosts
== 0)
66 return MEMCACHED_NO_SERVERS
;
68 server_key
= memcached_generate_hash(ptr
, key
, key_length
);
71 write_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
72 "%s %.*s %u %llu %zu %llu\r\n", storage_op_string(verb
),
73 (int)key_length
, key
, flags
,
74 (unsigned long long)expiration
, value_length
,
75 (unsigned long long)cas
);
77 write_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
78 "%s %.*s %u %llu %zu\r\n", storage_op_string(verb
),
79 (int)key_length
, key
, flags
,
80 (unsigned long long)expiration
, value_length
);
82 if (write_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
)
84 rc
= MEMCACHED_WRITE_FAILURE
;
88 rc
= memcached_do(ptr
, server_key
, buffer
, write_length
, 0);
89 if (rc
!= MEMCACHED_SUCCESS
)
92 if ((sent_length
= memcached_io_write(ptr
, server_key
, value
, value_length
, 0)) == -1)
94 rc
= MEMCACHED_WRITE_FAILURE
;
98 if ((ptr
->flags
& MEM_NO_BLOCK
) && verb
== SET_OP
)
103 if ((sent_length
= memcached_io_write(ptr
, server_key
, "\r\n", 2, to_write
)) == -1)
105 memcached_quit_server(ptr
, server_key
);
106 rc
= MEMCACHED_WRITE_FAILURE
;
112 rc
= MEMCACHED_SUCCESS
;
113 memcached_server_response_increment(ptr
, server_key
);
117 rc
= memcached_response(ptr
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, server_key
);
119 if (rc
== MEMCACHED_STORED
)
120 return MEMCACHED_SUCCESS
;
125 memcached_io_reset(ptr
, server_key
);
130 memcached_return
memcached_set(memcached_st
*ptr
, char *key
, size_t key_length
,
131 char *value
, size_t value_length
,
136 LIBMEMCACHED_MEMCACHED_SET_START();
137 rc
= memcached_send(ptr
, key
, key_length
, value
, value_length
,
138 expiration
, flags
, 0, SET_OP
);
139 LIBMEMCACHED_MEMCACHED_SET_END();
143 memcached_return
memcached_add(memcached_st
*ptr
,
144 char *key
, size_t key_length
,
145 char *value
, size_t value_length
,
150 LIBMEMCACHED_MEMCACHED_ADD_START();
151 rc
= memcached_send(ptr
, key
, key_length
, value
, value_length
,
152 expiration
, flags
, 0, ADD_OP
);
153 LIBMEMCACHED_MEMCACHED_ADD_END();
157 memcached_return
memcached_replace(memcached_st
*ptr
,
158 char *key
, size_t key_length
,
159 char *value
, size_t value_length
,
164 LIBMEMCACHED_MEMCACHED_REPLACE_START();
165 rc
= memcached_send(ptr
, key
, key_length
, value
, value_length
,
166 expiration
, flags
, 0, REPLACE_OP
);
167 LIBMEMCACHED_MEMCACHED_REPLACE_END();
171 memcached_return
memcached_prepend(memcached_st
*ptr
,
172 char *key
, size_t key_length
,
173 char *value
, size_t value_length
,
178 rc
= memcached_send(ptr
, key
, key_length
, value
, value_length
,
179 expiration
, flags
, 0, PREPEND_OP
);
183 memcached_return
memcached_append(memcached_st
*ptr
,
184 char *key
, size_t key_length
,
185 char *value
, size_t value_length
,
190 rc
= memcached_send(ptr
, key
, key_length
, value
, value_length
,
191 expiration
, flags
, 0, APPEND_OP
);
195 memcached_return
memcached_cas(memcached_st
*ptr
,
196 char *key
, size_t key_length
,
197 char *value
, size_t value_length
,
203 rc
= memcached_send(ptr
, key
, key_length
, value
, value_length
,
204 expiration
, flags
, cas
, APPEND_OP
);