Merge "mediawiki.api: Use then() in getToken instead of manual Deferred wrapping"
[mediawiki.git] / includes / deferred / DeferredUpdates.php
blob5cf0d2be6eb1d5770d0c4d09705379127f060b5a
1 <?php
2 /**
3 * Interface and manager for deferred updates.
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
23 /**
24 * Interface that deferrable updates should implement. Basically required so we
25 * can validate input on DeferredUpdates::addUpdate()
27 * @since 1.19
29 interface DeferrableUpdate {
30 /**
31 * Perform the actual work
33 function doUpdate();
36 /**
37 * Class for managing the deferred updates.
39 * @since 1.19
41 class DeferredUpdates {
42 /**
43 * Store of updates to be deferred until the end of the request.
45 private static $updates = array();
47 /**
48 * Add an update to the deferred list
49 * @param DeferrableUpdate $update Some object that implements doUpdate()
51 public static function addUpdate( DeferrableUpdate $update ) {
52 array_push( self::$updates, $update );
55 /**
56 * HTMLCacheUpdates are the most common deferred update people use. This
57 * is a shortcut method for that.
58 * @see HTMLCacheUpdate::__construct()
59 * @param Title $title
60 * @param string $table
62 public static function addHTMLCacheUpdate( $title, $table ) {
63 self::addUpdate( new HTMLCacheUpdate( $title, $table ) );
66 /**
67 * Add a callable update. In a lot of cases, we just need a callback/closure,
68 * defining a new DeferrableUpdate object is not necessary
69 * @see MWCallableUpdate::__construct()
70 * @param callable $callable
72 public static function addCallableUpdate( $callable ) {
73 self::addUpdate( new MWCallableUpdate( $callable ) );
76 /**
77 * Do any deferred updates and clear the list
79 * @param string $commit set to 'commit' to commit after every update to
80 * prevent lock contention
82 public static function doUpdates( $commit = '' ) {
83 global $wgDeferredUpdateList;
85 wfProfileIn( __METHOD__ );
87 $updates = array_merge( $wgDeferredUpdateList, self::$updates );
89 // No need to get master connections in case of empty updates array
90 if ( !count( $updates ) ) {
91 wfProfileOut( __METHOD__ );
93 return;
96 $dbw = false;
97 $doCommit = $commit == 'commit';
98 if ( $doCommit ) {
99 $dbw = wfGetDB( DB_MASTER );
102 /** @var DeferrableUpdate $update */
103 foreach ( $updates as $update ) {
104 try {
105 $update->doUpdate();
107 if ( $doCommit && $dbw->trxLevel() ) {
108 $dbw->commit( __METHOD__, 'flush' );
110 } catch ( MWException $e ) {
111 // We don't want exceptions thrown during deferred updates to
112 // be reported to the user since the output is already sent.
113 // Instead we just log them.
114 if ( !$e instanceof ErrorPageError ) {
115 MWExceptionHandler::logException( $e );
120 self::clearPendingUpdates();
121 wfProfileOut( __METHOD__ );
125 * Clear all pending updates without performing them. Generally, you don't
126 * want or need to call this. Unit tests need it though.
128 public static function clearPendingUpdates() {
129 global $wgDeferredUpdateList;
130 $wgDeferredUpdateList = self::$updates = array();