ApiParse: don't reparse language link titles
[mediawiki.git] / maintenance / fileOpPerfTest.php
blob1922be2ce1fb228dbcf9a6c78c6a275ec0dd6ba5
1 <?php
2 /**
3 * Test for fileop performance.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
20 * @file
21 * @ingroup Maintenance
24 use Wikimedia\FileBackend\FileBackend;
26 // @codeCoverageIgnoreStart
27 require_once __DIR__ . '/Maintenance.php';
28 // @codeCoverageIgnoreEnd
30 /**
31 * Maintenance script to test fileop performance.
33 * @ingroup Maintenance
35 class FileOpPerfTest extends Maintenance {
36 public function __construct() {
37 parent::__construct();
38 $this->addDescription( 'Test fileop performance' );
39 $this->addOption( 'b1', 'Backend 1', true, true );
40 $this->addOption( 'b2', 'Backend 2', false, true );
41 $this->addOption( 'srcdir', 'File source directory', true, true );
42 $this->addOption( 'maxfiles', 'Max files', false, true );
43 $this->addOption( 'quick', 'Avoid operation pre-checks (use doQuickOperations())' );
44 $this->addOption( 'parallelize', '"parallelize" flag for doOperations()', false, true );
47 public function execute() {
48 $backendGroup = $this->getServiceContainer()->getFileBackendGroup();
49 $backend = $backendGroup->get( $this->getOption( 'b1' ) );
50 $this->doPerfTest( $backend );
52 if ( $this->getOption( 'b2' ) ) {
53 $backend = $backendGroup->get( $this->getOption( 'b2' ) );
54 $this->doPerfTest( $backend );
58 protected function doPerfTest( FileBackend $backend ) {
59 $ops1 = [];
60 $ops2 = [];
61 $ops3 = [];
62 $ops4 = [];
63 $ops5 = [];
65 $baseDir = 'mwstore://' . $backend->getName() . '/testing-cont1';
66 $backend->prepare( [ 'dir' => $baseDir ] );
68 $dirname = $this->getOption( 'srcdir' );
69 $dir = opendir( $dirname );
70 if ( !$dir ) {
71 return;
74 // phpcs:ignore Generic.CodeAnalysis.AssignmentInCondition.FoundInWhileCondition
75 while ( ( $file = readdir( $dir ) ) !== false ) {
76 if ( $file[0] != '.' ) {
77 $this->output( "Using '$dirname/$file' in operations.\n" );
78 $dst = $baseDir . '/' . wfBaseName( $file );
79 $ops1[] = [ 'op' => 'store',
80 'src' => "$dirname/$file", 'dst' => $dst, 'overwrite' => true ];
81 $ops2[] = [ 'op' => 'copy',
82 'src' => "$dst", 'dst' => "$dst-1", 'overwrite' => true ];
83 $ops3[] = [ 'op' => 'move',
84 'src' => $dst, 'dst' => "$dst-2", 'overwrite' => true ];
85 $ops4[] = [ 'op' => 'delete', 'src' => "$dst-1" ];
86 $ops5[] = [ 'op' => 'delete', 'src' => "$dst-2" ];
88 if ( count( $ops1 ) >= $this->getOption( 'maxfiles', 20 ) ) {
89 break;
92 closedir( $dir );
93 $this->output( "\n" );
95 $method = $this->hasOption( 'quick' ) ? 'doQuickOperations' : 'doOperations';
97 $opts = [ 'force' => 1 ];
98 if ( $this->hasOption( 'parallelize' ) ) {
99 $opts['parallelize'] = ( $this->getOption( 'parallelize' ) === 'true' );
102 $start = microtime( true );
103 $status = $backend->$method( $ops1, $opts );
104 $e = ( microtime( true ) - $start ) * 1000;
105 if ( !$status->isGood() ) {
106 $this->error( $status );
107 return;
109 $this->output( $backend->getName() . ": Stored " . count( $ops1 ) . " files in $e ms.\n" );
111 $start = microtime( true );
112 $status = $backend->$method( $ops2, $opts );
113 $e = ( microtime( true ) - $start ) * 1000;
114 if ( !$status->isGood() ) {
115 $this->error( $status );
116 return;
118 $this->output( $backend->getName() . ": Copied " . count( $ops2 ) . " files in $e ms.\n" );
120 $start = microtime( true );
121 $status = $backend->$method( $ops3, $opts );
122 $e = ( microtime( true ) - $start ) * 1000;
123 if ( !$status->isGood() ) {
124 $this->error( $status );
125 return;
127 $this->output( $backend->getName() . ": Moved " . count( $ops3 ) . " files in $e ms.\n" );
129 $start = microtime( true );
130 $status = $backend->$method( $ops4, $opts );
131 $e = ( microtime( true ) - $start ) * 1000;
132 if ( !$status->isGood() ) {
133 $this->error( $status );
134 return;
136 $this->output( $backend->getName() . ": Deleted " . count( $ops4 ) . " files in $e ms.\n" );
138 $start = microtime( true );
139 $status = $backend->$method( $ops5, $opts );
140 $e = ( microtime( true ) - $start ) * 1000;
141 if ( !$status->isGood() ) {
142 $this->error( $status );
143 return;
145 $this->output( $backend->getName() . ": Deleted " . count( $ops5 ) . " files in $e ms.\n" );
149 // @codeCoverageIgnoreStart
150 $maintClass = FileOpPerfTest::class;
151 require_once RUN_MAINTENANCE_IF_MAIN;
152 // @codeCoverageIgnoreEnd