Merge "Allow Status::hasMessage to work with Message objects."
[lhc/web/wiklou.git] / maintenance / storage / orphanStats.php
1 <?php
2 /**
3 * Show some statistics on the blob_orphans table, created with trackBlobs.php.
4 *
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.
9 *
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.
14 *
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
19 *
20 * @file
21 * @ingroup Maintenance ExternalStorage
22 */
23
24 require_once __DIR__ . '/../Maintenance.php';
25
26 /**
27 * Maintenance script that shows some statistics on the blob_orphans table,
28 * created with trackBlobs.php.
29 *
30 * @ingroup Maintenance ExternalStorage
31 */
32 class OrphanStats extends Maintenance {
33 public function __construct() {
34 parent::__construct();
35 $this->mDescription =
36 "Show some statistics on the blob_orphans table, created with trackBlobs.php";
37 }
38
39 protected function &getDB( $cluster, $groups = array(), $wiki = false ) {
40 $lb = wfGetLBFactory()->getExternalLB( $cluster );
41 return $lb->getConnection( DB_SLAVE );
42 }
43
44 public function execute() {
45 $dbr = wfGetDB( DB_SLAVE );
46 if ( !$dbr->tableExists( 'blob_orphans' ) ) {
47 $this->error( "blob_orphans doesn't seem to exist, need to run trackBlobs.php first", true );
48 }
49 $res = $dbr->select( 'blob_orphans', '*', false, __METHOD__ );
50
51 $num = 0;
52 $totalSize = 0;
53 $hashes = array();
54 $maxSize = 0;
55
56 foreach ( $res as $boRow ) {
57 $extDB = $this->getDB( $boRow->bo_cluster );
58 $blobRow = $extDB->selectRow(
59 'blobs',
60 '*',
61 array( 'blob_id' => $boRow->bo_blob_id ),
62 __METHOD__
63 );
64
65 $num++;
66 $size = strlen( $blobRow->blob_text );
67 $totalSize += $size;
68 $hashes[ sha1( $blobRow->blob_text ) ] = true;
69 $maxSize = max( $size, $maxSize );
70 }
71 unset( $res );
72
73 $this->output( "Number of orphans: $num\n" );
74 if ( $num > 0 ) {
75 $this->output( "Average size: " . round( $totalSize / $num, 0 ) . " bytes\n" .
76 "Max size: $maxSize\n" .
77 "Number of unique texts: " . count( $hashes ) . "\n" );
78 }
79 }
80 }
81
82 $maintClass = "OrphanStats";
83 require_once RUN_MAINTENANCE_IF_MAIN;