Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
0.00% covered (danger)
0.00%
0 / 85
0.00% covered (danger)
0.00%
0 / 9
CRAP
0.00% covered (danger)
0.00%
0 / 3
FileAwareNodeVisitor
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 3
12
0.00% covered (danger)
0.00%
0 / 1
 enterNode
0.00% covered (danger)
0.00%
0 / 3
0.00% covered (danger)
0.00%
0 / 1
2
 setCurrentFile
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
 getCurrentFile
0.00% covered (danger)
0.00%
0 / 1
0.00% covered (danger)
0.00%
0 / 1
2
DeprecatedInterfaceFinder
0.00% covered (danger)
0.00%
0 / 33
0.00% covered (danger)
0.00%
0 / 3
182
0.00% covered (danger)
0.00%
0 / 1
 getFoundNodes
0.00% covered (danger)
0.00%
0 / 6
0.00% covered (danger)
0.00%
0 / 1
6
 isHardDeprecated
0.00% covered (danger)
0.00%
0 / 7
0.00% covered (danger)
0.00%
0 / 1
30
 enterNode
0.00% covered (danger)
0.00%
0 / 20
0.00% covered (danger)
0.00%
0 / 1
42
FindDeprecated
0.00% covered (danger)
0.00%
0 / 43
0.00% covered (danger)
0.00%
0 / 3
110
0.00% covered (danger)
0.00%
0 / 1
 __construct
0.00% covered (danger)
0.00%
0 / 2
0.00% covered (danger)
0.00%
0 / 1
2
 getFiles
0.00% covered (danger)
0.00%
0 / 5
0.00% covered (danger)
0.00%
0 / 1
2
 execute
0.00% covered (danger)
0.00%
0 / 36
0.00% covered (danger)
0.00%
0 / 1
72
1<?php
2/**
3 * Maintenance script that recursively scans MediaWiki's PHP source tree
4 * for deprecated functions and methods and pretty-prints the results.
5 *
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.
10 *
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.
15 *
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
20 *
21 * @file
22 * @ingroup Maintenance
23 * @phan-file-suppress PhanUndeclaredProperty Lots of custom properties
24 */
25
26require_once __DIR__ . '/Maintenance.php';
27require_once __DIR__ . '/../vendor/autoload.php';
28
29/**
30 * A PHPParser node visitor that associates each node with its file name.
31 */
32class FileAwareNodeVisitor extends PhpParser\NodeVisitorAbstract {
33    private $currentFile = null;
34
35    public function enterNode( PhpParser\Node $node ) {
36        $retVal = parent::enterNode( $node );
37        $node->filename = $this->currentFile;
38        return $retVal;
39    }
40
41    public function setCurrentFile( $filename ) {
42        $this->currentFile = $filename;
43    }
44
45    public function getCurrentFile() {
46        return $this->currentFile;
47    }
48}
49
50/**
51 * A PHPParser node visitor that finds deprecated functions and methods.
52 */
53class DeprecatedInterfaceFinder extends FileAwareNodeVisitor {
54
55    private $currentClass = null;
56
57    private $foundNodes = [];
58
59    public function getFoundNodes() {
60        // Sort results by version, then by filename, then by name.
61        foreach ( $this->foundNodes as &$nodes ) {
62            uasort( $nodes, static function ( $a, $b ) {
63                return ( $a['filename'] . $a['name'] ) <=> ( $b['filename'] . $b['name'] );
64            } );
65        }
66        ksort( $this->foundNodes );
67        return $this->foundNodes;
68    }
69
70    /**
71     * Check whether a function or method includes a call to wfDeprecated(),
72     * indicating that it is a hard-deprecated interface.
73     * @param PhpParser\Node $node
74     * @return bool
75     */
76    public function isHardDeprecated( PhpParser\Node $node ) {
77        if ( !$node->stmts ) {
78            return false;
79        }
80        foreach ( $node->stmts as $stmt ) {
81            if (
82                $stmt instanceof PhpParser\Node\Expr\FuncCall
83                && $stmt->name->toString() === 'wfDeprecated'
84            ) {
85                return true;
86            }
87            return false;
88        }
89    }
90
91    public function enterNode( PhpParser\Node $node ) {
92        $retVal = parent::enterNode( $node );
93
94        if ( $node instanceof PhpParser\Node\Stmt\ClassLike ) {
95            $this->currentClass = $node->name;
96        }
97
98        if ( $node instanceof PhpParser\Node\FunctionLike ) {
99            $docComment = $node->getDocComment();
100            if ( !$docComment ) {
101                return;
102            }
103            if ( !preg_match( '/@deprecated.*(\d+\.\d+)/', $docComment->getText(), $matches ) ) {
104                return;
105            }
106            $version = $matches[1];
107
108            if ( $node instanceof PhpParser\Node\Stmt\ClassMethod ) {
109                $name = $this->currentClass . '::' . $node->name;
110            } else {
111                $name = $node->name;
112            }
113
114            $this->foundNodes[ $version ][] = [
115                'filename' => $node->filename,
116                'line'     => $node->getLine(),
117                'name'     => $name,
118                'hard'     => $this->isHardDeprecated( $node ),
119            ];
120        }
121
122        return $retVal;
123    }
124}
125
126/**
127 * Maintenance task that recursively scans MediaWiki PHP files for deprecated
128 * functions and interfaces and produces a report.
129 */
130class FindDeprecated extends Maintenance {
131    public function __construct() {
132        parent::__construct();
133        $this->addDescription( 'Find deprecated interfaces' );
134    }
135
136    /**
137     * @return SplFileInfo[]
138     */
139    public function getFiles() {
140        global $IP;
141
142        $files = new RecursiveDirectoryIterator( $IP . '/includes' );
143        $files = new RecursiveIteratorIterator( $files );
144        $files = new RegexIterator( $files, '/\.php$/' );
145        return iterator_to_array( $files, false );
146    }
147
148    public function execute() {
149        global $IP;
150
151        $files = $this->getFiles();
152        $chunkSize = (int)ceil( count( $files ) / 72 );
153
154        $parser = ( new PhpParser\ParserFactory )->create( PhpParser\ParserFactory::PREFER_PHP7 );
155        $traverser = new PhpParser\NodeTraverser;
156        $finder = new DeprecatedInterfaceFinder;
157        $traverser->addVisitor( $finder );
158
159        $fileCount = count( $files );
160
161        for ( $i = 0; $i < $fileCount; $i++ ) {
162            $file = $files[$i];
163            $code = file_get_contents( $file );
164
165            if ( !str_contains( $code, '@deprecated' ) ) {
166                continue;
167            }
168
169            $finder->setCurrentFile( substr( $file->getPathname(), strlen( $IP ) + 1 ) );
170            $nodes = $parser->parse( $code );
171            $traverser->traverse( $nodes );
172
173            if ( $i % $chunkSize === 0 ) {
174                $percentDone = 100 * $i / $fileCount;
175                fprintf( STDERR, "\r[%-72s] %d%%", str_repeat( '#', $i / $chunkSize ), $percentDone );
176            }
177        }
178
179        fprintf( STDERR, "\r[%'#-72s] 100%%\n", '' );
180
181        // Colorize output if STDOUT is an interactive terminal.
182        if ( posix_isatty( STDOUT ) ) {
183            $versionFmt = "\n* Deprecated since \033[37;1m%s\033[0m:\n";
184            $entryFmt = "  %s \033[33;1m%s\033[0m (%s:%d)\n";
185        } else {
186            $versionFmt = "\n* Deprecated since %s:\n";
187            $entryFmt = "  %s %s (%s:%d)\n";
188        }
189
190        foreach ( $finder->getFoundNodes() as $version => $nodes ) {
191            printf( $versionFmt, $version );
192            foreach ( $nodes as $node ) {
193                printf(
194                    $entryFmt,
195                    $node['hard'] ? '+' : '-',
196                    $node['name'],
197                    $node['filename'],
198                    $node['line']
199                );
200            }
201        }
202        printf( "\nlegend:\n -: soft-deprecated\n +: hard-deprecated (via wfDeprecated())\n" );
203    }
204}
205
206$maintClass = FindDeprecated::class;
207require_once RUN_MAINTENANCE_IF_MAIN;