-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathconsistent_hashing.c
455 lines (365 loc) · 13.4 KB
/
consistent_hashing.c
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
/* -*- Mode: C; tab-width: 4 -*- */
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2009 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 of the PHP license, |
| that is bundled with this package in the file LICENSE, and is |
| available through the world-wide-web at the following url: |
| http://www.php.net/license/3_01.txt |
| If you did not receive a copy of the PHP license and are unable to |
| obtain it through the world-wide-web, please send a note to |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Author: Simon Effenberg <[email protected]> |
+----------------------------------------------------------------------+
*/
#include "php_consistent_hashing.h"
zend_class_entry *php_consistent_hashing_sc_entry;
#define PHP_CONSISTENT_HASHING_SC_NAME "ConsistentHashing"
static HashTable *ht_ch_targets;
static HashTable *ht_ch_targetpoints;
static int le_ch_hashtables;
static function_entry php_consistent_hashing_sc_functions[] = {
PHP_ME(ConsistentHashing, __construct, NULL, ZEND_ACC_PUBLIC)
PHP_ME(ConsistentHashing, __destruct, NULL, ZEND_ACC_PUBLIC)
PHP_ME(ConsistentHashing, addTarget, NULL, ZEND_ACC_PUBLIC)
PHP_ME(ConsistentHashing, getTarget, NULL, ZEND_ACC_PUBLIC)
{ NULL, NULL, NULL }
};
PHP_MINIT_FUNCTION(consistent_hashing)
{
zend_class_entry ce;
INIT_CLASS_ENTRY(ce, PHP_CONSISTENT_HASHING_SC_NAME,
php_consistent_hashing_sc_functions);
php_consistent_hashing_sc_entry = zend_register_internal_class(&ce TSRMLS_CC);
ht_ch_targets = pemalloc(sizeof(HashTable), 1);
ht_ch_targetpoints = pemalloc(sizeof(HashTable), 1);
if (zend_hash_init(ht_ch_targets, 32, NULL,
NULL, 1) != SUCCESS) { /* FIXME destructor should be defined and created to cleanup the hash */
pefree(ht_ch_targets, 1);
return FAILURE;
}
/*
* initial we expect ~ 3 redis servers with 2 weighted 1 and 1 weighted 2
* so that with 160 points per weight we get 4*160 points
*/
if (zend_hash_init(ht_ch_targetpoints, 4*160, NULL,
NULL, 1) != SUCCESS) { /* FIXME destructor should be defined and created to cleanup the hash */
pefree(ht_ch_targetpoints, 1);
return FAILURE;
}
le_ch_hashtables = zend_register_list_destructors_ex(
ch_destructor_hashtables,
NULL,
"ConsistentHashing Hashtables Buffer",
module_number
);
return SUCCESS;
}
zend_module_entry consistent_hashing_module_entry = {
#if ZEND_MODULE_API_NO >= 20010901
STANDARD_MODULE_HEADER,
#endif
PHP_CONSISTENT_HASHING_EXTNAME,
NULL, /* FUNCTIONS */
PHP_MINIT(consistent_hashing), /* MINIT */
NULL, /* MSHUTDOWN */
NULL, /* RINIT */
NULL, /* RSHUTDOWN */
NULL, /* MINFO */
#if ZEND_MODULE_API_NO >= 20010901
PHP_CONSISTENT_HASHING_EXTVER,
#endif
STANDARD_MODULE_PROPERTIES
};
#ifdef COMPILE_DL_CONSISTENT_HASHING
ZEND_GET_MODULE(consistent_hashing)
#endif
PHP_METHOD(ConsistentHashing, __construct)
{
/* Temporary saved targets/points to know
* if a target was added in a single request so that a ->getTarget() won't
* return anything if no target was added nor return a target never added in
* this request but in a previous one
*/
HashTable *ht_ch_targets_in_request;
HashTable *ht_ch_targetpoints_in_request;
zval *object;
int num_of_elements;
int id;
ht_ch_targets_in_request = emalloc(sizeof(HashTable));
ht_ch_targetpoints_in_request = emalloc(sizeof(HashTable));
if (zend_hash_init(ht_ch_targets_in_request, 32, NULL,
NULL, 1) != SUCCESS) { /* no destructor because the values are persistent whereas the hashtable is not */
efree(ht_ch_targets_in_request);
return;
}
num_of_elements = zend_hash_num_elements(ht_ch_targetpoints);
if (num_of_elements == 0)
num_of_elements = 4*160;
if (zend_hash_init(ht_ch_targetpoints_in_request, num_of_elements, NULL,
NULL, 1) != SUCCESS) { /* no destructor because the values are persistent whereas the hashtable is not */
efree(ht_ch_targetpoints_in_request);
return;
}
object = getThis();
id = zend_list_insert(ht_ch_targets_in_request, le_ch_hashtables);
add_property_resource(object, "targets_in_request", id);
id = zend_list_insert(ht_ch_targetpoints_in_request, le_ch_hashtables);
add_property_resource(object, "targetpoints_in_request", id);
}
PHP_METHOD(ConsistentHashing, __destruct)
{
HashTable *dummy_ht;
zval *object;
int id;
object = getThis();
id = ht_get_array(object, &dummy_ht, "targets_in_request");
if (id >= 0)
zend_list_delete(id);
id = ht_get_array(object, &dummy_ht, "targetpoints_in_request");
if (id >= 0)
zend_list_delete(id);
}
PHP_METHOD(ConsistentHashing, addTarget)
{
HashTable *ht_ch_targets_in_request;
HashTable *ht_ch_targetpoints_in_request;
HashPosition position;
PointTarget *pair;
zval *object;
char *target;
int target_len;
int weight = 1;
if (zend_parse_method_parameters(ZEND_NUM_ARGS() TSRMLS_CC, getThis(),
"Os|l!", &object, php_consistent_hashing_sc_entry, &target, &target_len, &weight) == FAILURE) {
zend_throw_exception(NULL, "addTarget expects at least one parameter for the target", 0 TSRMLS_CC);
return;
}
if (weight < 1) {
zend_throw_exception(NULL, "weight has to be an integer greater than 0", 0 TSRMLS_CC);
return;
}
if (target_len <= 0) {
zend_throw_exception(NULL, "the target can't be an empty string", 0 TSRMLS_CC);
return;
}
if (ht_get_array(object, &ht_ch_targets_in_request, "targets_in_request") < 0) {
zend_throw_exception(NULL, "unexpected error occurred .. don't know what to do", 0 TSRMLS_CC);
return;
}
if (ht_get_array(object, &ht_ch_targetpoints_in_request, "targetpoints_in_request") < 0) {
zend_throw_exception(NULL, "unexpected error occurred .. don't know what to do", 0 TSRMLS_CC);
return;
}
if (!zend_hash_exists(ht_ch_targets_in_request, target, target_len)) {
if (!zend_hash_exists(ht_ch_targets, target, target_len)) {
if (ht_target_init(target, target_len, weight TSRMLS_CC) == FAILURE) {
/* should never go here */
RETURN_NULL();
}
if (!zend_hash_update(ht_ch_targets, target, target_len, &"d", strlen("d"), NULL) == FAILURE) {
/* should never go here */
RETURN_NULL();
}
}
if (!zend_hash_update(ht_ch_targets_in_request, target, target_len, &"d", strlen("d"), NULL) == FAILURE) {
/* should never go here */
RETURN_NULL();
}
zend_hash_clean(ht_ch_targetpoints_in_request);
for (zend_hash_internal_pointer_reset_ex(ht_ch_targetpoints, &position);
zend_hash_has_more_elements_ex(ht_ch_targetpoints, &position) == SUCCESS;
zend_hash_move_forward_ex(ht_ch_targetpoints, &position)) {
zend_hash_get_current_data_ex(ht_ch_targetpoints, (void *) &pair, &position);
if (zend_hash_exists(ht_ch_targets_in_request, pair->target, pair->target_len)) {
if (zend_hash_next_index_insert(ht_ch_targetpoints_in_request,
pair, sizeof(PointTarget), NULL) == FAILURE) {
/* should never go here */
RETURN_NULL();
}
}
}
}
}
PHP_METHOD(ConsistentHashing, getTarget)
{
char *target;
char *key;
int key_len;
uint point;
if (zend_parse_parameters(ZEND_NUM_ARGS() TSRMLS_CC,
"s", &key, &key_len) == FAILURE) {
zend_throw_exception(NULL, "getTarget needs a key to search for", 0 TSRMLS_CC);
RETURN_NULL();
}
point = ht_hash_object(key, key_len);
if ((target = ht_find_target(getThis(), point)) == NULL) {
RETURN_NULL();
}
ZVAL_STRING(return_value, target, 1);
}
PHPAPI char * ht_find_target(zval *object, uint point) {
HashTable *ht_ch_targets_in_request;
HashTable *ht_ch_targetpoints_in_request;
PointTarget *pair;
int points;
int targets;
int lower_point;
int middle_point;
int upper_point;
int actual_point;
int left_point;
char *target;
if (ht_get_array(object, &ht_ch_targets_in_request, "targets_in_request") < 0) {
return NULL;
}
if (ht_get_array(object, &ht_ch_targetpoints_in_request, "targetpoints_in_request") < 0) {
return NULL;
}
points = zend_hash_num_elements(ht_ch_targetpoints_in_request);
targets = zend_hash_num_elements(ht_ch_targets_in_request);
lower_point = 0;
upper_point = points;
if (targets == 0)
return NULL;
while(1) {
middle_point = (lower_point + upper_point) / 2;
if (middle_point == points) {
if (zend_hash_index_find(ht_ch_targetpoints_in_request, 0, (void *) &pair) != SUCCESS) {
zend_error(E_WARNING, "searching in array wasn't successful while trying to obtain the first index");
return NULL;
}
return pair->target;
}
if (zend_hash_index_find(ht_ch_targetpoints_in_request, middle_point, (void *) &pair) != SUCCESS) {
zend_error(E_WARNING, "searching in array wasn't successful while trying to obtain the index %d", middle_point);
return NULL;
}
actual_point = pair->point;
target = pair->target;
if (middle_point == 0)
left_point = 0;
else {
if (zend_hash_index_find(ht_ch_targetpoints_in_request, middle_point - 1, (void *) &pair) != SUCCESS) {
zend_error(E_WARNING, "searching in array wasn't successful while trying to obtain the index %d", middle_point - 1);
return NULL;
}
left_point = pair->point;
}
if (left_point < point && point <= actual_point) {
return target;
}
if (actual_point < point)
lower_point = middle_point + 1;
else
upper_point = middle_point - 1;
if (lower_point > upper_point) {
if (zend_hash_index_find(ht_ch_targetpoints_in_request, 0, (void *) &pair) != SUCCESS) {
zend_error(E_WARNING, "searching in array wasn't successful while trying to obtain the first index");
return NULL;
}
return pair->target;
}
}
}
PHPAPI int ht_target_init(char *target, int target_len, long weight TSRMLS_DC)
{
zval *convert_var;
PointTarget *pair;
int i, temp_key_len;
uint point;
char *temp_key;
MAKE_STD_ZVAL(convert_var);
ZVAL_LONG(convert_var, 160*weight);
convert_to_string(convert_var);
/*
* instead of emalloc in each loop iteration, the maximum size
* will be allocated and the beginning is always the same
* key_len + \0 + Z_STRLEN_P(MAXIMUM_LENGTH_OF_INTEGER)
*/
temp_key_len = target_len + 1 + Z_STRLEN_P(convert_var);
temp_key = emalloc(temp_key_len);
memcpy(temp_key, target, target_len);
for (i=0; i<160*weight; ++i) {
efree(Z_STRVAL_P(convert_var));
ZVAL_LONG(convert_var, i);
convert_to_string(convert_var);
/* target_len + \0 + Z_STRLEN_P(convert_var)*/
temp_key_len = target_len + 1 + Z_STRLEN_P(convert_var);
memcpy(&(temp_key[target_len]), Z_STRVAL_P(convert_var), Z_STRLEN_P(convert_var));
temp_key[temp_key_len - 1] = 0;
point = ht_hash_object(temp_key, temp_key_len - 1);
/* now save a pair of point, target */
pair = emalloc(sizeof(PointTarget));
pair->point = point;
pair->target = pemalloc(target_len + 1, 1);
pair->target_len = target_len;
memcpy(pair->target, target, target_len);
pair->target[target_len] = 0;
if (zend_hash_next_index_insert(ht_ch_targetpoints,
pair, sizeof(PointTarget), NULL) == FAILURE) {
zend_hash_destroy(ht_ch_targetpoints);
efree(pair);
efree(temp_key);
efree(convert_var);
return FAILURE;
}
efree(pair);
}
efree(Z_STRVAL_P(convert_var));
efree(temp_key);
efree(convert_var);
if (zend_hash_sort(ht_ch_targetpoints, zend_qsort, (compare_func_t) ht_compare_targetpoints, 1 TSRMLS_CC) == FAILURE) {
return FAILURE;
}
return SUCCESS;
}
static int ht_compare_targetpoints(void *a, void *b TSRMLS_DC) {
Bucket *f;
Bucket *s;
PointTarget *left;
PointTarget *right;
f = *((Bucket **) a);
s = *((Bucket **) b);
left = (PointTarget *) f->pData;
right = (PointTarget *) s->pData;
if (left->point < right->point)
return -1;
else if (left->point == right->point)
return strcmp(left->target, right->target);
return 1;
}
PHPAPI uint ht_hash_object(char *object, int object_len) {
PHP_MD5_CTX context;
char digest[16];
char hexdigest[33];
PHP_MD5Init(&context);
PHP_MD5Update(&context, object, object_len);
PHP_MD5Final(digest, &context);
make_digest(hexdigest, digest);
return (hexdigest[0] << 23 | hexdigest[1] << 16 | hexdigest[2] << 8 | hexdigest[3]);
}
PHPAPI int ht_get_array(zval *object, HashTable **array, char *name TSRMLS_DC) {
zval **hashtable;
int resource_type;
if (Z_TYPE_P(object) != IS_OBJECT || zend_hash_find(Z_OBJPROP_P(object), name,
strlen(name) + 1, (void **) &hashtable) == FAILURE) {
return -1;
}
*array = (HashTable *) zend_list_find(Z_LVAL_PP(hashtable), &resource_type);
if (!array || resource_type != le_ch_hashtables) {
return -1;
}
return Z_LVAL_PP(hashtable);
}
static void ch_destructor_hashtables(zend_rsrc_list_entry * rsrc TSRMLS_DC)
{
HashTable *ht = (HashTable*) rsrc->ptr;
zend_hash_destroy(ht);
efree(ht);
}
// vim: ts=2:expandtab