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