1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
5 * Copyright (C) 2011 Data Differential, http://datadifferential.com/
6 * Copyright (C) 2006-2009 Brian Aker All rights reserved.
8 * Redistribution and use in source and binary forms, with or without
9 * modification, are permitted provided that the following conditions are
12 * * Redistributions of source code must retain the above copyright
13 * notice, this list of conditions and the following disclaimer.
15 * * Redistributions in binary form must reproduce the above
16 * copyright notice, this list of conditions and the following disclaimer
17 * in the documentation and/or other materials provided with the
20 * * The names of its contributors may not be used to endorse or
21 * promote products derived from this software without specific prior
24 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
25 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
26 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
27 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
28 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
29 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
30 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
31 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
32 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
33 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
34 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
39 This is a partial implementation for fetching/creating memcached_server_st objects.
41 #include <libmemcached/common.h>
44 static inline void _server_init(memcached_server_st
*self
, memcached_st
*root
,
45 const char *hostname
, in_port_t port
,
46 uint32_t weight
, memcached_connection_t type
)
48 self
->options
.is_shutting_down
= false;
49 self
->options
.is_dead
= false;
50 self
->number_of_hosts
= 0;
51 self
->cursor_active
= 0;
54 self
->io_bytes_sent
= 0;
55 self
->server_failure_counter
= 0;
56 self
->weight
= weight
? weight
: 1; // 1 is the default weight value
57 WATCHPOINT_SET(self
->io_wait_count
.read
= 0);
58 WATCHPOINT_SET(self
->io_wait_count
.write
= 0);
59 self
->major_version
= UINT8_MAX
;
60 self
->micro_version
= UINT8_MAX
;
61 self
->minor_version
= UINT8_MAX
;
63 self
->error_messages
= NULL
;
64 self
->read_ptr
= self
->read_buffer
;
65 self
->read_buffer_length
= 0;
66 self
->read_data_length
= 0;
67 self
->write_buffer_offset
= 0;
68 self
->address_info
= NULL
;
69 self
->address_info_next
= NULL
;
71 self
->state
= MEMCACHED_SERVER_STATE_NEW
;
75 self
->next_retry
= root
->retry_timeout
;
83 self
->limit_maxbytes
= 0;
86 strncpy(self
->hostname
, hostname
, NI_MAXHOST
- 1);
94 static memcached_server_st
*_server_create(memcached_server_st
*self
, const memcached_st
*memc
)
98 self
= (memcached_server_st
*)libmemcached_malloc(memc
, sizeof(memcached_server_st
));
101 return NULL
; /* MEMCACHED_MEMORY_ALLOCATION_FAILURE */
103 self
->options
.is_allocated
= true;
107 self
->options
.is_allocated
= false;
110 self
->options
.is_initialized
= true;
115 memcached_server_st
*__server_create_with(const memcached_st
*memc
,
116 memcached_server_write_instance_st self
,
117 const char *hostname
, in_port_t port
,
118 uint32_t weight
, memcached_connection_t type
)
120 self
= _server_create(self
, memc
);
125 _server_init(self
, const_cast<memcached_st
*>(memc
), hostname
, port
, weight
, type
);
128 if (type
== MEMCACHED_CONNECTION_UDP
)
130 self
->write_buffer_offset
= UDP_DATAGRAM_HEADER_LENGTH
;
131 memcached_io_init_udp_header(self
, 0);
137 void __server_free(memcached_server_st
*self
)
139 memcached_quit_server(self
, false);
141 if (self
->address_info
)
143 freeaddrinfo(self
->address_info
);
146 memcached_error_free(*self
);
148 if (memcached_is_allocated(self
))
150 libmemcached_free(self
->root
, self
);
154 self
->options
.is_initialized
= false;
158 void memcached_server_free(memcached_server_st
*self
)
163 if (memcached_server_list_count(self
))
165 memcached_server_list_free(self
);
173 If we do not have a valid object to clone from, we toss an error.
175 memcached_server_st
*memcached_server_clone(memcached_server_st
*destination
,
176 const memcached_server_st
*source
)
178 /* We just do a normal create if source is missing */
182 destination
= __server_create_with(source
->root
, destination
,
183 source
->hostname
, source
->port
, source
->weight
,
187 if (source
->error_messages
)
189 destination
->error_messages
= memcached_error_copy(*source
);
197 memcached_return_t
memcached_server_cursor(const memcached_st
*ptr
,
198 const memcached_server_fn
*callback
,
200 uint32_t number_of_callbacks
)
202 memcached_return_t rc
;
203 if (memcached_failed(rc
= initialize_const_query(ptr
)))
209 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
211 memcached_server_instance_st instance
=
212 memcached_server_instance_by_position(ptr
, x
);
214 for (uint32_t y
= 0; y
< number_of_callbacks
; y
++)
216 memcached_return_t ret
= (*callback
[y
])(ptr
, instance
, context
);
218 if (memcached_failed(ret
))
226 return errors
? MEMCACHED_SOME_ERRORS
: MEMCACHED_SUCCESS
;
229 memcached_return_t
memcached_server_execute(memcached_st
*ptr
,
230 memcached_server_execute_fn callback
,
233 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
235 memcached_server_write_instance_st instance
= memcached_server_instance_fetch(ptr
, x
);
237 unsigned int iferror
= (*callback
)(ptr
, instance
, context
);
243 return MEMCACHED_SUCCESS
;
246 memcached_server_instance_st
memcached_server_by_key(const memcached_st
*ptr
,
249 memcached_return_t
*error
)
251 memcached_return_t rc
;
252 memcached_return_t unused
;
257 if (memcached_failed(rc
= initialize_const_query(ptr
)))
263 if (memcached_failed(rc
= memcached_validate_key_length(key_length
, ptr
->flags
.binary_protocol
)))
269 if (memcached_failed((memcached_key_test(*ptr
, (const char **)&key
, &key_length
, 1))))
271 *error
= MEMCACHED_BAD_KEY_PROVIDED
;
275 uint32_t server_key
= memcached_generate_hash(ptr
, key
, key_length
);
276 return memcached_server_instance_by_position(ptr
, server_key
);
280 void memcached_server_error_reset(memcached_server_st
*self
)
282 WATCHPOINT_ASSERT(self
);
286 memcached_error_free(*self
);
289 memcached_server_instance_st
memcached_server_get_last_disconnect(const memcached_st
*self
)
291 WATCHPOINT_ASSERT(self
);
295 return self
->last_disconnected_server
;
298 uint32_t memcached_servers_set_count(memcached_server_st
*servers
, uint32_t count
)
300 WATCHPOINT_ASSERT(servers
);
304 return servers
->number_of_hosts
= count
;
307 uint32_t memcached_server_count(const memcached_st
*self
)
309 WATCHPOINT_ASSERT(self
);
313 return self
->number_of_hosts
;
316 const char *memcached_server_name(const memcached_server_instance_st self
)
318 WATCHPOINT_ASSERT(self
);
322 return self
->hostname
;
325 in_port_t
memcached_server_port(const memcached_server_instance_st self
)
327 WATCHPOINT_ASSERT(self
);
334 uint32_t memcached_server_response_count(const memcached_server_instance_st self
)
336 WATCHPOINT_ASSERT(self
);
340 return self
->cursor_active
;
343 const char *memcached_server_type(const memcached_server_instance_st ptr
)
349 case MEMCACHED_CONNECTION_TCP
:
352 case MEMCACHED_CONNECTION_UDP
:
355 case MEMCACHED_CONNECTION_UNIX_SOCKET
:
358 case MEMCACHED_CONNECTION_MAX
:
359 case MEMCACHED_CONNECTION_UNKNOWN
: