blob: a27ad514c8fd3fd5ba0bbd35e0c3f28717ea84e8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
<?php
namespace SMW\MediaWiki;
use SMW\DBConnectionProvider;
use DatabaseBase;
use RuntimeException;
/**
* @ingroup SMW
*
* @licence GNU GPL v2+
* @since 1.9
*
* @author Jeroen De Dauw < jeroendedauw@gmail.com >
*/
class LazyDBConnectionProvider implements DBConnectionProvider {
/** @var DatabaseBase|null */
protected $connection = null;
/** @var int|null */
protected $connectionId = null;
/** @var string|array */
protected $groups;
/** @var string|boolean $wiki */
protected $wiki;
/**
* @since 1.9
*
* @param int $connectionId
* @param string|array $groups
* @param string|boolean $wiki
*/
public function __construct( $connectionId, $groups = array(), $wiki = false ) {
$this->connectionId = $connectionId;
$this->groups = $groups;
$this->wiki = $wiki;
}
/**
* @see DBConnectionProvider::getConnection
*
* @since 1.9
*
* @return DatabaseBase
* @throws RuntimeException
*/
public function getConnection() {
if ( $this->connection === null ) {
$this->connection = wfGetLB( $this->wiki )->getConnection( $this->connectionId, $this->groups, $this->wiki );
}
if ( $this->isConnection( $this->connection ) ) {
return $this->connection;
}
throw new RuntimeException( 'Expected a DatabaseBase instance' );
}
/**
* @see DBConnectionProvider::releaseConnection
*
* @since 1.9
*/
public function releaseConnection() {
if ( $this->wiki !== false && $this->connection !== null ) {
wfGetLB( $this->wiki )->reuseConnection( $this->connection );
}
}
protected function isConnection( $connection ) {
return $connection instanceof DatabaseBase;
}
}
|