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 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263
|
<?php
/*
+----------------------------------------------------------------------+
| ini doc settings updater |
+----------------------------------------------------------------------+
| Copyright (c) 1997-2005 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.0 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_0.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 |
| license@php.net so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Nuno Lopes <nlopess@php.net> |
| Jakub Vrna <vrana@php.net> |
+----------------------------------------------------------------------+
*/
/* Configuration Options */
$php_src_dir = '../../../php-src'; //php-src path
$pecl_dir = '../../../pecl'; //pecl path
$phpdoc_dir = '../..'; //phpdoc path
/******* END of configurations *****/
/* Search for INI entrys and C macros in php-src/pecl directory */
function recurse($dir) {
global $array, $replace;
if (!$dh = opendir($dir)) {
die ("couldn't open the specified dir ($dir)");
}
while (($file = readdir($dh)) !== false) {
if($file == '.' || $file == '..') {
continue;
}
$path = $dir . '/' .$file;
if(is_dir($path)) {
recurse($path);
} else {
$file = file_get_contents($path);
/* delete comments */
$file = preg_replace('@(//.*$)|(/\*.*\*/)@SmsU', '', $file);
/* The MAGIC Regexp :) */
if(preg_match_all('/(?:PHP|ZEND)_INI_(?:ENTRY(?:_EX)?|BOOLEAN)\s*\(\s*"([^"]+)"\s*,((?:".*"|[^,])+)\s*,\s*([^,]+)/S', $file, $matches)) {
$count = count($matches[0]);
for($i=0;$i<$count;$i++) {
$default = htmlspecialchars(trim($matches[2][$i]), ENT_NOQUOTES);
$permissions = preg_replace(array('/\s+/', '/ZEND/'), array('', 'PHP'), $matches[3][$i]);
$permissions = ($permissions == 'PHP_INI_PERDIR|PHP_INI_SYSTEM' || $permissions == 'PHP_INI_SYSTEM|PHP_INI_PERDIR') ? 'PHP_INI_PERDIR' : $permissions;
$array[] = $matches[1][$i] . '-!!-' . $default . '-!!-' . $permissions;
}
} //end of the magic regex
/* search for C macros */
if(preg_match_all('/#\s*define\s+(\S{5,})[ \t]+(.+)/S', $file, $matches)) {
$count = count($matches[0]);
for($i=0;$i<$count;$i++) {
$replace[$matches[1][$i]] = rtrim($matches[2][$i]);
}
} // end of macros
} //!is_dir()
} //while() loop
closedir($dh);
}
/* Fix ini.xml files */
function fix_ini_xml($filename) {
global $info;
$original = $file = file_get_contents($filename);
// insert the changelog column if it doesn't exist
$file = preg_replace('@<tgroup\s+cols=[\'"]3[\'"]>(\s*<thead>\s*<row>\s*<entry>&?Name;?</entry>\s*<entry>&?Default;?</entry>(\s*)<entry>&?Changeable;?</entry>)(\s*</row>\s*</thead>)@US', '<tgroup cols="4">\1\2<entry>Changelog</entry>\3', $file);
// remove old permissions constants usage about PHP_INI_PERDIR
$file = preg_replace('/(?:PHP_INI_SYSTEM\s*\|\s*)?PHP_INI_PERDIR(?:\s*\|\s*PHP_INI_SYSTEM)?/', 'PHP_INI_PERDIR', $file);
preg_match_all('@<tgroup\s+cols="4">.+<tbody>.+</tbody>.+</tgroup>@USs', $file, $matches);
foreach ($matches[0] as $match) {
preg_match_all('@<row>.+</row>@USs', $match, $matches_row);
foreach ($matches_row[0] as $match_row) {
preg_match_all('@<entry>.+</entry>@USs', $match_row, $matches_entry);
foreach ($matches_entry as $val) {
// create changelog column
if (count($val) == 3) {
$file = preg_replace("@(<row>\s*$val[0]\s*$val[1](\s*)$val[2])(\s*</row>)@", '\1\2<entry></entry>\3', $file);
$val[3] = '<entry></entry>';
}
// now update the info
$entry = substr($val[0], 7, -8);
if (isset($info[$entry])) {
$file = preg_replace("@(<row>\s*$val[0]\s*)$val[1](\s*)$val[2](\s*)$val[3](\s*</row>)@", "\\1<entry>{$info[$entry]['default']}</entry>\\2<entry>{$info[$entry]['permissions']}</entry>\\3<entry>{$info[$entry]['changelog']}</entry>\\4", $file);
}
}
}
}
// if the file was modified, write the changes
if ($original != $file) {
file_put_contents($filename, $file);
echo "Wrote $filename\n";
}
}
/* Start the main program */
$array = array();
$replace = array();
recurse($php_src_dir);
recurse($pecl_dir);
natcasesort($array);
$string = '';
// get the changelog info
$included = true;
require('./generate_changelog.php');
unset($info, $included, $error, $row);
/* &php.ini; only */
$special = array('disable_functions' => 1, 'disable_classes' => 1, 'expose_php' => 1);
/* Find links to documentation */
$links = array();
$link_files = array();
$ini_files = glob("$phpdoc_dir/en/reference/*/ini.xml");
$ini_files[] = "$phpdoc_dir/en/features/safe-mode.xml";
$ini_files[] = "$phpdoc_dir/en/appendices/ini.xml";
foreach ($ini_files as $filename) {
preg_match_all('~<varlistentry id="(ini.[^"]*)">(.*)</varlistentry>~USs', file_get_contents($filename), $matches, PREG_SET_ORDER);
foreach ($matches as $varlistentry) {
preg_match_all('~<term>.*<parameter>(.*)</parameter>~USs', $varlistentry[2], $matches2);
foreach ($matches2[1] as $parameter) {
$links[trim($parameter)] = $varlistentry[1];
$link_files[trim($parameter)] = $filename;
}
}
}
/* Generate the XML code */
foreach($array as $key => $value) {
$arr = explode('-!!-', $value);
$entry = $arr[0];
if(isset($info[$entry])) {
continue;
}
/* link entries */
if (isset($links[$entry])) {
$entry = '<link linkend="' . $links[$entry] . '">' . $entry . '</link>';
unset($link_files[$arr[0]]);
}
/* replace macros and make the $default var */
$new = $arr[1];
do {
$old = $new;
$new = strtr($new,$replace);
} while($new != $old);
$default = $new;
if(preg_match_all('/"([^"]+)"/S', $default, $match) > 1) {
$default = '"';
foreach($match[1] as $add) {
$default .= $add;
}
$default .= '"';
}
// replace the @PREFIX@ stuff
$default = preg_replace(array('~@PREFIX@~i', '~[\\\\]{2}~'), array('/path/to/php', '/'), $default);
/* end of $default stuff */
$permissions = isset($special[$arr[0]]) ? '&php.ini; only' : $arr[2];
$info[$arr[0]]['default'] = $default;
$info[$arr[0]]['permissions'] = $permissions;
$info[$arr[0]]['changelog'] = isset($changelog[$arr[0]]) ? $changelog[$arr[0]] : '';
$string .= ' <row>' . PHP_EOL.
" <entry>$entry</entry>" . PHP_EOL.
" <entry>$default</entry>" . PHP_EOL.
" <entry>$permissions</entry>" . PHP_EOL.
" <entry>{$info[$arr[0]]['changelog']}</entry>" . PHP_EOL.
' </row>'.PHP_EOL;
}
/* Print unmatched links */
$deprecated = array('track_vars', 'debugger.host', 'debugger.port', 'debugger.enabled', 'sesam_oml', 'sesam_configfile', 'sesam_messagecatalog', 'gpc_order', 'allow_webdav_methods');
foreach ($deprecated as $val) {
unset($link_files[$val]);
}
if ($link_files) {
echo "Warning - unmatched links:\n";
foreach ($link_files as $ini => $file) {
echo str_pad($ini, 30, ' ', STR_PAD_RIGHT) . ' => ' . substr($file, strlen($phpdoc_dir)+4) . "\n";
}
}
/* Now write the final result */
$file = file_get_contents("$phpdoc_dir/en/appendices/ini.xml");
$pos = strpos($file, '<tbody>', strpos($file, '<title>Configuration options</title>')) + strlen('<tbody>');
$pos2 = strpos($file, '</tbody>', $pos);
file_put_contents("$phpdoc_dir/en/appendices/ini.xml", substr($file, 0, $pos) . PHP_EOL . $string . ' ' . substr($file, $pos2));
echo "\n\nWrote the main table\n";
/* fix ini.xml files (if needed) */
foreach ($ini_files as $file) {
fix_ini_xml($file);
}
?>
|