Fix error messages/unlimited CPU utilization.
[m6w6/libmemcached] / libmemcached / io.cc
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * LibMemcached
4 *
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker
7 * All rights reserved.
8 *
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are
11 * met:
12 *
13 * * Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
15 *
16 * * Redistributions in binary form must reproduce the above
17 * copyright notice, this list of conditions and the following disclaimer
18 * in the documentation and/or other materials provided with the
19 * distribution.
20 *
21 * * The names of its contributors may not be used to endorse or
22 * promote products derived from this software without specific prior
23 * written permission.
24 *
25 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
26 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
27 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
28 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
29 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
30 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
31 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
32 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
33 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
34 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
35 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
36 *
37 */
38
39
40 #include <libmemcached/common.h>
41
42 enum memc_read_or_write {
43 MEM_READ,
44 MEM_WRITE
45 };
46
47 /**
48 * Try to fill the input buffer for a server with as much
49 * data as possible.
50 *
51 * @param ptr the server to pack
52 */
53 static bool repack_input_buffer(memcached_server_write_instance_st ptr)
54 {
55 if (ptr->read_ptr != ptr->read_buffer)
56 {
57 /* Move all of the data to the beginning of the buffer so
58 ** that we can fit more data into the buffer...
59 */
60 memmove(ptr->read_buffer, ptr->read_ptr, ptr->read_buffer_length);
61 ptr->read_ptr= ptr->read_buffer;
62 ptr->read_data_length= ptr->read_buffer_length;
63 }
64
65 /* There is room in the buffer, try to fill it! */
66 if (ptr->read_buffer_length != MEMCACHED_MAX_BUFFER)
67 {
68 do {
69 /* Just try a single read to grab what's available */
70 ssize_t nr;
71 if ((nr= recv(ptr->fd,
72 ptr->read_ptr + ptr->read_data_length,
73 MEMCACHED_MAX_BUFFER - ptr->read_data_length,
74 MSG_DONTWAIT)) <= 0)
75 {
76 if (nr == 0)
77 {
78 memcached_set_error(*ptr, MEMCACHED_CONNECTION_FAILURE, MEMCACHED_AT);
79 }
80 else
81 {
82 switch (get_socket_errno())
83 {
84 case EINTR:
85 continue;
86
87 #if EWOULDBLOCK != EAGAIN
88 case EWOULDBLOCK:
89 #endif
90 case EAGAIN:
91 #ifdef TARGET_OS_LINUX
92 case ERESTART:
93 #endif
94 break; // No IO is fine, we can just move on
95
96 default:
97 memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
98 }
99 }
100
101 break;
102 }
103 else // We read data, append to our read buffer
104 {
105 ptr->read_data_length+= size_t(nr);
106 ptr->read_buffer_length+= size_t(nr);
107
108 return true;
109 }
110 } while (false);
111 }
112
113 return false;
114 }
115
116 /**
117 * If the we have callbacks connected to this server structure
118 * we may start process the input queue and fire the callbacks
119 * for the incomming messages. This function is _only_ called
120 * when the input buffer is full, so that we _know_ that we have
121 * at least _one_ message to process.
122 *
123 * @param ptr the server to star processing iput messages for
124 * @return true if we processed anything, false otherwise
125 */
126 static bool process_input_buffer(memcached_server_write_instance_st ptr)
127 {
128 /*
129 ** We might be able to process some of the response messages if we
130 ** have a callback set up
131 */
132 if (ptr->root->callbacks != NULL)
133 {
134 /*
135 * We might have responses... try to read them out and fire
136 * callbacks
137 */
138 memcached_callback_st cb= *ptr->root->callbacks;
139
140 memcached_set_processing_input((memcached_st *)ptr->root, true);
141
142 char buffer[MEMCACHED_DEFAULT_COMMAND_SIZE];
143 memcached_st *root= (memcached_st *)ptr->root;
144 memcached_return_t error= memcached_response(ptr, buffer, sizeof(buffer), &root->result);
145
146 memcached_set_processing_input(root, false);
147
148 if (error == MEMCACHED_SUCCESS)
149 {
150 for (unsigned int x= 0; x < cb.number_of_callback; x++)
151 {
152 error= (*cb.callback[x])(ptr->root, &root->result, cb.context);
153 if (error != MEMCACHED_SUCCESS)
154 {
155 break;
156 }
157 }
158
159 /* @todo what should I do with the error message??? */
160 }
161 /* @todo what should I do with other error messages?? */
162 return true;
163 }
164
165 return false;
166 }
167
168 static memcached_return_t io_wait(memcached_server_write_instance_st ptr,
169 const memc_read_or_write read_or_write)
170 {
171 /*
172 ** We are going to block on write, but at least on Solaris we might block
173 ** on write if we haven't read anything from our input buffer..
174 ** Try to purge the input buffer if we don't do any flow control in the
175 ** application layer (just sending a lot of data etc)
176 ** The test is moved down in the purge function to avoid duplication of
177 ** the test.
178 */
179 if (read_or_write == MEM_WRITE)
180 {
181 if (memcached_purge(ptr) == false)
182 {
183 return MEMCACHED_FAILURE;
184 }
185 }
186
187 struct pollfd fds;
188 fds.fd= ptr->fd;
189 fds.events= POLLIN;
190 fds.revents= 0;
191
192 if (read_or_write == MEM_WRITE) /* write */
193 {
194 fds.events= POLLOUT;
195 ptr->io_wait_count.write++;
196 }
197 else
198 {
199 ptr->io_wait_count.read++;
200 }
201
202 if (ptr->root->poll_timeout == 0) // Mimic 0 causes timeout behavior (not all platforms do this)
203 {
204 ptr->io_wait_count.timeouts++;
205 return memcached_set_error(*ptr, MEMCACHED_TIMEOUT, MEMCACHED_AT);
206 }
207
208 size_t loop_max= 5;
209 while (--loop_max) // While loop is for ERESTART or EINTR
210 {
211 int active_fd= poll(&fds, 1, ptr->root->poll_timeout);
212
213 if (active_fd >= 1)
214 {
215 assert_msg(active_fd == 1 , "poll() returned an unexpected number of active file descriptors");
216 if (fds.revents & POLLIN or fds.revents & POLLOUT)
217 {
218 return MEMCACHED_SUCCESS;
219 }
220
221 if (fds.revents & POLLHUP)
222 {
223 return memcached_set_error(*ptr, MEMCACHED_CONNECTION_FAILURE, MEMCACHED_AT,
224 memcached_literal_param("poll() detected hang up"));
225 }
226
227 if (fds.revents & POLLERR)
228 {
229 int local_errno= EINVAL;
230 int err;
231 socklen_t len= sizeof (err);
232 if (getsockopt(ptr->fd, SOL_SOCKET, SO_ERROR, &err, &len) == 0)
233 {
234 if (err == 0) // treat this as EINTR
235 {
236 continue;
237 }
238 local_errno= err;
239 }
240 memcached_quit_server(ptr, true);
241 return memcached_set_errno(*ptr, local_errno, MEMCACHED_AT,
242 memcached_literal_param("poll() returned POLLHUP"));
243 }
244
245 return memcached_set_error(*ptr, MEMCACHED_FAILURE, MEMCACHED_AT, memcached_literal_param("poll() returned a value that was not dealt with"));
246 }
247
248 if (active_fd == 0)
249 {
250 ptr->io_wait_count.timeouts++;
251 return memcached_set_error(*ptr, MEMCACHED_TIMEOUT, MEMCACHED_AT);
252 }
253
254 // Only an error should result in this code being called.
255 int local_errno= get_socket_errno(); // We cache in case memcached_quit_server() modifies errno
256 assert_msg(active_fd == -1 , "poll() returned an unexpected value");
257 switch (local_errno)
258 {
259 #ifdef TARGET_OS_LINUX
260 case ERESTART:
261 #endif
262 case EINTR:
263 continue;
264
265 case EFAULT:
266 case ENOMEM:
267 memcached_set_error(*ptr, MEMCACHED_MEMORY_ALLOCATION_FAILURE, MEMCACHED_AT);
268
269 case EINVAL:
270 memcached_set_error(*ptr, MEMCACHED_MEMORY_ALLOCATION_FAILURE, MEMCACHED_AT, memcached_literal_param("RLIMIT_NOFILE exceeded, or if OSX the timeout value was invalid"));
271
272 default:
273 memcached_set_errno(*ptr, local_errno, MEMCACHED_AT, memcached_literal_param("poll"));
274 }
275
276 break;
277 }
278
279 memcached_quit_server(ptr, true);
280
281 if (memcached_has_error(ptr))
282 {
283 return memcached_server_error_return(ptr);
284 }
285
286 return memcached_set_error(*ptr, MEMCACHED_CONNECTION_FAILURE, MEMCACHED_AT,
287 memcached_literal_param("number of attempts to call io_wait() failed"));
288 }
289
290 static bool io_flush(memcached_server_write_instance_st ptr,
291 const bool with_flush,
292 memcached_return_t& error)
293 {
294 /*
295 ** We might want to purge the input buffer if we haven't consumed
296 ** any output yet... The test for the limits is the purge is inline
297 ** in the purge function to avoid duplicating the logic..
298 */
299 {
300 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
301
302 if (memcached_purge(ptr) == false)
303 {
304 return false;
305 }
306 }
307 char *local_write_ptr= ptr->write_buffer;
308 size_t write_length= ptr->write_buffer_offset;
309
310 error= MEMCACHED_SUCCESS;
311
312 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
313
314 /* Looking for memory overflows */
315 #if defined(DEBUG)
316 if (write_length == MEMCACHED_MAX_BUFFER)
317 WATCHPOINT_ASSERT(ptr->write_buffer == local_write_ptr);
318 WATCHPOINT_ASSERT((ptr->write_buffer + MEMCACHED_MAX_BUFFER) >= (local_write_ptr + write_length));
319 #endif
320
321 while (write_length)
322 {
323 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
324 WATCHPOINT_ASSERT(write_length > 0);
325
326 int flags= with_flush ? MSG_NOSIGNAL|MSG_DONTWAIT : MSG_NOSIGNAL|MSG_DONTWAIT|MSG_MORE;
327 ssize_t sent_length= ::send(ptr->fd, local_write_ptr, write_length, flags);
328
329 if (sent_length == SOCKET_ERROR)
330 {
331 #if 0 // @todo I should look at why we hit this bit of code hard frequently
332 WATCHPOINT_ERRNO(get_socket_errno());
333 WATCHPOINT_NUMBER(get_socket_errno());
334 #endif
335 switch (get_socket_errno())
336 {
337 case ENOBUFS:
338 continue;
339
340 #if EWOULDBLOCK != EAGAIN
341 case EWOULDBLOCK:
342 #endif
343 case EAGAIN:
344 {
345 /*
346 * We may be blocked on write because the input buffer
347 * is full. Let's check if we have room in our input
348 * buffer for more data and retry the write before
349 * waiting..
350 */
351 if (repack_input_buffer(ptr) or process_input_buffer(ptr))
352 {
353 continue;
354 }
355
356 memcached_return_t rc= io_wait(ptr, MEM_WRITE);
357 if (memcached_success(rc))
358 {
359 continue;
360 }
361 else if (rc == MEMCACHED_TIMEOUT)
362 {
363 return false;
364 }
365
366 memcached_quit_server(ptr, true);
367 error= memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
368 return false;
369 }
370 case ENOTCONN:
371 case EPIPE:
372 default:
373 memcached_quit_server(ptr, true);
374 error= memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
375 WATCHPOINT_ASSERT(ptr->fd == INVALID_SOCKET);
376 return false;
377 }
378 }
379
380 ptr->io_bytes_sent+= uint32_t(sent_length);
381
382 local_write_ptr+= sent_length;
383 write_length-= uint32_t(sent_length);
384 }
385
386 WATCHPOINT_ASSERT(write_length == 0);
387 ptr->write_buffer_offset= 0;
388
389 return true;
390 }
391
392 memcached_return_t memcached_io_wait_for_write(memcached_server_write_instance_st ptr)
393 {
394 return io_wait(ptr, MEM_WRITE);
395 }
396
397 static memcached_return_t _io_fill(memcached_server_write_instance_st ptr)
398 {
399 ssize_t data_read;
400 do
401 {
402 data_read= ::recv(ptr->fd, ptr->read_buffer, MEMCACHED_MAX_BUFFER, MSG_DONTWAIT);
403 if (data_read == SOCKET_ERROR)
404 {
405 switch (get_socket_errno())
406 {
407 case EINTR: // We just retry
408 continue;
409
410 case ETIMEDOUT: // OSX
411 #if EWOULDBLOCK != EAGAIN
412 case EWOULDBLOCK:
413 #endif
414 case EAGAIN:
415 #ifdef TARGET_OS_LINUX
416 case ERESTART:
417 #endif
418 {
419 memcached_return_t io_wait_ret;
420 if (memcached_success(io_wait_ret= io_wait(ptr, MEM_READ)))
421 {
422 continue;
423 }
424
425 return io_wait_ret;
426 }
427
428 /* fall through */
429
430 case ENOTCONN: // Programmer Error
431 WATCHPOINT_ASSERT(0);
432 case ENOTSOCK:
433 WATCHPOINT_ASSERT(0);
434 case EBADF:
435 assert_msg(ptr->fd != INVALID_SOCKET, "Programmer error, invalid socket");
436 case EINVAL:
437 case EFAULT:
438 case ECONNREFUSED:
439 default:
440 memcached_quit_server(ptr, true);
441 memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
442 break;
443 }
444
445 return memcached_server_error_return(ptr);
446 }
447 else if (data_read == 0)
448 {
449 /*
450 EOF. Any data received so far is incomplete
451 so discard it. This always reads by byte in case of TCP
452 and protocol enforcement happens at memcached_response()
453 looking for '\n'. We do not care for UDB which requests 8 bytes
454 at once. Generally, this means that connection went away. Since
455 for blocking I/O we do not return 0 and for non-blocking case
456 it will return EGAIN if data is not immediatly available.
457 */
458 memcached_quit_server(ptr, true);
459 return memcached_set_error(*ptr, MEMCACHED_CONNECTION_FAILURE, MEMCACHED_AT,
460 memcached_literal_param("::rec() returned zero, server has disconnected"));
461 }
462 ptr->io_wait_count._bytes_read+= data_read;
463 } while (data_read <= 0);
464
465 ptr->io_bytes_sent= 0;
466 ptr->read_data_length= (size_t) data_read;
467 ptr->read_buffer_length= (size_t) data_read;
468 ptr->read_ptr= ptr->read_buffer;
469
470 return MEMCACHED_SUCCESS;
471 }
472
473 memcached_return_t memcached_io_read(memcached_server_write_instance_st ptr,
474 void *buffer, size_t length, ssize_t& nread)
475 {
476 assert(memcached_is_udp(ptr->root) == false);
477 assert_msg(ptr, "Programmer error, memcached_io_read() recieved an invalid memcached_server_write_instance_st"); // Programmer error
478 char *buffer_ptr= static_cast<char *>(buffer);
479
480 if (ptr->fd == INVALID_SOCKET)
481 {
482 #if 0
483 assert_msg(int(ptr->state) <= int(MEMCACHED_SERVER_STATE_ADDRINFO), "Programmer error, invalid socket state");
484 #endif
485 return MEMCACHED_CONNECTION_FAILURE;
486 }
487
488 while (length)
489 {
490 if (ptr->read_buffer_length == 0)
491 {
492 memcached_return_t io_fill_ret;
493 if (memcached_fatal(io_fill_ret= _io_fill(ptr)))
494 {
495 nread= -1;
496 return io_fill_ret;
497 }
498 }
499
500 if (length > 1)
501 {
502 size_t difference= (length > ptr->read_buffer_length) ? ptr->read_buffer_length : length;
503
504 memcpy(buffer_ptr, ptr->read_ptr, difference);
505 length -= difference;
506 ptr->read_ptr+= difference;
507 ptr->read_buffer_length-= difference;
508 buffer_ptr+= difference;
509 }
510 else
511 {
512 *buffer_ptr= *ptr->read_ptr;
513 ptr->read_ptr++;
514 ptr->read_buffer_length--;
515 buffer_ptr++;
516 break;
517 }
518 }
519
520 nread= ssize_t(buffer_ptr - (char*)buffer);
521
522 return MEMCACHED_SUCCESS;
523 }
524
525 memcached_return_t memcached_io_slurp(memcached_server_write_instance_st ptr)
526 {
527 assert_msg(ptr, "Programmer error, invalid memcached_server_write_instance_st");
528 assert(memcached_is_udp(ptr->root) == false);
529
530 if (ptr->fd == INVALID_SOCKET)
531 {
532 assert_msg(int(ptr->state) <= int(MEMCACHED_SERVER_STATE_ADDRINFO), "Invalid socket state");
533 return MEMCACHED_CONNECTION_FAILURE;
534 }
535
536 ssize_t data_read;
537 char buffer[MEMCACHED_MAX_BUFFER];
538 do
539 {
540 data_read= recv(ptr->fd, ptr->read_buffer, sizeof(buffer), MSG_DONTWAIT);
541 if (data_read == SOCKET_ERROR)
542 {
543 switch (get_socket_errno())
544 {
545 case EINTR: // We just retry
546 continue;
547
548 case ETIMEDOUT: // OSX
549 #if EWOULDBLOCK != EAGAIN
550 case EWOULDBLOCK:
551 #endif
552 case EAGAIN:
553 #ifdef TARGET_OS_LINUX
554 case ERESTART:
555 #endif
556 if (memcached_success(io_wait(ptr, MEM_READ)))
557 {
558 continue;
559 }
560 return MEMCACHED_IN_PROGRESS;
561
562 /* fall through */
563
564 case ENOTCONN: // Programmer Error
565 assert(0);
566 case ENOTSOCK:
567 assert(0);
568 case EBADF:
569 assert_msg(ptr->fd != INVALID_SOCKET, "Invalid socket state");
570 case EINVAL:
571 case EFAULT:
572 case ECONNREFUSED:
573 default:
574 return MEMCACHED_CONNECTION_FAILURE; // We want this!
575 }
576 }
577 } while (data_read > 0);
578
579 return MEMCACHED_CONNECTION_FAILURE;
580 }
581
582 static bool _io_write(memcached_server_write_instance_st ptr,
583 const void *buffer, size_t length, bool with_flush,
584 size_t& written)
585 {
586 assert(ptr->fd != INVALID_SOCKET);
587 assert(memcached_is_udp(ptr->root) == false);
588
589 const char *buffer_ptr= static_cast<const char *>(buffer);
590
591 const size_t original_length= length;
592
593 while (length)
594 {
595 char *write_ptr;
596 size_t buffer_end= MEMCACHED_MAX_BUFFER;
597 size_t should_write= buffer_end -ptr->write_buffer_offset;
598 should_write= (should_write < length) ? should_write : length;
599
600 write_ptr= ptr->write_buffer + ptr->write_buffer_offset;
601 memcpy(write_ptr, buffer_ptr, should_write);
602 ptr->write_buffer_offset+= should_write;
603 buffer_ptr+= should_write;
604 length-= should_write;
605
606 if (ptr->write_buffer_offset == buffer_end)
607 {
608 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
609
610 memcached_return_t rc;
611 if (io_flush(ptr, with_flush, rc) == false)
612 {
613 written= original_length -length;
614 return false;
615 }
616 }
617 }
618
619 if (with_flush)
620 {
621 memcached_return_t rc;
622 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
623 if (io_flush(ptr, with_flush, rc) == false)
624 {
625 written= original_length -length;
626 return false;
627 }
628 }
629
630 written= original_length -length;
631
632 return true;
633 }
634
635 bool memcached_io_write(memcached_server_write_instance_st ptr)
636 {
637 size_t written;
638 return _io_write(ptr, NULL, 0, true, written);
639 }
640
641 ssize_t memcached_io_write(memcached_server_write_instance_st ptr,
642 const void *buffer, const size_t length, const bool with_flush)
643 {
644 size_t written;
645
646 if (_io_write(ptr, buffer, length, with_flush, written) == false)
647 {
648 return -1;
649 }
650
651 return ssize_t(written);
652 }
653
654 bool memcached_io_writev(memcached_server_write_instance_st ptr,
655 libmemcached_io_vector_st vector[],
656 const size_t number_of, const bool with_flush)
657 {
658 ssize_t complete_total= 0;
659 ssize_t total= 0;
660
661 for (size_t x= 0; x < number_of; x++, vector++)
662 {
663 complete_total+= vector->length;
664 if (vector->length)
665 {
666 size_t written;
667 if ((_io_write(ptr, vector->buffer, vector->length, false, written)) == false)
668 {
669 return false;
670 }
671 total+= written;
672 }
673 }
674
675 if (with_flush)
676 {
677 if (memcached_io_write(ptr) == false)
678 {
679 return false;
680 }
681 }
682
683 return (complete_total == total);
684 }
685
686
687 void memcached_io_close(memcached_server_write_instance_st ptr)
688 {
689 if (ptr->fd == INVALID_SOCKET)
690 {
691 return;
692 }
693
694 /* in case of death shutdown to avoid blocking at close() */
695 if (shutdown(ptr->fd, SHUT_RDWR) == SOCKET_ERROR && get_socket_errno() != ENOTCONN)
696 {
697 WATCHPOINT_NUMBER(ptr->fd);
698 WATCHPOINT_ERRNO(get_socket_errno());
699 WATCHPOINT_ASSERT(get_socket_errno());
700 }
701
702 if (closesocket(ptr->fd) == SOCKET_ERROR)
703 {
704 WATCHPOINT_ERRNO(get_socket_errno());
705 }
706 ptr->state= MEMCACHED_SERVER_STATE_NEW;
707 ptr->fd= INVALID_SOCKET;
708 }
709
710 memcached_server_write_instance_st memcached_io_get_readable_server(memcached_st *memc)
711 {
712 #define MAX_SERVERS_TO_POLL 100
713 struct pollfd fds[MAX_SERVERS_TO_POLL];
714 nfds_t host_index= 0;
715
716 for (uint32_t x= 0; x < memcached_server_count(memc) and host_index < MAX_SERVERS_TO_POLL; ++x)
717 {
718 memcached_server_write_instance_st instance= memcached_server_instance_fetch(memc, x);
719
720 if (instance->read_buffer_length > 0) /* I have data in the buffer */
721 {
722 return instance;
723 }
724
725 if (memcached_server_response_count(instance) > 0)
726 {
727 fds[host_index].events = POLLIN;
728 fds[host_index].revents = 0;
729 fds[host_index].fd = instance->fd;
730 ++host_index;
731 }
732 }
733
734 if (host_index < 2)
735 {
736 /* We have 0 or 1 server with pending events.. */
737 for (uint32_t x= 0; x< memcached_server_count(memc); ++x)
738 {
739 memcached_server_write_instance_st instance=
740 memcached_server_instance_fetch(memc, x);
741
742 if (memcached_server_response_count(instance) > 0)
743 {
744 return instance;
745 }
746 }
747
748 return NULL;
749 }
750
751 int error= poll(fds, host_index, memc->poll_timeout);
752 switch (error)
753 {
754 case -1:
755 memcached_set_errno(*memc, get_socket_errno(), MEMCACHED_AT);
756 /* FALLTHROUGH */
757 case 0:
758 break;
759
760 default:
761 for (nfds_t x= 0; x < host_index; ++x)
762 {
763 if (fds[x].revents & POLLIN)
764 {
765 for (uint32_t y= 0; y < memcached_server_count(memc); ++y)
766 {
767 memcached_server_write_instance_st instance= memcached_server_instance_fetch(memc, y);
768
769 if (instance->fd == fds[x].fd)
770 {
771 return instance;
772 }
773 }
774 }
775 }
776 }
777
778 return NULL;
779 }
780
781 /*
782 Eventually we will just kill off the server with the problem.
783 */
784 void memcached_io_reset(memcached_server_write_instance_st ptr)
785 {
786 memcached_quit_server(ptr, true);
787 }
788
789 /**
790 * Read a given number of bytes from the server and place it into a specific
791 * buffer. Reset the IO channel on this server if an error occurs.
792 */
793 memcached_return_t memcached_safe_read(memcached_server_write_instance_st ptr,
794 void *dta,
795 const size_t size)
796 {
797 size_t offset= 0;
798 char *data= static_cast<char *>(dta);
799
800 while (offset < size)
801 {
802 ssize_t nread;
803 memcached_return_t rc;
804
805 while (memcached_continue(rc= memcached_io_read(ptr, data + offset, size - offset, nread))) { };
806
807 if (memcached_failed(rc))
808 {
809 return rc;
810 }
811
812 offset+= size_t(nread);
813 }
814
815 return MEMCACHED_SUCCESS;
816 }
817
818 memcached_return_t memcached_io_readline(memcached_server_write_instance_st ptr,
819 char *buffer_ptr,
820 size_t size,
821 size_t& total_nr)
822 {
823 total_nr= 0;
824 bool line_complete= false;
825
826 while (line_complete == false)
827 {
828 if (ptr->read_buffer_length == 0)
829 {
830 /*
831 * We don't have any data in the buffer, so let's fill the read
832 * buffer. Call the standard read function to avoid duplicating
833 * the logic.
834 */
835 ssize_t nread;
836 memcached_return_t rc= memcached_io_read(ptr, buffer_ptr, 1, nread);
837 if (memcached_failed(rc) and rc == MEMCACHED_IN_PROGRESS)
838 {
839 memcached_quit_server(ptr, true);
840 return memcached_set_error(*ptr, rc, MEMCACHED_AT);
841 }
842 else if (memcached_failed(rc))
843 {
844 return rc;
845 }
846
847 if (*buffer_ptr == '\n')
848 {
849 line_complete= true;
850 }
851
852 ++buffer_ptr;
853 ++total_nr;
854 }
855
856 /* Now let's look in the buffer and copy as we go! */
857 while (ptr->read_buffer_length and total_nr < size and line_complete == false)
858 {
859 *buffer_ptr = *ptr->read_ptr;
860 if (*buffer_ptr == '\n')
861 {
862 line_complete = true;
863 }
864 --ptr->read_buffer_length;
865 ++ptr->read_ptr;
866 ++total_nr;
867 ++buffer_ptr;
868 }
869
870 if (total_nr == size)
871 {
872 return MEMCACHED_PROTOCOL_ERROR;
873 }
874 }
875
876 return MEMCACHED_SUCCESS;
877 }