loadBalancer = $loadBalancer; $this->domain = $domain; $this->groups = $groups; } /** * @param int $i * @param string[]|null $groups * * @return Database */ private function getConnection( $i, array $groups = null ) { $groups = $groups === null ? $this->groups : $groups; return $this->loadBalancer->getConnection( $i, $groups, $this->domain ); } /** * @param int $i * @param string[]|null $groups * * @return DBConnRef */ private function getConnectionRef( $i, array $groups = null ) { $groups = $groups === null ? $this->groups : $groups; return $this->loadBalancer->getConnectionRef( $i, $groups, $this->domain ); } /** * Returns a connection to the master DB, for updating. The connection should later be released * by calling releaseConnection(). * * @since 1.29 * * @return Database */ public function getWriteConnection() { return $this->getConnection( DB_MASTER ); } /** * Returns a database connection for reading. The connection should later be released by * calling releaseConnection(). * * @since 1.29 * * @param string[]|null $groups * * @return Database */ public function getReadConnection( array $groups = null ) { $groups = $groups === null ? $this->groups : $groups; return $this->getConnection( DB_REPLICA, $groups ); } /** * @since 1.29 * * @param IDatabase $db */ public function releaseConnection( IDatabase $db ) { $this->loadBalancer->reuseConnection( $db ); } /** * Returns a connection ref to the master DB, for updating. * * @since 1.29 * * @return DBConnRef */ public function getWriteConnectionRef() { return $this->getConnectionRef( DB_MASTER ); } /** * Returns a database connection ref for reading. * * @since 1.29 * * @param string[]|null $groups * * @return DBConnRef */ public function getReadConnectionRef( array $groups = null ) { $groups = $groups === null ? $this->groups : $groups; return $this->getConnectionRef( DB_REPLICA, $groups ); } /** * Begins an atomic section and returns a database connection to the master DB, for updating. * * @since 1.29 * * @param string $fname * * @return Database */ public function beginAtomicSection( $fname ) { $db = $this->getWriteConnection(); $db->startAtomic( $fname ); return $db; } /** * @since 1.29 * * @param IDatabase $db * @param string $fname */ public function commitAtomicSection( IDatabase $db, $fname ) { $db->endAtomic( $fname ); $this->releaseConnection( $db ); } /** * @since 1.29 * * @param IDatabase $db * @param string $fname */ public function rollbackAtomicSection( IDatabase $db, $fname ) { // FIXME: there does not seem to be a clean way to roll back an atomic section?! $db->rollback( $fname, 'flush' ); $this->releaseConnection( $db ); } }