Merge "Avoid 'message' in log context in AuthManager"
[lhc/web/wiklou.git] / includes / libs / rdbms / lbfactory / ILBFactory.php
1 <?php
2 /**
3 * Generator and manager of database load balancing objects
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup Database
22 */
23
24 /**
25 * An interface for generating database load balancers
26 * @ingroup Database
27 * @since 1.28
28 */
29 interface ILBFactory {
30 const SHUTDOWN_NO_CHRONPROT = 0; // don't save DB positions at all
31 const SHUTDOWN_CHRONPROT_ASYNC = 1; // save DB positions, but don't wait on remote DCs
32 const SHUTDOWN_CHRONPROT_SYNC = 2; // save DB positions, waiting on all DCs
33
34 /**
35 * Construct a manager of ILoadBalancer objects
36 *
37 * Sub-classes will extend the required keys in $conf with additional parameters
38 *
39 * @param $conf $params Array with keys:
40 * - localDomain: A DatabaseDomain or domain ID string.
41 * - readOnlyReason : Reason the master DB is read-only if so [optional]
42 * - srvCache : BagOStuff object for server cache [optional]
43 * - memCache : BagOStuff object for cluster memory cache [optional]
44 * - wanCache : WANObjectCache object [optional]
45 * - hostname : The name of the current server [optional]
46 * - cliMode: Whether the execution context is a CLI script. [optional]
47 * - profiler : Class name or instance with profileIn()/profileOut() methods. [optional]
48 * - trxProfiler: TransactionProfiler instance. [optional]
49 * - replLogger: PSR-3 logger instance. [optional]
50 * - connLogger: PSR-3 logger instance. [optional]
51 * - queryLogger: PSR-3 logger instance. [optional]
52 * - perfLogger: PSR-3 logger instance. [optional]
53 * - errorLogger : Callback that takes an Exception and logs it. [optional]
54 * @throws InvalidArgumentException
55 */
56 public function __construct( array $conf );
57
58 /**
59 * Disables all load balancers. All connections are closed, and any attempt to
60 * open a new connection will result in a DBAccessError.
61 * @see ILoadBalancer::disable()
62 */
63 public function destroy();
64
65 /**
66 * Create a new load balancer object. The resulting object will be untracked,
67 * not chronology-protected, and the caller is responsible for cleaning it up.
68 *
69 * This method is for only advanced usage and callers should almost always use
70 * getMainLB() instead. This method can be useful when a table is used as a key/value
71 * store. In that cases, one might want to query it in autocommit mode (DBO_TRX off)
72 * but still use DBO_TRX transaction rounds on other tables.
73 *
74 * @param bool|string $domain Domain ID, or false for the current domain
75 * @return ILoadBalancer
76 */
77 public function newMainLB( $domain = false );
78
79 /**
80 * Get a cached (tracked) load balancer object.
81 *
82 * @param bool|string $domain Domain ID, or false for the current domain
83 * @return ILoadBalancer
84 */
85 public function getMainLB( $domain = false );
86
87 /**
88 * Create a new load balancer for external storage. The resulting object will be
89 * untracked, not chronology-protected, and the caller is responsible for
90 * cleaning it up.
91 *
92 * This method is for only advanced usage and callers should almost always use
93 * getExternalLB() instead. This method can be useful when a table is used as a
94 * key/value store. In that cases, one might want to query it in autocommit mode
95 * (DBO_TRX off) but still use DBO_TRX transaction rounds on other tables.
96 *
97 * @param string $cluster External storage cluster, or false for core
98 * @param bool|string $domain Domain ID, or false for the current domain
99 * @return ILoadBalancer
100 */
101 public function newExternalLB( $cluster, $domain = false );
102
103 /**
104 * Get a cached (tracked) load balancer for external storage
105 *
106 * @param string $cluster External storage cluster, or false for core
107 * @param bool|string $domain Domain ID, or false for the current domain
108 * @return ILoadBalancer
109 */
110 public function getExternalLB( $cluster, $domain = false );
111
112 /**
113 * Execute a function for each tracked load balancer
114 * The callback is called with the load balancer as the first parameter,
115 * and $params passed as the subsequent parameters.
116 *
117 * @param callable $callback
118 * @param array $params
119 */
120 public function forEachLB( $callback, array $params = [] );
121
122 /**
123 * Prepare all tracked load balancers for shutdown
124 * @param integer $mode One of the class SHUTDOWN_* constants
125 * @param callable|null $workCallback Work to mask ChronologyProtector writes
126 */
127 public function shutdown(
128 $mode = self::SHUTDOWN_CHRONPROT_SYNC, callable $workCallback = null
129 );
130
131 /**
132 * Commit all replica DB transactions so as to flush any REPEATABLE-READ or SSI snapshot
133 *
134 * @param string $fname Caller name
135 */
136 public function flushReplicaSnapshots( $fname = __METHOD__ );
137
138 /**
139 * Commit open transactions on all connections. This is useful for two main cases:
140 * - a) To commit changes to the masters.
141 * - b) To release the snapshot on all connections, master and replica DBs.
142 * @param string $fname Caller name
143 * @param array $options Options map:
144 * - maxWriteDuration: abort if more than this much time was spent in write queries
145 */
146 public function commitAll( $fname = __METHOD__, array $options = [] );
147
148 /**
149 * Flush any master transaction snapshots and set DBO_TRX (if DBO_DEFAULT is set)
150 *
151 * The DBO_TRX setting will be reverted to the default in each of these methods:
152 * - commitMasterChanges()
153 * - rollbackMasterChanges()
154 * - commitAll()
155 *
156 * This allows for custom transaction rounds from any outer transaction scope.
157 *
158 * @param string $fname
159 * @throws DBTransactionError
160 */
161 public function beginMasterChanges( $fname = __METHOD__ );
162
163 /**
164 * Commit changes on all master connections
165 * @param string $fname Caller name
166 * @param array $options Options map:
167 * - maxWriteDuration: abort if more than this much time was spent in write queries
168 * @throws Exception
169 */
170 public function commitMasterChanges( $fname = __METHOD__, array $options = [] );
171
172 /**
173 * Rollback changes on all master connections
174 * @param string $fname Caller name
175 */
176 public function rollbackMasterChanges( $fname = __METHOD__ );
177
178 /**
179 * Determine if any master connection has pending changes
180 * @return bool
181 */
182 public function hasMasterChanges();
183
184 /**
185 * Detemine if any lagged replica DB connection was used
186 * @return bool
187 */
188 public function laggedReplicaUsed();
189
190 /**
191 * Determine if any master connection has pending/written changes from this request
192 * @param float $age How many seconds ago is "recent" [defaults to LB lag wait timeout]
193 * @return bool
194 */
195 public function hasOrMadeRecentMasterChanges( $age = null );
196
197 /**
198 * Waits for the replica DBs to catch up to the current master position
199 *
200 * Use this when updating very large numbers of rows, as in maintenance scripts,
201 * to avoid causing too much lag. Of course, this is a no-op if there are no replica DBs.
202 *
203 * By default this waits on all DB clusters actually used in this request.
204 * This makes sense when lag being waiting on is caused by the code that does this check.
205 * In that case, setting "ifWritesSince" can avoid the overhead of waiting for clusters
206 * that were not changed since the last wait check. To forcefully wait on a specific cluster
207 * for a given domain, use the 'domain' parameter. To forcefully wait on an "external" cluster,
208 * use the "cluster" parameter.
209 *
210 * Never call this function after a large DB write that is *still* in a transaction.
211 * It only makes sense to call this after the possible lag inducing changes were committed.
212 *
213 * @param array $opts Optional fields that include:
214 * - domain : wait on the load balancer DBs that handles the given domain ID
215 * - cluster : wait on the given external load balancer DBs
216 * - timeout : Max wait time. Default: ~60 seconds
217 * - ifWritesSince: Only wait if writes were done since this UNIX timestamp
218 * @throws DBReplicationWaitError If a timeout or error occured waiting on a DB cluster
219 */
220 public function waitForReplication( array $opts = [] );
221
222 /**
223 * Add a callback to be run in every call to waitForReplication() before waiting
224 *
225 * Callbacks must clear any transactions that they start
226 *
227 * @param string $name Callback name
228 * @param callable|null $callback Use null to unset a callback
229 */
230 public function setWaitForReplicationListener( $name, callable $callback = null );
231
232 /**
233 * Get a token asserting that no transaction writes are active
234 *
235 * @param string $fname Caller name (e.g. __METHOD__)
236 * @return mixed A value to pass to commitAndWaitForReplication()
237 */
238 public function getEmptyTransactionTicket( $fname );
239
240 /**
241 * Convenience method for safely running commitMasterChanges()/waitForReplication()
242 *
243 * This will commit and wait unless $ticket indicates it is unsafe to do so
244 *
245 * @param string $fname Caller name (e.g. __METHOD__)
246 * @param mixed $ticket Result of getEmptyTransactionTicket()
247 * @param array $opts Options to waitForReplication()
248 * @throws DBReplicationWaitError
249 */
250 public function commitAndWaitForReplication( $fname, $ticket, array $opts = [] );
251
252 /**
253 * @param string $dbName DB master name (e.g. "db1052")
254 * @return float|bool UNIX timestamp when client last touched the DB or false if not recent
255 */
256 public function getChronologyProtectorTouched( $dbName );
257
258 /**
259 * Disable the ChronologyProtector for all load balancers
260 *
261 * This can be called at the start of special API entry points
262 */
263 public function disableChronologyProtection();
264
265 /**
266 * Set a new table prefix for the existing local domain ID for testing
267 *
268 * @param string $prefix
269 */
270 public function setDomainPrefix( $prefix );
271
272 /**
273 * Close all open database connections on all open load balancers.
274 */
275 public function closeAll();
276
277 /**
278 * @param string $agent Agent name for query profiling
279 */
280 public function setAgentName( $agent );
281
282 /**
283 * Append ?cpPosTime parameter to a URL for ChronologyProtector purposes if needed
284 *
285 * Note that unlike cookies, this works accross domains
286 *
287 * @param string $url
288 * @param float $time UNIX timestamp just before shutdown() was called
289 * @return string
290 */
291 public function appendPreShutdownTimeAsQuery( $url, $time );
292
293 /**
294 * @param array $info Map of fields, including:
295 * - IPAddress : IP address
296 * - UserAgent : User-Agent HTTP header
297 * - ChronologyProtection : cookie/header value specifying ChronologyProtector usage
298 */
299 public function setRequestInfo( array $info );
300 }