Skip to content

Commit 6c59e82

Browse files
committed
Release 0.2.0.
1 parent d2ee9d1 commit 6c59e82

7 files changed

+90
-75
lines changed

config.m4

+2-2
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ if test "$PHP_ZOOKEEPER" != "no"; then
5858

5959
if test "$PHP_ZOOKEEPER_SESSION" != "no"; then
6060
AC_MSG_RESULT([enabled])
61-
61+
6262
AC_MSG_CHECKING([for session includes])
6363
session_inc_path=""
6464

@@ -87,7 +87,7 @@ if test "$PHP_ZOOKEEPER" != "no"; then
8787
[
8888
PHP_ADD_EXTENSION_DEP(zookeeper, session)
8989
])
90-
90+
9191
AC_DEFINE(HAVE_ZOOKEEPER_SESSION,1,[Whether zookeeper session handler is enabled])
9292
SESSION_EXTRA_FILES="php_zookeeper_session.c"
9393
else

package.xml

+19-4
Original file line numberDiff line numberDiff line change
@@ -15,18 +15,22 @@ http://pear.php.net/dtd/package-2.0.xsd">
1515
<email>[email protected]</email>
1616
<active>yes</active>
1717
</lead>
18-
<date>2009-10-15</date>
18+
<date>2012-01-12</date>
1919
<version>
20-
<release>0.1.0</release>
21-
<api>0.1.0</api>
20+
<release>0.2.0</release>
21+
<api>0.2.0</api>
2222
</version>
2323
<stability>
2424
<release>beta</release>
2525
<api>beta</api>
2626
</stability>
2727
<license uri="http://www.php.net/license">PHP</license>
2828
<notes>
29-
- Initial PECL release
29+
- Added session handler support
30+
- Added connect() and delete methods
31+
- Bug fixes
32+
</notes>
33+
3034
</notes>
3135
<contents>
3236
<dir name="/">
@@ -55,6 +59,17 @@ http://pear.php.net/dtd/package-2.0.xsd">
5559
<providesextension>zookeeper</providesextension>
5660
<extsrcrelease/>
5761
<changelog>
62+
<release>
63+
<stability><release>beta</release><api>beta</api></stability>
64+
<version><release>0.2.0</release><api>0.2.0</api></version>
65+
<date>2012-01-12</date>
66+
<notes>
67+
- Added session handler support
68+
- Added connect() and delete methods
69+
- Bug fixes
70+
</notes>
71+
</release>
72+
5873
<release>
5974
<stability><release>beta</release><api>beta</api></stability>
6075
<version><release>0.1.0</release><api>0.1.0</api></version>

php_zookeeper.h

+2-2
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
+----------------------------------------------------------------------+
1515
*/
1616

17-
/* $ Id: $ */
17+
/* $ Id: $ */
1818

1919
#ifndef PHP_ZOOKEEPER_H
2020
#define PHP_ZOOKEEPER_H
@@ -66,7 +66,7 @@ extern ps_module ps_mod_zookeeper;
6666

6767
PS_FUNCS(zookeeper);
6868

69-
#endif /* HAVE_ZOOKEEPER_SESSION */
69+
#endif /* HAVE_ZOOKEEPER_SESSION */
7070

7171
#endif /* PHP_ZOOKEEPER_H */
7272

php_zookeeper_session.c

+22-22
Original file line numberDiff line numberDiff line change
@@ -40,26 +40,26 @@ ps_module ps_mod_zookeeper = {
4040
static php_zookeeper_session *php_zookeeper_session_init(char *save_path TSRMLS_DC)
4141
{
4242
struct Stat stat;
43-
43+
4444
int status, recv_timeout = ZK_G(recv_timeout);
4545
php_zookeeper_session *session;
46-
46+
4747
session = pecalloc(1, sizeof(php_zookeeper_session), 1);
4848
session->zk = zookeeper_init(save_path, NULL, recv_timeout, 0, NULL, 0);
49-
49+
5050
if (!session->zk) {
5151
efree(session);
5252
return NULL;
5353
}
54-
54+
5555
/* Create parent node if it does not exist */
5656
if (zoo_exists(session->zk, PHP_ZK_PARENT_NODE, 1, &stat) == ZNONODE) {
5757
int retry_count = 3;
5858
do {
5959
status = zoo_create(session->zk, PHP_ZK_PARENT_NODE, 0, 0, &ZOO_OPEN_ACL_UNSAFE, 0, 0, 0);
6060
retry_count++;
6161
} while (status == ZCONNECTIONLOSS && retry_count--);
62-
62+
6363
if (status != ZOK) {
6464
zookeeper_close(session->zk);
6565
efree(session);
@@ -90,27 +90,27 @@ static php_zookeeper_session *php_zookeeper_session_get(char *save_path TSRMLS_D
9090
return (php_zookeeper_session *) le_p->ptr;
9191
}
9292
}
93-
93+
9494
session = php_zookeeper_session_init(save_path TSRMLS_CC);
9595
le.type = php_zookeeper_get_connection_le();
9696
le.ptr = session;
9797

9898
if (zend_hash_update(&EG(persistent_list), (char *)plist_key, plist_key_len, (void *)&le, sizeof(le), NULL) == FAILURE) {
9999
php_error_docref(NULL TSRMLS_CC, E_ERROR, "Could not register persistent entry for the zk handle");
100100
}
101-
101+
102102
efree(plist_key);
103103
session->is_locked = 0;
104104
return session;
105105
}
106106
/* }}} */
107107

108-
/* {{{ PS_OPEN_FUNC(zookeeper)
108+
/* {{{ PS_OPEN_FUNC(zookeeper)
109109
*/
110110
PS_OPEN_FUNC(zookeeper)
111111
{
112112
php_zookeeper_session *session = php_zookeeper_session_get(PS(save_path) TSRMLS_CC);
113-
113+
114114
if (!session) {
115115
PS_SET_MOD_DATA(NULL);
116116
return FAILURE;
@@ -138,7 +138,7 @@ static zend_bool php_zookeeper_sess_lock(php_zookeeper_session *session, const c
138138
efree(lock_path);
139139
return 0;
140140
}
141-
141+
142142
/* set max timeout for session_start = max_execution_time. (c) Andrei Darashenka, Richter & Poweleit GmbH */
143143
lock_maxwait = zend_ini_long(ZEND_STRS("max_execution_time"), 0);
144144
if (lock_maxwait <= 0) {
@@ -181,7 +181,7 @@ PS_READ_FUNC(zookeeper)
181181
}
182182

183183
path_len = snprintf(session->path, 512, "%s/%s", PHP_ZK_PARENT_NODE, key);
184-
184+
185185
retry_count = 3;
186186
do {
187187
status = zoo_exists(session->zk, session->path, 1, &stat);
@@ -208,10 +208,10 @@ PS_READ_FUNC(zookeeper)
208208
*vallen = 0;
209209
return FAILURE;
210210
}
211-
211+
212212
*val = emalloc(stat.dataLength);
213213
*vallen = stat.dataLength;
214-
214+
215215
retry_count = 3;
216216
do {
217217
status = zoo_get(session->zk, session->path, 0, *val, vallen, &stat);
@@ -241,9 +241,9 @@ PS_WRITE_FUNC(zookeeper)
241241
status = zoo_exists(session->zk, session->path, 1, &stat);
242242
retry_count++;
243243
} while (status == ZCONNECTIONLOSS && retry_count--);
244-
245-
retry_count = 3;
246-
do {
244+
245+
retry_count = 3;
246+
do {
247247
if (status != ZOK) {
248248
status = zoo_create(session->zk, session->path, val, vallen, &ZOO_OPEN_ACL_UNSAFE, 0, 0, 0);
249249
} else {
@@ -277,7 +277,7 @@ PS_GC_FUNC(zookeeper)
277277
int i, status;
278278
int64_t expiration_time;
279279
ZK_SESS_DATA;
280-
280+
281281
expiration_time = (int64_t) (SG(global_request_time) - PS(gc_maxlifetime)) * 1000;
282282
status = zoo_get_children(session->zk, PHP_ZK_PARENT_NODE, 0, &nodes);
283283

@@ -287,7 +287,7 @@ PS_GC_FUNC(zookeeper)
287287
int path_len;
288288

289289
path_len = snprintf(path, 512, "%s/%s", PHP_ZK_PARENT_NODE, nodes.data[i]);
290-
290+
291291
if (zoo_exists(session->zk, path, 1, &stat) == ZOK) {
292292
/* TODO: should lock here? */
293293
if (stat.mtime < expiration_time) {
@@ -304,15 +304,15 @@ static void php_zk_sync_completion(int rc, const char *value, const void *data)
304304
PS_CLOSE_FUNC(zookeeper)
305305
{
306306
ZK_SESS_DATA;
307-
308-
if (session->is_locked) {
307+
308+
if (session->is_locked) {
309309
(void) zkr_lock_unlock(&(session->lock));
310310
efree(session->lock.path);
311-
311+
312312
zkr_lock_destroy(&(session->lock));
313313
session->is_locked = 0;
314314
}
315-
315+
316316
/* TODO: is this needed? */
317317
// zoo_async(session->zk, session->path, php_zk_sync_completion, (const void *) session);
318318
PS_SET_MOD_DATA(NULL);

php_zookeeper_session.h

+3-3
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,13 @@
2727
typedef struct _php_zookeeper_session {
2828
/* Connection to zookeeper */
2929
zhandle_t *zk;
30-
30+
3131
/* Lock for the session */
3232
zkr_lock_mutex_t lock;
33-
33+
3434
/* Whether the session is locked */
3535
zend_bool is_locked;
36-
36+
3737
/* Current session path */
3838
char path[512];
3939
} php_zookeeper_session;

0 commit comments

Comments
 (0)