MediaWiki REL1_33
RevisionStoreFactory.php
Go to the documentation of this file.
1<?php
2
26namespace MediaWiki\Revision;
27
34use Wikimedia\Assert\Assert;
36
50
56 private $cache;
59
71
73 private $nameTables;
74
77
91 public function __construct(
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.
130 $this->commentStore,
131 $this->nameTables->getContentModels( $wikiId ),
132 $this->nameTables->getSlotRoles( $wikiId ),
133 $this->slotRoleRegistry,
134 $this->mcrMigrationStage,
135 $this->actorMigration,
136 $wikiId
137 );
138
139 $store->setLogger( $this->loggerProvider->getLogger( 'RevisionStore' ) );
140 $store->setContentHandlerUseDB( $this->contentHandlerUseDB );
141
142 return $store;
143 }
144}
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
This class handles the logic for the actor table migration.
CommentStore handles storage of comments (edit summaries, log reasons, etc) in the database.
Factory service for RevisionStore instances.
int $mcrMigrationStage
One of the MIGRATION_* constants.
__construct(ILBFactory $dbLoadBalancerFactory, BlobStoreFactory $blobStoreFactory, NameTableStoreFactory $nameTables, SlotRoleRegistry $slotRoleRegistry, WANObjectCache $cache, CommentStore $commentStore, ActorMigration $actorMigration, $migrationStage, LoggerSpi $loggerProvider, $contentHandlerUseDB)
Service for looking up page revisions.
A registry service for SlotRoleHandlers, used to define which slot roles are available on which page.
Service for instantiating BlobStores.
Multi-datacenter aware caching interface.
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
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:37
Service provider interface for \Psr\Log\LoggerInterface implementation libraries.
Definition Spi.php:36
An interface for generating database load balancers.
you have access to all of the normal MediaWiki so you can get a DB use the cache