3 * Maintenance script that recursively scans MediaWiki's PHP source tree
4 * for deprecated functions and methods and pretty-prints the results.
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License along
17 * with this program; if not, write to the Free Software Foundation, Inc.,
18 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
19 * http://www.gnu.org/copyleft/gpl.html
22 * @ingroup Maintenance
25 require_once __DIR__
. '/Maintenance.php';
26 require_once __DIR__
. '/../vendor/autoload.php';
29 * A PHPParser node visitor that associates each node with its file name.
31 class FileAwareNodeVisitor
extends PhpParser\NodeVisitorAbstract
{
32 private $currentFile = null;
34 public function enterNode( PhpParser\Node
$node ) {
35 $retVal = parent
::enterNode( $node );
36 $node->filename
= $this->currentFile
;
40 public function setCurrentFile( $filename ) {
41 $this->currentFile
= $filename;
44 public function getCurrentFile() {
45 return $this->currentFile
;
50 * A PHPParser node visitor that finds deprecated functions and methods.
52 class DeprecatedInterfaceFinder
extends FileAwareNodeVisitor
{
54 private $currentClass = null;
56 private $foundNodes = [];
58 public function getFoundNodes() {
59 // Sort results by version, then by filename, then by name.
60 foreach ( $this->foundNodes
as $version => &$nodes ) {
61 uasort( $nodes, function ( $a, $b ) {
62 return ( $a['filename'] . $a['name'] ) < ( $b['filename'] . $b['name'] ) ?
-1 : 1;
65 ksort( $this->foundNodes
);
66 return $this->foundNodes
;
70 * Check whether a function or method includes a call to wfDeprecated(),
71 * indicating that it is a hard-deprecated interface.
73 public function isHardDeprecated( PhpParser\Node
$node ) {
74 if ( !$node->stmts
) {
77 foreach ( $node->stmts
as $stmt ) {
79 $stmt instanceof PhpParser\Node\Expr\FuncCall
80 && $stmt->name
->toString() === 'wfDeprecated'
88 public function enterNode( PhpParser\Node
$node ) {
89 $retVal = parent
::enterNode( $node );
91 if ( $node instanceof PhpParser\Node\Stmt\ClassLike
) {
92 $this->currentClass
= $node->name
;
95 if ( $node instanceof PhpParser\Node\FunctionLike
) {
96 $docComment = $node->getDocComment();
100 if ( !preg_match( '/@deprecated.*(\d+\.\d+)/', $docComment->getText(), $matches ) ) {
103 $version = $matches[1];
105 if ( $node instanceof PhpParser\Node\Stmt\ClassMethod
) {
106 $name = $this->currentClass
. '::' . $node->name
;
111 $this->foundNodes
[ $version ][] = [
112 'filename' => $node->filename
,
113 'line' => $node->getLine(),
115 'hard' => $this->isHardDeprecated( $node ),
124 * Maintenance task that recursively scans MediaWiki PHP files for deprecated
125 * functions and interfaces and produces a report.
127 class FindDeprecated
extends Maintenance
{
128 public function __construct() {
129 parent
::__construct();
130 $this->addDescription( 'Find deprecated interfaces' );
133 public function getFiles() {
136 $files = new RecursiveDirectoryIterator( $IP . '/includes' );
137 $files = new RecursiveIteratorIterator( $files );
138 $files = new RegexIterator( $files, '/\.php$/' );
139 return iterator_to_array( $files, false );
142 public function execute() {
145 $files = $this->getFiles();
146 $chunkSize = ceil( count( $files ) / 72 );
148 $parser = ( new PhpParser\ParserFactory
)->create( PhpParser\ParserFactory
::PREFER_PHP7
);
149 $traverser = new PhpParser\NodeTraverser
;
150 $finder = new DeprecatedInterfaceFinder
;
151 $traverser->addVisitor( $finder );
153 $fileCount = count( $files );
155 for ( $i = 0; $i < $fileCount; $i++
) {
157 $code = file_get_contents( $file );
159 if ( strpos( $code, '@deprecated' ) === -1 ) {
163 $finder->setCurrentFile( substr( $file->getPathname(), strlen( $IP ) +
1 ) );
164 $nodes = $parser->parse( $code, [ 'throwOnError' => false ] );
165 $traverser->traverse( $nodes );
167 if ( $i %
$chunkSize === 0 ) {
168 $percentDone = 100 * $i / $fileCount;
169 fprintf( STDERR
, "\r[%-72s] %d%%", str_repeat( '#', $i / $chunkSize ), $percentDone );
173 fprintf( STDERR
, "\r[%'#-72s] 100%%\n", '' );
175 // Colorize output if STDOUT is an interactive terminal.
176 if ( posix_isatty( STDOUT
) ) {
177 $versionFmt = "\n* Deprecated since \033[37;1m%s\033[0m:\n";
178 $entryFmt = " %s \033[33;1m%s\033[0m (%s:%d)\n";
180 $versionFmt = "\n* Deprecated since %s:\n";
181 $entryFmt = " %s %s (%s:%d)\n";
184 foreach ( $finder->getFoundNodes() as $version => $nodes ) {
185 printf( $versionFmt, $version );
186 foreach ( $nodes as $node ) {
189 $node['hard'] ?
'+' : '-',
196 printf( "\nlegend:\n -: soft-deprecated\n +: hard-deprecated (via wfDeprecated())\n" );
200 $maintClass = 'FindDeprecated';
201 require_once RUN_MAINTENANCE_IF_MAIN
;