MediaWiki REL1_33
MaintainableDBConnRef.php
Go to the documentation of this file.
1<?php
2
3namespace Wikimedia\Rdbms;
4
14 public function tableName( $name, $format = 'quoted' ) {
15 return $this->__call( __FUNCTION__, func_get_args() );
16 }
17
18 public function tableNames() {
19 return $this->__call( __FUNCTION__, func_get_args() );
20 }
21
22 public function tableNamesN() {
23 return $this->__call( __FUNCTION__, func_get_args() );
24 }
25
26 public function sourceFile(
27 $filename,
28 callable $lineCallback = null,
29 callable $resultCallback = null,
30 $fname = false,
31 callable $inputCallback = null
32 ) {
34
35 return $this->__call( __FUNCTION__, func_get_args() );
36 }
37
38 public function sourceStream(
39 $fp,
40 callable $lineCallback = null,
41 callable $resultCallback = null,
42 $fname = __METHOD__,
43 callable $inputCallback = null
44 ) {
46
47 return $this->__call( __FUNCTION__, func_get_args() );
48 }
49
50 public function dropTable( $tableName, $fName = __METHOD__ ) {
52
53 return $this->__call( __FUNCTION__, func_get_args() );
54 }
55
56 public function deadlockLoop() {
58
59 return $this->__call( __FUNCTION__, func_get_args() );
60 }
61
62 public function listViews( $prefix = null, $fname = __METHOD__ ) {
63 return $this->__call( __FUNCTION__, func_get_args() );
64 }
65
66 public function textFieldSize( $table, $field ) {
67 return $this->__call( __FUNCTION__, func_get_args() );
68 }
69
70 public function streamStatementEnd( &$sql, &$newLine ) {
71 return $this->__call( __FUNCTION__, func_get_args() );
72 }
73
74 public function duplicateTableStructure(
75 $oldName, $newName, $temporary = false, $fname = __METHOD__
76 ) {
78
79 return $this->__call( __FUNCTION__, func_get_args() );
80 }
81
83 return $this->__call( __FUNCTION__, func_get_args() );
84 }
85
86 public function lockTables( array $read, array $write, $method ) {
88
89 return $this->__call( __FUNCTION__, func_get_args() );
90 }
91
92 public function unlockTables( $method ) {
94
95 return $this->__call( __FUNCTION__, func_get_args() );
96 }
97
98 public function indexUnique( $table, $index ) {
99 return $this->__call( __FUNCTION__, func_get_args() );
100 }
101
102 public function listTables( $prefix = null, $fname = __METHOD__ ) {
103 return $this->__call( __FUNCTION__, func_get_args() );
104 }
105
106 public function fieldInfo( $table, $field ) {
107 return $this->__call( __FUNCTION__, func_get_args() );
108 }
109}
110
114class_alias( MaintainableDBConnRef::class, 'MaintainableDBConnRef' );
if(defined( 'MW_SETUP_CALLBACK')) $fname
Customization point after all loading (constants, functions, classes, DefaultSettings,...
Definition Setup.php:123
Helper class to handle automatically marking connections as reusable (via RAII pattern) as well handl...
Definition DBConnRef.php:14
__call( $name, array $arguments)
Definition DBConnRef.php:47
assertRoleAllowsWrites()
Error out if the role is not DB_MASTER.
Helper class to handle automatically marking connections as reusable (via RAII pattern) as well handl...
tableLocksHaveTransactionScope()
Checks if table locks acquired by lockTables() are transaction-bound in their scope.
duplicateTableStructure( $oldName, $newName, $temporary=false, $fname=__METHOD__)
Creates a new table with structure copied from existing table.
textFieldSize( $table, $field)
Returns the size of a text field, or -1 for "unlimited".
dropTable( $tableName, $fName=__METHOD__)
Delete a table.
deadlockLoop()
Perform a deadlock-prone transaction.
listTables( $prefix=null, $fname=__METHOD__)
List all tables on the database.
listViews( $prefix=null, $fname=__METHOD__)
Lists all the VIEWs in the database.
fieldInfo( $table, $field)
mysql_fetch_field() wrapper Returns false if the field doesn't exist
sourceStream( $fp, callable $lineCallback=null, callable $resultCallback=null, $fname=__METHOD__, callable $inputCallback=null)
Read and execute commands from an open file handle.
tableNames()
Fetch a number of table names into an array This is handy when you need to construct SQL for joins.
indexUnique( $table, $index)
Determines if a given index is unique.
lockTables(array $read, array $write, $method)
Lock specific tables.
unlockTables( $method)
Unlock all tables locked via lockTables()
streamStatementEnd(&$sql, &$newLine)
Called by sourceStream() to check if we've reached a statement end.
tableNamesN()
Fetch a number of table names into an zero-indexed numerical array This is handy when you need to con...
tableName( $name, $format='quoted')
Format a table name ready for use in constructing an SQL query.
sourceFile( $filename, callable $lineCallback=null, callable $resultCallback=null, $fname=false, callable $inputCallback=null)
Read and execute SQL commands from a file.
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
Advanced database interface for IDatabase handles that include maintenance methods.
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))