-
Notifications
You must be signed in to change notification settings - Fork 54
/
Copy pathbuild-library.php
executable file
·165 lines (151 loc) · 5.02 KB
/
build-library.php
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
#!/usr/bin/env php
<?php
require __DIR__ . '/bootstrap.php';
define('LIBRARY_HEADER', ROOT_DIR . '/ext-src/php_swoole_library.h');
define('PHP_TAG', '<?php');
if (!isset($argv[1]) or $argv[1] != 'dev') {
preg_match(
'/^(\d+)/',
trim("".shell_exec('cd ' . LIBRARY_DIR . ' && git diff --shortstat')),
$file_change
);
$file_change = (int) ($file_change[1] ?? 0);
if ($file_change > 0) {
swoole_error($file_change . ' file changed in [' . LIBRARY_DIR . ']');
}
}
$commit_id = trim(shell_exec('cd ' . LIBRARY_DIR . ' && git rev-parse HEAD'));
if (!$commit_id || strlen($commit_id) != 40) {
swoole_error('Unable to get commit id of library in [' . LIBRARY_DIR . ']');
}
/* Notice: Sort by dependency */
$files = [
# <basic> #
'constants.php',
# <std> #
'std/exec.php',
# <core> #
'core/Constant.php',
'core/StringObject.php',
'core/MultibyteStringObject.php',
'core/Exception/ArrayKeyNotExists.php',
'core/ArrayObject.php',
'core/ObjectProxy.php',
'core/Coroutine/WaitGroup.php',
'core/Coroutine/Server.php',
'core/Coroutine/Server/Connection.php',
'core/Coroutine/Barrier.php',
'core/Coroutine/Http/functions.php',
# <core for connection pool> #
'core/ConnectionPool.php',
'core/Database/ObjectProxy.php',
'core/Database/MysqliConfig.php',
'core/Database/MysqliException.php',
'core/Database/MysqliPool.php',
'core/Database/MysqliProxy.php',
'core/Database/MysqliStatementProxy.php',
'core/Database/PDOConfig.php',
'core/Database/PDOPool.php',
'core/Database/PDOProxy.php',
'core/Database/PDOStatementProxy.php',
'core/Database/RedisConfig.php',
'core/Database/RedisPool.php',
# <core for HTTP> #
'core/Http/Status.php',
# <core for cURL> #
'core/Curl/Exception.php',
'core/Curl/Handler.php',
# <core for FastCGI> #
'core/FastCGI.php',
'core/FastCGI/Record.php',
'core/FastCGI/Record/Params.php',
'core/FastCGI/Record/AbortRequest.php',
'core/FastCGI/Record/BeginRequest.php',
'core/FastCGI/Record/Data.php',
'core/FastCGI/Record/EndRequest.php',
'core/FastCGI/Record/GetValues.php',
'core/FastCGI/Record/GetValuesResult.php',
'core/FastCGI/Record/Stdin.php',
'core/FastCGI/Record/Stdout.php',
'core/FastCGI/Record/Stderr.php',
'core/FastCGI/Record/UnknownType.php',
'core/FastCGI/FrameParser.php',
'core/FastCGI/Message.php',
'core/FastCGI/Request.php',
'core/FastCGI/Response.php',
'core/FastCGI/HttpRequest.php',
'core/FastCGI/HttpResponse.php',
'core/Coroutine/FastCGI/Client.php',
'core/Coroutine/FastCGI/Client/Exception.php',
'core/Coroutine/FastCGI/Proxy.php',
# <core for Process> #
'core/Process/Manager.php',
# <core for Server> #
'core/Server/Helper.php',
# <core for functions> #
'core/Coroutine/functions.php',
# <ext> #
'ext/curl.php',
'ext/sockets.php',
# <finalizer> #
'functions.php',
'alias.php',
'alias_ns.php',
];
$ignore_files = ['vendor_init.php',];
$diff_files = array_diff(swoole_library_files(), $files);
foreach ($diff_files as $k => $f) {
if (in_array($f, $ignore_files)) {
unset($diff_files[$k]);
}
}
if (!empty($diff_files)) {
swoole_error('Some files are not loaded: ', ...$diff_files);
}
foreach ($files as $file) {
if (!file_exists(LIBRARY_SRC_DIR . '/' . $file)) {
swoole_error("Unable to find source file [{$file}]");
}
}
$source_str = $eval_str = '';
foreach ($files as $file) {
$php_file = LIBRARY_SRC_DIR . '/' . $file;
if (strpos(`/usr/bin/env php -n -l {$php_file} 2>&1`, 'No syntax errors detected') === false) {
swoole_error("Syntax error in file [{$php_file}]");
} else {
swoole_ok("Syntax correct in [{$file}]");
}
$code = file_get_contents($php_file);
if ($code === false) {
swoole_error("Can not read file [{$file}]");
}
if (strpos($code, PHP_TAG) !== 0) {
swoole_error("File [{$file}] must start with \"<?php\"");
}
$name = unCamelize(str_replace(['/', '.php'], ['_', ''], $file));
// keep line breaks to align line numbers
$code = rtrim(substr($code, strlen(PHP_TAG)));
$code = str_replace(['\\', '"', "\n"], ['\\\\', '\\"', "\\n\"\n\""], $code);
$code = implode("\n" . space(4), explode("\n", $code));
$filename = "@swoole-src/library/{$file}";
$source_str .= "static const char* swoole_library_source_{$name} =\n" . space(4) . "\"{$code}\\n\";\n\n";
$eval_str .= space(4) . "zend::eval(swoole_library_source_{$name}, \"{$filename}\");\n";
}
$source_str = rtrim($source_str);
$eval_str = rtrim($eval_str);
$generator = basename(__FILE__);
$content = <<<C
/**
* Generated by {$generator}, Please DO NOT modify!
*/
/* \$Id: {$commit_id} */
{$source_str}
void php_swoole_load_library()
{
{$eval_str}
}
C;
if (file_put_contents(LIBRARY_HEADER, $content) != strlen($content)) {
swoole_error('Can not write source codes to ' . LIBRARY_HEADER);
}
swoole_success("Generated swoole php library successfully!");