stack = [ DeferredUpdatesScope::newRootScope() ]; } /** * @return DeferredUpdatesScope The innermost scope */ public function current() { return $this->stack[count( $this->stack ) - 1]; } /** * Make a new child scope, push it onto the stack, and return it * * @param int $activeStage The in-progress stage; one of DeferredUpdates::STAGES * @param DeferrableUpdate $update The deferred update that owns this scope * @return DeferredUpdatesScope Scope for the case of an in-progress deferred update */ public function descend( $activeStage, DeferrableUpdate $update ) { $scope = DeferredUpdatesScope::newChildScope( $activeStage, $update, $this->current() ); $this->stack[count( $this->stack )] = $scope; return $scope; } /** * Pop the innermost scope from the stack * * @return DeferredUpdatesScope */ public function ascend() { if ( count( $this->stack ) <= 1 ) { throw new LogicException( "Cannot pop root stack scope; something is out of sync" ); } return array_pop( $this->stack ); } /** * Get the depth of the scope stack below the root scope * * @return int */ public function getRecursiveDepth() { return count( $this->stack ) - 1; } /** * Whether DeferredUpdates::addUpdate() may run the update right away */ public function allowOpportunisticUpdates(): bool { // Overridden in DeferredUpdatesScopeMediaWikiStack::allowOpportunisticUpdates return false; } /** * Queue an EnqueueableDataUpdate as a job instead * * @see JobQueueGroup::push * @param EnqueueableDataUpdate $update */ public function queueDataUpdate( EnqueueableDataUpdate $update ): void { throw new LogicException( 'Cannot queue jobs from DeferredUpdates in standalone mode' ); } public function onRunUpdateStart( DeferrableUpdate $update ): void { // No-op // Overridden in DeferredUpdatesScopeMediaWikiStack::onRunUpdateStart } public function onRunUpdateEnd( DeferrableUpdate $update ): void { // No-op // Overridden in DeferredUpdatesScopeMediaWikiStack::onRunUpdateEnd } public function onRunUpdateFailed( DeferrableUpdate $update ): void { // No-op // Overridden in DeferredUpdatesScopeMediaWikiStack::onRunUpdateFailed } } /** @deprecated class alias since 1.42 */ class_alias( DeferredUpdatesScopeStack::class, 'DeferredUpdatesScopeStack' );