-
Notifications
You must be signed in to change notification settings - Fork 104
/
Copy pathcheck-examples.php
228 lines (192 loc) · 6.99 KB
/
check-examples.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
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
<?php
/*
+----------------------------------------------------------------------+
| PHP Version 5 |
+----------------------------------------------------------------------+
| Copyright (c) 2009-2011 The PHP Group |
+----------------------------------------------------------------------+
| This source file is subject to version 3.01 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_01.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 |
| [email protected] so we can mail you a copy immediately. |
+----------------------------------------------------------------------+
| Authors: Philip Olson <[email protected]> |
| Etienne Kneuss <[email protected]> |
+----------------------------------------------------------------------+
$Id$
*/
/*
PURPOSE:
- Lint checks every DocBook <example> and <informalexample> in the
PHP Manual
TODO:
- Compare expected output with actual (so not just a lint check)
- Compare all of phpdoc-all (with stripped comments)
- Inspect EDITOR code, too hackish?
- Consider move from regex to xmlreader or dom
- Check other <title> conditions aside from <function>
- Make Windows friendly, and consider passing in args to exec()
NOTES:
- It's possible to check one extension at a time, by passing in said
(any) directory
*/
define('REGEX_EXAMPLE_FIND','#<(informalexample|example)>\s*(?:<title>(.+)</title>)?\s*<programlisting(?: role="php")?>\s*<!\[CDATA\[(.+)]]>\s*</programlisting>(.*)</\1>#isU');
define('REGEX_OUTPUT_FIND', '#&example\.outputs.*?;\s*<screen>\s*<!\[CDATA\[(.+)]]>\s*</screen>#isU');
define('REGEX_TITLE_CLEAN', '#<function>([\w_-]+)</function>#');
$opts = getopt('p:t:o::h');
if (empty($opts) || isset($opts['h'])) {
usage();
}
if (empty($opts['p']) || empty($opts['t'])) {
echo "\nInfo: Both -p (phpdoc path) and -t (temporary directory) must be set\n";
usage();
}
if (!is_dir($opts['p']) || !is_dir($opts['t'])) {
trigger_error('Unknown directory passed in', E_USER_WARNING);
usage();
}
$tmpdir = $opts['t'];
$path = $opts['p'];
foreach (new RecursiveIteratorIterator(new RecursiveDirectoryIterator($path)) as $file) {
$filename = $file->getPathname();
if (!$file->isFile() || pathinfo($filename, PATHINFO_EXTENSION) !== 'xml' || is_known_failure($filename)) {
continue;
}
$examples = get_examples($filename);
if ($examples) {
foreach ($examples as $example) {
$parsed_example = validate_example($example, "$tmpdir/phplint{$_SERVER['REQUEST_TIME']}.php");
if (isset($parsed_example['error_line_num'])) {
$errors[] = $parsed_example;
}
}
}
}
if (empty($errors)) {
echo "No errors were found in examples!\n";
exit;
} else {
$o = '';
foreach ($errors as $error) {
echo "Filename : $error[filename]\n";
echo "Error : $error[return]\n";
echo "Line number : $error[error_line_num]\n";
echo "Example title : $error[title]\n";
echo "Example type : $error[type]\n";
echo "Example num : $error[num]\n";
echo "Line -1 : " . $error['error_line'][0] . "\n";
echo "Line : " . $error['error_line'][1] . "\n";
echo "Line +1 : " . $error['error_line'][2] . "\n";
echo "-----------------------\n";
$o .= " $error[filename]";
}
if (isset($opts['o'])) {
if (empty($opts['o'])) {
if (!empty($_SERVER['EDITOR'])) {
$opts['o'] = $_SERVER['EDITOR'];
} else {
echo $o;
exit;
}
}
shell_exec($opts['o'] . $o);
}
}
function get_examples ($filename) {
$content = file_get_contents($filename);
$info = array();
if ($number = preg_match_all(REGEX_EXAMPLE_FIND, $content, $matches)) {
// Found at least one example
foreach ($matches[3] as $num => $example) {
// Expected output as suggested by the XML
$expected = 'Unknown';
if (preg_match(REGEX_OUTPUT_FIND, $matches[4][$num], $match)) {
if (!empty($match[1])) {
$expected = $match[1];
}
}
// Type: example or informalexample
$type = trim($matches[1][$num]);
// Title: Most <example>'s have <title>'s
$title = 'Unknown';
if (!empty($matches[2][$num])) {
$title = preg_replace(REGEX_TITLE_CLEAN, '\1()', $matches[2][$num]);
}
$info[] = array(
'title' => trim(str_replace("\n", '', $title)),
'filename' => trim($filename),
'example' => trim($example),
'expected' => trim($expected),
'type' => trim($type),
'num' => (int) $num + 1,
);
}
}
if (empty($info)) {
return false;
}
return $info;
}
function validate_example ($info, $filename) {
if (!file_exists($filename) && !touch($filename)) {
trigger_error("Could not create file $filename for lint checking", E_USER_ERROR);
}
file_put_contents($filename, $info['example']);
exec("php -l {$filename} 2>&1", $out, $return);
$fq = preg_quote($filename);
$info['return'] = trim(preg_replace(array("@(in $fq.*)@", "@Errors parsing $fq@"), '', $out[0]));
// Has it always been "No syntax errors detected"? Let's assume so for now
if (false === strpos($info['return'], 'No syntax errors detected')) {
$parts = explode("\n", $info['example']);
$error_line_num = (int) trim(substr($out[0], strpos($out[0], 'on line')+8));
$info['error_line_num'] = $error_line_num;
$info['error_line'][0] = trim($parts[($error_line_num-1)]);
$info['error_line'][1] = trim($parts[$error_line_num]);
if (isset($parts[($error_line_num+1)])) {
$info['error_line'][2] = trim($parts[($error_line_num+1)]);
} else {
$info['error_line'][2] = 'None';
}
}
return $info;
}
function is_known_failure($filename) {
// Consider rewriting these examples to not fail
$known_failures = array(
'.manual.xml',
'appendices/migration52.xml',
'language/basic-syntax.xml',
'language/control-structures/declare.xml',
'language/control-structures/elseif.xml',
'language/exceptions.xml',
'language/namespaces.xml',
'language/oop.xml',
'language/oop/basic.xml',
'language/oop/final.xml',
'language/oop/reflection.xml',
'language/references.xml',
'language/variables.xml',
'language/types/array.xml',
'language/types/string.xml',
'reference/ming/examples.xml',
'reference/overload/examples.xml',
'reference/sca/examples.xml',
'reference/strings/functions/echo.xml',
);
foreach ($known_failures as $fail) {
if (false !== strpos($filename, $fail)) {
return true;
}
}
return false;
}
function usage() {
echo "\n------ DocBook Lint Checker ------\n";
echo "Usage: php {$_SERVER['argv'][0]} -p /path/to/php/doc/cvs -t /path/to/tmp/dir\n";
echo "Example: php {$_SERVER['argv'][0]} -p /cvs/phpdoc/en -t /tmp\n";
echo "Optional: -o to load files in EDITOR (" . $_SERVER['EDITOR'] . ") or -o /path/to/editor\n";
exit;
}