MediaWiki  1.33.1
DatabaseDomain.php
Go to the documentation of this file.
1 <?php
21 namespace Wikimedia\Rdbms;
22 
23 use InvalidArgumentException;
24 
30  private $database;
32  private $schema;
34  private $prefix;
35 
38 
44  public function __construct( $database, $schema, $prefix ) {
45  if ( $database !== null && ( !is_string( $database ) || $database === '' ) ) {
46  throw new InvalidArgumentException( 'Database must be null or a non-empty string.' );
47  }
48  $this->database = $database;
49  if ( $schema !== null && ( !is_string( $schema ) || $schema === '' ) ) {
50  throw new InvalidArgumentException( 'Schema must be null or a non-empty string.' );
51  } elseif ( $database === null && $schema !== null ) {
52  throw new InvalidArgumentException( 'Schema must be null if database is null.' );
53  }
54  $this->schema = $schema;
55  if ( !is_string( $prefix ) ) {
56  throw new InvalidArgumentException( "Prefix must be a string." );
57  }
58  $this->prefix = $prefix;
59  }
60 
65  public static function newFromId( $domain ) {
66  if ( $domain instanceof self ) {
67  return $domain;
68  }
69 
70  $parts = array_map( [ __CLASS__, 'decode' ], explode( '-', $domain ) );
71 
72  $schema = null;
73  $prefix = '';
74 
75  if ( count( $parts ) == 1 ) {
76  $database = $parts[0];
77  } elseif ( count( $parts ) == 2 ) {
78  list( $database, $prefix ) = $parts;
79  } elseif ( count( $parts ) == 3 ) {
80  list( $database, $schema, $prefix ) = $parts;
81  } else {
82  throw new InvalidArgumentException( "Domain '$domain' has too few or too many parts." );
83  }
84 
85  if ( $database === '' ) {
86  $database = null;
87  }
88 
89  if ( $schema === '' ) {
90  $schema = null;
91  }
92 
93  return new self( $database, $schema, $prefix );
94  }
95 
99  public static function newUnspecified() {
100  return new self( null, null, '' );
101  }
102 
107  public function equals( $other ) {
108  if ( $other instanceof self ) {
109  return (
110  $this->database === $other->database &&
111  $this->schema === $other->schema &&
112  $this->prefix === $other->prefix
113  );
114  }
115 
116  return ( $this->getId() === $other );
117  }
118 
133  public function isCompatible( $other ) {
134  if ( $this->isUnspecified() ) {
135  return true; // even the prefix doesn't matter
136  }
137 
138  $other = self::newFromId( $other );
139 
140  return (
141  ( $this->database === $other->database || $this->database === null ) &&
142  ( $this->schema === $other->schema || $this->schema === null ) &&
143  $this->prefix === $other->prefix
144  );
145  }
146 
151  public function isUnspecified() {
152  return (
153  $this->database === null && $this->schema === null && $this->prefix === ''
154  );
155  }
156 
160  public function getDatabase() {
161  return $this->database;
162  }
163 
167  public function getSchema() {
168  return $this->schema;
169  }
170 
174  public function getTablePrefix() {
175  return $this->prefix;
176  }
177 
181  public function getId() {
182  if ( $this->equivalentString === null ) {
183  $this->equivalentString = $this->convertToString();
184  }
185 
187  }
188 
192  private function convertToString() {
193  $parts = [ (string)$this->database ];
194  if ( $this->schema !== null ) {
195  $parts[] = $this->schema;
196  }
197  if ( $this->prefix != '' || $this->schema !== null ) {
198  // If there is a schema, then we need the prefix to disambiguate.
199  // For engines like Postgres that use schemas, this awkwardness is hopefully
200  // avoided since it is easy to have one DB per server (to avoid having many users)
201  // and use schema/prefix to have wiki farms. For example, a domain schemes could be
202  // wiki-<project>-<language>, e.g. "wiki-fitness-es"/"wiki-sports-fr"/"wiki-news-en".
203  $parts[] = $this->prefix;
204  }
205 
206  return implode( '-', array_map( [ __CLASS__, 'encode' ], $parts ) );
207  }
208 
209  private static function encode( $decoded ) {
210  $encoded = '';
211 
212  $length = strlen( $decoded );
213  for ( $i = 0; $i < $length; ++$i ) {
214  $char = $decoded[$i];
215  if ( $char === '-' ) {
216  $encoded .= '?h';
217  } elseif ( $char === '?' ) {
218  $encoded .= '??';
219  } else {
220  $encoded .= $char;
221  }
222  }
223 
224  return $encoded;
225  }
226 
227  private static function decode( $encoded ) {
228  $decoded = '';
229 
230  $length = strlen( $encoded );
231  for ( $i = 0; $i < $length; ++$i ) {
232  $char = $encoded[$i];
233  if ( $char === '?' ) {
234  $nextChar = $encoded[$i + 1] ?? null;
235  if ( $nextChar === 'h' ) {
236  $decoded .= '-';
237  ++$i;
238  } elseif ( $nextChar === '?' ) {
239  $decoded .= '?';
240  ++$i;
241  } else {
242  $decoded .= $char;
243  }
244  } else {
245  $decoded .= $char;
246  }
247  }
248 
249  return $decoded;
250  }
251 
255  function __toString() {
256  return $this->getId();
257  }
258 }
Wikimedia\Rdbms\DatabaseDomain\getId
getId()
Definition: DatabaseDomain.php:181
Wikimedia\Rdbms\DatabaseDomain\newFromId
static newFromId( $domain)
Definition: DatabaseDomain.php:65
Wikimedia\Rdbms\DatabaseDomain\__construct
__construct( $database, $schema, $prefix)
Definition: DatabaseDomain.php:44
captcha-old.count
count
Definition: captcha-old.py:249
Wikimedia\Rdbms\DatabaseDomain\getTablePrefix
getTablePrefix()
Definition: DatabaseDomain.php:174
Wikimedia\Rdbms\DatabaseDomain\$equivalentString
string $equivalentString
Cache of convertToString()
Definition: DatabaseDomain.php:37
Wikimedia\Rdbms
Definition: ChronologyProtector.php:24
Wikimedia\Rdbms\DatabaseDomain\$prefix
string $prefix
Definition: DatabaseDomain.php:34
Wikimedia\Rdbms\DatabaseDomain\getDatabase
getDatabase()
Definition: DatabaseDomain.php:160
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
Wikimedia\Rdbms\DatabaseDomain\newUnspecified
static newUnspecified()
Definition: DatabaseDomain.php:99
Wikimedia\Rdbms\DatabaseDomain\encode
static encode( $decoded)
Definition: DatabaseDomain.php:209
Wikimedia\Rdbms\DatabaseDomain\__toString
__toString()
Definition: DatabaseDomain.php:255
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
Wikimedia\Rdbms\DatabaseDomain\isUnspecified
isUnspecified()
Definition: DatabaseDomain.php:151
string
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
Definition: hooks.txt:175
list
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global list
Definition: deferred.txt:11
Wikimedia\Rdbms\DatabaseDomain\$database
string null $database
Definition: DatabaseDomain.php:30
Wikimedia\Rdbms\DatabaseDomain\getSchema
getSchema()
Definition: DatabaseDomain.php:167
Wikimedia\Rdbms\DatabaseDomain\$schema
string null $schema
Definition: DatabaseDomain.php:32
Wikimedia\Rdbms\DatabaseDomain\decode
static decode( $encoded)
Definition: DatabaseDomain.php:227
Wikimedia\Rdbms\DatabaseDomain\convertToString
convertToString()
Definition: DatabaseDomain.php:192
Wikimedia\Rdbms\DatabaseDomain
Class to handle database/prefix specification for IDatabase domains.
Definition: DatabaseDomain.php:28
Wikimedia\Rdbms\DatabaseDomain\isCompatible
isCompatible( $other)
Check whether the domain $other meets the specifications of this domain.
Definition: DatabaseDomain.php:133
Wikimedia\Rdbms\DatabaseDomain\equals
equals( $other)
Definition: DatabaseDomain.php:107