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>
43 static inline void _server_init(memcached_server_st
*self
, memcached_st
*root
,
44 const char *hostname
, in_port_t port
,
45 uint32_t weight
, memcached_connection_t type
)
47 self
->options
.is_shutting_down
= false;
48 self
->options
.is_dead
= false;
49 self
->number_of_hosts
= 0;
50 self
->cursor_active
= 0;
53 self
->io_bytes_sent
= 0;
54 self
->server_failure_counter
= 0;
55 self
->weight
= weight
? weight
: 1; // 1 is the default weight value
56 WATCHPOINT_SET(self
->io_wait_count
.read
= 0);
57 WATCHPOINT_SET(self
->io_wait_count
.write
= 0);
58 self
->major_version
= UINT8_MAX
;
59 self
->micro_version
= UINT8_MAX
;
60 self
->minor_version
= UINT8_MAX
;
62 self
->error_messages
= NULL
;
63 self
->read_ptr
= self
->read_buffer
;
64 self
->read_buffer_length
= 0;
65 self
->read_data_length
= 0;
66 self
->write_buffer_offset
= 0;
67 self
->address_info
= NULL
;
68 self
->address_info_next
= NULL
;
70 self
->state
= MEMCACHED_SERVER_STATE_NEW
;
74 self
->next_retry
= root
->retry_timeout
;
82 self
->limit_maxbytes
= 0;
85 strncpy(self
->hostname
, hostname
, NI_MAXHOST
- 1);
93 static memcached_server_st
*_server_create(memcached_server_st
*self
, const memcached_st
*memc
)
97 self
= (memcached_server_st
*)libmemcached_malloc(memc
, sizeof(memcached_server_st
));
100 return NULL
; /* MEMCACHED_MEMORY_ALLOCATION_FAILURE */
102 self
->options
.is_allocated
= true;
106 self
->options
.is_allocated
= false;
109 self
->options
.is_initialized
= true;
114 memcached_server_st
*__server_create_with(const memcached_st
*memc
,
115 memcached_server_write_instance_st self
,
116 const char *hostname
, in_port_t port
,
117 uint32_t weight
, memcached_connection_t type
)
119 self
= _server_create(self
, memc
);
124 _server_init(self
, const_cast<memcached_st
*>(memc
), hostname
, port
, weight
, type
);
127 if (type
== MEMCACHED_CONNECTION_UDP
)
129 self
->write_buffer_offset
= UDP_DATAGRAM_HEADER_LENGTH
;
130 memcached_io_init_udp_header(self
, 0);
136 void __server_free(memcached_server_st
*self
)
138 memcached_quit_server(self
, false);
140 if (self
->address_info
)
142 freeaddrinfo(self
->address_info
);
145 memcached_error_free(*self
);
147 if (memcached_is_allocated(self
))
149 libmemcached_free(self
->root
, self
);
153 self
->options
.is_initialized
= false;
157 void memcached_server_free(memcached_server_st
*self
)
162 if (memcached_server_list_count(self
))
164 memcached_server_list_free(self
);
172 If we do not have a valid object to clone from, we toss an error.
174 memcached_server_st
*memcached_server_clone(memcached_server_st
*destination
,
175 const memcached_server_st
*source
)
177 /* We just do a normal create if source is missing */
181 destination
= __server_create_with(source
->root
, destination
,
182 source
->hostname
, source
->port
, source
->weight
,
186 if (source
->error_messages
)
188 destination
->error_messages
= memcached_error_copy(*source
);
196 memcached_return_t
memcached_server_cursor(const memcached_st
*ptr
,
197 const memcached_server_fn
*callback
,
199 uint32_t number_of_callbacks
)
201 memcached_return_t rc
;
202 if (memcached_failed(rc
= initialize_const_query(ptr
)))
208 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
210 memcached_server_instance_st instance
=
211 memcached_server_instance_by_position(ptr
, x
);
213 for (uint32_t y
= 0; y
< number_of_callbacks
; y
++)
215 memcached_return_t ret
= (*callback
[y
])(ptr
, instance
, context
);
217 if (memcached_failed(ret
))
225 return errors
? MEMCACHED_SOME_ERRORS
: MEMCACHED_SUCCESS
;
228 memcached_return_t
memcached_server_execute(memcached_st
*ptr
,
229 memcached_server_execute_fn callback
,
232 for (uint32_t x
= 0; x
< memcached_server_count(ptr
); x
++)
234 memcached_server_write_instance_st instance
= memcached_server_instance_fetch(ptr
, x
);
236 unsigned int iferror
= (*callback
)(ptr
, instance
, context
);
242 return MEMCACHED_SUCCESS
;
245 memcached_server_instance_st
memcached_server_by_key(const memcached_st
*ptr
,
248 memcached_return_t
*error
)
250 memcached_return_t rc
;
251 memcached_return_t unused
;
256 if (memcached_failed(rc
= initialize_const_query(ptr
)))
262 if (memcached_failed(rc
= memcached_validate_key_length(key_length
, ptr
->flags
.binary_protocol
)))
268 if (memcached_failed((memcached_key_test(*ptr
, (const char **)&key
, &key_length
, 1))))
270 *error
= MEMCACHED_BAD_KEY_PROVIDED
;
274 uint32_t server_key
= memcached_generate_hash(ptr
, key
, key_length
);
275 return memcached_server_instance_by_position(ptr
, server_key
);
279 void memcached_server_error_reset(memcached_server_st
*self
)
281 WATCHPOINT_ASSERT(self
);
285 memcached_error_free(*self
);
288 memcached_server_instance_st
memcached_server_get_last_disconnect(const memcached_st
*self
)
290 WATCHPOINT_ASSERT(self
);
294 return self
->last_disconnected_server
;
297 uint32_t memcached_servers_set_count(memcached_server_st
*servers
, uint32_t count
)
299 WATCHPOINT_ASSERT(servers
);
303 return servers
->number_of_hosts
= count
;
306 uint32_t memcached_server_count(const memcached_st
*self
)
308 WATCHPOINT_ASSERT(self
);
312 return self
->number_of_hosts
;
315 const char *memcached_server_name(const memcached_server_instance_st self
)
317 WATCHPOINT_ASSERT(self
);
321 return self
->hostname
;
324 in_port_t
memcached_server_port(const memcached_server_instance_st self
)
326 WATCHPOINT_ASSERT(self
);
333 uint32_t memcached_server_response_count(const memcached_server_instance_st self
)
335 WATCHPOINT_ASSERT(self
);
339 return self
->cursor_active
;
342 const char *memcached_server_type(const memcached_server_instance_st ptr
)
348 case MEMCACHED_CONNECTION_TCP
:
351 case MEMCACHED_CONNECTION_UDP
:
354 case MEMCACHED_CONNECTION_UNIX_SOCKET
:
357 case MEMCACHED_CONNECTION_MAX
:
358 case MEMCACHED_CONNECTION_UNKNOWN
: