forked from tpunt/pht
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pht.c
157 lines (137 loc) · 5.32 KB
/
pht.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
/*
+----------------------------------------------------------------------+
| PHP Version 7 |
+----------------------------------------------------------------------+
| Copyright (c) 1997-present 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: Thomas Punt <[email protected]> |
+----------------------------------------------------------------------+
*/
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
#include <main/php.h>
#include <main/SAPI.h>
#include <ext/standard/info.h>
#include "php_pht.h"
#include "src/classes/thread.h"
#include "src/classes/threaded.h"
#include "src/classes/runnable.h"
#include "src/classes/queue.h"
#include "src/classes/hashtable.h"
#include "src/classes/vector.h"
#include "src/classes/atomic_integer.h"
ZEND_DECLARE_MODULE_GLOBALS(pht)
static int (*sapi_module_deactivate)(void);
common_strings_t common_strings;
PHP_MINIT_FUNCTION(pht)
{
threaded_ce_init();
runnable_ce_init();
thread_ce_init();
queue_ce_init();
hashtable_ce_init();
vector_ce_init();
atomic_integer_ce_init();
common_strings.__construct = zend_string_init(ZEND_STRL("__construct"), 1);
zend_string_hash_val(common_strings.__construct);
GC_FLAGS(common_strings.__construct) |= IS_STR_INTERNED;
common_strings.run = zend_string_init(ZEND_STRL("run"), 1);
zend_string_hash_val(common_strings.run);
GC_FLAGS(common_strings.run) |= IS_STR_INTERNED;
common_strings._THREAD = zend_string_init(ZEND_STRL("_THREAD"), 1);
zend_string_hash_val(common_strings._THREAD);
GC_FLAGS(common_strings._THREAD) |= IS_STR_INTERNED;
common_strings.value = zend_string_init(ZEND_STRL("value"), 1);
zend_string_hash_val(common_strings.value);
GC_FLAGS(common_strings.value) |= IS_STR_INTERNED;
common_strings.Queue = zend_string_init(ZEND_STRL("pht\\Queue"), 1);
zend_string_hash_val(common_strings.Queue);
GC_FLAGS(common_strings.Queue) |= IS_STR_INTERNED;
common_strings.HashTable = zend_string_init(ZEND_STRL("pht\\HashTable"), 1);
zend_string_hash_val(common_strings.HashTable);
GC_FLAGS(common_strings.HashTable) |= IS_STR_INTERNED;
common_strings.Vector = zend_string_init(ZEND_STRL("pht\\Vector"), 1);
zend_string_hash_val(common_strings.Vector);
GC_FLAGS(common_strings.Vector) |= IS_STR_INTERNED;
common_strings.AtomicInteger = zend_string_init(ZEND_STRL("pht\\AtomicInteger"), 1);
zend_string_hash_val(common_strings.AtomicInteger);
GC_FLAGS(common_strings.AtomicInteger) |= IS_STR_INTERNED;
sapi_module_deactivate = sapi_module.deactivate;
sapi_module.deactivate = NULL;
return SUCCESS;
}
PHP_MSHUTDOWN_FUNCTION(pht)
{
GC_FLAGS(common_strings.__construct) &= ~IS_STR_INTERNED;
zend_string_free(common_strings.__construct);
GC_FLAGS(common_strings.run) &= ~IS_STR_INTERNED;
zend_string_free(common_strings.run);
GC_FLAGS(common_strings._THREAD) &= ~IS_STR_INTERNED;
zend_string_free(common_strings._THREAD);
GC_FLAGS(common_strings.value) &= ~IS_STR_INTERNED;
zend_string_free(common_strings.value);
GC_FLAGS(common_strings.Queue) &= ~IS_STR_INTERNED;
zend_string_free(common_strings.Queue);
GC_FLAGS(common_strings.HashTable) &= ~IS_STR_INTERNED;
zend_string_free(common_strings.HashTable);
GC_FLAGS(common_strings.Vector) &= ~IS_STR_INTERNED;
zend_string_free(common_strings.Vector);
GC_FLAGS(common_strings.AtomicInteger) &= ~IS_STR_INTERNED;
zend_string_free(common_strings.AtomicInteger);
sapi_module.deactivate = sapi_module_deactivate;
return SUCCESS;
}
PHP_RINIT_FUNCTION(pht)
{
ZEND_TSRMLS_CACHE_UPDATE();
zend_hash_init(&PHT_ZG(op_array_file_names), 8, NULL, ZVAL_PTR_DTOR, 0);
zend_hash_init(&PHT_ZG(child_threads), 8, NULL, thread_join_destroy, 0);
PHT_ZG(skip_qoi_creation) = 0;
PHT_ZG(skip_htoi_creation) = 0;
PHT_ZG(skip_voi_creation) = 0;
PHT_ZG(skip_aioi_creation) = 0;
return SUCCESS;
}
PHP_RSHUTDOWN_FUNCTION(pht)
{
zend_hash_destroy(&PHT_ZG(op_array_file_names));
zend_hash_destroy(&PHT_ZG(child_threads));
return SUCCESS;
}
PHP_MINFO_FUNCTION(pht)
{
php_info_print_table_start();
php_info_print_table_header(2, "pht support", "enabled");
php_info_print_table_end();
}
zend_module_entry pht_module_entry = {
STANDARD_MODULE_HEADER,
"pht",
NULL,
PHP_MINIT(pht),
PHP_MSHUTDOWN(pht),
PHP_RINIT(pht),
PHP_RSHUTDOWN(pht),
PHP_MINFO(pht),
PHP_PHT_VERSION,
PHP_MODULE_GLOBALS(pht),
NULL,
NULL,
NULL,
STANDARD_MODULE_PROPERTIES_EX
};
#ifdef COMPILE_DL_PHT
#ifdef ZTS
ZEND_TSRMLS_CACHE_DEFINE()
#endif
ZEND_GET_MODULE(pht)
#endif