Merge "mediawiki.api: Check that query exists in api.getToken() response"
[lhc/web/wiklou.git] / includes / libs / rdbms / lbfactory / LBFactory.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 namespace Wikimedia\Rdbms;
25
26 use Psr\Log\LoggerInterface;
27 use Wikimedia\ScopedCallback;
28 use BagOStuff;
29 use EmptyBagOStuff;
30 use WANObjectCache;
31 use Exception;
32 use RuntimeException;
33 use LogicException;
34
35 /**
36 * An interface for generating database load balancers
37 * @ingroup Database
38 */
39 abstract class LBFactory implements ILBFactory {
40 /** @var ChronologyProtector */
41 protected $chronProt;
42 /** @var object|string Class name or object With profileIn/profileOut methods */
43 protected $profiler;
44 /** @var TransactionProfiler */
45 protected $trxProfiler;
46 /** @var LoggerInterface */
47 protected $replLogger;
48 /** @var LoggerInterface */
49 protected $connLogger;
50 /** @var LoggerInterface */
51 protected $queryLogger;
52 /** @var LoggerInterface */
53 protected $perfLogger;
54 /** @var callable Error logger */
55 protected $errorLogger;
56 /** @var callable Deprecation logger */
57 protected $deprecationLogger;
58 /** @var BagOStuff */
59 protected $srvCache;
60 /** @var BagOStuff */
61 protected $memStash;
62 /** @var WANObjectCache */
63 protected $wanCache;
64
65 /** @var DatabaseDomain Local domain */
66 protected $localDomain;
67 /** @var string Local hostname of the app server */
68 protected $hostname;
69 /** @var array Web request information about the client */
70 protected $requestInfo;
71
72 /** @var mixed */
73 protected $ticket;
74 /** @var string|bool String if a requested DBO_TRX transaction round is active */
75 protected $trxRoundId = false;
76 /** @var string|bool Reason all LBs are read-only or false if not */
77 protected $readOnlyReason = false;
78 /** @var callable[] */
79 protected $replicationWaitCallbacks = [];
80
81 /** @var array[] $aliases Map of (table => (dbname, schema, prefix) map) */
82 protected $tableAliases = [];
83 /** @var string[] Map of (index alias => index) */
84 protected $indexAliases = [];
85
86 /** @var bool Whether this PHP instance is for a CLI script */
87 protected $cliMode;
88 /** @var string Agent name for query profiling */
89 protected $agent;
90
91 /** @var string One of the ROUND_* class constants */
92 private $trxRoundStage = self::ROUND_CURSORY;
93
94 const ROUND_CURSORY = 'cursory';
95 const ROUND_BEGINNING = 'within-begin';
96 const ROUND_COMMITTING = 'within-commit';
97 const ROUND_ROLLING_BACK = 'within-rollback';
98
99 private static $loggerFields =
100 [ 'replLogger', 'connLogger', 'queryLogger', 'perfLogger' ];
101
102 public function __construct( array $conf ) {
103 $this->localDomain = isset( $conf['localDomain'] )
104 ? DatabaseDomain::newFromId( $conf['localDomain'] )
105 : DatabaseDomain::newUnspecified();
106
107 if ( isset( $conf['readOnlyReason'] ) && is_string( $conf['readOnlyReason'] ) ) {
108 $this->readOnlyReason = $conf['readOnlyReason'];
109 }
110
111 $this->srvCache = isset( $conf['srvCache'] ) ? $conf['srvCache'] : new EmptyBagOStuff();
112 $this->memStash = isset( $conf['memStash'] ) ? $conf['memStash'] : new EmptyBagOStuff();
113 $this->wanCache = isset( $conf['wanCache'] )
114 ? $conf['wanCache']
115 : WANObjectCache::newEmpty();
116
117 foreach ( self::$loggerFields as $key ) {
118 $this->$key = isset( $conf[$key] ) ? $conf[$key] : new \Psr\Log\NullLogger();
119 }
120 $this->errorLogger = isset( $conf['errorLogger'] )
121 ? $conf['errorLogger']
122 : function ( Exception $e ) {
123 trigger_error( get_class( $e ) . ': ' . $e->getMessage(), E_USER_WARNING );
124 };
125 $this->deprecationLogger = isset( $conf['deprecationLogger'] )
126 ? $conf['deprecationLogger']
127 : function ( $msg ) {
128 trigger_error( $msg, E_USER_DEPRECATED );
129 };
130
131 $this->profiler = isset( $conf['profiler'] ) ? $conf['profiler'] : null;
132 $this->trxProfiler = isset( $conf['trxProfiler'] )
133 ? $conf['trxProfiler']
134 : new TransactionProfiler();
135
136 $this->requestInfo = [
137 'IPAddress' => isset( $_SERVER[ 'REMOTE_ADDR' ] ) ? $_SERVER[ 'REMOTE_ADDR' ] : '',
138 'UserAgent' => isset( $_SERVER['HTTP_USER_AGENT'] ) ? $_SERVER['HTTP_USER_AGENT'] : '',
139 'ChronologyProtection' => 'true',
140 'ChronologyPositionIndex' => isset( $_GET['cpPosIndex'] ) ? $_GET['cpPosIndex'] : null
141 ];
142
143 $this->cliMode = isset( $conf['cliMode'] )
144 ? $conf['cliMode']
145 : ( PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg' );
146 $this->hostname = isset( $conf['hostname'] ) ? $conf['hostname'] : gethostname();
147 $this->agent = isset( $conf['agent'] ) ? $conf['agent'] : '';
148
149 $this->ticket = mt_rand();
150 }
151
152 public function destroy() {
153 $this->shutdown( self::SHUTDOWN_NO_CHRONPROT );
154 $this->forEachLBCallMethod( 'disable' );
155 }
156
157 public function shutdown(
158 $mode = self::SHUTDOWN_CHRONPROT_SYNC, callable $workCallback = null, &$cpIndex = null
159 ) {
160 $chronProt = $this->getChronologyProtector();
161 if ( $mode === self::SHUTDOWN_CHRONPROT_SYNC ) {
162 $this->shutdownChronologyProtector( $chronProt, $workCallback, 'sync', $cpIndex );
163 } elseif ( $mode === self::SHUTDOWN_CHRONPROT_ASYNC ) {
164 $this->shutdownChronologyProtector( $chronProt, null, 'async', $cpIndex );
165 }
166
167 $this->commitMasterChanges( __METHOD__ ); // sanity
168 }
169
170 /**
171 * @see ILBFactory::newMainLB()
172 * @param bool $domain
173 * @return LoadBalancer
174 */
175 abstract public function newMainLB( $domain = false );
176
177 /**
178 * @see ILBFactory::getMainLB()
179 * @param bool $domain
180 * @return LoadBalancer
181 */
182 abstract public function getMainLB( $domain = false );
183
184 /**
185 * @see ILBFactory::newExternalLB()
186 * @param string $cluster
187 * @return LoadBalancer
188 */
189 abstract public function newExternalLB( $cluster );
190
191 /**
192 * @see ILBFactory::getExternalLB()
193 * @param string $cluster
194 * @return LoadBalancer
195 */
196 abstract public function getExternalLB( $cluster );
197
198 /**
199 * Call a method of each tracked load balancer
200 *
201 * @param string $methodName
202 * @param array $args
203 */
204 protected function forEachLBCallMethod( $methodName, array $args = [] ) {
205 $this->forEachLB(
206 function ( ILoadBalancer $loadBalancer, $methodName, array $args ) {
207 call_user_func_array( [ $loadBalancer, $methodName ], $args );
208 },
209 [ $methodName, $args ]
210 );
211 }
212
213 public function flushReplicaSnapshots( $fname = __METHOD__ ) {
214 $this->forEachLBCallMethod( 'flushReplicaSnapshots', [ $fname ] );
215 }
216
217 final public function commitAll( $fname = __METHOD__, array $options = [] ) {
218 $this->commitMasterChanges( $fname, $options );
219 $this->forEachLBCallMethod( 'commitAll', [ $fname ] );
220 }
221
222 final public function beginMasterChanges( $fname = __METHOD__ ) {
223 $this->assertTransactionRoundStage( self::ROUND_CURSORY );
224 $this->trxRoundStage = self::ROUND_BEGINNING;
225 if ( $this->trxRoundId !== false ) {
226 throw new DBTransactionError(
227 null,
228 "$fname: transaction round '{$this->trxRoundId}' already started."
229 );
230 }
231 $this->trxRoundId = $fname;
232 // Set DBO_TRX flags on all appropriate DBs
233 $this->forEachLBCallMethod( 'beginMasterChanges', [ $fname ] );
234 $this->trxRoundStage = self::ROUND_CURSORY;
235 }
236
237 final public function commitMasterChanges( $fname = __METHOD__, array $options = [] ) {
238 $this->assertTransactionRoundStage( self::ROUND_CURSORY );
239 $this->trxRoundStage = self::ROUND_COMMITTING;
240 if ( $this->trxRoundId !== false && $this->trxRoundId !== $fname ) {
241 throw new DBTransactionError(
242 null,
243 "$fname: transaction round '{$this->trxRoundId}' still running."
244 );
245 }
246 /** @noinspection PhpUnusedLocalVariableInspection */
247 $scope = $this->getScopedPHPBehaviorForCommit(); // try to ignore client aborts
248 // Run pre-commit callbacks and suppress post-commit callbacks, aborting on failure
249 $this->forEachLBCallMethod( 'finalizeMasterChanges' );
250 $this->trxRoundId = false;
251 // Perform pre-commit checks, aborting on failure
252 $this->forEachLBCallMethod( 'approveMasterChanges', [ $options ] );
253 // Log the DBs and methods involved in multi-DB transactions
254 $this->logIfMultiDbTransaction();
255 // Actually perform the commit on all master DB connections and revert DBO_TRX
256 $this->forEachLBCallMethod( 'commitMasterChanges', [ $fname ] );
257 // Run all post-commit callbacks until new ones stop getting added
258 $e = null; // first callback exception
259 do {
260 $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$e ) {
261 $ex = $lb->runMasterTransactionIdleCallbacks();
262 $e = $e ?: $ex;
263 } );
264 } while ( $this->hasMasterChanges() );
265 // Run all listener callbacks once
266 $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$e ) {
267 $ex = $lb->runMasterTransactionListenerCallbacks();
268 $e = $e ?: $ex;
269 } );
270 $this->trxRoundStage = self::ROUND_CURSORY;
271 // Throw any last post-commit callback error
272 if ( $e instanceof Exception ) {
273 throw $e;
274 }
275 }
276
277 final public function rollbackMasterChanges( $fname = __METHOD__ ) {
278 $this->trxRoundStage = self::ROUND_ROLLING_BACK;
279 $this->trxRoundId = false;
280 $this->forEachLBCallMethod( 'rollbackMasterChanges', [ $fname ] );
281 $this->forEachLBCallMethod( 'runMasterTransactionIdleCallbacks' );
282 $this->forEachLBCallMethod( 'runMasterTransactionListenerCallbacks' );
283 $this->trxRoundStage = self::ROUND_CURSORY;
284 }
285
286 public function hasTransactionRound() {
287 return ( $this->trxRoundId !== false );
288 }
289
290 /**
291 * Log query info if multi DB transactions are going to be committed now
292 */
293 private function logIfMultiDbTransaction() {
294 $callersByDB = [];
295 $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$callersByDB ) {
296 $masterName = $lb->getServerName( $lb->getWriterIndex() );
297 $callers = $lb->pendingMasterChangeCallers();
298 if ( $callers ) {
299 $callersByDB[$masterName] = $callers;
300 }
301 } );
302
303 if ( count( $callersByDB ) >= 2 ) {
304 $dbs = implode( ', ', array_keys( $callersByDB ) );
305 $msg = "Multi-DB transaction [{$dbs}]:\n";
306 foreach ( $callersByDB as $db => $callers ) {
307 $msg .= "$db: " . implode( '; ', $callers ) . "\n";
308 }
309 $this->queryLogger->info( $msg );
310 }
311 }
312
313 public function hasMasterChanges() {
314 $ret = false;
315 $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$ret ) {
316 $ret = $ret || $lb->hasMasterChanges();
317 } );
318
319 return $ret;
320 }
321
322 public function laggedReplicaUsed() {
323 $ret = false;
324 $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$ret ) {
325 $ret = $ret || $lb->laggedReplicaUsed();
326 } );
327
328 return $ret;
329 }
330
331 public function hasOrMadeRecentMasterChanges( $age = null ) {
332 $ret = false;
333 $this->forEachLB( function ( ILoadBalancer $lb ) use ( $age, &$ret ) {
334 $ret = $ret || $lb->hasOrMadeRecentMasterChanges( $age );
335 } );
336 return $ret;
337 }
338
339 public function waitForReplication( array $opts = [] ) {
340 $opts += [
341 'domain' => false,
342 'cluster' => false,
343 'timeout' => $this->cliMode ? 60 : 10,
344 'ifWritesSince' => null
345 ];
346
347 if ( $opts['domain'] === false && isset( $opts['wiki'] ) ) {
348 $opts['domain'] = $opts['wiki']; // b/c
349 }
350
351 // Figure out which clusters need to be checked
352 /** @var ILoadBalancer[] $lbs */
353 $lbs = [];
354 if ( $opts['cluster'] !== false ) {
355 $lbs[] = $this->getExternalLB( $opts['cluster'] );
356 } elseif ( $opts['domain'] !== false ) {
357 $lbs[] = $this->getMainLB( $opts['domain'] );
358 } else {
359 $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$lbs ) {
360 $lbs[] = $lb;
361 } );
362 if ( !$lbs ) {
363 return; // nothing actually used
364 }
365 }
366
367 // Get all the master positions of applicable DBs right now.
368 // This can be faster since waiting on one cluster reduces the
369 // time needed to wait on the next clusters.
370 $masterPositions = array_fill( 0, count( $lbs ), false );
371 foreach ( $lbs as $i => $lb ) {
372 if ( $lb->getServerCount() <= 1 ) {
373 // T29975 - Don't try to wait for replica DBs if there are none
374 // Prevents permission error when getting master position
375 continue;
376 } elseif ( $opts['ifWritesSince']
377 && $lb->lastMasterChangeTimestamp() < $opts['ifWritesSince']
378 ) {
379 continue; // no writes since the last wait
380 }
381 $masterPositions[$i] = $lb->getMasterPos();
382 }
383
384 // Run any listener callbacks *after* getting the DB positions. The more
385 // time spent in the callbacks, the less time is spent in waitForAll().
386 foreach ( $this->replicationWaitCallbacks as $callback ) {
387 $callback();
388 }
389
390 $failed = [];
391 foreach ( $lbs as $i => $lb ) {
392 if ( $masterPositions[$i] ) {
393 // The RDBMS may not support getMasterPos()
394 if ( !$lb->waitForAll( $masterPositions[$i], $opts['timeout'] ) ) {
395 $failed[] = $lb->getServerName( $lb->getWriterIndex() );
396 }
397 }
398 }
399
400 if ( $failed ) {
401 throw new DBReplicationWaitError(
402 null,
403 "Could not wait for replica DBs to catch up to " .
404 implode( ', ', $failed )
405 );
406 }
407 }
408
409 public function setWaitForReplicationListener( $name, callable $callback = null ) {
410 if ( $callback ) {
411 $this->replicationWaitCallbacks[$name] = $callback;
412 } else {
413 unset( $this->replicationWaitCallbacks[$name] );
414 }
415 }
416
417 public function getEmptyTransactionTicket( $fname ) {
418 if ( $this->hasMasterChanges() ) {
419 $this->queryLogger->error( __METHOD__ . ": $fname does not have outer scope.\n" .
420 ( new RuntimeException() )->getTraceAsString() );
421
422 return null;
423 }
424
425 return $this->ticket;
426 }
427
428 final public function commitAndWaitForReplication( $fname, $ticket, array $opts = [] ) {
429 if ( $ticket !== $this->ticket ) {
430 $this->perfLogger->error( __METHOD__ . ": $fname does not have outer scope.\n" .
431 ( new RuntimeException() )->getTraceAsString() );
432
433 return;
434 }
435
436 // The transaction owner and any caller with the empty transaction ticket can commit
437 // so that getEmptyTransactionTicket() callers don't risk seeing DBTransactionError.
438 if ( $this->trxRoundId !== false && $fname !== $this->trxRoundId ) {
439 $this->queryLogger->info( "$fname: committing on behalf of {$this->trxRoundId}." );
440 $fnameEffective = $this->trxRoundId;
441 } else {
442 $fnameEffective = $fname;
443 }
444
445 $this->commitMasterChanges( $fnameEffective );
446 $this->waitForReplication( $opts );
447 // If a nested caller committed on behalf of $fname, start another empty $fname
448 // transaction, leaving the caller with the same empty transaction state as before.
449 if ( $fnameEffective !== $fname ) {
450 $this->beginMasterChanges( $fnameEffective );
451 }
452 }
453
454 public function getChronologyProtectorTouched( $dbName ) {
455 return $this->getChronologyProtector()->getTouched( $dbName );
456 }
457
458 public function disableChronologyProtection() {
459 $this->getChronologyProtector()->setEnabled( false );
460 }
461
462 /**
463 * @return ChronologyProtector
464 */
465 protected function getChronologyProtector() {
466 if ( $this->chronProt ) {
467 return $this->chronProt;
468 }
469
470 $this->chronProt = new ChronologyProtector(
471 $this->memStash,
472 [
473 'ip' => $this->requestInfo['IPAddress'],
474 'agent' => $this->requestInfo['UserAgent'],
475 ],
476 $this->requestInfo['ChronologyPositionIndex']
477 );
478 $this->chronProt->setLogger( $this->replLogger );
479
480 if ( $this->cliMode ) {
481 $this->chronProt->setEnabled( false );
482 } elseif ( $this->requestInfo['ChronologyProtection'] === 'false' ) {
483 // Request opted out of using position wait logic. This is useful for requests
484 // done by the job queue or background ETL that do not have a meaningful session.
485 $this->chronProt->setWaitEnabled( false );
486 }
487
488 $this->replLogger->debug( __METHOD__ . ': using request info ' .
489 json_encode( $this->requestInfo, JSON_PRETTY_PRINT ) );
490
491 return $this->chronProt;
492 }
493
494 /**
495 * Get and record all of the staged DB positions into persistent memory storage
496 *
497 * @param ChronologyProtector $cp
498 * @param callable|null $workCallback Work to do instead of waiting on syncing positions
499 * @param string $mode One of (sync, async); whether to wait on remote datacenters
500 * @param int|null &$cpIndex DB position key write counter; incremented on update
501 */
502 protected function shutdownChronologyProtector(
503 ChronologyProtector $cp, $workCallback, $mode, &$cpIndex = null
504 ) {
505 // Record all the master positions needed
506 $this->forEachLB( function ( ILoadBalancer $lb ) use ( $cp ) {
507 $cp->shutdownLB( $lb );
508 } );
509 // Write them to the persistent stash. Try to do something useful by running $work
510 // while ChronologyProtector waits for the stash write to replicate to all DCs.
511 $unsavedPositions = $cp->shutdown( $workCallback, $mode, $cpIndex );
512 if ( $unsavedPositions && $workCallback ) {
513 // Invoke callback in case it did not cache the result yet
514 $workCallback(); // work now to block for less time in waitForAll()
515 }
516 // If the positions failed to write to the stash, at least wait on local datacenter
517 // replica DBs to catch up before responding. Even if there are several DCs, this increases
518 // the chance that the user will see their own changes immediately afterwards. As long
519 // as the sticky DC cookie applies (same domain), this is not even an issue.
520 $this->forEachLB( function ( ILoadBalancer $lb ) use ( $unsavedPositions ) {
521 $masterName = $lb->getServerName( $lb->getWriterIndex() );
522 if ( isset( $unsavedPositions[$masterName] ) ) {
523 $lb->waitForAll( $unsavedPositions[$masterName] );
524 }
525 } );
526 }
527
528 /**
529 * Base parameters to LoadBalancer::__construct()
530 * @return array
531 */
532 final protected function baseLoadBalancerParams() {
533 return [
534 'localDomain' => $this->localDomain,
535 'readOnlyReason' => $this->readOnlyReason,
536 'srvCache' => $this->srvCache,
537 'wanCache' => $this->wanCache,
538 'profiler' => $this->profiler,
539 'trxProfiler' => $this->trxProfiler,
540 'queryLogger' => $this->queryLogger,
541 'connLogger' => $this->connLogger,
542 'replLogger' => $this->replLogger,
543 'errorLogger' => $this->errorLogger,
544 'deprecationLogger' => $this->deprecationLogger,
545 'hostname' => $this->hostname,
546 'cliMode' => $this->cliMode,
547 'agent' => $this->agent,
548 'chronologyCallback' => function ( ILoadBalancer $lb ) {
549 // Defer ChronologyProtector construction in case setRequestInfo() ends up
550 // being called later (but before the first connection attempt) (T192611)
551 $this->getChronologyProtector()->initLB( $lb );
552 }
553 ];
554 }
555
556 /**
557 * @param ILoadBalancer $lb
558 */
559 protected function initLoadBalancer( ILoadBalancer $lb ) {
560 if ( $this->trxRoundId !== false ) {
561 $lb->beginMasterChanges( $this->trxRoundId ); // set DBO_TRX
562 }
563
564 $lb->setTableAliases( $this->tableAliases );
565 $lb->setIndexAliases( $this->indexAliases );
566 }
567
568 public function setTableAliases( array $aliases ) {
569 $this->tableAliases = $aliases;
570 }
571
572 public function setIndexAliases( array $aliases ) {
573 $this->indexAliases = $aliases;
574 }
575
576 public function setDomainPrefix( $prefix ) {
577 $this->localDomain = new DatabaseDomain(
578 $this->localDomain->getDatabase(),
579 null,
580 $prefix
581 );
582
583 $this->forEachLB( function ( ILoadBalancer $lb ) use ( $prefix ) {
584 $lb->setDomainPrefix( $prefix );
585 } );
586 }
587
588 public function closeAll() {
589 $this->forEachLBCallMethod( 'closeAll', [] );
590 }
591
592 public function setAgentName( $agent ) {
593 $this->agent = $agent;
594 }
595
596 public function appendShutdownCPIndexAsQuery( $url, $index ) {
597 $usedCluster = 0;
598 $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$usedCluster ) {
599 $usedCluster |= ( $lb->getServerCount() > 1 );
600 } );
601
602 if ( !$usedCluster ) {
603 return $url; // no master/replica clusters touched
604 }
605
606 return strpos( $url, '?' ) === false ? "$url?cpPosIndex=$index" : "$url&cpPosIndex=$index";
607 }
608
609 public function setRequestInfo( array $info ) {
610 if ( $this->chronProt ) {
611 throw new LogicException( 'ChronologyProtector already initialized.' );
612 }
613
614 $this->requestInfo = $info + $this->requestInfo;
615 }
616
617 /**
618 * @param string $stage
619 */
620 private function assertTransactionRoundStage( $stage ) {
621 if ( $this->trxRoundStage !== $stage ) {
622 throw new DBTransactionError(
623 null,
624 "Transaction round stage must be '$stage' (not '{$this->trxRoundStage}')"
625 );
626 }
627 }
628
629 /**
630 * Make PHP ignore user aborts/disconnects until the returned
631 * value leaves scope. This returns null and does nothing in CLI mode.
632 *
633 * @return ScopedCallback|null
634 */
635 final protected function getScopedPHPBehaviorForCommit() {
636 if ( PHP_SAPI != 'cli' ) { // https://bugs.php.net/bug.php?id=47540
637 $old = ignore_user_abort( true ); // avoid half-finished operations
638 return new ScopedCallback( function () use ( $old ) {
639 ignore_user_abort( $old );
640 } );
641 }
642
643 return null;
644 }
645
646 function __destruct() {
647 $this->destroy();
648 }
649 }
650
651 class_alias( LBFactory::class, 'LBFactory' );