Merge "Added a separate error message for mkdir failures"
[lhc/web/wiklou.git] / includes / libs / rdbms / database / MaintainableDBConnRef.php
1 <?php
2
3 namespace Wikimedia\Rdbms;
4
5 /**
6 * Helper class to handle automatically marking connections as reusable (via RAII pattern)
7 * as well handling deferring the actual network connection until the handle is used
8 *
9 * @note: proxy methods are defined explicity to avoid interface errors
10 * @ingroup Database
11 * @since 1.29
12 */
13 class MaintainableDBConnRef extends DBConnRef implements IMaintainableDatabase {
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 return $this->__call( __FUNCTION__, func_get_args() );
34 }
35
36 public function sourceStream(
37 $fp,
38 callable $lineCallback = null,
39 callable $resultCallback = null,
40 $fname = __METHOD__,
41 callable $inputCallback = null
42 ) {
43 return $this->__call( __FUNCTION__, func_get_args() );
44 }
45
46 public function dropTable( $tableName, $fName = __METHOD__ ) {
47 return $this->__call( __FUNCTION__, func_get_args() );
48 }
49
50 public function deadlockLoop() {
51 return $this->__call( __FUNCTION__, func_get_args() );
52 }
53
54 public function listViews( $prefix = null, $fname = __METHOD__ ) {
55 return $this->__call( __FUNCTION__, func_get_args() );
56 }
57
58 public function textFieldSize( $table, $field ) {
59 return $this->__call( __FUNCTION__, func_get_args() );
60 }
61
62 public function streamStatementEnd( &$sql, &$newLine ) {
63 return $this->__call( __FUNCTION__, func_get_args() );
64 }
65
66 public function duplicateTableStructure(
67 $oldName, $newName, $temporary = false, $fname = __METHOD__
68 ) {
69 return $this->__call( __FUNCTION__, func_get_args() );
70 }
71
72 public function tableLocksHaveTransactionScope() {
73 return $this->__call( __FUNCTION__, func_get_args() );
74 }
75
76 public function lockTables( array $read, array $write, $method ) {
77 return $this->__call( __FUNCTION__, func_get_args() );
78 }
79
80 public function unlockTables( $method ) {
81 return $this->__call( __FUNCTION__, func_get_args() );
82 }
83 }
84
85 class_alias( MaintainableDBConnRef::class, 'MaintainableDBConnRef' );