MediaWiki  1.34.0
MaintainableDBConnRef.php
Go to the documentation of this file.
1 <?php
2 
3 namespace 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  ) {
33  $this->assertRoleAllowsWrites();
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  ) {
45  $this->assertRoleAllowsWrites();
46 
47  return $this->__call( __FUNCTION__, func_get_args() );
48  }
49 
50  public function dropTable( $tableName, $fName = __METHOD__ ) {
51  $this->assertRoleAllowsWrites();
52 
53  return $this->__call( __FUNCTION__, func_get_args() );
54  }
55 
56  public function deadlockLoop() {
57  $this->assertRoleAllowsWrites();
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  ) {
77  $this->assertRoleAllowsWrites();
78 
79  return $this->__call( __FUNCTION__, func_get_args() );
80  }
81 
82  public function tableLocksHaveTransactionScope() {
83  return $this->__call( __FUNCTION__, func_get_args() );
84  }
85 
86  public function lockTables( array $read, array $write, $method ) {
87  $this->assertRoleAllowsWrites();
88 
89  return $this->__call( __FUNCTION__, func_get_args() );
90  }
91 
92  public function unlockTables( $method ) {
93  $this->assertRoleAllowsWrites();
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 
114 class_alias( MaintainableDBConnRef::class, 'MaintainableDBConnRef' );
Wikimedia\Rdbms\MaintainableDBConnRef\textFieldSize
textFieldSize( $table, $field)
Returns the size of a text field, or -1 for "unlimited".
Definition: MaintainableDBConnRef.php:66
Wikimedia\Rdbms\MaintainableDBConnRef\unlockTables
unlockTables( $method)
Unlock all tables locked via lockTables()
Definition: MaintainableDBConnRef.php:92
Wikimedia\Rdbms\MaintainableDBConnRef\listViews
listViews( $prefix=null, $fname=__METHOD__)
Lists all the VIEWs in the database.
Definition: MaintainableDBConnRef.php:62
Wikimedia\Rdbms\MaintainableDBConnRef\indexUnique
indexUnique( $table, $index)
Determines if a given index is unique.
Definition: MaintainableDBConnRef.php:98
Wikimedia\Rdbms\MaintainableDBConnRef\fieldInfo
fieldInfo( $table, $field)
mysql_fetch_field() wrapper Returns false if the field doesn't exist
Definition: MaintainableDBConnRef.php:106
Wikimedia\Rdbms
Definition: ChronologyProtector.php:24
Wikimedia\Rdbms\MaintainableDBConnRef
Helper class to handle automatically marking connections as reusable (via RAII pattern) as well handl...
Definition: MaintainableDBConnRef.php:13
Wikimedia\Rdbms\MaintainableDBConnRef\listTables
listTables( $prefix=null, $fname=__METHOD__)
List all tables on the database.
Definition: MaintainableDBConnRef.php:102
Wikimedia\Rdbms\MaintainableDBConnRef\tableNamesN
tableNamesN()
Fetch a number of table names into an zero-indexed numerical array This is handy when you need to con...
Definition: MaintainableDBConnRef.php:22
Wikimedia\Rdbms\MaintainableDBConnRef\duplicateTableStructure
duplicateTableStructure( $oldName, $newName, $temporary=false, $fname=__METHOD__)
Creates a new table with structure copied from existing table.
Definition: MaintainableDBConnRef.php:74
Wikimedia\Rdbms\DBConnRef\assertRoleAllowsWrites
assertRoleAllowsWrites()
Error out if the role is not DB_MASTER.
Definition: DBConnRef.php:778
Wikimedia\Rdbms\MaintainableDBConnRef\tableNames
tableNames()
Fetch a number of table names into an array This is handy when you need to construct SQL for joins.
Definition: MaintainableDBConnRef.php:18
Wikimedia\Rdbms\MaintainableDBConnRef\tableLocksHaveTransactionScope
tableLocksHaveTransactionScope()
Checks if table locks acquired by lockTables() are transaction-bound in their scope.
Definition: MaintainableDBConnRef.php:82
Wikimedia\Rdbms\MaintainableDBConnRef\sourceFile
sourceFile( $filename, callable $lineCallback=null, callable $resultCallback=null, $fname=false, callable $inputCallback=null)
Read and execute SQL commands from a file.
Definition: MaintainableDBConnRef.php:26
Wikimedia\Rdbms\DBConnRef
Helper class used for automatically marking an IDatabase connection as reusable (once it no longer ma...
Definition: DBConnRef.php:29
Wikimedia\Rdbms\MaintainableDBConnRef\streamStatementEnd
streamStatementEnd(&$sql, &$newLine)
Called by sourceStream() to check if we've reached a statement end.
Definition: MaintainableDBConnRef.php:70
Wikimedia\Rdbms\MaintainableDBConnRef\sourceStream
sourceStream( $fp, callable $lineCallback=null, callable $resultCallback=null, $fname=__METHOD__, callable $inputCallback=null)
Read and execute commands from an open file handle.
Definition: MaintainableDBConnRef.php:38
Wikimedia\Rdbms\MaintainableDBConnRef\tableName
tableName( $name, $format='quoted')
Format a table name ready for use in constructing an SQL query.
Definition: MaintainableDBConnRef.php:14
Wikimedia\Rdbms\MaintainableDBConnRef\lockTables
lockTables(array $read, array $write, $method)
Lock specific tables.
Definition: MaintainableDBConnRef.php:86
Wikimedia\Rdbms\MaintainableDBConnRef\dropTable
dropTable( $tableName, $fName=__METHOD__)
Delete a table.
Definition: MaintainableDBConnRef.php:50
Wikimedia\Rdbms\IMaintainableDatabase
Advanced database interface for IDatabase handles that include maintenance methods.
Definition: IMaintainableDatabase.php:38
Wikimedia\Rdbms\MaintainableDBConnRef\deadlockLoop
deadlockLoop()
Perform a deadlock-prone transaction.
Definition: MaintainableDBConnRef.php:56
Wikimedia\Rdbms\DBConnRef\__call
__call( $name, array $arguments)
Definition: DBConnRef.php:62