Merge in bug fix for 456080.
authorBrian Aker <brian@tangent.org>
Tue, 15 Feb 2011 18:37:39 +0000 (10:37 -0800)
committerBrian Aker <brian@tangent.org>
Tue, 15 Feb 2011 18:37:39 +0000 (10:37 -0800)
docs/memcached_behavior.pod
libmemcached/behavior.c
libmemcached/io.c
libmemcached/io.h

index b3cf33ad4190ee85d35dc9de11b86d6b70002f21..02ab0de410df9f1193e142e79f24310b75d7f40b 100644 (file)
@@ -239,13 +239,13 @@ Specify time, in seconds, to mark a connection as idle. This is only available a
 
 Find the current size of SO_SNDBUF. A value of 0 means either an error
 occured or no hosts were available. It is safe to assume system default
-if this occurs.
+if this occurs. If an error occurs you can checked the last cached errno statement to find the specific error.
 
 =item MEMCACHED_BEHAVIOR_SOCKET_RECV_SIZE
 
 Find the current size of SO_RCVBUF. A value of 0 means either an error
 occured or no hosts were available. It is safe to assume system default
-if this occurs.
+if this occurs. If an error occurs you can checked the last cached errno statement to find the specific error.
 
 =item MEMCACHED_BEHAVIOR_SERVER_FAILURE_LIMIT
 
index b84e770a5b559cf2f35d6e6e7aa4fdca215b1b3e..2b6ccdf9112fda235bb2dc163497b9b49fd712f4 100644 (file)
@@ -313,11 +313,20 @@ uint64_t memcached_behavior_get(memcached_st *ptr,
         /* REFACTOR */
         /* We just try the first host, and if it is down we return zero */
         if ((memcached_connect(instance)) != MEMCACHED_SUCCESS)
+        {
+          return 0;
+        }
+
+        if (memcached_io_wait_for_write(instance) != MEMCACHED_SUCCESS)
+        {
           return 0;
+        }
 
-        if (getsockopt(instance->fd, SOL_SOCKET,
-                       SO_SNDBUF, &sock_size, &sock_length))
+        if (getsockopt(instance->fd, SOL_SOCKET, SO_SNDBUF, &sock_size, &sock_length) < 0)
+        {
+          ptr->cached_errno= errno;
           return 0; /* Zero means error */
+        }
       }
 
       return (uint64_t) sock_size;
@@ -340,11 +349,20 @@ uint64_t memcached_behavior_get(memcached_st *ptr,
       {
         /* We just try the first host, and if it is down we return zero */
         if ((memcached_connect(instance)) != MEMCACHED_SUCCESS)
+        {
+          return 0;
+        }
+
+        if (memcached_io_wait_for_write(instance) != MEMCACHED_SUCCESS)
+        {
           return 0;
+        }
 
-        if (getsockopt(instance->fd, SOL_SOCKET,
-                       SO_RCVBUF, &sock_size, &sock_length))
+        if (getsockopt(instance->fd, SOL_SOCKET, SO_RCVBUF, &sock_size, &sock_length) < 0)
+        {
+          ptr->cached_errno= errno;
           return 0; /* Zero means error */
+        }
 
       }
 
index 9f38af5c213d51d6cc4b57e781b537ded58000dd..e94c136f0c5785c9886f8cd18b2884beb5502b6e 100644 (file)
@@ -105,6 +105,11 @@ static memcached_return_t io_wait(memcached_server_write_instance_st ptr,
   return MEMCACHED_FAILURE;
 }
 
+memcached_return_t memcached_io_wait_for_write(memcached_server_write_instance_st ptr)
+{
+  return io_wait(ptr, MEM_WRITE);
+}
+
 /**
  * Try to fill the input buffer for a server with as much
  * data as possible.
index 9d5087e05b40dac01188cbb5ab224dc47d9a15bd..3662954ddc291e3ac310abf26403616390169e97 100644 (file)
@@ -46,6 +46,9 @@ struct libmemcached_io_vector_st
   const void *buffer;
 };
 
+LIBMEMCACHED_LOCAL
+memcached_return_t memcached_io_wait_for_write(memcached_server_write_instance_st ptr);
+
 LIBMEMCACHED_LOCAL
 ssize_t memcached_io_writev(memcached_server_write_instance_st ptr,
                             const struct libmemcached_io_vector_st *vector,