9fae4cb8d78c6baee7873b89a7a491e1a3c1d22e
[m6w6/ext-http] / scripts / gen_curlinfo.php
1 #!/usr/bin/env php
2 <?php
3
4 error_reporting(0);
5
6 function failure() {
7 fprintf(STDERR, "FAILURE: %s\n", error_get_last()["message"]);
8 exit(-1);
9 }
10
11 function file_re($file, $pattern, $all = true) {
12 static $path;
13
14 $path or $path = isset($_SERVER['argv'][1]) ? $_SERVER['argv'][1].'/include/curl/' : "/usr/local/include/curl/";
15
16 if ($content = file_get_contents($path . $file)) {
17 if ($all) {
18 if (preg_match_all($pattern, $content, $matches, PREG_SET_ORDER)) {
19 return $matches;
20 }
21 } else {
22 if (preg_match($pattern, $content, $matches)) {
23 return $matches;
24 }
25 }
26 trigger_error("no match in $file for $pattern");
27 }
28 failure();
29 }
30
31 $ifdefs = array(
32 'PRIMARY_IP' => 'PHP_HTTP_CURL_VERSION(7,19,0)',
33 'APPCONNECT_TIME' => 'PHP_HTTP_CURL_VERSION(7,19,0)',
34 'CONDITION_UNMET' => 'PHP_HTTP_CURL_VERSION(7,19,4)',
35 'PRIMARY_PORT' => 'PHP_HTTP_CURL_VERSION(7,21,0)',
36 'LOCAL_PORT' => 'PHP_HTTP_CURL_VERSION(7,21,0)',
37 'LOCAL_IP' => 'PHP_HTTP_CURL_VERSION(7,21,0)',
38 'HTTP_VERSION' => 'PHP_HTTP_CURL_VERSION(7,50,0)',
39 'PROXY_SSL_VERIFYRESULT' => 'PHP_HTTP_CURL_VERSION(7,52,0)',
40 'PROTOCOL' => 'PHP_HTTP_CURL_VERSION(7,52,0)',
41 'SCHEME' => 'PHP_HTTP_CURL_VERSION(7,52,0)',
42 );
43 $exclude = array(
44 'ACTIVESOCKET',
45 'CERTINFO',
46 'COOKIELIST',
47 'FTP_ENTRY_PATH',
48 'LASTSOCKET',
49 'PRIVATE',
50 'RTSP_CLIENT_CSEQ',
51 'RTSP_CSEQ_RECV',
52 'RTSP_SERVER_CSEQ',
53 'RTSP_SESSION_ID',
54 'TLS_SESSION',
55 'TLS_SSL_PTR',
56 );
57
58 $translate = array(
59 'HTTP_CONNECTCODE' => "connect_code",
60 'COOKIELIST' => 'cookies',
61 );
62
63 $templates = array(
64 'STRING' =>
65 ' if (CURLE_OK == curl_easy_getinfo(ch, %s, &c)) {
66 ZVAL_STRING(&tmp, STR_PTR(c));
67 zend_hash_str_update(info, "%s", lenof("%2$s"), &tmp);
68 }
69 ',
70 'DOUBLE' =>
71 ' if (CURLE_OK == curl_easy_getinfo(ch, %s, &d)) {
72 ZVAL_DOUBLE(&tmp, d);
73 zend_hash_str_update(info, "%s", lenof("%2$s"), &tmp);
74 }
75 ',
76 'LONG' =>
77 ' if (CURLE_OK == curl_easy_getinfo(ch, %s, &l)) {
78 ZVAL_LONG(&tmp, l);
79 zend_hash_str_update(info, "%s", lenof("%2$s"), &tmp);
80 }
81 ',
82 'SLIST' =>
83 ' if (CURLE_OK == curl_easy_getinfo(ch, %s, &s)) {
84 array_init(&tmp);
85 for (p = s; p; p = p->next) {
86 if (p->data) {
87 add_next_index_string(&tmp, p->data);
88 }
89 }
90 zend_hash_str_update(info, "%s", lenof("%2$s"), &tmp);
91 curl_slist_free_all(s);
92 }
93 ',
94 );
95
96 $infos = file_re('curl.h', '/^\s*(CURLINFO_(\w+))\s*=\s*CURLINFO_(STRING|LONG|DOUBLE|SLIST)\s*\+\s*\d+\s*,?\s*$/m');
97
98 ob_start();
99 foreach ($infos as $info) {
100 list(, $full, $short, $type) = $info;
101 if (in_array($short, $exclude)) continue;
102 if (isset($ifdefs[$short])) printf("#if %s\n", $ifdefs[$short]);
103 printf($templates[$type], $full, strtolower((isset($translate[$short])) ? $translate[$short] : $short));
104 if (isset($ifdefs[$short])) printf("#endif\n");
105 }
106
107 file_put_contents("src/php_http_client_curl.c",
108 preg_replace('/(\/\* BEGIN::CURLINFO \*\/\n).*(\n\s*\/\* END::CURLINFO \*\/)/s', '$1'. ob_get_contents() .'$2',
109 file_get_contents("src/php_http_client_curl.c")));
110
111 ?>