MediaWiki REL1_31
LCStoreDB.php
Go to the documentation of this file.
1<?php
23
28class LCStoreDB implements LCStore {
29
31 private $currentLang;
33 private $writesDone = false;
35 private $dbw;
37 private $batch = [];
39 private $readOnly = false;
40
41 public function get( $code, $key ) {
42 if ( $this->writesDone && $this->dbw ) {
43 $db = $this->dbw; // see the changes in finishWrite()
44 } else {
45 $db = wfGetDB( DB_REPLICA );
46 }
47
48 $value = $db->selectField(
49 'l10n_cache',
50 'lc_value',
51 [ 'lc_lang' => $code, 'lc_key' => $key ],
52 __METHOD__
53 );
54
55 return ( $value !== false ) ? unserialize( $db->decodeBlob( $value ) ) : null;
56 }
57
58 public function startWrite( $code ) {
59 if ( $this->readOnly ) {
60 return;
61 } elseif ( !$code ) {
62 throw new MWException( __METHOD__ . ": Invalid language \"$code\"" );
63 }
64
65 $this->dbw = wfGetDB( DB_MASTER );
66 $this->readOnly = $this->dbw->isReadOnly();
67
68 $this->currentLang = $code;
69 $this->batch = [];
70 }
71
72 public function finishWrite() {
73 if ( $this->readOnly ) {
74 return;
75 } elseif ( is_null( $this->currentLang ) ) {
76 throw new MWException( __CLASS__ . ': must call startWrite() before finishWrite()' );
77 }
78
79 $this->dbw->startAtomic( __METHOD__ );
80 try {
81 $this->dbw->delete(
82 'l10n_cache',
83 [ 'lc_lang' => $this->currentLang ],
84 __METHOD__
85 );
86 foreach ( array_chunk( $this->batch, 500 ) as $rows ) {
87 $this->dbw->insert( 'l10n_cache', $rows, __METHOD__ );
88 }
89 $this->writesDone = true;
90 } catch ( DBQueryError $e ) {
91 if ( $this->dbw->wasReadOnlyError() ) {
92 $this->readOnly = true; // just avoid site down time
93 } else {
94 throw $e;
95 }
96 }
97 $this->dbw->endAtomic( __METHOD__ );
98
99 $this->currentLang = null;
100 $this->batch = [];
101 }
102
103 public function set( $key, $value ) {
104 if ( $this->readOnly ) {
105 return;
106 } elseif ( is_null( $this->currentLang ) ) {
107 throw new MWException( __CLASS__ . ': must call startWrite() before set()' );
108 }
109
110 $this->batch[] = [
111 'lc_lang' => $this->currentLang,
112 'lc_key' => $key,
113 'lc_value' => $this->dbw->encodeBlob( serialize( $value ) )
114 ];
115 }
116
117}
serialize()
unserialize( $serialized)
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
LCStore implementation which uses the standard DB functions to store data.
Definition LCStoreDB.php:28
bool $readOnly
Definition LCStoreDB.php:39
finishWrite()
Finish a write transaction.
Definition LCStoreDB.php:72
startWrite( $code)
Start a write transaction.
Definition LCStoreDB.php:58
array $batch
Definition LCStoreDB.php:37
IDatabase $dbw
Definition LCStoreDB.php:35
string $currentLang
Definition LCStoreDB.php:31
bool $writesDone
Definition LCStoreDB.php:33
MediaWiki exception.
do that in ParserLimitReportFormat instead use this to modify the parameters of the image all existing parser cache entries will be invalid To avoid you ll need to handle that somehow(e.g. with the RejectParserCacheValue hook) because MediaWiki won 't do it for you. & $defaults also a ContextSource after deleting those rows but within the same transaction $rows
Definition hooks.txt:2783
this hook is for auditing only or null if authentication failed before getting that far or null if we can t even determine that probably a stub it is not rendered in wiki pages or galleries in category pages allow injecting custom HTML after the section Any uses of the hook need to handle escaping see BaseTemplate::getToolbox and BaseTemplate::makeListItem for details on the format of individual items inside of this array or by returning and letting standard HTTP rendering take place modifiable or by returning false and taking over the output modifiable & $code
Definition hooks.txt:865
returning false will NOT prevent logging $e
Definition hooks.txt:2176
Interface for the persistence layer of LocalisationCache.
Definition LCStore.php:38
Basic database interface for live and lazy-loaded relation database handles.
Definition IDatabase.php:38
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a batch
Definition linkcache.txt:14
const DB_REPLICA
Definition defines.php:25
const DB_MASTER
Definition defines.php:29