MediaWiki  1.33.0
RevisionStoreFactory.php
Go to the documentation of this file.
1 <?php
2 
26 namespace MediaWiki\Revision;
27 
30 use MediaWiki\Logger\Spi as LoggerSpi;
34 use Wikimedia\Assert\Assert;
36 
50 
56  private $cache;
58  private $loggerProvider;
59 
61  private $commentStore;
63  private $actorMigration;
71 
73  private $nameTables;
74 
77 
91  public function __construct(
92  ILBFactory $dbLoadBalancerFactory,
93  BlobStoreFactory $blobStoreFactory,
94  NameTableStoreFactory $nameTables,
99  $migrationStage,
100  LoggerSpi $loggerProvider,
102  ) {
103  Assert::parameterType( 'integer', $migrationStage, '$migrationStage' );
104  $this->dbLoadBalancerFactory = $dbLoadBalancerFactory;
105  $this->blobStoreFactory = $blobStoreFactory;
106  $this->slotRoleRegistry = $slotRoleRegistry;
107  $this->nameTables = $nameTables;
108  $this->cache = $cache;
109  $this->commentStore = $commentStore;
110  $this->actorMigration = $actorMigration;
111  $this->mcrMigrationStage = $migrationStage;
112  $this->loggerProvider = $loggerProvider;
113  $this->contentHandlerUseDB = $contentHandlerUseDB;
114  }
115 
123  public function getRevisionStore( $wikiId = false ) {
124  Assert::parameterType( 'string|boolean', $wikiId, '$wikiId' );
125 
126  $store = new RevisionStore(
127  $this->dbLoadBalancerFactory->getMainLB( $wikiId ),
128  $this->blobStoreFactory->newSqlBlobStore( $wikiId ),
129  $this->cache, // Pass local cache instance; Leave cache sharing to RevisionStore.
131  $this->nameTables->getContentModels( $wikiId ),
132  $this->nameTables->getSlotRoles( $wikiId ),
136  $wikiId
137  );
138 
139  $store->setLogger( $this->loggerProvider->getLogger( 'RevisionStore' ) );
140  $store->setContentHandlerUseDB( $this->contentHandlerUseDB );
141 
142  return $store;
143  }
144 }
Revision\RevisionStoreFactory\$cache
WANObjectCache $cache
Definition: RevisionStoreFactory.php:56
Revision\RevisionStoreFactory\__construct
__construct(ILBFactory $dbLoadBalancerFactory, BlobStoreFactory $blobStoreFactory, NameTableStoreFactory $nameTables, SlotRoleRegistry $slotRoleRegistry, WANObjectCache $cache, CommentStore $commentStore, ActorMigration $actorMigration, $migrationStage, LoggerSpi $loggerProvider, $contentHandlerUseDB)
Definition: RevisionStoreFactory.php:91
Revision\RevisionStore
Service for looking up page revisions.
Definition: RevisionStore.php:76
CommentStore
CommentStore handles storage of comments (edit summaries, log reasons, etc) in the database.
Definition: CommentStore.php:31
ActorMigration
This class handles the logic for the actor table migration.
Definition: ActorMigration.php:35
cache
you have access to all of the normal MediaWiki so you can get a DB use the cache
Definition: maintenance.txt:52
php
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
Definition: injection.txt:35
Revision\RevisionStoreFactory\$contentHandlerUseDB
bool $contentHandlerUseDB
Definition: RevisionStoreFactory.php:70
MediaWiki\Revision
Created by PhpStorm.
Definition: FallbackSlotRoleHandler.php:23
Revision\RevisionStoreFactory\$mcrMigrationStage
int $mcrMigrationStage
One of the MIGRATION_* constants.
Definition: RevisionStoreFactory.php:65
Revision\RevisionStoreFactory\$blobStoreFactory
BlobStoreFactory $blobStoreFactory
Definition: RevisionStoreFactory.php:52
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
MediaWiki\Storage\BlobStoreFactory
Service for instantiating BlobStores.
Definition: BlobStoreFactory.php:35
Revision\RevisionStore\setLogger
setLogger(LoggerInterface $logger)
Definition: RevisionStore.php:236
Revision\RevisionStoreFactory\$slotRoleRegistry
SlotRoleRegistry $slotRoleRegistry
Definition: RevisionStoreFactory.php:76
Revision\RevisionStoreFactory\$actorMigration
ActorMigration $actorMigration
Definition: RevisionStoreFactory.php:63
WANObjectCache
Multi-datacenter aware caching interface.
Definition: WANObjectCache.php:116
Revision\RevisionStoreFactory\$nameTables
NameTableStoreFactory $nameTables
Definition: RevisionStoreFactory.php:73
Revision\RevisionStoreFactory\$dbLoadBalancerFactory
ILBFactory $dbLoadBalancerFactory
Definition: RevisionStoreFactory.php:54
Revision\RevisionStoreFactory
Factory service for RevisionStore instances.
Definition: RevisionStoreFactory.php:49
Revision\RevisionStoreFactory\$loggerProvider
LoggerSpi $loggerProvider
Definition: RevisionStoreFactory.php:58
as
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Definition: distributors.txt:9
MediaWiki\Storage\NameTableStoreFactory
Definition: NameTableStoreFactory.php:26
Revision\SlotRoleRegistry
A registry service for SlotRoleHandlers, used to define which slot roles are available on which page.
Definition: SlotRoleRegistry.php:48
Revision\RevisionStoreFactory\getRevisionStore
getRevisionStore( $wikiId=false)
Definition: RevisionStoreFactory.php:123
MediaWiki\Logger\Spi
Service provider interface for \Psr\Log\LoggerInterface implementation libraries.
Definition: Spi.php:36
Revision\RevisionStoreFactory\$commentStore
CommentStore $commentStore
Definition: RevisionStoreFactory.php:61
Wikimedia\Rdbms\ILBFactory
An interface for generating database load balancers.
Definition: ILBFactory.php:33