@@ -40,26 +40,26 @@ ps_module ps_mod_zookeeper = {
40
40
static php_zookeeper_session * php_zookeeper_session_init (char * save_path TSRMLS_DC )
41
41
{
42
42
struct Stat stat ;
43
-
43
+
44
44
int status , recv_timeout = ZK_G (recv_timeout );
45
45
php_zookeeper_session * session ;
46
-
46
+
47
47
session = pecalloc (1 , sizeof (php_zookeeper_session ), 1 );
48
48
session -> zk = zookeeper_init (save_path , NULL , recv_timeout , 0 , NULL , 0 );
49
-
49
+
50
50
if (!session -> zk ) {
51
51
efree (session );
52
52
return NULL ;
53
53
}
54
-
54
+
55
55
/* Create parent node if it does not exist */
56
56
if (zoo_exists (session -> zk , PHP_ZK_PARENT_NODE , 1 , & stat ) == ZNONODE ) {
57
57
int retry_count = 3 ;
58
58
do {
59
59
status = zoo_create (session -> zk , PHP_ZK_PARENT_NODE , 0 , 0 , & ZOO_OPEN_ACL_UNSAFE , 0 , 0 , 0 );
60
60
retry_count ++ ;
61
61
} while (status == ZCONNECTIONLOSS && retry_count -- );
62
-
62
+
63
63
if (status != ZOK ) {
64
64
zookeeper_close (session -> zk );
65
65
efree (session );
@@ -90,27 +90,27 @@ static php_zookeeper_session *php_zookeeper_session_get(char *save_path TSRMLS_D
90
90
return (php_zookeeper_session * ) le_p -> ptr ;
91
91
}
92
92
}
93
-
93
+
94
94
session = php_zookeeper_session_init (save_path TSRMLS_CC );
95
95
le .type = php_zookeeper_get_connection_le ();
96
96
le .ptr = session ;
97
97
98
98
if (zend_hash_update (& EG (persistent_list ), (char * )plist_key , plist_key_len , (void * )& le , sizeof (le ), NULL ) == FAILURE ) {
99
99
php_error_docref (NULL TSRMLS_CC , E_ERROR , "Could not register persistent entry for the zk handle" );
100
100
}
101
-
101
+
102
102
efree (plist_key );
103
103
session -> is_locked = 0 ;
104
104
return session ;
105
105
}
106
106
/* }}} */
107
107
108
- /* {{{ PS_OPEN_FUNC(zookeeper)
108
+ /* {{{ PS_OPEN_FUNC(zookeeper)
109
109
*/
110
110
PS_OPEN_FUNC (zookeeper )
111
111
{
112
112
php_zookeeper_session * session = php_zookeeper_session_get (PS (save_path ) TSRMLS_CC );
113
-
113
+
114
114
if (!session ) {
115
115
PS_SET_MOD_DATA (NULL );
116
116
return FAILURE ;
@@ -138,7 +138,7 @@ static zend_bool php_zookeeper_sess_lock(php_zookeeper_session *session, const c
138
138
efree (lock_path );
139
139
return 0 ;
140
140
}
141
-
141
+
142
142
/* set max timeout for session_start = max_execution_time. (c) Andrei Darashenka, Richter & Poweleit GmbH */
143
143
lock_maxwait = zend_ini_long (ZEND_STRS ("max_execution_time" ), 0 );
144
144
if (lock_maxwait <= 0 ) {
@@ -181,7 +181,7 @@ PS_READ_FUNC(zookeeper)
181
181
}
182
182
183
183
path_len = snprintf (session -> path , 512 , "%s/%s" , PHP_ZK_PARENT_NODE , key );
184
-
184
+
185
185
retry_count = 3 ;
186
186
do {
187
187
status = zoo_exists (session -> zk , session -> path , 1 , & stat );
@@ -208,10 +208,10 @@ PS_READ_FUNC(zookeeper)
208
208
* vallen = 0 ;
209
209
return FAILURE ;
210
210
}
211
-
211
+
212
212
* val = emalloc (stat .dataLength );
213
213
* vallen = stat .dataLength ;
214
-
214
+
215
215
retry_count = 3 ;
216
216
do {
217
217
status = zoo_get (session -> zk , session -> path , 0 , * val , vallen , & stat );
@@ -241,9 +241,9 @@ PS_WRITE_FUNC(zookeeper)
241
241
status = zoo_exists (session -> zk , session -> path , 1 , & stat );
242
242
retry_count ++ ;
243
243
} while (status == ZCONNECTIONLOSS && retry_count -- );
244
-
245
- retry_count = 3 ;
246
- do {
244
+
245
+ retry_count = 3 ;
246
+ do {
247
247
if (status != ZOK ) {
248
248
status = zoo_create (session -> zk , session -> path , val , vallen , & ZOO_OPEN_ACL_UNSAFE , 0 , 0 , 0 );
249
249
} else {
@@ -277,7 +277,7 @@ PS_GC_FUNC(zookeeper)
277
277
int i , status ;
278
278
int64_t expiration_time ;
279
279
ZK_SESS_DATA ;
280
-
280
+
281
281
expiration_time = (int64_t ) (SG (global_request_time ) - PS (gc_maxlifetime )) * 1000 ;
282
282
status = zoo_get_children (session -> zk , PHP_ZK_PARENT_NODE , 0 , & nodes );
283
283
@@ -287,7 +287,7 @@ PS_GC_FUNC(zookeeper)
287
287
int path_len ;
288
288
289
289
path_len = snprintf (path , 512 , "%s/%s" , PHP_ZK_PARENT_NODE , nodes .data [i ]);
290
-
290
+
291
291
if (zoo_exists (session -> zk , path , 1 , & stat ) == ZOK ) {
292
292
/* TODO: should lock here? */
293
293
if (stat .mtime < expiration_time ) {
@@ -304,15 +304,15 @@ static void php_zk_sync_completion(int rc, const char *value, const void *data)
304
304
PS_CLOSE_FUNC (zookeeper )
305
305
{
306
306
ZK_SESS_DATA ;
307
-
308
- if (session -> is_locked ) {
307
+
308
+ if (session -> is_locked ) {
309
309
(void ) zkr_lock_unlock (& (session -> lock ));
310
310
efree (session -> lock .path );
311
-
311
+
312
312
zkr_lock_destroy (& (session -> lock ));
313
313
session -> is_locked = 0 ;
314
314
}
315
-
315
+
316
316
/* TODO: is this needed? */
317
317
// zoo_async(session->zk, session->path, php_zk_sync_completion, (const void *) session);
318
318
PS_SET_MOD_DATA (NULL );
0 commit comments