Completed
Branch master (d7c4e6)
by
unknown
29:20
created

SqlDataUpdate::invalidatePages()   B

Complexity

Conditions 3
Paths 2

Size

Total Lines 41
Code Lines 19

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 3
eloc 19
nc 2
nop 2
dl 0
loc 41
rs 8.8571
c 0
b 0
f 0
1
<?php
2
/**
3
 * Base code for update jobs that put some secondary data extracted
4
 * from article content into the database.
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
 */
23
24
/**
25
 * Abstract base class for update jobs that put some secondary data extracted
26
 * from article content into the database.
27
 *
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.
32
 */
33
abstract class SqlDataUpdate extends DataUpdate {
34
	/** @var IDatabase Database connection reference */
35
	protected $mDb;
36
37
	/** @var array SELECT options to be used (array) */
38
	protected $mOptions = [];
39
40
	/** @var bool Whether a transaction is open on this object (internal use only!) */
41
	private $mHasTransaction;
42
43
	/** @var bool Whether this update should be wrapped in a transaction */
44
	protected $mUseTransaction;
45
46
	/**
47
	 * Constructor
48
	 *
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.
52
	 */
53
	public function __construct( $withTransaction = true ) {
54
		parent::__construct();
55
56
		$this->mDb = wfGetLB()->getLazyConnectionRef( DB_MASTER );
0 ignored issues
show
Deprecated Code introduced by
The function wfGetLB() has been deprecated with message: since 1.27, use MediaWikiServices::getDBLoadBalancer() or MediaWikiServices::getDBLoadBalancerFactory() instead.

This function has been deprecated. The supplier of the file has supplied an explanatory message.

The explanatory message should give you some clue as to whether and when the function will be removed from the class and what other function to use instead.

Loading history...
57
58
		$this->mWithTransaction = $withTransaction;
0 ignored issues
show
Bug introduced by
The property mWithTransaction does not exist. Did you maybe forget to declare it?

In PHP it is possible to write to properties without declaring them. For example, the following is perfectly valid PHP code:

class MyClass { }

$x = new MyClass();
$x->foo = true;

Generally, it is a good practice to explictly declare properties to avoid accidental typos and provide IDE auto-completion:

class MyClass {
    public $foo;
}

$x = new MyClass();
$x->foo = true;
Loading history...
59
		$this->mHasTransaction = false;
60
	}
61
62
	/**
63
	 * Begin a database transaction, if $withTransaction was given as true in
64
	 * the constructor for this SqlDataUpdate.
65
	 *
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.
69
	 */
70
	public function beginTransaction() {
71
		if ( !$this->mWithTransaction ) {
72
			return;
73
		}
74
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;
79
		}
80
	}
81
82
	/**
83
	 * Commit the database transaction started via beginTransaction (if any).
84
	 */
85
	public function commitTransaction() {
86
		if ( $this->mHasTransaction ) {
87
			$this->mDb->commit( get_class( $this ) . '::commitTransaction' );
88
			$this->mHasTransaction = false;
89
		}
90
	}
91
92
	/**
93
	 * Abort the database transaction started via beginTransaction (if any).
94
	 */
95
	public function abortTransaction() {
96
		if ( $this->mHasTransaction ) { // XXX: actually... maybe always?
97
			$this->mDb->rollback( get_class( $this ) . '::abortTransaction' );
98
			$this->mHasTransaction = false;
99
		}
100
	}
101
}
102