Merge "Make DBAccessBase use DBConnRef, rename $wiki, and hide getLoadBalancer()"
[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 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License as published by
13 * the Free Software Foundation; either version 2 of the License, or
14 * (at your option) any later version.
15 *
16 * This program is distributed in the hope that it will be useful,
17 * but WITHOUT ANY WARRANTY; without even the implied warranty of
18 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 * GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along
22 * with this program; if not, write to the Free Software Foundation, Inc.,
23 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
24 * http://www.gnu.org/copyleft/gpl.html
25 *
26 * @file
27 * @todo document
28 * @ingroup Maintenance
29 *
30 * @author Antoine Musso <hashar at free dot fr>
31 * @author Brion Vibber
32 * @author Alexandre Emsenhuber
33 * @version first release
34 */
35
36 use MediaWiki\Shell\Shell;
37
38 require_once __DIR__ . '/Maintenance.php';
39
40 /**
41 * Maintenance script that builds doxygen documentation.
42 * @ingroup Maintenance
43 */
44 class MWDocGen extends Maintenance {
45
46 /**
47 * Prepare Maintenance class
48 */
49 public function __construct() {
50 parent::__construct();
51 $this->addDescription( 'Build doxygen documentation' );
52
53 $this->addOption( 'doxygen',
54 'Path to doxygen',
55 false, true );
56 $this->addOption( 'version',
57 'Pass a MediaWiki version',
58 false, true );
59 $this->addOption( 'file',
60 "Only process given file or directory. Multiple values " .
61 "accepted with comma separation. Path relative to \$IP.",
62 false, true );
63 $this->addOption( 'output',
64 'Path to write doc to',
65 false, true );
66 $this->addOption( 'no-extensions',
67 'Ignore extensions' );
68 }
69
70 public function getDbType() {
71 return Maintenance::DB_NONE;
72 }
73
74 protected function init() {
75 global $wgPhpCli, $IP;
76
77 $this->doxygen = $this->getOption( 'doxygen', 'doxygen' );
78 $this->mwVersion = $this->getOption( 'version', 'master' );
79
80 $this->input = '';
81 $inputs = explode( ',', $this->getOption( 'file', '' ) );
82 foreach ( $inputs as $input ) {
83 # Doxygen inputs are space separted and double quoted
84 $this->input .= " \"$IP/$input\"";
85 }
86
87 $this->output = $this->getOption( 'output', "$IP/docs" );
88
89 // Do not use wfShellWikiCmd, because mwdoc-filter.php is not
90 // a Maintenance script.
91 $this->inputFilter = Shell::escape( [
92 $wgPhpCli,
93 $IP . '/maintenance/mwdoc-filter.php'
94 ] );
95
96 $this->template = $IP . '/maintenance/Doxyfile';
97 $this->excludes = [
98 'vendor',
99 'node_modules',
100 'resources/lib',
101 'images',
102 'static',
103 ];
104 $this->excludePatterns = [];
105 if ( $this->hasOption( 'no-extensions' ) ) {
106 $this->excludePatterns[] = 'extensions';
107 }
108
109 $this->doDot = shell_exec( 'which dot' );
110 }
111
112 public function execute() {
113 global $IP;
114
115 $this->init();
116
117 # Build out directories we want to exclude
118 $exclude = '';
119 foreach ( $this->excludes as $item ) {
120 $exclude .= " $IP/$item";
121 }
122
123 $excludePatterns = implode( ' ', $this->excludePatterns );
124
125 $conf = strtr( file_get_contents( $this->template ),
126 [
127 '{{OUTPUT_DIRECTORY}}' => $this->output,
128 '{{STRIP_FROM_PATH}}' => $IP,
129 '{{CURRENT_VERSION}}' => $this->mwVersion,
130 '{{INPUT}}' => $this->input,
131 '{{EXCLUDE}}' => $exclude,
132 '{{EXCLUDE_PATTERNS}}' => $excludePatterns,
133 '{{HAVE_DOT}}' => $this->doDot ? 'YES' : 'NO',
134 '{{INPUT_FILTER}}' => $this->inputFilter,
135 ]
136 );
137
138 $tmpFile = tempnam( wfTempDir(), 'MWDocGen-' );
139 if ( file_put_contents( $tmpFile, $conf ) === false ) {
140 $this->fatalError( "Could not write doxygen configuration to file $tmpFile\n" );
141 }
142
143 $command = $this->doxygen . ' ' . $tmpFile;
144 $this->output( "Executing command:\n$command\n" );
145
146 $exitcode = 1;
147 system( $command, $exitcode );
148
149 $this->output( <<<TEXT
150 ---------------------------------------------------
151 Doxygen execution finished.
152 Check above for possible errors.
153
154 You might want to delete the temporary file:
155 $tmpFile
156 ---------------------------------------------------
157
158 TEXT
159 );
160
161 if ( $exitcode !== 0 ) {
162 $this->fatalError( "Something went wrong (exit: $exitcode)\n", $exitcode );
163 }
164 }
165 }
166
167 $maintClass = MWDocGen::class;
168 require_once RUN_MAINTENANCE_IF_MAIN;