X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=lib%2Fmemcached_storage.c;h=c1ce2b830ad4c485776e5fb7e337eac7e09302c4;hb=e69bb33d8da40ded7f7a58a321b9f220b6651c8c;hp=21dc0934595781f541ffc82b1fbbc8605bca68f5;hpb=1c5dea03fd77a12341688b41e8b63e1c358a2ad6;p=m6w6%2Flibmemcached diff --git a/lib/memcached_storage.c b/lib/memcached_storage.c index 21dc0934..c1ce2b83 100644 --- a/lib/memcached_storage.c +++ b/lib/memcached_storage.c @@ -7,7 +7,7 @@ */ -#include +#include "common.h" static memcached_return memcached_send(memcached_st *ptr, char *key, size_t key_length, @@ -22,10 +22,12 @@ static memcached_return memcached_send(memcached_st *ptr, char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE]; unsigned int server_key; - rc= memcached_connect(ptr); assert(value); assert(value_length); + memset(buffer, 0, MEMCACHED_DEFAULT_COMMAND_SIZE); + + rc= memcached_connect(ptr); if (rc != MEMCACHED_SUCCESS) return rc; @@ -37,19 +39,19 @@ static memcached_return memcached_send(memcached_st *ptr, (unsigned long long)expiration, value_length); if (write_length >= MEMCACHED_DEFAULT_COMMAND_SIZE) return MEMCACHED_WRITE_FAILURE; - if ((sent_length= write(ptr->hosts[server_key].fd, buffer, write_length)) == -1) + if ((sent_length= send(ptr->hosts[server_key].fd, buffer, write_length, 0)) == -1) return MEMCACHED_WRITE_FAILURE; assert(write_length == sent_length); - if ((sent_length= write(ptr->hosts[server_key].fd, value, value_length)) == -1) + if ((sent_length= send(ptr->hosts[server_key].fd, value, value_length, 0)) == -1) return MEMCACHED_WRITE_FAILURE; assert(value_length == sent_length); - if ((sent_length= write(ptr->hosts[server_key].fd, "\r\n", 2)) == -1) + if ((sent_length= send(ptr->hosts[server_key].fd, "\r\n", 2, 0)) == -1) return MEMCACHED_WRITE_FAILURE; assert(2 == sent_length); - sent_length= read(ptr->hosts[server_key].fd, buffer, MEMCACHED_DEFAULT_COMMAND_SIZE); + sent_length= recv(ptr->hosts[server_key].fd, buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, 0); if (sent_length && buffer[0] == 'S') /* STORED */ return MEMCACHED_SUCCESS; @@ -64,8 +66,12 @@ memcached_return memcached_set(memcached_st *ptr, char *key, size_t key_length, time_t expiration, uint16_t flags) { - return memcached_send(ptr, key, key_length, value, value_length, + memcached_return rc; + LIBMEMCACHED_MEMCACHED_SET_START(); + rc= memcached_send(ptr, key, key_length, value, value_length, expiration, flags, "set"); + LIBMEMCACHED_MEMCACHED_SET_END(); + return rc; } memcached_return memcached_add(memcached_st *ptr, char *key, size_t key_length, @@ -73,8 +79,12 @@ memcached_return memcached_add(memcached_st *ptr, char *key, size_t key_length, time_t expiration, uint16_t flags) { - return memcached_send(ptr, key, key_length, value, value_length, + memcached_return rc; + LIBMEMCACHED_MEMCACHED_ADD_START(); + rc= memcached_send(ptr, key, key_length, value, value_length, expiration, flags, "add"); + LIBMEMCACHED_MEMCACHED_ADD_END(); + return rc; } memcached_return memcached_replace(memcached_st *ptr, char *key, size_t key_length, @@ -82,6 +92,10 @@ memcached_return memcached_replace(memcached_st *ptr, char *key, size_t key_leng time_t expiration, uint16_t flags) { - return memcached_send(ptr, key, key_length, value, value_length, + memcached_return rc; + LIBMEMCACHED_MEMCACHED_REPLACE_START(); + rc= memcached_send(ptr, key, key_length, value, value_length, expiration, flags, "replace"); + LIBMEMCACHED_MEMCACHED_REPLACE_END(); + return rc; }