2 * Copyright (C) 2006-2010 Brian Aker
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
12 #include <libmemcached/common.h>
14 memcached_return_t
memcached_vdo(org::libmemcached::Instance
* instance
,
15 libmemcached_io_vector_st vector
[],
17 const bool with_flush
)
19 memcached_return_t rc
;
21 assert_msg(vector
, "Invalid vector passed");
23 if (memcached_failed(rc
= memcached_connect(instance
)))
26 assert_msg(instance
->error_messages
, "memcached_connect() returned an error but the Instance showed none.");
31 ** Since non buffering ops in UDP mode dont check to make sure they will fit
32 ** before they start writing, if there is any data in buffer, clear it out,
33 ** otherwise we might get a partial write.
35 if (memcached_is_udp(instance
->root
))
38 if (vector
[0].buffer
or vector
[0].length
)
40 return memcached_set_error(*instance
->root
, MEMCACHED_NOT_SUPPORTED
, MEMCACHED_AT
,
41 memcached_literal_param("UDP messages was attempted, but vector was not setup for it"));
45 memset(&msg
, 0, sizeof(msg
));
47 increment_udp_message_id(instance
);
48 vector
[0].buffer
= instance
->write_buffer
;
49 vector
[0].length
= UDP_DATAGRAM_HEADER_LENGTH
;
51 msg
.msg_iov
= (struct iovec
*)vector
;
52 #if defined(TARGET_OS_OSX) && TARGET_OS_OSX
53 msg
.msg_iovlen
= int(count
);
55 msg
.msg_iovlen
= count
;
61 ssize_t sendmsg_length
= ::sendmsg(instance
->fd
, &msg
, 0);
62 if (sendmsg_length
> 0)
66 else if (sendmsg_length
< 0)
68 if (errno
== EMSGSIZE
)
70 return memcached_set_error(*instance
, MEMCACHED_WRITE_FAILURE
, MEMCACHED_AT
);
73 return memcached_set_errno(*instance
, errno
, MEMCACHED_AT
);
77 return MEMCACHED_SUCCESS
;
79 return MEMCACHED_FAILURE
;
83 bool sent_success
= memcached_io_writev(instance
, vector
, count
, with_flush
);
84 if (sent_success
== false)
86 if (memcached_last_error(instance
->root
) == MEMCACHED_SUCCESS
)
88 return memcached_set_error(*instance
, MEMCACHED_WRITE_FAILURE
, MEMCACHED_AT
);
92 rc
= MEMCACHED_WRITE_FAILURE
;
95 else if (memcached_is_replying(instance
->root
))
97 memcached_server_response_increment(instance
);