#include <netinet/tcp.h>
#include <netdb.h>
+static memcached_return set_hostinfo(memcached_server_st *server)
+{
+ struct hostent *h;
+
+ if ((h= gethostbyname(server->hostname)) == NULL)
+ {
+ return MEMCACHED_HOST_LOCKUP_FAILURE;
+ }
+
+ server->servAddr.sin_family= h->h_addrtype;
+ memcpy((char *) &server->servAddr.sin_addr.s_addr, h->h_addr_list[0], h->h_length);
+ server->servAddr.sin_port = htons(server->port);
+
+ return MEMCACHED_SUCCESS;
+}
+
static memcached_return unix_socket_connect(memcached_st *ptr, unsigned int server_key)
{
struct sockaddr_un servAddr;
memset(&servAddr, 0, sizeof (struct sockaddr_un));
servAddr.sun_family= AF_UNIX;
- strcpy(servAddr.sun_path, ptr->hosts[server_key].hostname);
+ strcpy(servAddr.sun_path, ptr->hosts[server_key].hostname); /* Copy filename */
addrlen= strlen(servAddr.sun_path) + sizeof(servAddr.sun_family);
test_connect:
- if (connect(ptr->hosts[server_key].fd, (struct sockaddr *)&servAddr, sizeof(servAddr)) < 0)
+ if (connect(ptr->hosts[server_key].fd,
+ (struct sockaddr *)&servAddr,
+ sizeof(servAddr)) < 0)
{
switch (errno) {
/* We are spinning waiting on connect */
return MEMCACHED_SUCCESS;
}
-static memcached_return tcp_connect(memcached_st *ptr, unsigned int server_key)
+static memcached_return udp_connect(memcached_st *ptr, unsigned int server_key)
{
- struct sockaddr_in servAddr;
- struct hostent *h;
-
if (ptr->hosts[server_key].fd == -1)
{
/* Old connection junk still is in the structure */
WATCHPOINT_ASSERT(ptr->hosts[server_key].stack_responses == 0);
- if ((h= gethostbyname(ptr->hosts[server_key].hostname)) == NULL)
+ if (ptr->hosts[server_key].servAddr.sin_family == 0)
{
- ptr->cached_errno= h_errno;
- return MEMCACHED_HOST_LOCKUP_FAILURE;
+ memcached_return rc;
+
+ rc= set_hostinfo(&ptr->hosts[server_key]);
+ if (rc != MEMCACHED_SUCCESS)
+ return rc;
}
- servAddr.sin_family= h->h_addrtype;
- memcpy((char *) &servAddr.sin_addr.s_addr, h->h_addr_list[0], h->h_length);
- servAddr.sin_port = htons(ptr->hosts[server_key].port);
+ /* Create the socket */
+ if ((ptr->hosts[server_key].fd= socket(AF_INET, SOCK_DGRAM, 0)) < 0)
+ {
+ ptr->cached_errno= errno;
+ return MEMCACHED_CONNECTION_SOCKET_CREATE_FAILURE;
+ }
+ }
+
+ return MEMCACHED_SUCCESS;
+}
+
+static memcached_return tcp_connect(memcached_st *ptr, unsigned int server_key)
+{
+ if (ptr->hosts[server_key].fd == -1)
+ {
+ /* Old connection junk still is in the structure */
+ WATCHPOINT_ASSERT(ptr->hosts[server_key].stack_responses == 0);
+
+ if (ptr->hosts[server_key].servAddr.sin_family == 0)
+ {
+ memcached_return rc;
+
+ rc= set_hostinfo(&ptr->hosts[server_key]);
+ if (rc != MEMCACHED_SUCCESS)
+ return rc;
+ }
/* Create the socket */
if ((ptr->hosts[server_key].fd= socket(AF_INET, SOCK_STREAM, 0)) < 0)
/* connect to server */
test_connect:
- if (connect(ptr->hosts[server_key].fd, (struct sockaddr *)&servAddr, sizeof(servAddr)) < 0)
+ if (connect(ptr->hosts[server_key].fd,
+ (struct sockaddr *)&ptr->hosts[server_key].servAddr,
+ sizeof(struct sockaddr)) < 0)
{
switch (errno) {
/* We are spinning waiting on connect */
/* We need to clean up the multi startup piece */
if (server_key)
+ {
rc= tcp_connect(ptr, server_key);
+ switch (ptr->hosts[server_key].type)
+ {
+ case MEMCACHED_CONNECTION_UNKNOWN:
+ WATCHPOINT_ASSERT(0);
+ rc= MEMCACHED_NOT_SUPPORTED;
+ break;
+ case MEMCACHED_CONNECTION_UDP:
+ rc= udp_connect(ptr, server_key);
+ break;
+ case MEMCACHED_CONNECTION_TCP:
+ rc= tcp_connect(ptr, server_key);
+ break;
+ case MEMCACHED_CONNECTION_UNIX_SOCKET:
+ rc= unix_socket_connect(ptr, server_key);
+ break;
+ }
+ }
else
{
unsigned int x;
switch (ptr->hosts[x].type)
{
case MEMCACHED_CONNECTION_UNKNOWN:
- case MEMCACHED_CONNECTION_UDP:
WATCHPOINT_ASSERT(0);
possible_rc= MEMCACHED_NOT_SUPPORTED;
break;
+ case MEMCACHED_CONNECTION_UDP:
+ possible_rc= udp_connect(ptr, x);
+ break;
case MEMCACHED_CONNECTION_TCP:
possible_rc= tcp_connect(ptr, x);
break;
static void host_reset(memcached_server_st *host, char *new_hostname, unsigned int port,
memcached_connection type)
{
- host->stack_responses= 0;
- host->cursor_active= 0;
+ memset(host, 0, sizeof(memcached_server_st));
host->hostname= new_hostname;
host->port= port;
host->fd= -1;
host->type= type;
- host->write_buffer_offset= 0;
- host->read_buffer_length= 0;
host->read_ptr= host->read_buffer;
}
return server_add(ptr, filename, 0, MEMCACHED_CONNECTION_UNIX_SOCKET);
}
-memcached_return memcached_server_add(memcached_st *ptr, char *hostname, unsigned int port)
+memcached_return memcached_server_add_udp(memcached_st *ptr,
+ char *hostname,
+ unsigned int port)
+{
+ if (!port)
+ port= MEMCACHED_DEFAULT_PORT;
+
+ if (!hostname)
+ hostname= "localhost";
+
+ return server_add(ptr, hostname, port, MEMCACHED_CONNECTION_UDP);
+}
+
+memcached_return memcached_server_add(memcached_st *ptr,
+ char *hostname,
+ unsigned int port)
{
if (!port)
port= MEMCACHED_DEFAULT_PORT;
}
sent_length= 0;
- if ((ssize_t)(sent_length= write(ptr->hosts[server_key].fd, write_ptr,
- write_length)) == -1)
+ if (ptr->hosts[server_key].type == MEMCACHED_CONNECTION_UDP)
{
- switch (errno)
+
+ sent_length= sendto(ptr->hosts[server_key].fd, write_ptr, write_length,
+ 0, 0, 0);
+ /*
+ rc = sendto(sd, argv[i], strlen(argv[i])+1, 0,
+ (struct sockaddr *) &remoteServAddr,
+ sizeof(remoteServAddr));
+ */
+ }
+ else
+ {
+ if ((ssize_t)(sent_length= write(ptr->hosts[server_key].fd, write_ptr,
+ write_length)) == -1)
{
- case ENOBUFS:
- case EAGAIN:
- WATCHPOINT;
- continue;
- if (loop < 100)
+ switch (errno)
{
- loop++;
- break;
+ case ENOBUFS:
+ case EAGAIN:
+ WATCHPOINT;
+ continue;
+ if (loop < 100)
+ {
+ loop++;
+ break;
+ }
+ /* Yes, we want to fall through */
+ default:
+ ptr->cached_errno= errno;
+ return -1;
}
- /* Yes, we want to fall through */
- default:
- ptr->cached_errno= errno;
- return -1;
}
}
return rc;
}
+memcached_return pre_udp(memcached_st *memc)
+{
+ memcached_return rc;
+
+ memcached_server_list_free(memc->hosts);
+ memc->hosts= NULL;
+ memc->number_of_hosts= 0;
+
+ if (0)
+ return MEMCACHED_FAILURE;
+
+ rc= memcached_server_add_udp(memc, "localhost", MEMCACHED_DEFAULT_PORT);
+
+ return rc;
+}
+
memcached_return pre_nodelay(memcached_st *memc)
{
memcached_behavior_set(memc, MEMCACHED_BEHAVIOR_NO_BLOCK, NULL);
{"ketama", pre_hash_ketama, 0, tests},
{"unix_socket", pre_unix_socket, 0, tests},
{"unix_socket_nodelay", pre_nodelay, 0, tests},
+// {"udp", pre_udp, 0, tests},
{"string", 0, 0, string_tests},
{"result", 0, 0, result_tests},
{"user", 0, 0, user_tests},