X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=lib%2Fmemcached_storage.c;h=0c27c76681fdfc310c39bf99488decaec842becc;hb=cf34e0d38a58e81ec3993af0db6c221585d712e5;hp=a40296dffca76384d2d8e6cc24e675190adb4a8a;hpb=1f34771f7ba527e3afb675f1a448d6c5ab66596b;p=m6w6%2Flibmemcached diff --git a/lib/memcached_storage.c b/lib/memcached_storage.c index a40296df..0c27c766 100644 --- a/lib/memcached_storage.c +++ b/lib/memcached_storage.c @@ -7,7 +7,8 @@ */ -#include +#include "common.h" +#include "memcached_io.h" static memcached_return memcached_send(memcached_st *ptr, char *key, size_t key_length, @@ -16,40 +17,87 @@ static memcached_return memcached_send(memcached_st *ptr, uint16_t flags, char *verb) { - size_t send_length; + size_t write_length; + ssize_t sent_length; memcached_return rc; char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE]; + unsigned int server_key; + + assert(value); + assert(value_length); + + memset(buffer, 0, MEMCACHED_DEFAULT_COMMAND_SIZE); rc= memcached_connect(ptr); + if (rc != MEMCACHED_SUCCESS) + return rc; + + assert(ptr->write_buffer_offset == 0); - send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, - "%s %.*s %u %u %u\r\n", verb, - key_length, key, flags, expiration, value_length); - if ((send(ptr->fd, buffer, send_length, 0) == -1)) + server_key= memcached_generate_hash(key, key_length) % ptr->number_of_hosts; + + write_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, + "%s %.*s %x %llu %zu\r\n", verb, + (int)key_length, key, flags, + (unsigned long long)expiration, value_length); + if (write_length >= MEMCACHED_DEFAULT_COMMAND_SIZE) { - fprintf(stderr, "failed set on %.*s TCP\n", key_length+1, key); + rc= MEMCACHED_WRITE_FAILURE; + goto error; + } + if ((sent_length= memcached_io_write(ptr, server_key, buffer, write_length)) == -1) + { + rc= MEMCACHED_WRITE_FAILURE; + goto error; + } + assert(write_length == sent_length); + + /* + We have to flush after sending the command. Memcached is not smart enough + to just keep reading from the socket :( + */ + if ((sent_length= memcached_io_flush(ptr, server_key)) == -1) return MEMCACHED_WRITE_FAILURE; + + if ((sent_length= memcached_io_write(ptr, server_key, value, value_length)) == -1) + { + rc= MEMCACHED_WRITE_FAILURE; + goto error; } + assert(value_length == sent_length); - send_length= snprintf(buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, - "%.*s\r\n", - value_length, value); - if ((send(ptr->fd, buffer, send_length, 0) == -1)) + if ((sent_length= memcached_io_write(ptr, server_key, "\r\n", 2)) == -1) { - fprintf(stderr, "failed set on %.*s TCP\n", key_length+1, key); + rc= MEMCACHED_WRITE_FAILURE; + goto error; + } + assert(2 == sent_length); + + if ((sent_length= memcached_io_flush(ptr, server_key)) == -1) return MEMCACHED_WRITE_FAILURE; - } - - send_length= read(ptr->fd, buffer, MEMCACHED_DEFAULT_COMMAND_SIZE); - if (send_length && buffer[0] == 'S') /* STORED */ + //assert(sent_length == write_length + value_length + 2); + + sent_length= recv(ptr->hosts[server_key].fd, buffer, MEMCACHED_DEFAULT_COMMAND_SIZE, 0); + + if (sent_length && buffer[0] == 'S') /* STORED */ return MEMCACHED_SUCCESS; - else if (send_length && buffer[0] == 'N') /* NOT_STORED */ + else if (write_length && buffer[0] == 'N') /* NOT_STORED */ return MEMCACHED_NOTSTORED; + else if (write_length && buffer[0] == 'E') /* ERROR */ + { + printf("BUFFER :%s:\n", buffer); + return MEMCACHED_PROTOCOL_ERROR; + } else return MEMCACHED_READ_FAILURE; + +error: + memcached_io_reset(ptr, server_key); + + return rc; } memcached_return memcached_set(memcached_st *ptr, char *key, size_t key_length, @@ -57,8 +105,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, @@ -66,8 +118,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, @@ -75,6 +131,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; }