* (bug 24155) Import no longer produces errors with php 5.2 and before
[mediawiki.git] / includes / SiteStats.php
blobb07bdbbe07136702a3a790ababd105ed53ba39c2
1 <?php
3 /**
4 * Static accessor class for site_stats and related things
5 */
6 class SiteStats {
7 static $row, $loaded = false;
8 static $admins, $jobs;
9 static $pageCount = array();
10 static $groupMemberCounts = array();
12 static function recache() {
13 self::load( true );
16 static function load( $recache = false ) {
17 if ( self::$loaded && !$recache ) {
18 return;
21 self::$row = self::loadAndLazyInit();
23 # This code is somewhat schema-agnostic, because I'm changing it in a minor release -- TS
24 if ( !isset( self::$row->ss_total_pages ) && self::$row->ss_total_pages == -1 ) {
25 # Update schema
26 $u = new SiteStatsUpdate( 0, 0, 0 );
27 $u->doUpdate();
28 $dbr = wfGetDB( DB_SLAVE );
29 self::$row = $dbr->selectRow( 'site_stats', '*', false, __METHOD__ );
32 self::$loaded = true;
35 static function loadAndLazyInit() {
36 wfDebug( __METHOD__ . ": reading site_stats from slave\n" );
37 $row = self::doLoad( wfGetDB( DB_SLAVE ) );
39 if( !self::isSane( $row ) ) {
40 // Might have just been initialized during this request? Underflow?
41 wfDebug( __METHOD__ . ": site_stats damaged or missing on slave\n" );
42 $row = self::doLoad( wfGetDB( DB_MASTER ) );
45 if( !self::isSane( $row ) ) {
46 // Normally the site_stats table is initialized at install time.
47 // Some manual construction scenarios may leave the table empty or
48 // broken, however, for instance when importing from a dump into a
49 // clean schema with mwdumper.
50 wfDebug( __METHOD__ . ": initializing damaged or missing site_stats\n" );
52 SiteStatsInit::doAllAndCommit( false );
54 $row = self::doLoad( wfGetDB( DB_MASTER ) );
57 if( !self::isSane( $row ) ) {
58 wfDebug( __METHOD__ . ": site_stats persistently nonsensical o_O\n" );
60 return $row;
63 static function doLoad( $db ) {
64 return $db->selectRow( 'site_stats', '*', false, __METHOD__ );
67 static function views() {
68 self::load();
69 return self::$row->ss_total_views;
72 static function edits() {
73 self::load();
74 return self::$row->ss_total_edits;
77 static function articles() {
78 self::load();
79 return self::$row->ss_good_articles;
82 static function pages() {
83 self::load();
84 return self::$row->ss_total_pages;
87 static function users() {
88 self::load();
89 return self::$row->ss_users;
92 static function activeUsers() {
93 self::load();
94 return self::$row->ss_active_users;
97 static function images() {
98 self::load();
99 return self::$row->ss_images;
103 * @deprecated Use self::numberingroup('sysop') instead
105 static function admins() {
106 wfDeprecated(__METHOD__);
107 return self::numberingroup( 'sysop' );
111 * Find the number of users in a given user group.
112 * @param $group String: name of group
113 * @return Integer
115 static function numberingroup( $group ) {
116 if ( !isset( self::$groupMemberCounts[$group] ) ) {
117 global $wgMemc;
118 $key = wfMemcKey( 'SiteStats', 'groupcounts', $group );
119 $hit = $wgMemc->get( $key );
120 if ( !$hit ) {
121 $dbr = wfGetDB( DB_SLAVE );
122 $hit = $dbr->selectField(
123 'user_groups',
124 'COUNT(*)',
125 array( 'ug_group' => $group ),
126 __METHOD__
128 $wgMemc->set( $key, $hit, 3600 );
130 self::$groupMemberCounts[$group] = $hit;
132 return self::$groupMemberCounts[$group];
135 static function jobs() {
136 if ( !isset( self::$jobs ) ) {
137 $dbr = wfGetDB( DB_SLAVE );
138 self::$jobs = $dbr->estimateRowCount( 'job' );
139 /* Zero rows still do single row read for row that doesn't exist, but people are annoyed by that */
140 if ( self::$jobs == 1 ) {
141 self::$jobs = 0;
144 return self::$jobs;
147 static function pagesInNs( $ns ) {
148 wfProfileIn( __METHOD__ );
149 if( !isset( self::$pageCount[$ns] ) ) {
150 $dbr = wfGetDB( DB_SLAVE );
151 $pageCount[$ns] = (int)$dbr->selectField(
152 'page',
153 'COUNT(*)',
154 array( 'page_namespace' => $ns ),
155 __METHOD__
158 wfProfileOut( __METHOD__ );
159 return $pageCount[$ns];
162 /** Is the provided row of site stats sane, or should it be regenerated? */
163 private static function isSane( $row ) {
165 $row === false
166 or $row->ss_total_pages < $row->ss_good_articles
167 or $row->ss_total_edits < $row->ss_total_pages
169 return false;
171 // Now check for underflow/overflow
172 foreach( array( 'total_views', 'total_edits', 'good_articles',
173 'total_pages', 'users', 'admins', 'images' ) as $member ) {
175 $row->{"ss_$member"} > 2000000000
176 or $row->{"ss_$member"} < 0
178 return false;
181 return true;
189 class SiteStatsUpdate {
191 var $mViews, $mEdits, $mGood, $mPages, $mUsers;
193 function __construct( $views, $edits, $good, $pages = 0, $users = 0 ) {
194 $this->mViews = $views;
195 $this->mEdits = $edits;
196 $this->mGood = $good;
197 $this->mPages = $pages;
198 $this->mUsers = $users;
201 function appendUpdate( &$sql, $field, $delta ) {
202 if ( $delta ) {
203 if ( $sql ) {
204 $sql .= ',';
206 if ( $delta < 0 ) {
207 $sql .= "$field=$field-1";
208 } else {
209 $sql .= "$field=$field+1";
214 function doUpdate() {
215 $dbw = wfGetDB( DB_MASTER );
217 $updates = '';
219 $this->appendUpdate( $updates, 'ss_total_views', $this->mViews );
220 $this->appendUpdate( $updates, 'ss_total_edits', $this->mEdits );
221 $this->appendUpdate( $updates, 'ss_good_articles', $this->mGood );
222 $this->appendUpdate( $updates, 'ss_total_pages', $this->mPages );
223 $this->appendUpdate( $updates, 'ss_users', $this->mUsers );
225 if ( $updates ) {
226 $site_stats = $dbw->tableName( 'site_stats' );
227 $sql = "UPDATE $site_stats SET $updates";
229 # Need a separate transaction because this a global lock
230 $dbw->begin();
231 $dbw->query( $sql, __METHOD__ );
232 $dbw->commit();
236 public static function cacheUpdate( $dbw ) {
237 $dbr = wfGetDB( DB_SLAVE, array( 'SpecialStatistics', 'vslow' ) );
238 # Get non-bot users than did some recent action other than making accounts.
239 # If account creation is included, the number gets inflated ~20+ fold on enwiki.
240 $activeUsers = $dbr->selectField(
241 'recentchanges',
242 'COUNT( DISTINCT rc_user_text )',
243 array(
244 'rc_user != 0',
245 'rc_bot' => 0,
246 "rc_log_type != 'newusers' OR rc_log_type IS NULL"
248 __METHOD__
250 $dbw->update(
251 'site_stats',
252 array( 'ss_active_users' => intval( $activeUsers ) ),
253 array( 'ss_row_id' => 1 ),
254 __METHOD__
256 return $activeUsers;
261 * Class designed for counting of stats.
263 class SiteStatsInit {
265 // Database connection
266 private $db;
268 // Various stats
269 private $mEdits, $mArticles, $mPages, $mUsers, $mViews, $mFiles = 0;
272 * Constructor
273 * @param $useMaster Boolean: whether to use the master DB
275 public function __construct( $useMaster = false ) {
276 $this->db = wfGetDB( $useMaster ? DB_MASTER : DB_SLAVE );
280 * Count the total number of edits
281 * @return Integer
283 public function edits() {
284 $this->mEdits = $this->db->selectField( 'revision', 'COUNT(*)', '', __METHOD__ );
285 $this->mEdits += $this->db->selectField( 'archive', 'COUNT(*)', '', __METHOD__ );
286 return $this->mEdits;
290 * Count pages in article space(s)
291 * @return Integer
293 public function articles() {
294 global $wgContentNamespaces;
295 $this->mArticles = $this->db->selectField(
296 'page',
297 'COUNT(*)',
298 array(
299 'page_namespace' => $wgContentNamespaces,
300 'page_is_redirect' => 0,
301 'page_len > 0'
303 __METHOD__
305 return $this->mArticles;
309 * Count total pages
310 * @return Integer
312 public function pages() {
313 $this->mPages = $this->db->selectField( 'page', 'COUNT(*)', '', __METHOD__ );
314 return $this->mPages;
318 * Count total users
319 * @return Integer
321 public function users() {
322 $this->mUsers = $this->db->selectField( 'user', 'COUNT(*)', '', __METHOD__ );
323 return $this->mUsers;
327 * Count views
328 * @return Integer
330 public function views() {
331 $this->mViews = $this->db->selectField( 'page', 'SUM(page_counter)', '', __METHOD__ );
332 return $this->mViews;
336 * Count total files
337 * @return Integer
339 public function files() {
340 $this->mFiles = $this->db->selectField( 'image', 'COUNT(*)', '', __METHOD__ );
341 return $this->mFiles;
345 * Do all updates and commit them. More or less a replacement
346 * for the original initStats, but without the calls to wfOut()
347 * @param $update Boolean: whether to update the current stats or write fresh
348 * @param $noViews Boolean: when true, do not update the number of page views
349 * @param $activeUsers Boolean: whether to update the number of active users
351 public static function doAllAndCommit( $update, $noViews = false, $activeUsers = false ) {
352 // Grab the object and count everything
353 $counter = new SiteStatsInit( false );
354 $counter->edits();
355 $counter->articles();
356 $counter->pages();
357 $counter->users();
358 $counter->files();
360 // Only do views if we don't want to not count them
361 if( !$noViews ) {
362 $counter->views();
365 // Update/refresh
366 if( $update ) {
367 $counter->update();
368 } else {
369 $counter->refresh();
372 // Count active users if need be
373 if( $activeUsers ) {
374 SiteStatsUpdate::cacheUpdate( wfGetDB( DB_MASTER ) );
379 * Update the current row with the selected values
381 public function update() {
382 list( $values, $conds ) = $this->getDbParams();
383 $dbw = wfGetDB( DB_MASTER );
384 $dbw->update( 'site_stats', $values, $conds, __METHOD__ );
388 * Refresh site_stats. Erase the current record and save all
389 * the new values.
391 public function refresh() {
392 list( $values, $conds, $views ) = $this->getDbParams();
393 $dbw = wfGetDB( DB_MASTER );
394 $dbw->delete( 'site_stats', $conds, __METHOD__ );
395 $dbw->insert( 'site_stats', array_merge( $values, $conds, $views ), __METHOD__ );
399 * Return three arrays of params for the db queries
400 * @return Array
402 private function getDbParams() {
403 $values = array(
404 'ss_total_edits' => $this->mEdits,
405 'ss_good_articles' => $this->mArticles,
406 'ss_total_pages' => $this->mPages,
407 'ss_users' => $this->mUsers,
408 'ss_images' => $this->mFiles
410 $conds = array( 'ss_row_id' => 1 );
411 $views = array( 'ss_total_views' => $this->mViews );
412 return array( $values, $conds, $views );