* Added request options:
[m6w6/ext-http] / scripts / gen_curlinfo.php
1 #!/usr/bin/env php
2 <?php
3 // $Id$
4
5 error_reporting(0);
6
7 function failure() {
8 // this is why error_get_last() should return a stdClass object
9 $error = error_get_last();
10 fprintf(STDERR, "FAILURE: %s\n", $error["message"]);
11 exit(-1);
12 }
13
14 function file_re($file, $pattern, $all = true) {
15 static $path;
16
17 $path or $path = isset($_SERVER['argv'][1]) ? $_SERVER['argv'][1].'/include/curl/' : "/usr/local/include/curl/";
18
19 if ($content = file_get_contents($path . $file)) {
20 if ($all) {
21 if (preg_match_all($pattern, $content, $matches, PREG_SET_ORDER)) {
22 return $matches;
23 }
24 } else {
25 if (preg_match($pattern, $content, $matches)) {
26 return $matches;
27 }
28 }
29 trigger_error("no match in $file for $pattern");
30 }
31 failure();
32 }
33
34 $ifdefs = array(
35 'COOKIELIST' => 'HTTP_CURL_VERSION(7,14,1)',
36 'PRIMARY_IP' => 'HTTP_CURL_VERSION(7,19,0)',
37 'APPCONNECT_TIME' => 'HTTP_CURL_VERSION(7,19,0)',
38 'REDIRECT_URL' => 'HTTP_CURL_VERSION(7,18,2)',
39 'CERTINFO' => 'HTTP_CURL_VERSION(7,19,1) && defined(HTTP_HAVE_OPENSSL)'
40 );
41 $exclude = array(
42 'PRIVATE', 'LASTSOCKET', 'FTP_ENTRY_PATH'
43 );
44 $translate = array(
45 'HTTP_CONNECTCODE' => "connect_code",
46 'COOKIELIST' => 'cookies',
47 );
48
49 $templates = array(
50 'STRING' =>
51 ' if (CURLE_OK == curl_easy_getinfo(request->ch, %s, &c)) {
52 add_assoc_string_ex(&array, "%s", sizeof("%2$s"), c ? c : "", 1);
53 }
54 ',
55 'DOUBLE' =>
56 ' if (CURLE_OK == curl_easy_getinfo(request->ch, %s, &d)) {
57 add_assoc_double_ex(&array, "%s", sizeof("%2$s"), d);
58 }
59 ',
60 'LONG' =>
61 ' if (CURLE_OK == curl_easy_getinfo(request->ch, %s, &l)) {
62 add_assoc_long_ex(&array, "%s", sizeof("%2$s"), l);
63 }
64 ',
65 'SLIST' =>
66 ' if (CURLE_OK == curl_easy_getinfo(request->ch, %s, &s)) {
67 MAKE_STD_ZVAL(subarray);
68 array_init(subarray);
69 for (p = s; p; p = p->next) {
70 add_next_index_string(subarray, p->data, 1);
71 }
72 add_assoc_zval_ex(&array, "%s", sizeof("%2$s"), subarray);
73 curl_slist_free_all(s);
74 }
75 '
76 );
77
78 $infos = file_re('curl.h', '/^\s*(CURLINFO_(\w+))\s*=\s*CURLINFO_(STRING|LONG|DOUBLE|SLIST)\s*\+\s*\d+\s*,?\s*$/m');
79
80 ob_start();
81 foreach ($infos as $info) {
82 list(, $full, $short, $type) = $info;
83 if (in_array($short, $exclude)) continue;
84 if (isset($ifdefs[$short])) printf("#if %s\n", $ifdefs[$short]);
85 printf($templates[$type], $full, strtolower((isset($translate[$short])) ? $translate[$short] : $short));
86 if (isset($ifdefs[$short])) printf("#endif\n");
87 }
88
89 file_put_contents("http_request_info.c",
90 preg_replace('/(\/\* BEGIN \*\/\n).*(\/\* END \*\/)/s', '$1'. ob_get_contents() .'$2',
91 file_get_contents("http_request_info.c")));
92
93 ?>