tests: fix failure tests
[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 static memcached_return_t _vdo_udp(memcached_instance_st* instance,
15 libmemcached_io_vector_st vector[],
16 const size_t count)
17 {
18 #ifndef __MINGW32__
19 if (vector[0].buffer or vector[0].length)
20 {
21 return memcached_set_error(*instance->root, MEMCACHED_NOT_SUPPORTED, MEMCACHED_AT,
22 memcached_literal_param("UDP messages was attempted, but vector was not setup for it"));
23 }
24
25 struct msghdr msg;
26 memset(&msg, 0, sizeof(msg));
27
28 increment_udp_message_id(instance);
29 vector[0].buffer= instance->write_buffer;
30 vector[0].length= UDP_DATAGRAM_HEADER_LENGTH;
31
32 msg.msg_iov= (struct iovec*)vector;
33 #ifdef __APPLE__
34 msg.msg_iovlen= int(count);
35 #else
36 msg.msg_iovlen= count;
37 #endif
38
39 uint32_t retry= 5;
40 while (--retry)
41 {
42 ssize_t sendmsg_length= ::sendmsg(instance->fd, &msg, 0);
43 if (sendmsg_length > 0)
44 {
45 break;
46 }
47 else if (sendmsg_length < 0)
48 {
49 if (errno == EMSGSIZE)
50 {
51 return memcached_set_error(*instance, MEMCACHED_WRITE_FAILURE, MEMCACHED_AT);
52 }
53
54 return memcached_set_errno(*instance, errno, MEMCACHED_AT);
55 }
56 }
57
58 return MEMCACHED_SUCCESS;
59 #else
60 (void)instance;
61 (void)vector;
62 (void)count;
63 return MEMCACHED_FAILURE;
64 #endif
65 }
66
67 memcached_return_t memcached_vdo(memcached_instance_st* instance,
68 libmemcached_io_vector_st vector[],
69 const size_t count,
70 const bool with_flush)
71 {
72 memcached_return_t rc;
73
74 assert_msg(vector, "Invalid vector passed");
75
76 if (memcached_failed(rc= memcached_connect(instance)))
77 {
78 WATCHPOINT_ERROR(rc);
79 assert_msg(instance->error_messages, "memcached_connect() returned an error but the Instance showed none.");
80 return rc;
81 }
82
83 /*
84 ** Since non buffering ops in UDP mode dont check to make sure they will fit
85 ** before they start writing, if there is any data in buffer, clear it out,
86 ** otherwise we might get a partial write.
87 **/
88 if (memcached_is_udp(instance->root))
89 {
90 return _vdo_udp(instance, vector, count);
91 }
92
93 bool sent_success= memcached_io_writev(instance, vector, count, with_flush);
94 if (sent_success == false)
95 {
96 //assert(memcached_last_error(instance->root) == MEMCACHED_SUCCESS);
97 if (memcached_last_error(instance->root) == MEMCACHED_SUCCESS)
98 {
99 //assert(memcached_last_error(instance->root) != MEMCACHED_SUCCESS);
100 return memcached_set_error(*instance, MEMCACHED_WRITE_FAILURE, MEMCACHED_AT);
101 }
102 else
103 {
104 rc= memcached_last_error(instance->root);
105 }
106 }
107 else if (memcached_is_replying(instance->root))
108 {
109 memcached_server_response_increment(instance);
110 }
111
112 return rc;
113 }