maintenance: Make use of BatchRowIterator::setCaller
[mediawiki.git] / maintenance / populateChangeTagDef.php
blob90a4511a8a0b41663d6716c15e13abe43a7b1a56
1 <?php
2 /**
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License as published by
5 * the Free Software Foundation; either version 2 of the License, or
6 * (at your option) any later version.
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
13 * You should have received a copy of the GNU General Public License along
14 * with this program; if not, write to the Free Software Foundation, Inc.,
15 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
16 * http://www.gnu.org/copyleft/gpl.html
19 require_once __DIR__ . '/Maintenance.php';
21 /**
22 * Populate and improve accuracy of change_tag_def statistics.
24 * @ingroup Maintenance
26 class PopulateChangeTagDef extends LoggedUpdateMaintenance {
27 /** @var Wikimedia\Rdbms\ILBFactory */
28 protected $lbFactory;
30 public function __construct() {
31 parent::__construct();
32 $this->addDescription( 'Populate and improve accuracy of change_tag_def statistics' );
33 $this->addOption( 'dry-run', 'Print debug info instead of actually deleting' );
34 $this->setBatchSize( 1000 );
35 $this->addOption(
36 'sleep',
37 'Sleep time (in seconds) between every batch, defaults to zero',
38 false,
39 true
41 $this->addOption( 'populate-only', 'Do not update change_tag_def table' );
42 $this->addOption( 'set-user-tags-only', 'Only update ctd_user_defined from valid_tag table' );
45 protected function doDBUpdates() {
46 $this->lbFactory = MediaWiki\MediaWikiServices::getInstance()->getDBLoadBalancerFactory();
47 $this->setBatchSize( $this->getOption( 'batch-size', $this->getBatchSize() ) );
49 if ( $this->lbFactory->getMainLB()->getConnection( DB_REPLICA )->fieldExists(
50 'change_tag',
51 'ct_tag',
52 __METHOD__
54 ) {
55 if ( $this->hasOption( 'set-user-tags-only' ) ) {
56 $this->setUserDefinedTags();
57 return true;
59 if ( !$this->hasOption( 'populate-only' ) ) {
60 $this->updateCountTag();
62 $this->backpopulateChangeTagId();
63 $this->setUserDefinedTags();
64 } else {
65 $this->updateCountTagId();
68 // TODO: Implement
69 // $this->cleanZeroCountRows();
71 return true;
74 private function setUserDefinedTags() {
75 $dbr = $this->lbFactory->getMainLB()->getConnection( DB_REPLICA );
77 $userTags = null;
78 if ( $dbr->tableExists( 'valid_tag', __METHOD__ ) ) {
79 $userTags = $dbr->selectFieldValues(
80 'valid_tag',
81 'vt_tag',
82 [],
83 __METHOD__
87 if ( empty( $userTags ) ) {
88 $this->output( "No user defined tags to set, moving on...\n" );
89 return;
92 if ( $this->hasOption( 'dry-run' ) ) {
93 $this->output(
94 'These tags will have ctd_user_defined=1 : ' . implode( ', ', $userTags ) . "\n"
96 return;
99 $dbw = $this->lbFactory->getMainLB()->getConnection( DB_MASTER );
101 $dbw->update(
102 'change_tag_def',
103 [ 'ctd_user_defined' => 1 ],
104 [ 'ctd_name' => $userTags ],
105 __METHOD__
107 $this->lbFactory->waitForReplication();
108 $this->output( "Finished setting user defined tags in change_tag_def table\n" );
111 private function updateCountTagId() {
112 $dbr = $this->lbFactory->getMainLB()->getConnection( DB_REPLICA );
114 // This query can be pretty expensive, don't run it on master
115 $res = $dbr->select(
116 'change_tag',
117 [ 'ct_tag_id', 'hitcount' => 'count(*)' ],
119 __METHOD__,
120 [ 'GROUP BY' => 'ct_tag_id' ]
123 $dbw = $this->lbFactory->getMainLB()->getConnection( DB_MASTER );
125 foreach ( $res as $row ) {
126 if ( !$row->ct_tag_id ) {
127 continue;
130 if ( $this->hasOption( 'dry-run' ) ) {
131 $this->output( 'This row will be updated: ' . implode( ', ', $row ) . "\n" );
132 continue;
135 $dbw->update(
136 'change_tag_def',
137 [ 'ctd_count' => $row->hitcount ],
138 [ 'ctd_id' => $row->ct_tag_id ],
139 __METHOD__
142 $this->lbFactory->waitForReplication();
145 private function updateCountTag() {
146 $dbr = $this->lbFactory->getMainLB()->getConnection( DB_REPLICA );
148 // This query can be pretty expensive, don't run it on master
149 $res = $dbr->select(
150 'change_tag',
151 [ 'ct_tag', 'hitcount' => 'count(*)' ],
153 __METHOD__,
154 [ 'GROUP BY' => 'ct_tag' ]
157 $dbw = $this->lbFactory->getMainLB()->getConnection( DB_MASTER );
159 foreach ( $res as $row ) {
160 // Hygiene check
161 if ( !$row->ct_tag ) {
162 continue;
165 if ( $this->hasOption( 'dry-run' ) ) {
166 $this->output( 'This row will be updated: ' . $row->ct_tag . $row->hitcount . "\n" );
167 continue;
170 $dbw->upsert(
171 'change_tag_def',
173 'ctd_name' => $row->ct_tag,
174 'ctd_user_defined' => 0,
175 'ctd_count' => $row->hitcount
177 'ctd_name',
178 [ 'ctd_count' => $row->hitcount ],
179 __METHOD__
182 $this->lbFactory->waitForReplication();
185 private function backpopulateChangeTagId() {
186 $dbr = $this->lbFactory->getMainLB()->getConnection( DB_REPLICA );
187 $changeTagDefs = $dbr->select(
188 'change_tag_def',
189 [ 'ctd_name', 'ctd_id' ],
191 __METHOD__,
192 [ 'ORDER BY' => 'ctd_id' ]
195 foreach ( $changeTagDefs as $row ) {
196 $this->backpopulateChangeTagPerTag( $row->ctd_name, $row->ctd_id );
200 private function backpopulateChangeTagPerTag( $tagName, $tagId ) {
201 $dbr = $this->lbFactory->getMainLB()->getConnection( DB_REPLICA );
202 $dbw = $this->lbFactory->getMainLB()->getConnection( DB_MASTER );
203 $sleep = (int)$this->getOption( 'sleep', 0 );
204 $lastId = 0;
205 $this->output( "Starting to add ct_tag_id = {$tagId} for ct_tag = {$tagName}\n" );
206 while ( true ) {
207 // Given that indexes might not be there, it's better to use replica
208 $ids = $dbr->selectFieldValues(
209 'change_tag',
210 'ct_id',
211 [ 'ct_tag' => $tagName, 'ct_tag_id' => null, 'ct_id > ' . $lastId ],
212 __METHOD__,
213 [ 'LIMIT' => $this->getBatchSize(), 'ORDER BY' => 'ct_id' ]
216 if ( !$ids ) {
217 break;
219 $lastId = end( $ids );
221 if ( $this->hasOption( 'dry-run' ) ) {
222 $this->output(
223 "These ids will be changed to have \"{$tagId}\" as tag id: " . implode( ', ', $ids ) . "\n"
225 continue;
226 } else {
227 $this->output( "Updating ct_tag_id = {$tagId} up to row ct_id = {$lastId}\n" );
230 $dbw->update(
231 'change_tag',
232 [ 'ct_tag_id' => $tagId ],
233 [ 'ct_id' => $ids ],
234 __METHOD__
237 $this->lbFactory->waitForReplication();
238 if ( $sleep > 0 ) {
239 sleep( $sleep );
243 $this->output( "Finished adding ct_tag_id = {$tagId} for ct_tag = {$tagName}\n" );
246 protected function getUpdateKey() {
247 return __CLASS__;
251 $maintClass = PopulateChangeTagDef::class;
252 require_once RUN_MAINTENANCE_IF_MAIN;