3 * Base code for update jobs that do something with some secondary
4 * data extracted from article.
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 do something with some secondary
26 * data extracted from article.
28 * @note: subclasses should NOT start or commit transactions in their doUpdate() method,
29 * a transaction will automatically be wrapped around the update. If need be,
30 * subclasses can override the beginTransaction() and commitTransaction() methods.
32 abstract class DataUpdate
implements DeferrableUpdate
{
37 public function __construct() {
42 * Begin an appropriate transaction, if any.
43 * This default implementation does nothing.
45 public function beginTransaction() {
50 * Commit the transaction started via beginTransaction, if any.
51 * This default implementation does nothing.
53 public function commitTransaction() {
58 * Abort / roll back the transaction started via beginTransaction, if any.
59 * This default implementation does nothing.
61 public function rollbackTransaction() {
66 * Convenience method, calls doUpdate() on every DataUpdate in the array.
68 * This methods supports transactions logic by first calling beginTransaction()
69 * on all updates in the array, then calling doUpdate() on each, and, if all goes well,
70 * then calling commitTransaction() on each update. If an error occurs,
71 * rollbackTransaction() will be called on any update object that had beginTransaction()
72 * called but not yet commitTransaction().
74 * This allows for limited transactional logic across multiple backends for storing
77 * @param array $updates a list of DataUpdate instances
78 * @throws Exception|null
80 public static function runUpdates( $updates ) {
81 if ( empty( $updates ) ) return; # nothing to do
83 $open_transactions = array();
87 * @var $update DataUpdate
88 * @var $trans DataUpdate
93 foreach ( $updates as $update ) {
94 $update->beginTransaction();
95 $open_transactions[] = $update;
99 foreach ( $updates as $update ) {
103 // commit transactions
104 while ( count( $open_transactions ) > 0 ) {
105 $trans = array_pop( $open_transactions );
106 $trans->commitTransaction();
108 } catch ( Exception
$ex ) {
110 wfDebug( "Caught exception, will rethrow after rollback: " . $ex->getMessage() );
113 // rollback remaining transactions
114 while ( count( $open_transactions ) > 0 ) {
115 $trans = array_pop( $open_transactions );
116 $trans->rollbackTransaction();
120 throw $exception; // rethrow after cleanup