MediaWiki  1.33.0
IMaintainableDatabase.php
Go to the documentation of this file.
1 <?php
2 
24 namespace Wikimedia\Rdbms;
25 
26 use Exception;
27 use RuntimeException;
28 
38 interface IMaintainableDatabase extends IDatabase {
58  public function tableName( $name, $format = 'quoted' );
59 
71  public function tableNames();
72 
84  public function tableNamesN();
85 
93  public function textFieldSize( $table, $field );
94 
111  public function sourceFile(
112  $filename,
113  callable $lineCallback = null,
114  callable $resultCallback = null,
115  $fname = false,
116  callable $inputCallback = null
117  );
118 
132  public function sourceStream(
133  $fp,
134  callable $lineCallback = null,
135  callable $resultCallback = null,
136  $fname = __METHOD__,
137  callable $inputCallback = null
138  );
139 
147  public function streamStatementEnd( &$sql, &$newLine );
148 
155  public function dropTable( $tableName, $fName = __METHOD__ );
156 
181  public function deadlockLoop();
182 
191  public function listViews( $prefix = null, $fname = __METHOD__ );
192 
208  public function duplicateTableStructure(
209  $oldName, $newName, $temporary = false, $fname = __METHOD__
210  );
211 
223  public function tableLocksHaveTransactionScope();
224 
265  public function lockTables( array $read, array $write, $method );
266 
277  public function unlockTables( $method );
278 
287  public function listTables( $prefix = null, $fname = __METHOD__ );
288 
297  public function indexUnique( $table, $index );
298 
308  public function fieldInfo( $table, $field );
309 }
310 
311 class_alias( IMaintainableDatabase::class, 'IMaintainableDatabase' );
Wikimedia\Rdbms\IMaintainableDatabase\lockTables
lockTables(array $read, array $write, $method)
Lock specific tables.
Wikimedia\Rdbms
Definition: ChronologyProtector.php:24
Wikimedia\Rdbms\IMaintainableDatabase\listViews
listViews( $prefix=null, $fname=__METHOD__)
Lists all the VIEWs in the database.
Wikimedia\Rdbms\IMaintainableDatabase\tableName
tableName( $name, $format='quoted')
Format a table name ready for use in constructing an SQL query.
Wikimedia\Rdbms\IMaintainableDatabase\tableNames
tableNames()
Fetch a number of table names into an array This is handy when you need to construct SQL for joins.
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\IDatabase
Basic database interface for live and lazy-loaded relation database handles.
Definition: IDatabase.php:38
Wikimedia\Rdbms\IMaintainableDatabase\sourceStream
sourceStream( $fp, callable $lineCallback=null, callable $resultCallback=null, $fname=__METHOD__, callable $inputCallback=null)
Read and execute commands from an open file handle.
Wikimedia\Rdbms\IMaintainableDatabase\deadlockLoop
deadlockLoop()
Perform a deadlock-prone transaction.
Wikimedia\Rdbms\IMaintainableDatabase\tableNamesN
tableNamesN()
Fetch a number of table names into an zero-indexed numerical array This is handy when you need to con...
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
array
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
Wikimedia\Rdbms\IMaintainableDatabase\indexUnique
indexUnique( $table, $index)
Determines if a given index is unique.
Wikimedia\Rdbms\IMaintainableDatabase\sourceFile
sourceFile( $filename, callable $lineCallback=null, callable $resultCallback=null, $fname=false, callable $inputCallback=null)
Read and execute SQL commands from a file.
$fname
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Definition: Setup.php:123
$name
Allows to change the fields on the form that will be generated $name
Definition: hooks.txt:271
Wikimedia\Rdbms\IMaintainableDatabase\unlockTables
unlockTables( $method)
Unlock all tables locked via lockTables()
Wikimedia\Rdbms\IMaintainableDatabase\tableLocksHaveTransactionScope
tableLocksHaveTransactionScope()
Checks if table locks acquired by lockTables() are transaction-bound in their scope.
Wikimedia\Rdbms\IMaintainableDatabase\dropTable
dropTable( $tableName, $fName=__METHOD__)
Delete a table.
Wikimedia\Rdbms\IMaintainableDatabase\textFieldSize
textFieldSize( $table, $field)
Returns the size of a text field, or -1 for "unlimited".
Wikimedia\Rdbms\IMaintainableDatabase\duplicateTableStructure
duplicateTableStructure( $oldName, $newName, $temporary=false, $fname=__METHOD__)
Creates a new table with structure copied from existing table.
Wikimedia\Rdbms\IMaintainableDatabase\fieldInfo
fieldInfo( $table, $field)
mysql_fetch_field() wrapper Returns false if the field doesn't exist
class
you have access to all of the normal MediaWiki so you can get a DB use the etc For full docs on the Maintenance class
Definition: maintenance.txt:52
Wikimedia\Rdbms\IMaintainableDatabase\streamStatementEnd
streamStatementEnd(&$sql, &$newLine)
Called by sourceStream() to check if we've reached a statement end.
Wikimedia\Rdbms\IMaintainableDatabase
Advanced database interface for IDatabase handles that include maintenance methods.
Definition: IMaintainableDatabase.php:38
Wikimedia\Rdbms\IMaintainableDatabase\listTables
listTables( $prefix=null, $fname=__METHOD__)
List all tables on the database.