3 * Base code for update jobs that put some secondary data extracted
4 * from article content into the database.
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
25 * Abstract base class for update jobs that put some secondary data extracted
26 * from article content into the database.
28 * @note subclasses should NOT start or commit transactions in their doUpdate() method,
29 * a transaction will automatically be wrapped around the update. Starting another
30 * one would break the outer transaction bracket. If need be, subclasses can override
31 * the beginTransaction() and commitTransaction() methods.
33 abstract class SqlDataUpdate
extends DataUpdate
{
34 /** @var IDatabase Database connection reference */
37 /** @var array SELECT options to be used (array) */
38 protected $mOptions = [];
40 /** @var bool Whether a transaction is open on this object (internal use only!) */
41 private $mHasTransaction;
43 /** @var bool Whether this update should be wrapped in a transaction */
44 protected $mUseTransaction;
49 * @param bool $withTransaction Whether this update should be wrapped in a
50 * transaction (default: true). A transaction is only started if no
51 * transaction is already in progress, see beginTransaction() for details.
53 public function __construct( $withTransaction = true ) {
54 parent
::__construct();
56 $this->mDb
= wfGetLB()->getLazyConnectionRef( DB_MASTER
);
58 $this->mWithTransaction
= $withTransaction;
59 $this->mHasTransaction
= false;
63 * Begin a database transaction, if $withTransaction was given as true in
64 * the constructor for this SqlDataUpdate.
66 * Because nested transactions are not supported by the Database class,
67 * this implementation checks Database::trxLevel() and only opens a
68 * transaction if none is already active.
70 public function beginTransaction() {
71 if ( !$this->mWithTransaction
) {
75 // NOTE: nested transactions are not supported, only start a transaction if none is open
76 if ( $this->mDb
->trxLevel() === 0 ) {
77 $this->mDb
->begin( get_class( $this ) . '::beginTransaction' );
78 $this->mHasTransaction
= true;
83 * Commit the database transaction started via beginTransaction (if any).
85 public function commitTransaction() {
86 if ( $this->mHasTransaction
) {
87 $this->mDb
->commit( get_class( $this ) . '::commitTransaction' );
88 $this->mHasTransaction
= false;
93 * Abort the database transaction started via beginTransaction (if any).
95 public function abortTransaction() {
96 if ( $this->mHasTransaction
) { // XXX: actually... maybe always?
97 $this->mDb
->rollback( get_class( $this ) . '::abortTransaction' );
98 $this->mHasTransaction
= false;
103 * Invalidate the cache of a list of pages from a single namespace.
104 * This is intended for use by subclasses.
106 * @param int $namespace Namespace number
107 * @param array $dbkeys
109 protected function invalidatePages( $namespace, array $dbkeys ) {
110 if ( $dbkeys === [] ) {
115 $dbw->onTransactionPreCommitOrIdle( function() use ( $dbw, $namespace, $dbkeys ) {
117 * Determine which pages need to be updated
118 * This is necessary to prevent the job queue from smashing the DB with
119 * large numbers of concurrent invalidations of the same page
121 $now = $dbw->timestamp();
122 $ids = $dbw->selectFieldValues( 'page',
125 'page_namespace' => $namespace,
126 'page_title' => $dbkeys,
127 'page_touched < ' . $dbw->addQuotes( $now )
138 * We still need the page_touched condition, in case the row has changed since
139 * the non-locking select above.
141 $dbw->update( 'page',
142 [ 'page_touched' => $now ],
145 'page_touched < ' . $dbw->addQuotes( $now )