1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442
|
<?php
namespace MediaWiki\Page;
use EmptyIterator;
use InvalidArgumentException;
use Iterator;
use MediaWiki\Cache\LinkCache;
use MediaWiki\Config\ServiceOptions;
use MediaWiki\DAO\WikiAwareEntity;
use MediaWiki\MainConfigNames;
use MediaWiki\Title\MalformedTitleException;
use MediaWiki\Title\NamespaceInfo;
use MediaWiki\Title\TitleParser;
use stdClass;
use Wikimedia\Assert\Assert;
use Wikimedia\Parsoid\Core\LinkTarget as ParsoidLinkTarget;
use Wikimedia\Rdbms\IDBAccessObject;
use Wikimedia\Rdbms\ILoadBalancer;
use Wikimedia\Rdbms\IReadableDatabase;
use Wikimedia\Stats\StatsFactory;
/**
* @since 1.36
* @unstable
*/
class PageStore implements PageLookup {
private ServiceOptions $options;
private ILoadBalancer $dbLoadBalancer;
private NamespaceInfo $namespaceInfo;
private TitleParser $titleParser;
private ?LinkCache $linkCache;
private StatsFactory $stats;
/** @var string|false */
private $wikiId;
/**
* @internal for use by service wiring
*/
public const CONSTRUCTOR_OPTIONS = [
MainConfigNames::PageLanguageUseDB,
];
/**
* @param ServiceOptions $options
* @param ILoadBalancer $dbLoadBalancer
* @param NamespaceInfo $namespaceInfo
* @param TitleParser $titleParser
* @param ?LinkCache $linkCache
* @param StatsFactory $stats
* @param false|string $wikiId
*/
public function __construct(
ServiceOptions $options,
ILoadBalancer $dbLoadBalancer,
NamespaceInfo $namespaceInfo,
TitleParser $titleParser,
?LinkCache $linkCache,
StatsFactory $stats,
$wikiId = WikiAwareEntity::LOCAL
) {
$options->assertRequiredOptions( self::CONSTRUCTOR_OPTIONS );
$this->options = $options;
$this->dbLoadBalancer = $dbLoadBalancer;
$this->namespaceInfo = $namespaceInfo;
$this->titleParser = $titleParser;
$this->wikiId = $wikiId;
$this->linkCache = $linkCache;
$this->stats = $stats;
if ( $wikiId !== WikiAwareEntity::LOCAL && $linkCache ) {
// LinkCache currently doesn't support cross-wiki PageReferences.
// Once it does, this check can go away. At that point, LinkCache should
// probably also no longer be optional.
throw new InvalidArgumentException( "Can't use LinkCache with pages from $wikiId" );
}
}
/**
* Increment a cache hit or miss counter for LinkCache.
* Possible reason labels are:
* - `good`: The page was found in LinkCache and was complete.
* - `bad_early`: The page was known by LinkCache to not exist.
* - `bad_late`: The page was not found in LinkCache and did not exist.
* - `incomplete_loaded`: The page was found in LinkCache but was incomplete.
* - `incomplete_missing`: Incomplete page data was found in LinkCache, and the page did not exist.
*
* @param string $hitOrMiss 'hit' or 'miss'
* @param string $reason Well-known reason string
* @return void
*/
private function incrementLinkCacheHitOrMiss( $hitOrMiss, $reason ) {
$legacyReason = strtr( $reason, '_', '.' );
$this->stats->getCounter( 'pagestore_linkcache_accesses_total' )
->setLabel( 'reason', $reason )
->setLabel( 'status', $hitOrMiss )
->copyToStatsdAt( "LinkCache.$hitOrMiss.$legacyReason" )
->increment();
}
/**
* @param ParsoidLinkTarget $link
* @param int $queryFlags
*
* @return ProperPageIdentity
*/
public function getPageForLink(
ParsoidLinkTarget $link,
int $queryFlags = IDBAccessObject::READ_NORMAL
): ProperPageIdentity {
Assert::parameter( !$link->isExternal(), '$link', 'must not be external' );
Assert::parameter( $link->getDBkey() !== '', '$link', 'must not be relative' );
$ns = $link->getNamespace();
// Map Media links to File namespace
if ( $ns === NS_MEDIA ) {
$ns = NS_FILE;
}
Assert::parameter( $ns >= 0, '$link', 'namespace must not be virtual' );
$page = $this->getPageByName( $ns, $link->getDBkey(), $queryFlags );
if ( !$page ) {
$page = new PageIdentityValue( 0, $ns, $link->getDBkey(), $this->wikiId );
}
return $page;
}
/**
* @param int $namespace
* @param string $dbKey
* @param int $queryFlags
*
* @return ExistingPageRecord|null
*/
public function getPageByName(
int $namespace,
string $dbKey,
int $queryFlags = IDBAccessObject::READ_NORMAL
): ?ExistingPageRecord {
Assert::parameter( $dbKey !== '', '$dbKey', 'must not be empty' );
Assert::parameter( !strpos( $dbKey, ' ' ), '$dbKey', 'must not contain spaces' );
Assert::parameter( $namespace >= 0, '$namespace', 'must not be virtual' );
$conds = [
'page_namespace' => $namespace,
'page_title' => $dbKey,
];
if ( $this->linkCache ) {
return $this->getPageByNameViaLinkCache( $namespace, $dbKey, $queryFlags );
} else {
return $this->loadPageFromConditions( $conds, $queryFlags );
}
}
/**
* @param int $namespace
* @param string $dbKey
* @param int $queryFlags
*
* @return ExistingPageRecord|null
*/
private function getPageByNameViaLinkCache(
int $namespace,
string $dbKey,
int $queryFlags = IDBAccessObject::READ_NORMAL
): ?ExistingPageRecord {
$conds = [
'page_namespace' => $namespace,
'page_title' => $dbKey,
];
if ( $queryFlags === IDBAccessObject::READ_NORMAL && $this->linkCache->isBadLink( $conds ) ) {
$this->incrementLinkCacheHitOrMiss( 'hit', 'bad_early' );
return null;
}
$caller = __METHOD__;
$hitOrMiss = 'hit';
// Try to get the row from LinkCache, providing a callback to fetch it if it's not cached.
// When getGoodLinkRow() returns, LinkCache should have an entry for the row, good or bad.
$row = $this->linkCache->getGoodLinkRow(
$namespace,
$dbKey,
function ( IReadableDatabase $dbr, $ns, $dbkey, array $options )
use ( $conds, $caller, &$hitOrMiss )
{
$hitOrMiss = 'miss';
$row = $this->newSelectQueryBuilder( $dbr )
->fields( $this->getSelectFields() )
->conds( $conds )
->options( $options )
->caller( $caller )
->fetchRow();
return $row;
},
$queryFlags
);
if ( $row ) {
try {
// NOTE: LinkCache may not include namespace and title in the cached row,
// since it's already used as the cache key!
$row->page_namespace = $namespace;
$row->page_title = $dbKey;
$page = $this->newPageRecordFromRow( $row );
// We were able to use the row we got from link cache.
$this->incrementLinkCacheHitOrMiss( $hitOrMiss, 'good' );
} catch ( InvalidArgumentException $e ) {
// The cached row was incomplete or corrupt,
// just keep going and load from the database.
$page = $this->loadPageFromConditions( $conds, $queryFlags );
if ( $page ) {
// PageSelectQueryBuilder should have added the full row to the LinkCache now.
$this->incrementLinkCacheHitOrMiss( $hitOrMiss, 'incomplete_loaded' );
} else {
// If we get here, an incomplete row was cached, but we failed to
// load the full row from the database. This should only happen
// if the page was deleted under out feet, which should be very rare.
// Update the LinkCache to reflect the new situation.
$this->linkCache->addBadLinkObj( $conds );
$this->incrementLinkCacheHitOrMiss( $hitOrMiss, 'incomplete_missing' );
}
}
} else {
$this->incrementLinkCacheHitOrMiss( $hitOrMiss, 'bad_late' );
$page = null;
}
return $page;
}
/**
* @since 1.37
*
* @param string $text
* @param int $defaultNamespace Namespace to assume by default (usually NS_MAIN)
* @param int $queryFlags
*
* @return ProperPageIdentity|null
*/
public function getPageByText(
string $text,
int $defaultNamespace = NS_MAIN,
int $queryFlags = IDBAccessObject::READ_NORMAL
): ?ProperPageIdentity {
try {
$title = $this->titleParser->parseTitle( $text, $defaultNamespace );
return $this->getPageForLink( $title, $queryFlags );
} catch ( MalformedTitleException | InvalidArgumentException $e ) {
// Note that even some well-formed links are still invalid parameters
// for getPageForLink(), e.g. interwiki links or special pages.
return null;
}
}
/**
* @since 1.37
*
* @param string $text
* @param int $defaultNamespace Namespace to assume by default (usually NS_MAIN)
* @param int $queryFlags
*
* @return ExistingPageRecord|null
*/
public function getExistingPageByText(
string $text,
int $defaultNamespace = NS_MAIN,
int $queryFlags = IDBAccessObject::READ_NORMAL
): ?ExistingPageRecord {
$pageIdentity = $this->getPageByText( $text, $defaultNamespace, $queryFlags );
if ( !$pageIdentity ) {
return null;
}
return $this->getPageByReference( $pageIdentity, $queryFlags );
}
/**
* @param int $pageId
* @param int $queryFlags
*
* @return ExistingPageRecord|null
*/
public function getPageById(
int $pageId,
int $queryFlags = IDBAccessObject::READ_NORMAL
): ?ExistingPageRecord {
Assert::parameter( $pageId > 0, '$pageId', 'must be greater than zero' );
$conds = [
'page_id' => $pageId,
];
// XXX: no caching needed?
return $this->loadPageFromConditions( $conds, $queryFlags );
}
/**
* @param PageReference $page
* @param int $queryFlags
*
* @return ExistingPageRecord|null The page's PageRecord, or null if the page was not found.
*/
public function getPageByReference(
PageReference $page,
int $queryFlags = IDBAccessObject::READ_NORMAL
): ?ExistingPageRecord {
$page->assertWiki( $this->wikiId );
Assert::parameter( $page->getNamespace() >= 0, '$page', 'namespace must not be virtual' );
if ( $page instanceof ExistingPageRecord && $queryFlags === IDBAccessObject::READ_NORMAL ) {
return $page;
}
if ( $page instanceof PageIdentity ) {
Assert::parameter( $page->canExist(), '$page', 'Must be a proper page' );
}
return $this->getPageByName( $page->getNamespace(), $page->getDBkey(), $queryFlags );
}
/**
* @param array $conds
* @param int $queryFlags
*
* @return ExistingPageRecord|null
*/
private function loadPageFromConditions(
array $conds,
int $queryFlags = IDBAccessObject::READ_NORMAL
): ?ExistingPageRecord {
$queryBuilder = $this->newSelectQueryBuilder( $queryFlags )
->conds( $conds )
->caller( __METHOD__ );
// @phan-suppress-next-line PhanTypeMismatchReturnSuperType
return $queryBuilder->fetchPageRecord();
}
/**
* @internal
*
* @param stdClass $row
*
* @return ExistingPageRecord
*/
public function newPageRecordFromRow( stdClass $row ): ExistingPageRecord {
return new PageStoreRecord(
$row,
$this->wikiId
);
}
/**
* @internal
*
* @return string[]
*/
public function getSelectFields(): array {
$fields = [
'page_id',
'page_namespace',
'page_title',
'page_is_redirect',
'page_is_new',
'page_touched',
'page_links_updated',
'page_latest',
'page_len',
'page_content_model'
];
if ( $this->options->get( MainConfigNames::PageLanguageUseDB ) ) {
$fields[] = 'page_lang';
}
// Since we are putting rows into LinkCache, we need to include all fields
// that LinkCache needs.
$fields = array_unique(
array_merge( $fields, LinkCache::getSelectFields() )
);
return $fields;
}
/**
* @param IReadableDatabase|int $dbOrFlags The database connection to use, or a READ_XXX constant
* indicating what kind of database connection to use.
*
* @return PageSelectQueryBuilder
*/
public function newSelectQueryBuilder( $dbOrFlags = IDBAccessObject::READ_NORMAL ): PageSelectQueryBuilder {
if ( $dbOrFlags instanceof IReadableDatabase ) {
$db = $dbOrFlags;
$flags = IDBAccessObject::READ_NORMAL;
} else {
if ( ( $dbOrFlags & IDBAccessObject::READ_LATEST ) == IDBAccessObject::READ_LATEST ) {
$db = $this->dbLoadBalancer->getConnection( DB_PRIMARY, [], $this->wikiId );
} else {
$db = $this->dbLoadBalancer->getConnection( DB_REPLICA, [], $this->wikiId );
}
$flags = $dbOrFlags;
}
$queryBuilder = new PageSelectQueryBuilder( $db, $this, $this->linkCache );
$queryBuilder->recency( $flags );
return $queryBuilder;
}
/**
* Get all subpages of this page.
* Will return an empty list of the namespace doesn't support subpages.
*
* @param PageIdentity $page
* @param int $limit Maximum number of subpages to fetch
*
* @return Iterator<ExistingPageRecord>
*/
public function getSubpages( PageIdentity $page, int $limit ): Iterator {
if ( !$this->namespaceInfo->hasSubpages( $page->getNamespace() ) ) {
return new EmptyIterator();
}
return $this->newSelectQueryBuilder()
->whereTitlePrefix( $page->getNamespace(), $page->getDBkey() . '/' )
->orderByTitle()
->limit( $limit )
->caller( __METHOD__ )
->fetchPageRecords();
}
}
|