3 * A foreign repository with an accessible MediaWiki database.
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
18 * http://www.gnu.org/copyleft/gpl.html
25 * A foreign repository with an accessible MediaWiki database
29 class ForeignDBRepo
extends LocalRepo
{
31 var $dbType, $dbServer, $dbUser, $dbPassword, $dbName, $dbFlags,
32 $tablePrefix, $hasSharedCache;
36 var $fileFactory = array( 'ForeignDBFile', 'newFromTitle' );
37 var $fileFromRowFactory = array( 'ForeignDBFile', 'newFromRow' );
40 * @param $info array|null
42 function __construct( $info ) {
43 parent
::__construct( $info );
44 $this->dbType
= $info['dbType'];
45 $this->dbServer
= $info['dbServer'];
46 $this->dbUser
= $info['dbUser'];
47 $this->dbPassword
= $info['dbPassword'];
48 $this->dbName
= $info['dbName'];
49 $this->dbFlags
= $info['dbFlags'];
50 $this->tablePrefix
= $info['tablePrefix'];
51 $this->hasSharedCache
= $info['hasSharedCache'];
55 * @return DatabaseBase
57 function getMasterDB() {
58 if ( !isset( $this->dbConn
) ) {
59 $this->dbConn
= DatabaseBase
::factory( $this->dbType
,
61 'host' => $this->dbServer
,
62 'user' => $this->dbUser
,
63 'password' => $this->dbPassword
,
64 'dbname' => $this->dbName
,
65 'flags' => $this->dbFlags
,
66 'tablePrefix' => $this->tablePrefix
74 * @return DatabaseBase
76 function getSlaveDB() {
77 return $this->getMasterDB();
83 function hasSharedCache() {
84 return $this->hasSharedCache
;
88 * Get a key on the primary cache for this repository.
89 * Returns false if the repository's cache is not accessible at this site.
90 * The parameters are the parts of the key, as for wfMemcKey().
93 function getSharedCacheKey( /*...*/ ) {
94 if ( $this->hasSharedCache() ) {
95 $args = func_get_args();
96 array_unshift( $args, $this->dbName
, $this->tablePrefix
);
97 return call_user_func_array( 'wfForeignMemcKey', $args );
103 protected function assertWritableRepo() {
104 throw new MWException( get_class( $this ) . ': write operations are not supported.' );