OSX uses a different type in sendmesg() it seems.
[awesomized/libmemcached] / libmemcached / do.cc
1 /* LibMemcached
2 * Copyright (C) 2006-2010 Brian Aker
3 * All rights reserved.
4 *
5 * Use and distribution licensed under the BSD license. See
6 * the COPYING file in the parent directory for full text.
7 *
8 * Summary:
9 *
10 */
11
12 #include <libmemcached/common.h>
13
14 memcached_return_t memcached_vdo(org::libmemcached::Instance* instance,
15 libmemcached_io_vector_st vector[],
16 const size_t count,
17 const bool with_flush)
18 {
19 memcached_return_t rc;
20
21 assert_msg(vector, "Invalid vector passed");
22
23 if (memcached_failed(rc= memcached_connect(instance)))
24 {
25 WATCHPOINT_ERROR(rc);
26 assert_msg(instance->error_messages, "memcached_connect() returned an error but the Instance showed none.");
27 return rc;
28 }
29
30 /*
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.
34 **/
35 if (memcached_is_udp(instance->root))
36 {
37 if (vector[0].buffer or vector[0].length)
38 {
39 return memcached_set_error(*instance->root, MEMCACHED_NOT_SUPPORTED, MEMCACHED_AT,
40 memcached_literal_param("UDP messages was attempted, but vector was not setup for it"));
41 }
42
43 struct msghdr msg;
44 memset(&msg, 0, sizeof(msg));
45
46 increment_udp_message_id(instance);
47 vector[0].buffer= instance->write_buffer;
48 vector[0].length= UDP_DATAGRAM_HEADER_LENGTH;
49
50 msg.msg_iov= (struct iovec*)vector;
51 #if defined(TARGET_OS_OSX) && TARGET_OS_OSX
52 msg.msg_iovlen= int(count);
53 #else
54 msg.msg_iovlen= count;
55 #endif
56
57 uint32_t retry= 5;
58 while (--retry)
59 {
60 ssize_t sendmsg_length= ::sendmsg(instance->fd, &msg, 0);
61 if (sendmsg_length > 0)
62 {
63 break;
64 }
65 else if (sendmsg_length < 0)
66 {
67 if (errno == EMSGSIZE)
68 {
69 return memcached_set_error(*instance, MEMCACHED_WRITE_FAILURE, MEMCACHED_AT);
70 }
71
72 return memcached_set_errno(*instance, errno, MEMCACHED_AT);
73 }
74 }
75
76 return MEMCACHED_SUCCESS;
77 }
78
79 bool sent_success= memcached_io_writev(instance, vector, count, with_flush);
80 if (sent_success == false)
81 {
82 if (memcached_last_error(instance->root) == MEMCACHED_SUCCESS)
83 {
84 return memcached_set_error(*instance, MEMCACHED_WRITE_FAILURE, MEMCACHED_AT);
85 }
86 else
87 {
88 rc= MEMCACHED_WRITE_FAILURE;
89 }
90 }
91 else if (memcached_is_replying(instance->root))
92 {
93 memcached_server_response_increment(instance);
94 }
95
96 return rc;
97 }