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 server_key
= memcached_generate_hash(ptr
, key
, key_length
);
68 write_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
69 "%s %.*s %u %llu %zu %llu\r\n", storage_op_string(verb
),
70 (int)key_length
, key
, flags
,
71 (unsigned long long)expiration
, value_length
,
72 (unsigned long long)cas
);
74 write_length
= snprintf(buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
,
75 "%s %.*s %u %llu %zu\r\n", storage_op_string(verb
),
76 (int)key_length
, key
, flags
,
77 (unsigned long long)expiration
, value_length
);
79 if (write_length
>= MEMCACHED_DEFAULT_COMMAND_SIZE
)
81 rc
= MEMCACHED_WRITE_FAILURE
;
85 rc
= memcached_do(ptr
, server_key
, buffer
, write_length
, 0);
86 if (rc
!= MEMCACHED_SUCCESS
)
89 if ((sent_length
= memcached_io_write(ptr
, server_key
, value
, value_length
, 0)) == -1)
91 rc
= MEMCACHED_WRITE_FAILURE
;
95 if ((ptr
->flags
& MEM_NO_BLOCK
) && verb
== SET_OP
)
100 if ((sent_length
= memcached_io_write(ptr
, server_key
, "\r\n", 2, to_write
)) == -1)
102 memcached_quit_server(ptr
, server_key
);
103 rc
= MEMCACHED_WRITE_FAILURE
;
109 rc
= MEMCACHED_SUCCESS
;
110 memcached_server_response_increment(ptr
, server_key
);
114 rc
= memcached_response(ptr
, buffer
, MEMCACHED_DEFAULT_COMMAND_SIZE
, server_key
);
116 if (rc
== MEMCACHED_STORED
)
117 return MEMCACHED_SUCCESS
;
122 memcached_io_reset(ptr
, server_key
);
127 memcached_return
memcached_set(memcached_st
*ptr
, char *key
, size_t key_length
,
128 char *value
, size_t value_length
,
133 LIBMEMCACHED_MEMCACHED_SET_START();
134 rc
= memcached_send(ptr
, key
, key_length
, value
, value_length
,
135 expiration
, flags
, 0, SET_OP
);
136 LIBMEMCACHED_MEMCACHED_SET_END();
140 memcached_return
memcached_add(memcached_st
*ptr
,
141 char *key
, size_t key_length
,
142 char *value
, size_t value_length
,
147 LIBMEMCACHED_MEMCACHED_ADD_START();
148 rc
= memcached_send(ptr
, key
, key_length
, value
, value_length
,
149 expiration
, flags
, 0, ADD_OP
);
150 LIBMEMCACHED_MEMCACHED_ADD_END();
154 memcached_return
memcached_replace(memcached_st
*ptr
,
155 char *key
, size_t key_length
,
156 char *value
, size_t value_length
,
161 LIBMEMCACHED_MEMCACHED_REPLACE_START();
162 rc
= memcached_send(ptr
, key
, key_length
, value
, value_length
,
163 expiration
, flags
, 0, REPLACE_OP
);
164 LIBMEMCACHED_MEMCACHED_REPLACE_END();
168 memcached_return
memcached_prepend(memcached_st
*ptr
,
169 char *key
, size_t key_length
,
170 char *value
, size_t value_length
,
175 rc
= memcached_send(ptr
, key
, key_length
, value
, value_length
,
176 expiration
, flags
, 0, PREPEND_OP
);
180 memcached_return
memcached_append(memcached_st
*ptr
,
181 char *key
, size_t key_length
,
182 char *value
, size_t value_length
,
187 rc
= memcached_send(ptr
, key
, key_length
, value
, value_length
,
188 expiration
, flags
, 0, APPEND_OP
);
192 memcached_return
memcached_cas(memcached_st
*ptr
,
193 char *key
, size_t key_length
,
194 char *value
, size_t value_length
,
200 rc
= memcached_send(ptr
, key
, key_length
, value
, value_length
,
201 expiration
, flags
, cas
, APPEND_OP
);