Merge "[FileBackend] Set ignore_user_abort() in file operations."
[lhc/web/wiklou.git] / maintenance / mwdocgen.php
1 <?php
2 /**
3 * Generate class and file reference documentation for MediaWiki using doxygen.
4 *
5 * If the dot DOT language processor is available, attempt call graph
6 * generation.
7 *
8 * Usage:
9 * php mwdocgen.php
10 *
11 * KNOWN BUGS:
12 *
13 * - pass_thru seems to always use buffering (even with ob_implicit_flush()),
14 * that make output slow when doxygen parses language files.
15 * - the menu doesnt work, got disabled at revision 13740. Need to code it.
16 *
17 * This program is free software; you can redistribute it and/or modify
18 * it under the terms of the GNU General Public License as published by
19 * the Free Software Foundation; either version 2 of the License, or
20 * (at your option) any later version.
21 *
22 * This program is distributed in the hope that it will be useful,
23 * but WITHOUT ANY WARRANTY; without even the implied warranty of
24 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
25 * GNU General Public License for more details.
26 *
27 * You should have received a copy of the GNU General Public License along
28 * with this program; if not, write to the Free Software Foundation, Inc.,
29 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
30 * http://www.gnu.org/copyleft/gpl.html
31 *
32 * @file
33 * @todo document
34 * @ingroup Maintenance
35 *
36 * @author Antoine Musso <hashar at free dot fr>
37 * @author Brion Vibber
38 * @author Alexandre Emsenhuber
39 * @version first release
40 */
41
42 #
43 # Variables / Configuration
44 #
45
46 if ( PHP_SAPI != 'cli' ) {
47 echo 'Run "' . __FILE__ . '" from the command line.';
48 die( -1 );
49 }
50
51 /** Figure out the base directory for MediaWiki location */
52 $mwPath = dirname( __DIR__ ) . DIRECTORY_SEPARATOR;
53
54 /** doxygen binary script */
55 $doxygenBin = 'doxygen';
56
57 /** doxygen configuration template for mediawiki */
58 $doxygenTemplate = $mwPath . 'maintenance/Doxyfile';
59
60 /** doxygen input filter to tweak source file before they are parsed */
61 $doxygenInputFilter = "php {$mwPath}maintenance/mwdoc-filter.php";
62
63 /** where Phpdoc should output documentation */
64 $doxyOutput = $mwPath . 'docs' . DIRECTORY_SEPARATOR ;
65
66 /** MediaWiki subpaths */
67 $mwPathI = $mwPath . 'includes/';
68 $mwPathL = $mwPath . 'languages/';
69 $mwPathM = $mwPath . 'maintenance/';
70 $mwPathS = $mwPath . 'skins/';
71
72 /** Ignored paths relative to $mwPath */
73 $mwExcludePaths = array(
74 'images',
75 'static',
76 );
77
78 /** Variable to get user input */
79 $input = '';
80 $excludePatterns = '';
81 /** Whether to generates man pages: */
82 $doxyGenerateMan = false;
83
84 #
85 # Functions
86 #
87
88 define( 'MEDIAWIKI', true );
89 require_once( "$mwPath/includes/GlobalFunctions.php" );
90
91 /**
92 * Read a line from the shell
93 * @param $prompt String
94 * @return string
95 */
96 function readaline( $prompt = '' ) {
97 print $prompt;
98 $fp = fopen( "php://stdin", "r" );
99 $resp = trim( fgets( $fp, 1024 ) );
100 fclose( $fp );
101 return $resp;
102 }
103
104 /**
105 * Generate a configuration file given user parameters and return the temporary filename.
106 * @param $doxygenTemplate String: full path for the template.
107 * @param $outputDirectory String: directory where the stuff will be output.
108 * @param $stripFromPath String: path that should be stripped out (usually mediawiki base path).
109 * @param $currentVersion String: Version number of the software
110 * @param $input String: Path to analyze.
111 * @param $exclude String: Additionals path regex to exclude
112 * @param $excludePatterns String: Additionals path regex to exclude
113 * (LocalSettings.php, AdminSettings.php, .svn and .git directories are always excluded)
114 * @param $doxyGenerateMan Boolean
115 * @return string
116 */
117 function generateConfigFile( $doxygenTemplate, $outputDirectory, $stripFromPath, $currentVersion, $input, $exclude, $excludePatterns, $doxyGenerateMan, $doxygenInputFilter ) {
118
119 $template = file_get_contents( $doxygenTemplate );
120 // Replace template placeholders by correct values.
121 $replacements = array(
122 '{{OUTPUT_DIRECTORY}}' => $outputDirectory,
123 '{{STRIP_FROM_PATH}}' => $stripFromPath,
124 '{{CURRENT_VERSION}}' => $currentVersion,
125 '{{INPUT}}' => $input,
126 '{{EXCLUDE}}' => $exclude,
127 '{{EXCLUDE_PATTERNS}}' => $excludePatterns,
128 '{{HAVE_DOT}}' => `which dot` ? 'YES' : 'NO',
129 '{{GENERATE_MAN}}' => $doxyGenerateMan ? 'YES' : 'NO',
130 '{{INPUT_FILTER}}' => $doxygenInputFilter,
131 );
132 $tmpCfg = str_replace( array_keys( $replacements ), array_values( $replacements ), $template );
133 $tmpFileName = tempnam( wfTempDir(), 'mwdocgen-' );
134 file_put_contents( $tmpFileName , $tmpCfg ) or die( "Could not write doxygen configuration to file $tmpFileName\n" );
135
136 return $tmpFileName;
137 }
138
139 #
140 # Main !
141 #
142
143 unset( $file );
144
145 if ( is_array( $argv ) ) {
146 for ($i = 0; $i < count($argv); $i++ ) {
147 switch( $argv[$i] ) {
148 case '--all': $input = 0; break;
149 case '--includes': $input = 1; break;
150 case '--languages': $input = 2; break;
151 case '--maintenance': $input = 3; break;
152 case '--skins': $input = 4; break;
153 case '--file':
154 $input = 5;
155 $i++;
156 if ( isset( $argv[$i] ) ) {
157 $file = $argv[$i];
158 }
159 break;
160 case '--no-extensions': $input = 6; break;
161 case '--output':
162 $i++;
163 if ( isset( $argv[$i] ) ) {
164 $doxyOutput = realpath( $argv[$i] );
165 }
166 break;
167 case '--generate-man':
168 $doxyGenerateMan = true;
169 break;
170 case '--help':
171 print <<<END
172 Usage: php mwdocgen.php [<command>] [<options>]
173
174 Commands:
175 --all Process entire codebase
176 --includes Process only files in includes/ dir
177 --languages Process only files in languages/ dir
178 --maintenance Process only files in maintenance/ dir
179 --skins Process only files in skins/ dir
180 --file <file> Process only the given file
181 --no-extensions Process everything but extensions directorys
182
183 If no command is given, you will be prompted.
184
185 Other options:
186 --output <dir> Set output directory (default $doxyOutput)
187 --generate-man Generates man page documentation
188 --help Show this help and exit.
189
190
191 END;
192 exit(0);
193 break;
194 }
195 }
196 }
197
198 // TODO : generate a list of paths ))
199
200 if ( $input === '' ) {
201 echo <<<OPTIONS
202 Several documentation possibilities:
203 0 : whole documentation (1 + 2 + 3 + 4)
204 1 : only includes
205 2 : only languages
206 3 : only maintenance
207 4 : only skins
208 5 : only a given file
209 6 : all but the extensions directory
210 OPTIONS;
211 while ( !is_numeric( $input ) )
212 {
213 $input = readaline( "\nEnter your choice [0]:" );
214 if ( $input == '' ) {
215 $input = 0;
216 }
217 }
218 }
219
220 switch ( $input ) {
221 case 0: $input = $mwPath; break;
222 case 1: $input = $mwPathI; break;
223 case 2: $input = $mwPathL; break;
224 case 3: $input = $mwPathM; break;
225 case 4: $input = $mwPathS; break;
226 case 5:
227 if ( !isset( $file ) ) {
228 $file = readaline( "Enter file name $mwPath" );
229 }
230 $input = $mwPath . $file;
231 break;
232 case 6:
233 $input = $mwPath;
234 $excludePatterns = 'extensions';
235 }
236
237 // @todo FIXME to work on git
238 $version = 'master';
239
240 // Generate path exclusions
241 $excludedPaths = $mwPath . join( " $mwPath", $mwExcludePaths );
242 print "EXCLUDE: $excludedPaths\n\n";
243
244 $generatedConf = generateConfigFile( $doxygenTemplate, $doxyOutput, $mwPath, $version, $input, $excludedPaths, $excludePatterns, $doxyGenerateMan, $doxygenInputFilter );
245 $command = $doxygenBin . ' ' . $generatedConf;
246
247 echo <<<TEXT
248 ---------------------------------------------------
249 Launching the command:
250
251 $command
252
253 ---------------------------------------------------
254
255 TEXT;
256
257 passthru( $command );
258
259 echo <<<TEXT
260 ---------------------------------------------------
261 Doxygen execution finished.
262 Check above for possible errors.
263
264 You might want to delete the temporary file $generatedConf
265
266 TEXT;