add new curl_info entries
[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 'EFFECTIVE_METHOD' => 'PHP_HTTP_CURL_VERSION(7,72,0)',
43 'PROXY_ERROR' => 'PHP_HTTP_CURL_VERSION(7,73,0)',
44 );
45 $exclude = array(
46 'ACTIVESOCKET',
47 'CERTINFO',
48 'COOKIELIST',
49 'FTP_ENTRY_PATH',
50 'LASTSOCKET',
51 'PRIVATE',
52 'RTSP_CLIENT_CSEQ',
53 'RTSP_CSEQ_RECV',
54 'RTSP_SERVER_CSEQ',
55 'RTSP_SESSION_ID',
56 'TLS_SESSION',
57 'TLS_SSL_PTR',
58 );
59
60 $translate = array(
61 'HTTP_CONNECTCODE' => "connect_code",
62 'COOKIELIST' => 'cookies',
63 );
64
65 $templates = array(
66 'STRING' =>
67 ' if (CURLE_OK == curl_easy_getinfo(ch, %s, &c)) {
68 ZVAL_STRING(&tmp, STR_PTR(c));
69 zend_hash_str_update(info, "%s", lenof("%2$s"), &tmp);
70 }
71 ',
72 'DOUBLE' =>
73 ' if (CURLE_OK == curl_easy_getinfo(ch, %s, &d)) {
74 ZVAL_DOUBLE(&tmp, d);
75 zend_hash_str_update(info, "%s", lenof("%2$s"), &tmp);
76 }
77 ',
78 'LONG' =>
79 ' if (CURLE_OK == curl_easy_getinfo(ch, %s, &l)) {
80 ZVAL_LONG(&tmp, l);
81 zend_hash_str_update(info, "%s", lenof("%2$s"), &tmp);
82 }
83 ',
84 'SLIST' =>
85 ' if (CURLE_OK == curl_easy_getinfo(ch, %s, &s)) {
86 array_init(&tmp);
87 for (p = s; p; p = p->next) {
88 if (p->data) {
89 add_next_index_string(&tmp, p->data);
90 }
91 }
92 zend_hash_str_update(info, "%s", lenof("%2$s"), &tmp);
93 curl_slist_free_all(s);
94 }
95 ',
96 );
97
98 $infos = file_re('curl.h', '/^\s*(CURLINFO_(\w+))\s*=\s*CURLINFO_(STRING|LONG|DOUBLE|SLIST)\s*\+\s*\d+\s*,?\s*$/m');
99
100 ob_start();
101 foreach ($infos as $info) {
102 list(, $full, $short, $type) = $info;
103 if (in_array($short, $exclude)) continue;
104 if (isset($ifdefs[$short])) printf("#if %s\n", $ifdefs[$short]);
105 printf($templates[$type], $full, strtolower((isset($translate[$short])) ? $translate[$short] : $short));
106 if (isset($ifdefs[$short])) printf("#endif\n");
107 }
108
109 file_put_contents("src/php_http_client_curl.c",
110 preg_replace('/(\/\* BEGIN::CURLINFO \*\/\n).*(\n\s*\/\* END::CURLINFO \*\/)/s', '$1'. ob_get_contents() .'$2',
111 file_get_contents("src/php_http_client_curl.c")));
112
113 ?>