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 #include <libmemcached/common.h>
43 #include <libmemcached/virtual_bucket.h>
45 uint32_t memcached_generate_hash_value(const char *key
, size_t key_length
, memcached_hash_t hash_algorithm
)
47 return libhashkit_digest(key
, key_length
, (hashkit_hash_algorithm_t
)hash_algorithm
);
50 static inline uint32_t generate_hash(const memcached_st
*ptr
, const char *key
, size_t key_length
)
52 return hashkit_digest(&ptr
->hashkit
, key
, key_length
);
55 static uint32_t dispatch_host(const memcached_st
*ptr
, uint32_t hash
)
57 switch (ptr
->distribution
)
59 case MEMCACHED_DISTRIBUTION_CONSISTENT
:
60 case MEMCACHED_DISTRIBUTION_CONSISTENT_WEIGHTED
:
61 case MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA
:
62 case MEMCACHED_DISTRIBUTION_CONSISTENT_KETAMA_SPY
:
64 uint32_t num
= ptr
->ketama
.continuum_points_counter
;
65 WATCHPOINT_ASSERT(ptr
->ketama
.continuum
);
67 memcached_continuum_item_st
*begin
, *end
, *left
, *right
, *middle
;
68 begin
= left
= ptr
->ketama
.continuum
;
69 end
= right
= ptr
->ketama
.continuum
+ num
;
73 middle
= left
+ (right
- left
) / 2;
74 if (middle
->value
< hash
)
83 case MEMCACHED_DISTRIBUTION_MODULA
:
84 return hash
% memcached_server_count(ptr
);
85 case MEMCACHED_DISTRIBUTION_RANDOM
:
86 return (uint32_t) random() % memcached_server_count(ptr
);
87 case MEMCACHED_DISTRIBUTION_VIRTUAL_BUCKET
:
89 return memcached_virtual_bucket_get(ptr
, hash
);
92 case MEMCACHED_DISTRIBUTION_CONSISTENT_MAX
:
93 WATCHPOINT_ASSERT(0); /* We have added a distribution without extending the logic */
94 return hash
% memcached_server_count(ptr
);
100 One version is public and will not modify the distribution hash, the other will.
102 static inline uint32_t _generate_hash_wrapper(const memcached_st
*ptr
, const char *key
, size_t key_length
)
104 WATCHPOINT_ASSERT(memcached_server_count(ptr
));
106 if (memcached_server_count(ptr
) == 1)
109 if (ptr
->flags
.hash_with_namespace
)
111 size_t temp_length
= memcached_array_size(ptr
->_namespace
) + key_length
;
112 char temp
[MEMCACHED_MAX_KEY
];
114 if (temp_length
> MEMCACHED_MAX_KEY
-1)
117 strncpy(temp
, memcached_array_string(ptr
->_namespace
), memcached_array_size(ptr
->_namespace
));
118 strncpy(temp
+ memcached_array_size(ptr
->_namespace
), key
, key_length
);
120 return generate_hash(ptr
, temp
, temp_length
);
124 return generate_hash(ptr
, key
, key_length
);
128 static inline void _regen_for_auto_eject(memcached_st
*ptr
)
130 if (_is_auto_eject_host(ptr
) && ptr
->ketama
.next_distribution_rebuild
)
134 if (gettimeofday(&now
, NULL
) == 0 and
135 now
.tv_sec
> ptr
->ketama
.next_distribution_rebuild
)
137 run_distribution(ptr
);
142 void memcached_autoeject(memcached_st
*ptr
)
144 _regen_for_auto_eject(ptr
);
147 uint32_t memcached_generate_hash_with_redistribution(memcached_st
*ptr
, const char *key
, size_t key_length
)
149 uint32_t hash
= _generate_hash_wrapper(ptr
, key
, key_length
);
151 _regen_for_auto_eject(ptr
);
153 return dispatch_host(ptr
, hash
);
156 uint32_t memcached_generate_hash(const memcached_st
*ptr
, const char *key
, size_t key_length
)
158 return dispatch_host(ptr
, _generate_hash_wrapper(ptr
, key
, key_length
));
161 const hashkit_st
*memcached_get_hashkit(const memcached_st
*ptr
)
163 return &ptr
->hashkit
;
166 memcached_return_t
memcached_set_hashkit(memcached_st
*self
, hashkit_st
*hashk
)
168 hashkit_free(&self
->hashkit
);
169 hashkit_clone(&self
->hashkit
, hashk
);
171 return MEMCACHED_SUCCESS
;
174 const char * libmemcached_string_hash(memcached_hash_t type
)
176 return libhashkit_string_hash((hashkit_hash_algorithm_t
)type
);