3 * Version of FileJournal that logs to a DB table.
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
21 * @ingroup FileJournal
22 * @author Aaron Schulz
26 * Version of FileJournal that logs to a DB table
29 class DBFileJournal
extends FileJournal
{
30 /** @var DatabaseBase */
33 protected $wiki = false; // string; wiki DB name
36 * Construct a new instance from configuration.
38 * 'wiki' : wiki name to use for LoadBalancer
40 * @param $config Array
42 protected function __construct( array $config ) {
43 parent
::__construct( $config );
45 $this->wiki
= $config['wiki'];
49 * @see FileJournal::logChangeBatch()
52 protected function doLogChangeBatch( array $entries, $batchId ) {
53 $status = Status
::newGood();
56 $dbw = $this->getMasterDB();
57 } catch ( DBError
$e ) {
58 $status->fatal( 'filejournal-fail-dbconnect', $this->backend
);
62 $now = wfTimestamp( TS_UNIX
);
65 foreach ( $entries as $entry ) {
67 'fj_batch_uuid' => $batchId,
68 'fj_backend' => $this->backend
,
69 'fj_op' => $entry['op'],
70 'fj_path' => $entry['path'],
71 'fj_new_sha1' => $entry['newSha1'],
72 'fj_timestamp' => $dbw->timestamp( $now )
77 $dbw->insert( 'filejournal', $data, __METHOD__
);
78 if ( mt_rand( 0, 99 ) == 0 ) {
79 $this->purgeOldLogs(); // occasionally delete old logs
81 } catch ( DBError
$e ) {
82 $status->fatal( 'filejournal-fail-dbquery', $this->backend
);
90 * @see FileJournal::doGetCurrentPosition()
91 * @return integer|false
93 protected function doGetCurrentPosition() {
94 $dbw = $this->getMasterDB();
96 return $dbw->selectField( 'filejournal', 'MAX(fj_id)',
97 array( 'fj_backend' => $this->backend
),
103 * @see FileJournal::doGetPositionAtTime()
104 * @param $time integer|string timestamp
105 * @return integer|false
107 protected function doGetPositionAtTime( $time ) {
108 $dbw = $this->getMasterDB();
110 $encTimestamp = $dbw->addQuotes( $dbw->timestamp( $time ) );
111 return $dbw->selectField( 'filejournal', 'fj_id',
112 array( 'fj_backend' => $this->backend
, "fj_timestamp <= $encTimestamp" ),
114 array( 'ORDER BY' => 'fj_timestamp DESC' )
119 * @see FileJournal::doGetChangeEntries()
123 protected function doGetChangeEntries( $start, $limit ) {
124 $dbw = $this->getMasterDB();
126 $res = $dbw->select( 'filejournal', '*',
128 'fj_backend' => $this->backend
,
129 'fj_id >= ' . $dbw->addQuotes( (int)$start ) ), // $start may be 0
131 array_merge( array( 'ORDER BY' => 'fj_id ASC' ),
132 $limit ?
array( 'LIMIT' => $limit ) : array() )
136 foreach ( $res as $row ) {
138 foreach ( (array)$row as $key => $value ) {
139 $item[substr( $key, 3 )] = $value; // "fj_op" => "op"
148 * @see FileJournal::purgeOldLogs()
152 protected function doPurgeOldLogs() {
153 $status = Status
::newGood();
154 if ( $this->ttlDays
<= 0 ) {
155 return $status; // nothing to do
158 $dbw = $this->getMasterDB();
159 $dbCutoff = $dbw->timestamp( time() - 86400 * $this->ttlDays
);
161 $dbw->delete( 'filejournal',
162 array( 'fj_timestamp < ' . $dbw->addQuotes( $dbCutoff ) ),
170 * Get a master connection to the logging DB
172 * @return DatabaseBase
175 protected function getMasterDB() {
177 // Get a separate connection in autocommit mode
178 $lb = wfGetLBFactory()->newMainLB();
179 $this->dbw
= $lb->getConnection( DB_MASTER
, array(), $this->wiki
);
180 $this->dbw
->clearFlag( DBO_TRX
);