1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker
9 * Redistribution and use in source and binary forms, with or without
10 * modification, are permitted provided that the following conditions are
13 * * Redistributions of source code must retain the above copyright
14 * notice, this list of conditions and the following disclaimer.
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
21 * * The names of its contributors may not be used to endorse or
22 * promote products derived from this software without specific prior
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.
40 #include <libmemcached/common.h>
42 enum memc_read_or_write
{
47 static ssize_t
io_flush(memcached_server_write_instance_st ptr
,
48 const bool with_flush
,
49 memcached_return_t
*error
);
50 static void increment_udp_message_id(memcached_server_write_instance_st ptr
);
52 static memcached_return_t
io_wait(memcached_server_write_instance_st ptr
,
53 memc_read_or_write read_or_write
)
59 if (read_or_write
== MEM_WRITE
) /* write */
62 WATCHPOINT_SET(ptr
->io_wait_count
.write
++);
66 WATCHPOINT_SET(ptr
->io_wait_count
.read
++);
70 ** We are going to block on write, but at least on Solaris we might block
71 ** on write if we haven't read anything from our input buffer..
72 ** Try to purge the input buffer if we don't do any flow control in the
73 ** application layer (just sending a lot of data etc)
74 ** The test is moved down in the purge function to avoid duplication of
77 if (read_or_write
== MEM_WRITE
)
79 memcached_return_t rc
= memcached_purge(ptr
);
80 if (rc
!= MEMCACHED_SUCCESS
&& rc
!= MEMCACHED_STORED
)
82 return MEMCACHED_FAILURE
;
86 if (ptr
->root
->poll_timeout
== 0) // Mimic 0 causes timeout behavior (not all platforms do this)
88 return memcached_set_error(*ptr
, MEMCACHED_TIMEOUT
, MEMCACHED_AT
);
92 while (--loop_max
) // While loop is for ERESTART or EINTR
95 int error
= poll(&fds
, 1, ptr
->root
->poll_timeout
);
99 WATCHPOINT_IF_LABELED_NUMBER(read_or_write
&& loop_max
< 4, "read() times we had to loop, decremented down from 5", loop_max
);
100 WATCHPOINT_IF_LABELED_NUMBER(!read_or_write
&& loop_max
< 4, "write() times we had to loop, decremented down from 5", loop_max
);
102 return MEMCACHED_SUCCESS
;
104 case 0: // Timeout occured, we let the while() loop do its thing.
105 return memcached_set_error(*ptr
, MEMCACHED_TIMEOUT
, MEMCACHED_AT
);
108 WATCHPOINT_ERRNO(get_socket_errno());
109 switch (get_socket_errno())
111 #ifdef TARGET_OS_LINUX
119 return memcached_set_error(*ptr
, MEMCACHED_MEMORY_ALLOCATION_FAILURE
, MEMCACHED_AT
);
122 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"));
125 if (fds
.revents
& POLLERR
)
128 socklen_t len
= sizeof (err
);
129 (void)getsockopt(ptr
->fd
, SOL_SOCKET
, SO_ERROR
, &err
, &len
);
130 memcached_set_errno(*ptr
, (err
== 0) ? get_socket_errno() : err
, MEMCACHED_AT
);
134 memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
136 memcached_quit_server(ptr
, true);
138 return memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
143 memcached_quit_server(ptr
, true);
145 return memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
148 memcached_return_t
memcached_io_wait_for_write(memcached_server_write_instance_st ptr
)
150 return io_wait(ptr
, MEM_WRITE
);
154 * Try to fill the input buffer for a server with as much
157 * @param ptr the server to pack
159 static bool repack_input_buffer(memcached_server_write_instance_st ptr
)
161 if (ptr
->read_ptr
!= ptr
->read_buffer
)
163 /* Move all of the data to the beginning of the buffer so
164 ** that we can fit more data into the buffer...
166 memmove(ptr
->read_buffer
, ptr
->read_ptr
, ptr
->read_buffer_length
);
167 ptr
->read_ptr
= ptr
->read_buffer
;
168 ptr
->read_data_length
= ptr
->read_buffer_length
;
171 /* There is room in the buffer, try to fill it! */
172 if (ptr
->read_buffer_length
!= MEMCACHED_MAX_BUFFER
)
175 /* Just try a single read to grab what's available */
176 ssize_t nr
= recv(ptr
->fd
,
177 ptr
->read_ptr
+ ptr
->read_data_length
,
178 MEMCACHED_MAX_BUFFER
- ptr
->read_data_length
,
185 switch (get_socket_errno())
194 #ifdef TARGET_OS_LINUX
197 break; // No IO is fine, we can just move on
200 memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
205 case 0: // Shutdown on the socket has occurred
207 memcached_set_error(*ptr
, MEMCACHED_CONNECTION_FAILURE
, MEMCACHED_AT
);
213 ptr
->read_data_length
+= size_t(nr
);
214 ptr
->read_buffer_length
+= size_t(nr
);
225 * If the we have callbacks connected to this server structure
226 * we may start process the input queue and fire the callbacks
227 * for the incomming messages. This function is _only_ called
228 * when the input buffer is full, so that we _know_ that we have
229 * at least _one_ message to process.
231 * @param ptr the server to star processing iput messages for
232 * @return true if we processed anything, false otherwise
234 static bool process_input_buffer(memcached_server_write_instance_st ptr
)
237 ** We might be able to process some of the response messages if we
238 ** have a callback set up
240 if (ptr
->root
->callbacks
!= NULL
&& ptr
->root
->flags
.use_udp
== false)
243 * We might have responses... try to read them out and fire
246 memcached_callback_st cb
= *ptr
->root
->callbacks
;
248 memcached_set_processing_input((memcached_st
*)ptr
->root
, true);
250 char buffer
[MEMCACHED_DEFAULT_COMMAND_SIZE
];
251 memcached_return_t error
;
252 memcached_st
*root
= (memcached_st
*)ptr
->root
;
253 error
= memcached_response(ptr
, buffer
, sizeof(buffer
),
256 memcached_set_processing_input(root
, false);
258 if (error
== MEMCACHED_SUCCESS
)
260 for (unsigned int x
= 0; x
< cb
.number_of_callback
; x
++)
262 error
= (*cb
.callback
[x
])(ptr
->root
, &root
->result
, cb
.context
);
263 if (error
!= MEMCACHED_SUCCESS
)
267 /* @todo what should I do with the error message??? */
269 /* @todo what should I do with other error messages?? */
276 memcached_return_t
memcached_io_read(memcached_server_write_instance_st ptr
,
277 void *buffer
, size_t length
, ssize_t
*nread
)
279 assert_msg(ptr
, "Programmer error, memcached_io_read() recieved an invalid memcached_server_write_instance_st"); // Programmer error
280 char *buffer_ptr
= static_cast<char *>(buffer
);
282 if (ptr
->fd
== INVALID_SOCKET
)
284 assert_msg(int(ptr
->state
) <= int(MEMCACHED_SERVER_STATE_ADDRINFO
), "Programmer error, invalid socket state");
285 return MEMCACHED_CONNECTION_FAILURE
;
290 if (not ptr
->read_buffer_length
)
295 data_read
= recv(ptr
->fd
, ptr
->read_buffer
, MEMCACHED_MAX_BUFFER
, MSG_DONTWAIT
);
296 if (data_read
== SOCKET_ERROR
)
298 switch (get_socket_errno())
300 case EINTR
: // We just retry
303 case ETIMEDOUT
: // OSX
308 #ifdef TARGET_OS_LINUX
311 if (memcached_success(io_wait(ptr
, MEM_READ
)))
315 return MEMCACHED_IN_PROGRESS
;
319 case ENOTCONN
: // Programmer Error
320 WATCHPOINT_ASSERT(0);
322 WATCHPOINT_ASSERT(0);
324 assert_msg(ptr
->fd
!= INVALID_SOCKET
, "Programmer error, invalid socket");
330 memcached_quit_server(ptr
, true);
332 return memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
336 else if (data_read
== 0)
339 EOF. Any data received so far is incomplete
340 so discard it. This always reads by byte in case of TCP
341 and protocol enforcement happens at memcached_response()
342 looking for '\n'. We do not care for UDB which requests 8 bytes
343 at once. Generally, this means that connection went away. Since
344 for blocking I/O we do not return 0 and for non-blocking case
345 it will return EGAIN if data is not immediatly available.
347 WATCHPOINT_STRING("We had a zero length recv()");
348 memcached_quit_server(ptr
, true);
350 return memcached_set_error(*ptr
, MEMCACHED_UNKNOWN_READ_FAILURE
, MEMCACHED_AT
);
352 } while (data_read
<= 0);
354 ptr
->io_bytes_sent
= 0;
355 ptr
->read_data_length
= (size_t) data_read
;
356 ptr
->read_buffer_length
= (size_t) data_read
;
357 ptr
->read_ptr
= ptr
->read_buffer
;
364 difference
= (length
> ptr
->read_buffer_length
) ? ptr
->read_buffer_length
: length
;
366 memcpy(buffer_ptr
, ptr
->read_ptr
, difference
);
367 length
-= difference
;
368 ptr
->read_ptr
+= difference
;
369 ptr
->read_buffer_length
-= difference
;
370 buffer_ptr
+= difference
;
374 *buffer_ptr
= *ptr
->read_ptr
;
376 ptr
->read_buffer_length
--;
382 ptr
->server_failure_counter
= 0;
383 *nread
= (ssize_t
)(buffer_ptr
- (char*)buffer
);
384 return MEMCACHED_SUCCESS
;
387 memcached_return_t
memcached_io_slurp(memcached_server_write_instance_st ptr
)
389 assert_msg(ptr
, "Programmer error, invalid memcached_server_write_instance_st");
391 if (ptr
->fd
== INVALID_SOCKET
)
393 assert_msg(int(ptr
->state
) <= int(MEMCACHED_SERVER_STATE_ADDRINFO
), "Invalid socket state");
394 return MEMCACHED_CONNECTION_FAILURE
;
398 char buffer
[MEMCACHED_MAX_BUFFER
];
401 data_read
= recv(ptr
->fd
, ptr
->read_buffer
, sizeof(buffer
), MSG_DONTWAIT
);
402 if (data_read
== SOCKET_ERROR
)
404 switch (get_socket_errno())
406 case EINTR
: // We just retry
409 case ETIMEDOUT
: // OSX
414 #ifdef TARGET_OS_LINUX
417 if (memcached_success(io_wait(ptr
, MEM_READ
)))
421 return MEMCACHED_IN_PROGRESS
;
425 case ENOTCONN
: // Programmer Error
426 WATCHPOINT_ASSERT(0);
428 WATCHPOINT_ASSERT(0);
430 assert_msg(ptr
->fd
!= INVALID_SOCKET
, "Invalid socket state");
435 return MEMCACHED_CONNECTION_FAILURE
; // We want this!
438 } while (data_read
> 0);
440 return MEMCACHED_CONNECTION_FAILURE
;
443 static ssize_t
_io_write(memcached_server_write_instance_st ptr
,
444 const void *buffer
, size_t length
, bool with_flush
)
446 size_t original_length
;
447 const char* buffer_ptr
;
449 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
451 original_length
= length
;
452 buffer_ptr
= static_cast<const char *>(buffer
);
460 if (ptr
->type
== MEMCACHED_CONNECTION_UDP
)
462 //UDP does not support partial writes
463 buffer_end
= MAX_UDP_DATAGRAM_LENGTH
;
464 should_write
= length
;
465 if (ptr
->write_buffer_offset
+ should_write
> buffer_end
)
472 buffer_end
= MEMCACHED_MAX_BUFFER
;
473 should_write
= buffer_end
- ptr
->write_buffer_offset
;
474 should_write
= (should_write
< length
) ? should_write
: length
;
477 write_ptr
= ptr
->write_buffer
+ ptr
->write_buffer_offset
;
478 memcpy(write_ptr
, buffer_ptr
, should_write
);
479 ptr
->write_buffer_offset
+= should_write
;
480 buffer_ptr
+= should_write
;
481 length
-= should_write
;
483 if (ptr
->write_buffer_offset
== buffer_end
&& ptr
->type
!= MEMCACHED_CONNECTION_UDP
)
485 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
487 memcached_return_t rc
;
488 ssize_t sent_length
= io_flush(ptr
, with_flush
, &rc
);
489 if (sent_length
== -1)
494 /* If io_flush calls memcached_purge, sent_length may be 0 */
495 unlikely (sent_length
!= 0)
497 WATCHPOINT_ASSERT(sent_length
== (ssize_t
)buffer_end
);
504 memcached_return_t rc
;
505 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
506 if (io_flush(ptr
, with_flush
, &rc
) == -1)
512 return (ssize_t
) original_length
;
515 ssize_t
memcached_io_write(memcached_server_write_instance_st ptr
,
516 const void *buffer
, size_t length
, bool with_flush
)
518 return _io_write(ptr
, buffer
, length
, with_flush
);
521 ssize_t
memcached_io_writev(memcached_server_write_instance_st ptr
,
522 const struct libmemcached_io_vector_st
*vector
,
523 size_t number_of
, bool with_flush
)
527 for (size_t x
= 0; x
< number_of
; x
++, vector
++)
531 if ((returnable
= _io_write(ptr
, vector
->buffer
, vector
->length
, false)) == -1)
540 if (memcached_io_write(ptr
, NULL
, 0, true) == -1)
550 void memcached_io_close(memcached_server_write_instance_st ptr
)
552 if (ptr
->fd
== INVALID_SOCKET
)
557 /* in case of death shutdown to avoid blocking at close() */
558 if (shutdown(ptr
->fd
, SHUT_RDWR
) == SOCKET_ERROR
&& get_socket_errno() != ENOTCONN
)
560 WATCHPOINT_NUMBER(ptr
->fd
);
561 WATCHPOINT_ERRNO(get_socket_errno());
562 WATCHPOINT_ASSERT(get_socket_errno());
565 if (closesocket(ptr
->fd
) == SOCKET_ERROR
)
567 WATCHPOINT_ERRNO(get_socket_errno());
569 ptr
->state
= MEMCACHED_SERVER_STATE_NEW
;
570 ptr
->fd
= INVALID_SOCKET
;
573 memcached_server_write_instance_st
memcached_io_get_readable_server(memcached_st
*memc
)
575 #define MAX_SERVERS_TO_POLL 100
576 struct pollfd fds
[MAX_SERVERS_TO_POLL
];
577 unsigned int host_index
= 0;
579 for (uint32_t x
= 0; x
< memcached_server_count(memc
) && host_index
< MAX_SERVERS_TO_POLL
; ++x
)
581 memcached_server_write_instance_st instance
=
582 memcached_server_instance_fetch(memc
, x
);
584 if (instance
->read_buffer_length
> 0) /* I have data in the buffer */
587 if (memcached_server_response_count(instance
) > 0)
589 fds
[host_index
].events
= POLLIN
;
590 fds
[host_index
].revents
= 0;
591 fds
[host_index
].fd
= instance
->fd
;
598 /* We have 0 or 1 server with pending events.. */
599 for (uint32_t x
= 0; x
< memcached_server_count(memc
); ++x
)
601 memcached_server_write_instance_st instance
=
602 memcached_server_instance_fetch(memc
, x
);
604 if (memcached_server_response_count(instance
) > 0)
613 int error
= poll(fds
, host_index
, memc
->poll_timeout
);
617 memcached_set_errno(*memc
, get_socket_errno(), MEMCACHED_AT
);
623 for (size_t x
= 0; x
< host_index
; ++x
)
625 if (fds
[x
].revents
& POLLIN
)
627 for (uint32_t y
= 0; y
< memcached_server_count(memc
); ++y
)
629 memcached_server_write_instance_st instance
=
630 memcached_server_instance_fetch(memc
, y
);
632 if (instance
->fd
== fds
[x
].fd
)
642 static ssize_t
io_flush(memcached_server_write_instance_st ptr
,
643 const bool with_flush
,
644 memcached_return_t
*error
)
647 ** We might want to purge the input buffer if we haven't consumed
648 ** any output yet... The test for the limits is the purge is inline
649 ** in the purge function to avoid duplicating the logic..
652 memcached_return_t rc
;
653 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
654 rc
= memcached_purge(ptr
);
656 if (rc
!= MEMCACHED_SUCCESS
&& rc
!= MEMCACHED_STORED
)
662 size_t return_length
;
663 char *local_write_ptr
= ptr
->write_buffer
;
664 size_t write_length
= ptr
->write_buffer_offset
;
666 *error
= MEMCACHED_SUCCESS
;
668 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
670 // UDP Sanity check, make sure that we are not sending somthing too big
671 if (ptr
->type
== MEMCACHED_CONNECTION_UDP
&& write_length
> MAX_UDP_DATAGRAM_LENGTH
)
673 *error
= MEMCACHED_WRITE_FAILURE
;
677 if (ptr
->write_buffer_offset
== 0 || (ptr
->type
== MEMCACHED_CONNECTION_UDP
678 && ptr
->write_buffer_offset
== UDP_DATAGRAM_HEADER_LENGTH
))
683 /* Looking for memory overflows */
685 if (write_length
== MEMCACHED_MAX_BUFFER
)
686 WATCHPOINT_ASSERT(ptr
->write_buffer
== local_write_ptr
);
687 WATCHPOINT_ASSERT((ptr
->write_buffer
+ MEMCACHED_MAX_BUFFER
) >= (local_write_ptr
+ write_length
));
693 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
694 WATCHPOINT_ASSERT(write_length
> 0);
696 if (ptr
->type
== MEMCACHED_CONNECTION_UDP
)
697 increment_udp_message_id(ptr
);
699 WATCHPOINT_ASSERT(ptr
->fd
!= INVALID_SOCKET
);
702 sent_length
= send(ptr
->fd
, local_write_ptr
, write_length
, MSG_NOSIGNAL
|MSG_DONTWAIT
);
706 sent_length
= send(ptr
->fd
, local_write_ptr
, write_length
, MSG_NOSIGNAL
|MSG_DONTWAIT
|MSG_MORE
);
709 if (sent_length
== SOCKET_ERROR
)
711 memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
712 #if 0 // @todo I should look at why we hit this bit of code hard frequently
713 WATCHPOINT_ERRNO(get_socket_errno());
714 WATCHPOINT_NUMBER(get_socket_errno());
716 switch (get_socket_errno())
726 * We may be blocked on write because the input buffer
727 * is full. Let's check if we have room in our input
728 * buffer for more data and retry the write before
731 if (repack_input_buffer(ptr
) or
732 process_input_buffer(ptr
))
737 memcached_return_t rc
= io_wait(ptr
, MEM_WRITE
);
738 if (memcached_success(rc
))
742 else if (rc
== MEMCACHED_TIMEOUT
)
744 *error
= memcached_set_error(*ptr
, MEMCACHED_TIMEOUT
, MEMCACHED_AT
);
748 memcached_quit_server(ptr
, true);
749 *error
= memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
755 memcached_quit_server(ptr
, true);
756 *error
= memcached_set_errno(*ptr
, get_socket_errno(), MEMCACHED_AT
);
757 WATCHPOINT_ASSERT(ptr
->fd
== -1);
762 if (ptr
->type
== MEMCACHED_CONNECTION_UDP
and
763 (size_t)sent_length
!= write_length
)
765 memcached_quit_server(ptr
, true);
766 *error
= memcached_set_error(*ptr
, MEMCACHED_WRITE_FAILURE
, MEMCACHED_AT
);
770 ptr
->io_bytes_sent
+= (uint32_t) sent_length
;
772 local_write_ptr
+= sent_length
;
773 write_length
-= (uint32_t) sent_length
;
774 return_length
+= (uint32_t) sent_length
;
777 WATCHPOINT_ASSERT(write_length
== 0);
778 // Need to study this assert() WATCHPOINT_ASSERT(return_length ==
779 // ptr->write_buffer_offset);
781 // if we are a udp server, the begining of the buffer is reserverd for
782 // the upd frame header
783 if (ptr
->type
== MEMCACHED_CONNECTION_UDP
)
784 ptr
->write_buffer_offset
= UDP_DATAGRAM_HEADER_LENGTH
;
786 ptr
->write_buffer_offset
= 0;
788 return (ssize_t
) return_length
;
792 Eventually we will just kill off the server with the problem.
794 void memcached_io_reset(memcached_server_write_instance_st ptr
)
796 memcached_quit_server(ptr
, true);
800 * Read a given number of bytes from the server and place it into a specific
801 * buffer. Reset the IO channel on this server if an error occurs.
803 memcached_return_t
memcached_safe_read(memcached_server_write_instance_st ptr
,
808 char *data
= static_cast<char *>(dta
);
810 while (offset
< size
)
813 memcached_return_t rc
;
815 while (memcached_continue(rc
= memcached_io_read(ptr
, data
+ offset
, size
- offset
, &nread
))) { };
817 if (memcached_failed(rc
))
822 offset
+= (size_t) nread
;
825 return MEMCACHED_SUCCESS
;
828 memcached_return_t
memcached_io_readline(memcached_server_write_instance_st ptr
,
832 bool line_complete
= false;
835 while (not line_complete
)
837 if (ptr
->read_buffer_length
== 0)
840 * We don't have any data in the buffer, so let's fill the read
841 * buffer. Call the standard read function to avoid duplicating
845 memcached_return_t rc
= memcached_io_read(ptr
, buffer_ptr
, 1, &nread
);
846 if (memcached_failed(rc
) and rc
== MEMCACHED_IN_PROGRESS
)
848 memcached_quit_server(ptr
, true);
849 return memcached_set_error(*ptr
, rc
, MEMCACHED_AT
);
851 else if (memcached_failed(rc
))
856 if (*buffer_ptr
== '\n')
863 /* Now let's look in the buffer and copy as we go! */
864 while (ptr
->read_buffer_length
&& total_nr
< size
&& !line_complete
)
866 *buffer_ptr
= *ptr
->read_ptr
;
867 if (*buffer_ptr
== '\n')
868 line_complete
= true;
869 --ptr
->read_buffer_length
;
875 if (total_nr
== size
)
876 return MEMCACHED_PROTOCOL_ERROR
;
879 return MEMCACHED_SUCCESS
;
883 * The udp request id consists of two seperate sections
885 * 2) The message number
886 * The thread id should only be set when the memcached_st struct is created
887 * and should not be changed.
889 * The message num is incremented for each new message we send, this function
890 * extracts the message number from message_id, increments it and then
891 * writes the new value back into the header
893 static void increment_udp_message_id(memcached_server_write_instance_st ptr
)
895 struct udp_datagram_header_st
*header
= (struct udp_datagram_header_st
*)ptr
->write_buffer
;
896 uint16_t cur_req
= get_udp_datagram_request_id(header
);
897 int msg_num
= get_msg_num_from_request_id(cur_req
);
898 int thread_id
= get_thread_id_from_request_id(cur_req
);
900 if (((++msg_num
) & UDP_REQUEST_ID_THREAD_MASK
) != 0)
903 header
->request_id
= htons((uint16_t) (thread_id
| msg_num
));
906 memcached_return_t
memcached_io_init_udp_header(memcached_server_write_instance_st ptr
, uint16_t thread_id
)
908 if (thread_id
> UDP_REQUEST_ID_MAX_THREAD_ID
)
909 return MEMCACHED_FAILURE
;
911 struct udp_datagram_header_st
*header
= (struct udp_datagram_header_st
*)ptr
->write_buffer
;
912 header
->request_id
= htons((uint16_t) (generate_udp_request_thread_id(thread_id
)));
913 header
->num_datagrams
= htons(1);
914 header
->sequence_number
= htons(0);
916 return MEMCACHED_SUCCESS
;