123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759 |
- <?php
- /**
- * Generator and manager of database load balancing objects
- *
- * This program is free software; you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; either version 2 of the License, or
- * (at your option) any later version.
- *
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- *
- * You should have received a copy of the GNU General Public License along
- * with this program; if not, write to the Free Software Foundation, Inc.,
- * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
- * http://www.gnu.org/copyleft/gpl.html
- *
- * @file
- * @ingroup Database
- */
- namespace Wikimedia\Rdbms;
- use Psr\Log\LoggerInterface;
- use Psr\Log\NullLogger;
- use Wikimedia\ScopedCallback;
- use BagOStuff;
- use EmptyBagOStuff;
- use WANObjectCache;
- use Exception;
- use RuntimeException;
- use LogicException;
- /**
- * An interface for generating database load balancers
- * @ingroup Database
- */
- abstract class LBFactory implements ILBFactory {
- /** @var ChronologyProtector */
- private $chronProt;
- /** @var object|string Class name or object With profileIn/profileOut methods */
- private $profiler;
- /** @var TransactionProfiler */
- private $trxProfiler;
- /** @var LoggerInterface */
- private $replLogger;
- /** @var LoggerInterface */
- private $connLogger;
- /** @var LoggerInterface */
- private $queryLogger;
- /** @var LoggerInterface */
- private $perfLogger;
- /** @var callable Error logger */
- private $errorLogger;
- /** @var callable Deprecation logger */
- private $deprecationLogger;
- /** @var BagOStuff */
- protected $srvCache;
- /** @var BagOStuff */
- protected $memStash;
- /** @var WANObjectCache */
- protected $wanCache;
- /** @var DatabaseDomain Local domain */
- protected $localDomain;
- /** @var string Local hostname of the app server */
- private $hostname;
- /** @var array Web request information about the client */
- private $requestInfo;
- /** @var bool Whether this PHP instance is for a CLI script */
- private $cliMode;
- /** @var string Agent name for query profiling */
- private $agent;
- /** @var string Secret string for HMAC hashing */
- private $secret;
- /** @var array[] $aliases Map of (table => (dbname, schema, prefix) map) */
- private $tableAliases = [];
- /** @var string[] Map of (index alias => index) */
- private $indexAliases = [];
- /** @var callable[] */
- private $replicationWaitCallbacks = [];
- /** var int An identifier for this class instance */
- private $id;
- /** @var int|null Ticket used to delegate transaction ownership */
- private $ticket;
- /** @var string|bool String if a requested DBO_TRX transaction round is active */
- private $trxRoundId = false;
- /** @var string One of the ROUND_* class constants */
- private $trxRoundStage = self::ROUND_CURSORY;
- /** @var string|bool Reason all LBs are read-only or false if not */
- protected $readOnlyReason = false;
- /** @var string|null */
- private $defaultGroup = null;
- /** @var int|null */
- protected $maxLag;
- const ROUND_CURSORY = 'cursory';
- const ROUND_BEGINNING = 'within-begin';
- const ROUND_COMMITTING = 'within-commit';
- const ROUND_ROLLING_BACK = 'within-rollback';
- const ROUND_COMMIT_CALLBACKS = 'within-commit-callbacks';
- const ROUND_ROLLBACK_CALLBACKS = 'within-rollback-callbacks';
- private static $loggerFields =
- [ 'replLogger', 'connLogger', 'queryLogger', 'perfLogger' ];
- public function __construct( array $conf ) {
- $this->localDomain = isset( $conf['localDomain'] )
- ? DatabaseDomain::newFromId( $conf['localDomain'] )
- : DatabaseDomain::newUnspecified();
- $this->maxLag = $conf['maxLag'] ?? null;
- if ( isset( $conf['readOnlyReason'] ) && is_string( $conf['readOnlyReason'] ) ) {
- $this->readOnlyReason = $conf['readOnlyReason'];
- }
- $this->srvCache = $conf['srvCache'] ?? new EmptyBagOStuff();
- $this->memStash = $conf['memStash'] ?? new EmptyBagOStuff();
- $this->wanCache = $conf['wanCache'] ?? WANObjectCache::newEmpty();
- foreach ( self::$loggerFields as $key ) {
- $this->$key = $conf[$key] ?? new NullLogger();
- }
- $this->errorLogger = $conf['errorLogger'] ?? function ( Exception $e ) {
- trigger_error( get_class( $e ) . ': ' . $e->getMessage(), E_USER_WARNING );
- };
- $this->deprecationLogger = $conf['deprecationLogger'] ?? function ( $msg ) {
- trigger_error( $msg, E_USER_DEPRECATED );
- };
- $this->profiler = $conf['profiler'] ?? null;
- $this->trxProfiler = $conf['trxProfiler'] ?? new TransactionProfiler();
- $this->requestInfo = [
- 'IPAddress' => $_SERVER[ 'REMOTE_ADDR' ] ?? '',
- 'UserAgent' => $_SERVER['HTTP_USER_AGENT'] ?? '',
- // Headers application can inject via LBFactory::setRequestInfo()
- 'ChronologyProtection' => null,
- 'ChronologyClientId' => null, // prior $cpClientId value from LBFactory::shutdown()
- 'ChronologyPositionIndex' => null // prior $cpIndex value from LBFactory::shutdown()
- ];
- $this->cliMode = $conf['cliMode'] ?? ( PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg' );
- $this->hostname = $conf['hostname'] ?? gethostname();
- $this->agent = $conf['agent'] ?? '';
- $this->defaultGroup = $conf['defaultGroup'] ?? null;
- $this->secret = $conf['secret'] ?? '';
- static $nextId, $nextTicket;
- $this->id = $nextId = ( is_int( $nextId ) ? $nextId++ : mt_rand() );
- $this->ticket = $nextTicket = ( is_int( $nextTicket ) ? $nextTicket++ : mt_rand() );
- }
- public function destroy() {
- /** @noinspection PhpUnusedLocalVariableInspection */
- $scope = ScopedCallback::newScopedIgnoreUserAbort();
- $this->forEachLBCallMethod( 'disable', [ __METHOD__, $this->id ] );
- }
- public function getLocalDomainID() {
- return $this->localDomain->getId();
- }
- public function resolveDomainID( $domain ) {
- return ( $domain !== false ) ? (string)$domain : $this->getLocalDomainID();
- }
- public function shutdown(
- $mode = self::SHUTDOWN_CHRONPROT_SYNC,
- callable $workCallback = null,
- &$cpIndex = null,
- &$cpClientId = null
- ) {
- /** @noinspection PhpUnusedLocalVariableInspection */
- $scope = ScopedCallback::newScopedIgnoreUserAbort();
- $chronProt = $this->getChronologyProtector();
- if ( $mode === self::SHUTDOWN_CHRONPROT_SYNC ) {
- $this->shutdownChronologyProtector( $chronProt, $workCallback, 'sync', $cpIndex );
- } elseif ( $mode === self::SHUTDOWN_CHRONPROT_ASYNC ) {
- $this->shutdownChronologyProtector( $chronProt, null, 'async', $cpIndex );
- }
- $cpClientId = $chronProt->getClientId();
- $this->commitMasterChanges( __METHOD__ ); // sanity
- }
- /**
- * Call a method of each tracked load balancer
- *
- * @param string $methodName
- * @param array $args
- */
- protected function forEachLBCallMethod( $methodName, array $args = [] ) {
- $this->forEachLB(
- function ( ILoadBalancer $loadBalancer, $methodName, array $args ) {
- $loadBalancer->$methodName( ...$args );
- },
- [ $methodName, $args ]
- );
- }
- public function flushReplicaSnapshots( $fname = __METHOD__ ) {
- if ( $this->trxRoundId !== false && $this->trxRoundId !== $fname ) {
- $this->queryLogger->warning(
- "$fname: transaction round '{$this->trxRoundId}' still running",
- [ 'trace' => ( new RuntimeException() )->getTraceAsString() ]
- );
- }
- $this->forEachLBCallMethod( 'flushReplicaSnapshots', [ $fname, $this->id ] );
- }
- final public function commitAll( $fname = __METHOD__, array $options = [] ) {
- $this->commitMasterChanges( $fname, $options );
- $this->forEachLBCallMethod( 'flushMasterSnapshots', [ $fname, $this->id ] );
- $this->forEachLBCallMethod( 'flushReplicaSnapshots', [ $fname, $this->id ] );
- }
- final public function beginMasterChanges( $fname = __METHOD__ ) {
- $this->assertTransactionRoundStage( self::ROUND_CURSORY );
- /** @noinspection PhpUnusedLocalVariableInspection */
- $scope = ScopedCallback::newScopedIgnoreUserAbort();
- $this->trxRoundStage = self::ROUND_BEGINNING;
- if ( $this->trxRoundId !== false ) {
- throw new DBTransactionError(
- null,
- "$fname: transaction round '{$this->trxRoundId}' already started"
- );
- }
- $this->trxRoundId = $fname;
- // Set DBO_TRX flags on all appropriate DBs
- $this->forEachLBCallMethod( 'beginMasterChanges', [ $fname, $this->id ] );
- $this->trxRoundStage = self::ROUND_CURSORY;
- }
- final public function commitMasterChanges( $fname = __METHOD__, array $options = [] ) {
- $this->assertTransactionRoundStage( self::ROUND_CURSORY );
- /** @noinspection PhpUnusedLocalVariableInspection */
- $scope = ScopedCallback::newScopedIgnoreUserAbort();
- $this->trxRoundStage = self::ROUND_COMMITTING;
- if ( $this->trxRoundId !== false && $this->trxRoundId !== $fname ) {
- throw new DBTransactionError(
- null,
- "$fname: transaction round '{$this->trxRoundId}' still running"
- );
- }
- // Run pre-commit callbacks and suppress post-commit callbacks, aborting on failure
- do {
- $count = 0; // number of callbacks executed this iteration
- $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$count, $fname ) {
- $count += $lb->finalizeMasterChanges( $fname, $this->id );
- } );
- } while ( $count > 0 );
- $this->trxRoundId = false;
- // Perform pre-commit checks, aborting on failure
- $this->forEachLBCallMethod( 'approveMasterChanges', [ $options, $fname, $this->id ] );
- // Log the DBs and methods involved in multi-DB transactions
- $this->logIfMultiDbTransaction();
- // Actually perform the commit on all master DB connections and revert DBO_TRX
- $this->forEachLBCallMethod( 'commitMasterChanges', [ $fname, $this->id ] );
- // Run all post-commit callbacks in a separate step
- $this->trxRoundStage = self::ROUND_COMMIT_CALLBACKS;
- $e = $this->executePostTransactionCallbacks();
- $this->trxRoundStage = self::ROUND_CURSORY;
- // Throw any last post-commit callback error
- if ( $e instanceof Exception ) {
- throw $e;
- }
- }
- final public function rollbackMasterChanges( $fname = __METHOD__ ) {
- /** @noinspection PhpUnusedLocalVariableInspection */
- $scope = ScopedCallback::newScopedIgnoreUserAbort();
- $this->trxRoundStage = self::ROUND_ROLLING_BACK;
- $this->trxRoundId = false;
- // Actually perform the rollback on all master DB connections and revert DBO_TRX
- $this->forEachLBCallMethod( 'rollbackMasterChanges', [ $fname, $this->id ] );
- // Run all post-commit callbacks in a separate step
- $this->trxRoundStage = self::ROUND_ROLLBACK_CALLBACKS;
- $this->executePostTransactionCallbacks();
- $this->trxRoundStage = self::ROUND_CURSORY;
- }
- /**
- * @return Exception|null
- */
- private function executePostTransactionCallbacks() {
- $fname = __METHOD__;
- // Run all post-commit callbacks until new ones stop getting added
- $e = null; // first callback exception
- do {
- $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$e, $fname ) {
- $ex = $lb->runMasterTransactionIdleCallbacks( $fname, $this->id );
- $e = $e ?: $ex;
- } );
- } while ( $this->hasMasterChanges() );
- // Run all listener callbacks once
- $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$e, $fname ) {
- $ex = $lb->runMasterTransactionListenerCallbacks( $fname, $this->id );
- $e = $e ?: $ex;
- } );
- return $e;
- }
- public function hasTransactionRound() {
- return ( $this->trxRoundId !== false );
- }
- public function isReadyForRoundOperations() {
- return ( $this->trxRoundStage === self::ROUND_CURSORY );
- }
- /**
- * Log query info if multi DB transactions are going to be committed now
- */
- private function logIfMultiDbTransaction() {
- $callersByDB = [];
- $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$callersByDB ) {
- $masterName = $lb->getServerName( $lb->getWriterIndex() );
- $callers = $lb->pendingMasterChangeCallers();
- if ( $callers ) {
- $callersByDB[$masterName] = $callers;
- }
- } );
- if ( count( $callersByDB ) >= 2 ) {
- $dbs = implode( ', ', array_keys( $callersByDB ) );
- $msg = "Multi-DB transaction [{$dbs}]:\n";
- foreach ( $callersByDB as $db => $callers ) {
- $msg .= "$db: " . implode( '; ', $callers ) . "\n";
- }
- $this->queryLogger->info( $msg );
- }
- }
- public function hasMasterChanges() {
- $ret = false;
- $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$ret ) {
- $ret = $ret || $lb->hasMasterChanges();
- } );
- return $ret;
- }
- public function laggedReplicaUsed() {
- $ret = false;
- $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$ret ) {
- $ret = $ret || $lb->laggedReplicaUsed();
- } );
- return $ret;
- }
- public function hasOrMadeRecentMasterChanges( $age = null ) {
- $ret = false;
- $this->forEachLB( function ( ILoadBalancer $lb ) use ( $age, &$ret ) {
- $ret = $ret || $lb->hasOrMadeRecentMasterChanges( $age );
- } );
- return $ret;
- }
- public function waitForReplication( array $opts = [] ) {
- $opts += [
- 'domain' => false,
- 'cluster' => false,
- 'timeout' => $this->cliMode ? 60 : 1,
- 'ifWritesSince' => null
- ];
- if ( $opts['domain'] === false && isset( $opts['wiki'] ) ) {
- $opts['domain'] = $opts['wiki']; // b/c
- }
- // Figure out which clusters need to be checked
- /** @var ILoadBalancer[] $lbs */
- $lbs = [];
- if ( $opts['cluster'] !== false ) {
- $lbs[] = $this->getExternalLB( $opts['cluster'] );
- } elseif ( $opts['domain'] !== false ) {
- $lbs[] = $this->getMainLB( $opts['domain'] );
- } else {
- $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$lbs ) {
- $lbs[] = $lb;
- } );
- if ( !$lbs ) {
- return true; // nothing actually used
- }
- }
- // Get all the master positions of applicable DBs right now.
- // This can be faster since waiting on one cluster reduces the
- // time needed to wait on the next clusters.
- $masterPositions = array_fill( 0, count( $lbs ), false );
- foreach ( $lbs as $i => $lb ) {
- if (
- // No writes to wait on getting replicated
- !$lb->hasMasterConnection() ||
- // No replication; avoid getMasterPos() permissions errors (T29975)
- !$lb->hasStreamingReplicaServers() ||
- // No writes since the last replication wait
- (
- $opts['ifWritesSince'] &&
- $lb->lastMasterChangeTimestamp() < $opts['ifWritesSince']
- )
- ) {
- continue; // no need to wait
- }
- $masterPositions[$i] = $lb->getMasterPos();
- }
- // Run any listener callbacks *after* getting the DB positions. The more
- // time spent in the callbacks, the less time is spent in waitForAll().
- foreach ( $this->replicationWaitCallbacks as $callback ) {
- $callback();
- }
- $failed = [];
- foreach ( $lbs as $i => $lb ) {
- if ( $masterPositions[$i] ) {
- // The RDBMS may not support getMasterPos()
- if ( !$lb->waitForAll( $masterPositions[$i], $opts['timeout'] ) ) {
- $failed[] = $lb->getServerName( $lb->getWriterIndex() );
- }
- }
- }
- return !$failed;
- }
- public function setWaitForReplicationListener( $name, callable $callback = null ) {
- if ( $callback ) {
- $this->replicationWaitCallbacks[$name] = $callback;
- } else {
- unset( $this->replicationWaitCallbacks[$name] );
- }
- }
- public function getEmptyTransactionTicket( $fname ) {
- if ( $this->hasMasterChanges() ) {
- $this->queryLogger->error(
- __METHOD__ . ": $fname does not have outer scope",
- [ 'trace' => ( new RuntimeException() )->getTraceAsString() ]
- );
- return null;
- }
- return $this->ticket;
- }
- final public function commitAndWaitForReplication( $fname, $ticket, array $opts = [] ) {
- if ( $ticket !== $this->ticket ) {
- $this->perfLogger->error(
- __METHOD__ . ": $fname does not have outer scope",
- [ 'trace' => ( new RuntimeException() )->getTraceAsString() ]
- );
- return false;
- }
- // The transaction owner and any caller with the empty transaction ticket can commit
- // so that getEmptyTransactionTicket() callers don't risk seeing DBTransactionError.
- if ( $this->trxRoundId !== false && $fname !== $this->trxRoundId ) {
- $this->queryLogger->info( "$fname: committing on behalf of {$this->trxRoundId}" );
- $fnameEffective = $this->trxRoundId;
- } else {
- $fnameEffective = $fname;
- }
- $this->commitMasterChanges( $fnameEffective );
- $waitSucceeded = $this->waitForReplication( $opts );
- // If a nested caller committed on behalf of $fname, start another empty $fname
- // transaction, leaving the caller with the same empty transaction state as before.
- if ( $fnameEffective !== $fname ) {
- $this->beginMasterChanges( $fnameEffective );
- }
- return $waitSucceeded;
- }
- public function getChronologyProtectorTouched( $dbName ) {
- return $this->getChronologyProtector()->getTouched( $dbName );
- }
- public function disableChronologyProtection() {
- $this->getChronologyProtector()->setEnabled( false );
- }
- /**
- * @return ChronologyProtector
- */
- protected function getChronologyProtector() {
- if ( $this->chronProt ) {
- return $this->chronProt;
- }
- $this->chronProt = new ChronologyProtector(
- $this->memStash,
- [
- 'ip' => $this->requestInfo['IPAddress'],
- 'agent' => $this->requestInfo['UserAgent'],
- 'clientId' => $this->requestInfo['ChronologyClientId'] ?: null
- ],
- $this->requestInfo['ChronologyPositionIndex'],
- $this->secret
- );
- $this->chronProt->setLogger( $this->replLogger );
- if ( $this->cliMode ) {
- $this->chronProt->setEnabled( false );
- } elseif ( $this->requestInfo['ChronologyProtection'] === 'false' ) {
- // Request opted out of using position wait logic. This is useful for requests
- // done by the job queue or background ETL that do not have a meaningful session.
- $this->chronProt->setWaitEnabled( false );
- } elseif ( $this->memStash instanceof EmptyBagOStuff ) {
- // No where to store any DB positions and wait for them to appear
- $this->chronProt->setEnabled( false );
- $this->replLogger->info( 'Cannot use ChronologyProtector with EmptyBagOStuff' );
- }
- $this->replLogger->debug(
- __METHOD__ . ': request info ' .
- json_encode( $this->requestInfo, JSON_PRETTY_PRINT )
- );
- return $this->chronProt;
- }
- /**
- * Get and record all of the staged DB positions into persistent memory storage
- *
- * @param ChronologyProtector $cp
- * @param callable|null $workCallback Work to do instead of waiting on syncing positions
- * @param string $mode One of (sync, async); whether to wait on remote datacenters
- * @param int|null &$cpIndex DB position key write counter; incremented on update
- */
- protected function shutdownChronologyProtector(
- ChronologyProtector $cp, $workCallback, $mode, &$cpIndex = null
- ) {
- // Record all the master positions needed
- $this->forEachLB( function ( ILoadBalancer $lb ) use ( $cp ) {
- $cp->storeSessionReplicationPosition( $lb );
- } );
- // Write them to the persistent stash. Try to do something useful by running $work
- // while ChronologyProtector waits for the stash write to replicate to all DCs.
- $unsavedPositions = $cp->shutdown( $workCallback, $mode, $cpIndex );
- if ( $unsavedPositions && $workCallback ) {
- // Invoke callback in case it did not cache the result yet
- $workCallback(); // work now to block for less time in waitForAll()
- }
- // If the positions failed to write to the stash, at least wait on local datacenter
- // replica DBs to catch up before responding. Even if there are several DCs, this increases
- // the chance that the user will see their own changes immediately afterwards. As long
- // as the sticky DC cookie applies (same domain), this is not even an issue.
- $this->forEachLB( function ( ILoadBalancer $lb ) use ( $unsavedPositions ) {
- $masterName = $lb->getServerName( $lb->getWriterIndex() );
- if ( isset( $unsavedPositions[$masterName] ) ) {
- $lb->waitForAll( $unsavedPositions[$masterName] );
- }
- } );
- }
- /**
- * Get parameters to ILoadBalancer::__construct()
- *
- * @param int|null $owner Use getOwnershipId() if this is for getMainLB()/getExternalLB()
- * @return array
- */
- final protected function baseLoadBalancerParams( $owner ) {
- if ( $this->trxRoundStage === self::ROUND_COMMIT_CALLBACKS ) {
- $initStage = ILoadBalancer::STAGE_POSTCOMMIT_CALLBACKS;
- } elseif ( $this->trxRoundStage === self::ROUND_ROLLBACK_CALLBACKS ) {
- $initStage = ILoadBalancer::STAGE_POSTROLLBACK_CALLBACKS;
- } else {
- $initStage = null;
- }
- return [
- 'localDomain' => $this->localDomain,
- 'readOnlyReason' => $this->readOnlyReason,
- 'srvCache' => $this->srvCache,
- 'wanCache' => $this->wanCache,
- 'profiler' => $this->profiler,
- 'trxProfiler' => $this->trxProfiler,
- 'queryLogger' => $this->queryLogger,
- 'connLogger' => $this->connLogger,
- 'replLogger' => $this->replLogger,
- 'errorLogger' => $this->errorLogger,
- 'deprecationLogger' => $this->deprecationLogger,
- 'hostname' => $this->hostname,
- 'cliMode' => $this->cliMode,
- 'agent' => $this->agent,
- 'maxLag' => $this->maxLag,
- 'defaultGroup' => $this->defaultGroup,
- 'chronologyCallback' => function ( ILoadBalancer $lb ) {
- // Defer ChronologyProtector construction in case setRequestInfo() ends up
- // being called later (but before the first connection attempt) (T192611)
- $this->getChronologyProtector()->applySessionReplicationPosition( $lb );
- },
- 'roundStage' => $initStage,
- 'ownerId' => $owner
- ];
- }
- /**
- * @param ILoadBalancer $lb
- */
- protected function initLoadBalancer( ILoadBalancer $lb ) {
- if ( $this->trxRoundId !== false ) {
- $lb->beginMasterChanges( $this->trxRoundId, $this->id ); // set DBO_TRX
- }
- $lb->setTableAliases( $this->tableAliases );
- $lb->setIndexAliases( $this->indexAliases );
- }
- public function setTableAliases( array $aliases ) {
- $this->tableAliases = $aliases;
- }
- public function setIndexAliases( array $aliases ) {
- $this->indexAliases = $aliases;
- }
- public function setLocalDomainPrefix( $prefix ) {
- $this->localDomain = new DatabaseDomain(
- $this->localDomain->getDatabase(),
- $this->localDomain->getSchema(),
- $prefix
- );
- $this->forEachLB( function ( ILoadBalancer $lb ) use ( $prefix ) {
- $lb->setLocalDomainPrefix( $prefix );
- } );
- }
- public function redefineLocalDomain( $domain ) {
- $this->closeAll();
- $this->localDomain = DatabaseDomain::newFromId( $domain );
- $this->forEachLB( function ( ILoadBalancer $lb ) {
- $lb->redefineLocalDomain( $this->localDomain );
- } );
- }
- public function closeAll() {
- /** @noinspection PhpUnusedLocalVariableInspection */
- $scope = ScopedCallback::newScopedIgnoreUserAbort();
- $this->forEachLBCallMethod( 'closeAll', [ __METHOD__, $this->id ] );
- }
- public function setAgentName( $agent ) {
- $this->agent = $agent;
- }
- public function appendShutdownCPIndexAsQuery( $url, $index ) {
- $usedCluster = 0;
- $this->forEachLB( function ( ILoadBalancer $lb ) use ( &$usedCluster ) {
- $usedCluster |= $lb->hasStreamingReplicaServers();
- } );
- if ( !$usedCluster ) {
- return $url; // no master/replica clusters touched
- }
- return strpos( $url, '?' ) === false ? "$url?cpPosIndex=$index" : "$url&cpPosIndex=$index";
- }
- public function getChronologyProtectorClientId() {
- return $this->getChronologyProtector()->getClientId();
- }
- /**
- * @param int $index Write index
- * @param int $time UNIX timestamp; can be used to detect stale cookies (T190082)
- * @param string $clientId Agent ID hash from ILBFactory::shutdown()
- * @return string Timestamp-qualified write index of the form "<index>@<timestamp>#<hash>"
- * @since 1.32
- */
- public static function makeCookieValueFromCPIndex( $index, $time, $clientId ) {
- return "$index@$time#$clientId";
- }
- /**
- * @param string $value Possible result of LBFactory::makeCookieValueFromCPIndex()
- * @param int $minTimestamp Lowest UNIX timestamp that a non-expired value can have
- * @return array (index: int or null, clientId: string or null)
- * @since 1.32
- */
- public static function getCPInfoFromCookieValue( $value, $minTimestamp ) {
- static $placeholder = [ 'index' => null, 'clientId' => null ];
- if ( !preg_match( '/^(\d+)@(\d+)#([0-9a-f]{32})$/', $value, $m ) ) {
- return $placeholder; // invalid
- }
- $index = (int)$m[1];
- if ( $index <= 0 ) {
- return $placeholder; // invalid
- } elseif ( isset( $m[2] ) && $m[2] !== '' && (int)$m[2] < $minTimestamp ) {
- return $placeholder; // expired
- }
- $clientId = ( isset( $m[3] ) && $m[3] !== '' ) ? $m[3] : null;
- return [ 'index' => $index, 'clientId' => $clientId ];
- }
- public function setRequestInfo( array $info ) {
- if ( $this->chronProt ) {
- throw new LogicException( 'ChronologyProtector already initialized' );
- }
- $this->requestInfo = $info + $this->requestInfo;
- }
- /**
- * @return int Internal instance ID used to assert ownership of ILoadBalancer instances
- * @since 1.34
- */
- final protected function getOwnershipId() {
- return $this->id;
- }
- /**
- * @param string $stage
- */
- private function assertTransactionRoundStage( $stage ) {
- if ( $this->trxRoundStage !== $stage ) {
- throw new DBTransactionError(
- null,
- "Transaction round stage must be '$stage' (not '{$this->trxRoundStage}')"
- );
- }
- }
- function __destruct() {
- $this->destroy();
- }
- }
|