forked from haakonnessjoen/php-beanstalk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathbeanstalk_standard_hash.c
104 lines (88 loc) · 3.03 KB
/
beanstalk_standard_hash.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
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2007 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.0 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_0.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. |
+----------------------------------------------------------------------+
| Authors: Antony Dovgal <[email protected]> |
| Mikael Johansson <mikael AT synd DOT info> |
+----------------------------------------------------------------------+
*/
/* $Id: beanstalk_standard_hash.c 310129 2011-04-11 04:44:27Z hradtke $ */
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include "php.h"
#include "beanstalk_pool.h"
//ZEND_EXTERN_MODULE_GLOBALS(beanstalk)
typedef struct bsc_standard_state {
int num_servers;
bsc **buckets;
int num_buckets;
bsc_hash_function_t *hash;
} bsc_standard_state_t;
void *bsc_standard_create_state(bsc_hash_function_t *hash) /* {{{ */
{
bsc_standard_state_t *state = emalloc(sizeof(bsc_standard_state_t));
memset(state, 0, sizeof(bsc_standard_state_t));
state->hash = hash;
return state;
}
/* }}} */
void bsc_standard_free_state(void *s) /* {{{ */
{
bsc_standard_state_t *state = s;
if (state != NULL) {
if (state->buckets != NULL) {
efree(state->buckets);
}
efree(state);
}
}
/* }}} */
bsc *bsc_standard_find_server(void *s, const char *key, unsigned int key_len TSRMLS_DC) /* {{{ */
{
bsc_standard_state_t *state = s;
if (state->num_servers > 1) {
/* "new-style" hash */
unsigned int hash = (bsc_hash(state->hash, key, key_len) >> 16) & 0x7fff;
return state->buckets[(hash ? hash : 1) % state->num_buckets];
}
return state->buckets[0];
}
/* }}} */
void bsc_standard_add_server(void *s, bsc *svr, unsigned int weight) /* {{{ */
{
bsc_standard_state_t *state = s;
int i;
/* add weight number of buckets for this server */
state->buckets = erealloc(state->buckets, sizeof(*state->buckets) * (state->num_buckets + weight));
for (i=0; i<weight; i++) {
state->buckets[state->num_buckets + i] = svr;
}
state->num_buckets += weight;
state->num_servers++;
}
/* }}} */
bsc_hash_strategy_t bsc_standard_hash = {
bsc_standard_create_state,
bsc_standard_free_state,
bsc_standard_find_server,
bsc_standard_add_server
};
/*
* Local variables:
* tab-width: 4
* c-basic-offset: 4
* End:
* vim600: noet sw=4 ts=4 fdm=marker
* vim<600: noet sw=4 ts=4
*/