Shuffle for readability
[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_fatal(memcached_purge(ptr)))
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 int local_errno;
209 size_t loop_max= 5;
210 while (--loop_max) // While loop is for ERESTART or EINTR
211 {
212 int active_fd= poll(&fds, 1, ptr->root->poll_timeout);
213
214 if (active_fd >= 1)
215 {
216 assert_msg(active_fd == 1 , "poll() returned an unexpected value");
217 return MEMCACHED_SUCCESS;
218 }
219 else if (active_fd == 0)
220 {
221 ptr->io_wait_count.timeouts++;
222 return memcached_set_error(*ptr, MEMCACHED_TIMEOUT, MEMCACHED_AT);
223 }
224
225 // Only an error should result in this code being called.
226 local_errno= get_socket_errno(); // We cache in case memcached_quit_server() modifies errno
227 assert_msg(active_fd == -1 , "poll() returned an unexpected value");
228 switch (local_errno)
229 {
230 #ifdef TARGET_OS_LINUX
231 case ERESTART:
232 #endif
233 case EINTR:
234 continue;
235
236 case EFAULT:
237 case ENOMEM:
238 return memcached_set_error(*ptr, MEMCACHED_MEMORY_ALLOCATION_FAILURE, MEMCACHED_AT);
239
240 case EINVAL:
241 return memcached_set_error(*ptr, MEMCACHED_MEMORY_ALLOCATION_FAILURE, MEMCACHED_AT, memcached_literal_param("RLIMIT_NOFILE exceeded, or if OSX the timeout value was invalid"));
242
243 default:
244 if (fds.revents & POLLERR)
245 {
246 int err;
247 socklen_t len= sizeof (err);
248 if (getsockopt(ptr->fd, SOL_SOCKET, SO_ERROR, &err, &len) == 0)
249 {
250 if (err == 0) // treat this as EINTR
251 {
252 continue;
253 }
254 local_errno= err;
255 }
256 }
257 break;
258 }
259
260 break; // should only occur from poll error
261 }
262
263 memcached_quit_server(ptr, true);
264
265 return memcached_set_errno(*ptr, local_errno, MEMCACHED_AT);
266 }
267
268 static bool io_flush(memcached_server_write_instance_st ptr,
269 const bool with_flush,
270 memcached_return_t& error)
271 {
272 /*
273 ** We might want to purge the input buffer if we haven't consumed
274 ** any output yet... The test for the limits is the purge is inline
275 ** in the purge function to avoid duplicating the logic..
276 */
277 {
278 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
279 memcached_return_t rc= memcached_purge(ptr);
280
281 if (rc != MEMCACHED_SUCCESS and rc != MEMCACHED_STORED)
282 {
283 return false;
284 }
285 }
286 char *local_write_ptr= ptr->write_buffer;
287 size_t write_length= ptr->write_buffer_offset;
288
289 error= MEMCACHED_SUCCESS;
290
291 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
292
293 /* Looking for memory overflows */
294 #if defined(DEBUG)
295 if (write_length == MEMCACHED_MAX_BUFFER)
296 WATCHPOINT_ASSERT(ptr->write_buffer == local_write_ptr);
297 WATCHPOINT_ASSERT((ptr->write_buffer + MEMCACHED_MAX_BUFFER) >= (local_write_ptr + write_length));
298 #endif
299
300 while (write_length)
301 {
302 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
303 WATCHPOINT_ASSERT(write_length > 0);
304
305 int flags= with_flush ? MSG_NOSIGNAL|MSG_DONTWAIT : MSG_NOSIGNAL|MSG_DONTWAIT|MSG_MORE;
306 ssize_t sent_length= ::send(ptr->fd, local_write_ptr, write_length, flags);
307
308 if (sent_length == SOCKET_ERROR)
309 {
310 #if 0 // @todo I should look at why we hit this bit of code hard frequently
311 WATCHPOINT_ERRNO(get_socket_errno());
312 WATCHPOINT_NUMBER(get_socket_errno());
313 #endif
314 switch (get_socket_errno())
315 {
316 case ENOBUFS:
317 continue;
318
319 #if EWOULDBLOCK != EAGAIN
320 case EWOULDBLOCK:
321 #endif
322 case EAGAIN:
323 {
324 /*
325 * We may be blocked on write because the input buffer
326 * is full. Let's check if we have room in our input
327 * buffer for more data and retry the write before
328 * waiting..
329 */
330 if (repack_input_buffer(ptr) or process_input_buffer(ptr))
331 {
332 continue;
333 }
334
335 memcached_return_t rc= io_wait(ptr, MEM_WRITE);
336 if (memcached_success(rc))
337 {
338 continue;
339 }
340 else if (rc == MEMCACHED_TIMEOUT)
341 {
342 return false;
343 }
344
345 memcached_quit_server(ptr, true);
346 error= memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
347 return false;
348 }
349 case ENOTCONN:
350 case EPIPE:
351 default:
352 memcached_quit_server(ptr, true);
353 error= memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
354 WATCHPOINT_ASSERT(ptr->fd == INVALID_SOCKET);
355 return false;
356 }
357 }
358
359 ptr->io_bytes_sent+= uint32_t(sent_length);
360
361 local_write_ptr+= sent_length;
362 write_length-= uint32_t(sent_length);
363 }
364
365 WATCHPOINT_ASSERT(write_length == 0);
366 ptr->write_buffer_offset= 0;
367
368 return true;
369 }
370
371 memcached_return_t memcached_io_wait_for_write(memcached_server_write_instance_st ptr)
372 {
373 return io_wait(ptr, MEM_WRITE);
374 }
375
376 memcached_return_t memcached_io_read(memcached_server_write_instance_st ptr,
377 void *buffer, size_t length, ssize_t& nread)
378 {
379 assert(memcached_is_udp(ptr->root) == false);
380 assert_msg(ptr, "Programmer error, memcached_io_read() recieved an invalid memcached_server_write_instance_st"); // Programmer error
381 char *buffer_ptr= static_cast<char *>(buffer);
382
383 if (ptr->fd == INVALID_SOCKET)
384 {
385 #if 0
386 assert_msg(int(ptr->state) <= int(MEMCACHED_SERVER_STATE_ADDRINFO), "Programmer error, invalid socket state");
387 #endif
388 return MEMCACHED_CONNECTION_FAILURE;
389 }
390
391 while (length)
392 {
393 if (ptr->read_buffer_length == 0)
394 {
395 ssize_t data_read;
396 do
397 {
398 data_read= ::recv(ptr->fd, ptr->read_buffer, MEMCACHED_MAX_BUFFER, MSG_DONTWAIT);
399 if (data_read == SOCKET_ERROR)
400 {
401 switch (get_socket_errno())
402 {
403 case EINTR: // We just retry
404 continue;
405
406 case ETIMEDOUT: // OSX
407 #if EWOULDBLOCK != EAGAIN
408 case EWOULDBLOCK:
409 #endif
410 case EAGAIN:
411 #ifdef TARGET_OS_LINUX
412 case ERESTART:
413 #endif
414 {
415 memcached_return_t io_wait_ret;
416 if (memcached_success(io_wait_ret= io_wait(ptr, MEM_READ)))
417 {
418 continue;
419 }
420
421 return io_wait_ret;
422 }
423
424 /* fall through */
425
426 case ENOTCONN: // Programmer Error
427 WATCHPOINT_ASSERT(0);
428 case ENOTSOCK:
429 WATCHPOINT_ASSERT(0);
430 case EBADF:
431 assert_msg(ptr->fd != INVALID_SOCKET, "Programmer error, invalid socket");
432 case EINVAL:
433 case EFAULT:
434 case ECONNREFUSED:
435 default:
436 {
437 memcached_quit_server(ptr, true);
438 nread= -1;
439 return memcached_set_errno(*ptr, get_socket_errno(), MEMCACHED_AT);
440 }
441 }
442 }
443 else if (data_read == 0)
444 {
445 /*
446 EOF. Any data received so far is incomplete
447 so discard it. This always reads by byte in case of TCP
448 and protocol enforcement happens at memcached_response()
449 looking for '\n'. We do not care for UDB which requests 8 bytes
450 at once. Generally, this means that connection went away. Since
451 for blocking I/O we do not return 0 and for non-blocking case
452 it will return EGAIN if data is not immediatly available.
453 */
454 WATCHPOINT_STRING("We had a zero length recv()");
455 memcached_quit_server(ptr, true);
456 nread= -1;
457 return memcached_set_error(*ptr, MEMCACHED_CONNECTION_FAILURE, MEMCACHED_AT,
458 memcached_literal_param("::rec() returned zero, server has disconnected"));
459 }
460 } while (data_read <= 0);
461
462 ptr->io_bytes_sent = 0;
463 ptr->read_data_length= (size_t) data_read;
464 ptr->read_buffer_length= (size_t) data_read;
465 ptr->read_ptr= ptr->read_buffer;
466 }
467
468 if (length > 1)
469 {
470 size_t difference;
471
472 difference= (length > ptr->read_buffer_length) ? ptr->read_buffer_length : length;
473
474 memcpy(buffer_ptr, ptr->read_ptr, difference);
475 length -= difference;
476 ptr->read_ptr+= difference;
477 ptr->read_buffer_length-= difference;
478 buffer_ptr+= difference;
479 }
480 else
481 {
482 *buffer_ptr= *ptr->read_ptr;
483 ptr->read_ptr++;
484 ptr->read_buffer_length--;
485 buffer_ptr++;
486 break;
487 }
488 }
489
490 nread= ssize_t(buffer_ptr - (char*)buffer);
491
492 return MEMCACHED_SUCCESS;
493 }
494
495 memcached_return_t memcached_io_slurp(memcached_server_write_instance_st ptr)
496 {
497 assert_msg(ptr, "Programmer error, invalid memcached_server_write_instance_st");
498 assert(memcached_is_udp(ptr->root) == false);
499
500 if (ptr->fd == INVALID_SOCKET)
501 {
502 assert_msg(int(ptr->state) <= int(MEMCACHED_SERVER_STATE_ADDRINFO), "Invalid socket state");
503 return MEMCACHED_CONNECTION_FAILURE;
504 }
505
506 ssize_t data_read;
507 char buffer[MEMCACHED_MAX_BUFFER];
508 do
509 {
510 data_read= recv(ptr->fd, ptr->read_buffer, sizeof(buffer), MSG_DONTWAIT);
511 if (data_read == SOCKET_ERROR)
512 {
513 switch (get_socket_errno())
514 {
515 case EINTR: // We just retry
516 continue;
517
518 case ETIMEDOUT: // OSX
519 #if EWOULDBLOCK != EAGAIN
520 case EWOULDBLOCK:
521 #endif
522 case EAGAIN:
523 #ifdef TARGET_OS_LINUX
524 case ERESTART:
525 #endif
526 if (memcached_success(io_wait(ptr, MEM_READ)))
527 {
528 continue;
529 }
530 return MEMCACHED_IN_PROGRESS;
531
532 /* fall through */
533
534 case ENOTCONN: // Programmer Error
535 WATCHPOINT_ASSERT(0);
536 case ENOTSOCK:
537 WATCHPOINT_ASSERT(0);
538 case EBADF:
539 assert_msg(ptr->fd != INVALID_SOCKET, "Invalid socket state");
540 case EINVAL:
541 case EFAULT:
542 case ECONNREFUSED:
543 default:
544 return MEMCACHED_CONNECTION_FAILURE; // We want this!
545 }
546 }
547 } while (data_read > 0);
548
549 return MEMCACHED_CONNECTION_FAILURE;
550 }
551
552 static bool _io_write(memcached_server_write_instance_st ptr,
553 const void *buffer, size_t length, bool with_flush,
554 size_t& written)
555 {
556 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
557 assert(memcached_is_udp(ptr->root) == false);
558
559 const char *buffer_ptr= static_cast<const char *>(buffer);
560
561 const size_t original_length= length;
562
563 while (length)
564 {
565 char *write_ptr;
566 size_t buffer_end= MEMCACHED_MAX_BUFFER;
567 size_t should_write= buffer_end -ptr->write_buffer_offset;
568 should_write= (should_write < length) ? should_write : length;
569
570 write_ptr= ptr->write_buffer + ptr->write_buffer_offset;
571 memcpy(write_ptr, buffer_ptr, should_write);
572 ptr->write_buffer_offset+= should_write;
573 buffer_ptr+= should_write;
574 length-= should_write;
575
576 if (ptr->write_buffer_offset == buffer_end)
577 {
578 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
579
580 memcached_return_t rc;
581 if (io_flush(ptr, with_flush, rc) == false)
582 {
583 written= original_length -length;
584 return false;
585 }
586 }
587 }
588
589 if (with_flush)
590 {
591 memcached_return_t rc;
592 WATCHPOINT_ASSERT(ptr->fd != INVALID_SOCKET);
593 if (io_flush(ptr, with_flush, rc) == false)
594 {
595 written= original_length -length;
596 return false;
597 }
598 }
599
600 written= original_length -length;
601
602 return true;
603 }
604
605 bool memcached_io_write(memcached_server_write_instance_st ptr)
606 {
607 size_t written;
608 return _io_write(ptr, NULL, 0, true, written);
609 }
610
611 ssize_t memcached_io_write(memcached_server_write_instance_st ptr,
612 const void *buffer, const size_t length, const bool with_flush)
613 {
614 size_t written;
615
616 if (_io_write(ptr, buffer, length, with_flush, written) == false)
617 {
618 return -1;
619 }
620
621 return ssize_t(written);
622 }
623
624 ssize_t memcached_io_writev(memcached_server_write_instance_st ptr,
625 libmemcached_io_vector_st vector[],
626 const size_t number_of, const bool with_flush)
627 {
628 ssize_t total= 0;
629
630 for (size_t x= 0; x < number_of; x++, vector++)
631 {
632 if (vector->length)
633 {
634 size_t written;
635 if ((_io_write(ptr, vector->buffer, vector->length, false, written)) == false)
636 {
637 return -1;
638 }
639 total+= written;
640 }
641 }
642
643 if (with_flush)
644 {
645 if (memcached_io_write(ptr) == false)
646 {
647 return -1;
648 }
649 }
650
651 return total;
652 }
653
654
655 void memcached_io_close(memcached_server_write_instance_st ptr)
656 {
657 if (ptr->fd == INVALID_SOCKET)
658 {
659 return;
660 }
661
662 /* in case of death shutdown to avoid blocking at close() */
663 if (shutdown(ptr->fd, SHUT_RDWR) == SOCKET_ERROR && get_socket_errno() != ENOTCONN)
664 {
665 WATCHPOINT_NUMBER(ptr->fd);
666 WATCHPOINT_ERRNO(get_socket_errno());
667 WATCHPOINT_ASSERT(get_socket_errno());
668 }
669
670 if (closesocket(ptr->fd) == SOCKET_ERROR)
671 {
672 WATCHPOINT_ERRNO(get_socket_errno());
673 }
674 ptr->state= MEMCACHED_SERVER_STATE_NEW;
675 ptr->fd= INVALID_SOCKET;
676 }
677
678 memcached_server_write_instance_st memcached_io_get_readable_server(memcached_st *memc)
679 {
680 #define MAX_SERVERS_TO_POLL 100
681 struct pollfd fds[MAX_SERVERS_TO_POLL];
682 nfds_t host_index= 0;
683
684 for (uint32_t x= 0; x < memcached_server_count(memc) and host_index < MAX_SERVERS_TO_POLL; ++x)
685 {
686 memcached_server_write_instance_st instance= memcached_server_instance_fetch(memc, x);
687
688 if (instance->read_buffer_length > 0) /* I have data in the buffer */
689 {
690 return instance;
691 }
692
693 if (memcached_server_response_count(instance) > 0)
694 {
695 fds[host_index].events = POLLIN;
696 fds[host_index].revents = 0;
697 fds[host_index].fd = instance->fd;
698 ++host_index;
699 }
700 }
701
702 if (host_index < 2)
703 {
704 /* We have 0 or 1 server with pending events.. */
705 for (uint32_t x= 0; x< memcached_server_count(memc); ++x)
706 {
707 memcached_server_write_instance_st instance=
708 memcached_server_instance_fetch(memc, x);
709
710 if (memcached_server_response_count(instance) > 0)
711 {
712 return instance;
713 }
714 }
715
716 return NULL;
717 }
718
719 int error= poll(fds, host_index, memc->poll_timeout);
720 switch (error)
721 {
722 case -1:
723 memcached_set_errno(*memc, get_socket_errno(), MEMCACHED_AT);
724 /* FALLTHROUGH */
725 case 0:
726 break;
727
728 default:
729 for (nfds_t x= 0; x < host_index; ++x)
730 {
731 if (fds[x].revents & POLLIN)
732 {
733 for (uint32_t y= 0; y < memcached_server_count(memc); ++y)
734 {
735 memcached_server_write_instance_st instance= memcached_server_instance_fetch(memc, y);
736
737 if (instance->fd == fds[x].fd)
738 {
739 return instance;
740 }
741 }
742 }
743 }
744 }
745
746 return NULL;
747 }
748
749 /*
750 Eventually we will just kill off the server with the problem.
751 */
752 void memcached_io_reset(memcached_server_write_instance_st ptr)
753 {
754 memcached_quit_server(ptr, true);
755 }
756
757 /**
758 * Read a given number of bytes from the server and place it into a specific
759 * buffer. Reset the IO channel on this server if an error occurs.
760 */
761 memcached_return_t memcached_safe_read(memcached_server_write_instance_st ptr,
762 void *dta,
763 const size_t size)
764 {
765 size_t offset= 0;
766 char *data= static_cast<char *>(dta);
767
768 while (offset < size)
769 {
770 ssize_t nread;
771 memcached_return_t rc;
772
773 while (memcached_continue(rc= memcached_io_read(ptr, data + offset, size - offset, nread))) { };
774
775 if (memcached_failed(rc))
776 {
777 return rc;
778 }
779
780 offset+= size_t(nread);
781 }
782
783 return MEMCACHED_SUCCESS;
784 }
785
786 memcached_return_t memcached_io_readline(memcached_server_write_instance_st ptr,
787 char *buffer_ptr,
788 size_t size,
789 size_t& total_nr)
790 {
791 total_nr= 0;
792 bool line_complete= false;
793
794 while (line_complete == false)
795 {
796 if (ptr->read_buffer_length == 0)
797 {
798 /*
799 * We don't have any data in the buffer, so let's fill the read
800 * buffer. Call the standard read function to avoid duplicating
801 * the logic.
802 */
803 ssize_t nread;
804 memcached_return_t rc= memcached_io_read(ptr, buffer_ptr, 1, nread);
805 if (memcached_failed(rc) and rc == MEMCACHED_IN_PROGRESS)
806 {
807 memcached_quit_server(ptr, true);
808 return memcached_set_error(*ptr, rc, MEMCACHED_AT);
809 }
810 else if (memcached_failed(rc))
811 {
812 return rc;
813 }
814
815 if (*buffer_ptr == '\n')
816 {
817 line_complete= true;
818 }
819
820 ++buffer_ptr;
821 ++total_nr;
822 }
823
824 /* Now let's look in the buffer and copy as we go! */
825 while (ptr->read_buffer_length and total_nr < size and line_complete == false)
826 {
827 *buffer_ptr = *ptr->read_ptr;
828 if (*buffer_ptr == '\n')
829 {
830 line_complete = true;
831 }
832 --ptr->read_buffer_length;
833 ++ptr->read_ptr;
834 ++total_nr;
835 ++buffer_ptr;
836 }
837
838 if (total_nr == size)
839 {
840 return MEMCACHED_PROTOCOL_ERROR;
841 }
842 }
843
844 return MEMCACHED_SUCCESS;
845 }