3 * Accessors and mutators for the site-wide statistics.
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
24 * Static accessor class for site_stats and related things
27 static $row, $loaded = false;
29 static $pageCount = array();
30 static $groupMemberCounts = array();
32 static function recache() {
37 * @param $recache bool
39 static function load( $recache = false ) {
40 if ( self
::$loaded && !$recache ) {
44 self
::$row = self
::loadAndLazyInit();
46 # This code is somewhat schema-agnostic, because I'm changing it in a minor release -- TS
47 if ( !isset( self
::$row->ss_total_pages
) && self
::$row->ss_total_pages
== -1 ) {
49 $u = new SiteStatsUpdate( 0, 0, 0 );
51 self
::$row = self
::doLoad( wfGetDB( DB_SLAVE
) );
58 * @return Bool|ResultWrapper
60 static function loadAndLazyInit() {
61 wfDebug( __METHOD__
. ": reading site_stats from slave\n" );
62 $row = self
::doLoad( wfGetDB( DB_SLAVE
) );
64 if( !self
::isSane( $row ) ) {
65 // Might have just been initialized during this request? Underflow?
66 wfDebug( __METHOD__
. ": site_stats damaged or missing on slave\n" );
67 $row = self
::doLoad( wfGetDB( DB_MASTER
) );
70 if( !self
::isSane( $row ) ) {
71 // Normally the site_stats table is initialized at install time.
72 // Some manual construction scenarios may leave the table empty or
73 // broken, however, for instance when importing from a dump into a
74 // clean schema with mwdumper.
75 wfDebug( __METHOD__
. ": initializing damaged or missing site_stats\n" );
77 SiteStatsInit
::doAllAndCommit( wfGetDB( DB_SLAVE
) );
79 $row = self
::doLoad( wfGetDB( DB_MASTER
) );
82 if( !self
::isSane( $row ) ) {
83 wfDebug( __METHOD__
. ": site_stats persistently nonsensical o_O\n" );
89 * @param $db DatabaseBase
90 * @return Bool|ResultWrapper
92 static function doLoad( $db ) {
93 return $db->selectRow( 'site_stats', array(
102 ), false, __METHOD__
);
108 static function views() {
110 return self
::$row->ss_total_views
;
116 static function edits() {
118 return self
::$row->ss_total_edits
;
124 static function articles() {
126 return self
::$row->ss_good_articles
;
132 static function pages() {
134 return self
::$row->ss_total_pages
;
140 static function users() {
142 return self
::$row->ss_users
;
148 static function activeUsers() {
150 return self
::$row->ss_active_users
;
156 static function images() {
158 return self
::$row->ss_images
;
162 * Find the number of users in a given user group.
163 * @param string $group name of group
166 static function numberingroup( $group ) {
167 if ( !isset( self
::$groupMemberCounts[$group] ) ) {
169 $key = wfMemcKey( 'SiteStats', 'groupcounts', $group );
170 $hit = $wgMemc->get( $key );
172 $dbr = wfGetDB( DB_SLAVE
);
173 $hit = $dbr->selectField(
176 array( 'ug_group' => $group ),
179 $wgMemc->set( $key, $hit, 3600 );
181 self
::$groupMemberCounts[$group] = $hit;
183 return self
::$groupMemberCounts[$group];
189 static function jobs() {
190 if ( !isset( self
::$jobs ) ) {
191 $dbr = wfGetDB( DB_SLAVE
);
192 self
::$jobs = $dbr->estimateRowCount( 'job' );
193 /* Zero rows still do single row read for row that doesn't exist, but people are annoyed by that */
194 if ( self
::$jobs == 1 ) {
206 static function pagesInNs( $ns ) {
207 wfProfileIn( __METHOD__
);
208 if( !isset( self
::$pageCount[$ns] ) ) {
209 $dbr = wfGetDB( DB_SLAVE
);
210 self
::$pageCount[$ns] = (int)$dbr->selectField(
213 array( 'page_namespace' => $ns ),
217 wfProfileOut( __METHOD__
);
218 return self
::$pageCount[$ns];
222 * Is the provided row of site stats sane, or should it be regenerated?
228 private static function isSane( $row ) {
231 ||
$row->ss_total_pages
< $row->ss_good_articles
232 ||
$row->ss_total_edits
< $row->ss_total_pages
236 // Now check for underflow/overflow
237 foreach( array( 'total_views', 'total_edits', 'good_articles',
238 'total_pages', 'users', 'images' ) as $member ) {
240 $row->{"ss_$member"} > 2000000000
241 ||
$row->{"ss_$member"} < 0
251 * Class for handling updates to the site_stats table
253 class SiteStatsUpdate
implements DeferrableUpdate
{
254 protected $views = 0;
255 protected $edits = 0;
256 protected $pages = 0;
257 protected $articles = 0;
258 protected $users = 0;
259 protected $images = 0;
261 // @TODO: deprecate this constructor
262 function __construct( $views, $edits, $good, $pages = 0, $users = 0 ) {
263 $this->views
= $views;
264 $this->edits
= $edits;
265 $this->articles
= $good;
266 $this->pages
= $pages;
267 $this->users
= $users;
271 * @param $deltas Array
272 * @return SiteStatsUpdate
274 public static function factory( array $deltas ) {
275 $update = new self( 0, 0, 0 );
277 $fields = array( 'views', 'edits', 'pages', 'articles', 'users', 'images' );
278 foreach ( $fields as $field ) {
279 if ( isset( $deltas[$field] ) && $deltas[$field] ) {
280 $update->$field = $deltas[$field];
287 public function doUpdate() {
288 global $wgSiteStatsAsyncFactor;
290 $rate = $wgSiteStatsAsyncFactor; // convenience
291 // If set to do so, only do actual DB updates 1 every $rate times.
292 // The other times, just update "pending delta" values in memcached.
293 if ( $rate && ( $rate < 0 ||
mt_rand( 0, $rate - 1 ) != 0 ) ) {
294 $this->doUpdatePendingDeltas();
296 $dbw = wfGetDB( DB_MASTER
);
298 $lockKey = wfMemcKey( 'site_stats' ); // prepend wiki ID
300 // Lock the table so we don't have double DB/memcached updates
301 if ( !$dbw->lockIsFree( $lockKey, __METHOD__
)
302 ||
!$dbw->lock( $lockKey, __METHOD__
, 1 ) // 1 sec timeout
304 $this->doUpdatePendingDeltas();
307 $pd = $this->getPendingDeltas();
308 // Piggy-back the async deltas onto those of this stats update....
309 $this->views +
= ( $pd['ss_total_views']['+'] - $pd['ss_total_views']['-'] );
310 $this->edits +
= ( $pd['ss_total_edits']['+'] - $pd['ss_total_edits']['-'] );
311 $this->articles +
= ( $pd['ss_good_articles']['+'] - $pd['ss_good_articles']['-'] );
312 $this->pages +
= ( $pd['ss_total_pages']['+'] - $pd['ss_total_pages']['-'] );
313 $this->users +
= ( $pd['ss_users']['+'] - $pd['ss_users']['-'] );
314 $this->images +
= ( $pd['ss_images']['+'] - $pd['ss_images']['-'] );
317 // Need a separate transaction because this a global lock
318 $dbw->begin( __METHOD__
);
320 // Build up an SQL query of deltas and apply them...
322 $this->appendUpdate( $updates, 'ss_total_views', $this->views
);
323 $this->appendUpdate( $updates, 'ss_total_edits', $this->edits
);
324 $this->appendUpdate( $updates, 'ss_good_articles', $this->articles
);
325 $this->appendUpdate( $updates, 'ss_total_pages', $this->pages
);
326 $this->appendUpdate( $updates, 'ss_users', $this->users
);
327 $this->appendUpdate( $updates, 'ss_images', $this->images
);
328 if ( $updates != '' ) {
329 $dbw->update( 'site_stats', array( $updates ), array(), __METHOD__
);
333 // Decrement the async deltas now that we applied them
334 $this->removePendingDeltas( $pd );
335 // Commit the updates and unlock the table
336 $dbw->unlock( $lockKey, __METHOD__
);
339 $dbw->commit( __METHOD__
);
344 * @param $dbw DatabaseBase
347 public static function cacheUpdate( $dbw ) {
348 global $wgActiveUserDays;
349 $dbr = wfGetDB( DB_SLAVE
, array( 'SpecialStatistics', 'vslow' ) );
350 # Get non-bot users than did some recent action other than making accounts.
351 # If account creation is included, the number gets inflated ~20+ fold on enwiki.
352 $activeUsers = $dbr->selectField(
354 'COUNT( DISTINCT rc_user_text )',
358 'rc_log_type != ' . $dbr->addQuotes( 'newusers' ) . ' OR rc_log_type IS NULL',
359 'rc_timestamp >= ' . $dbr->addQuotes( $dbr->timestamp( wfTimestamp( TS_UNIX
) - $wgActiveUserDays * 24 * 3600 ) ),
365 array( 'ss_active_users' => intval( $activeUsers ) ),
366 array( 'ss_row_id' => 1 ),
372 protected function doUpdatePendingDeltas() {
373 $this->adjustPending( 'ss_total_views', $this->views
);
374 $this->adjustPending( 'ss_total_edits', $this->edits
);
375 $this->adjustPending( 'ss_good_articles', $this->articles
);
376 $this->adjustPending( 'ss_total_pages', $this->pages
);
377 $this->adjustPending( 'ss_users', $this->users
);
378 $this->adjustPending( 'ss_images', $this->images
);
383 * @param $field string
384 * @param $delta integer
386 protected function appendUpdate( &$sql, $field, $delta ) {
392 $sql .= "$field=$field-" . abs( $delta );
394 $sql .= "$field=$field+" . abs( $delta );
400 * @param $type string
401 * @param string $sign ('+' or '-')
404 private function getTypeCacheKey( $type, $sign ) {
405 return wfMemcKey( 'sitestatsupdate', 'pendingdelta', $type, $sign );
409 * Adjust the pending deltas for a stat type.
410 * Each stat type has two pending counters, one for increments and decrements
411 * @param $type string
412 * @param $delta integer Delta (positive or negative)
415 protected function adjustPending( $type, $delta ) {
418 if ( $delta < 0 ) { // decrement
419 $key = $this->getTypeCacheKey( $type, '-' );
420 } else { // increment
421 $key = $this->getTypeCacheKey( $type, '+' );
424 $magnitude = abs( $delta );
425 if ( !$wgMemc->incr( $key, $magnitude ) ) { // not there?
426 if ( !$wgMemc->add( $key, $magnitude ) ) { // race?
427 $wgMemc->incr( $key, $magnitude );
433 * Get pending delta counters for each stat type
434 * @return Array Positive and negative deltas for each type
437 protected function getPendingDeltas() {
441 foreach ( array( 'ss_total_views', 'ss_total_edits',
442 'ss_good_articles', 'ss_total_pages', 'ss_users', 'ss_images' ) as $type )
444 // Get pending increments and pending decrements
445 $pending[$type]['+'] = (int)$wgMemc->get( $this->getTypeCacheKey( $type, '+' ) );
446 $pending[$type]['-'] = (int)$wgMemc->get( $this->getTypeCacheKey( $type, '-' ) );
453 * Reduce pending delta counters after updates have been applied
454 * @param array $pd Result of getPendingDeltas(), used for DB update
457 protected function removePendingDeltas( array $pd ) {
460 foreach ( $pd as $type => $deltas ) {
461 foreach ( $deltas as $sign => $magnitude ) {
462 // Lower the pending counter now that we applied these changes
463 $wgMemc->decr( $this->getTypeCacheKey( $type, $sign ), $magnitude );
470 * Class designed for counting of stats.
472 class SiteStatsInit
{
474 // Database connection
478 private $mEdits, $mArticles, $mPages, $mUsers, $mViews, $mFiles = 0;
482 * @param $database Boolean or DatabaseBase:
483 * - Boolean: whether to use the master DB
484 * - DatabaseBase: database connection to use
486 public function __construct( $database = false ) {
487 if ( $database instanceof DatabaseBase
) {
488 $this->db
= $database;
490 $this->db
= wfGetDB( $database ? DB_MASTER
: DB_SLAVE
);
495 * Count the total number of edits
498 public function edits() {
499 $this->mEdits
= $this->db
->selectField( 'revision', 'COUNT(*)', '', __METHOD__
);
500 $this->mEdits +
= $this->db
->selectField( 'archive', 'COUNT(*)', '', __METHOD__
);
501 return $this->mEdits
;
505 * Count pages in article space(s)
508 public function articles() {
509 global $wgArticleCountMethod;
511 $tables = array( 'page' );
513 'page_namespace' => MWNamespace
::getContentNamespaces(),
514 'page_is_redirect' => 0,
517 if ( $wgArticleCountMethod == 'link' ) {
518 $tables[] = 'pagelinks';
519 $conds[] = 'pl_from=page_id';
520 } elseif ( $wgArticleCountMethod == 'comma' ) {
521 // To make a correct check for this, we would need, for each page,
522 // to load the text, maybe uncompress it, maybe decode it and then
523 // check if there's one comma.
524 // But one thing we are sure is that if the page is empty, it can't
525 // contain a comma :)
526 $conds[] = 'page_len > 0';
529 $this->mArticles
= $this->db
->selectField( $tables, 'COUNT(DISTINCT page_id)',
530 $conds, __METHOD__
);
531 return $this->mArticles
;
538 public function pages() {
539 $this->mPages
= $this->db
->selectField( 'page', 'COUNT(*)', '', __METHOD__
);
540 return $this->mPages
;
547 public function users() {
548 $this->mUsers
= $this->db
->selectField( 'user', 'COUNT(*)', '', __METHOD__
);
549 return $this->mUsers
;
556 public function views() {
557 $this->mViews
= $this->db
->selectField( 'page', 'SUM(page_counter)', '', __METHOD__
);
558 return $this->mViews
;
565 public function files() {
566 $this->mFiles
= $this->db
->selectField( 'image', 'COUNT(*)', '', __METHOD__
);
567 return $this->mFiles
;
571 * Do all updates and commit them. More or less a replacement
572 * for the original initStats, but without output.
574 * @param $database DatabaseBase|bool
575 * - Boolean: whether to use the master DB
576 * - DatabaseBase: database connection to use
577 * @param array $options of options, may contain the following values
578 * - update Boolean: whether to update the current stats (true) or write fresh (false) (default: false)
579 * - views Boolean: when true, do not update the number of page views (default: true)
580 * - activeUsers Boolean: whether to update the number of active users (default: false)
582 public static function doAllAndCommit( $database, array $options = array() ) {
583 $options +
= array( 'update' => false, 'views' => true, 'activeUsers' => false );
585 // Grab the object and count everything
586 $counter = new SiteStatsInit( $database );
589 $counter->articles();
594 // Only do views if we don't want to not count them
595 if( $options['views'] ) {
600 if( $options['update'] ) {
606 // Count active users if need be
607 if( $options['activeUsers'] ) {
608 SiteStatsUpdate
::cacheUpdate( wfGetDB( DB_MASTER
) );
613 * Update the current row with the selected values
615 public function update() {
616 list( $values, $conds ) = $this->getDbParams();
617 $dbw = wfGetDB( DB_MASTER
);
618 $dbw->update( 'site_stats', $values, $conds, __METHOD__
);
622 * Refresh site_stats. Erase the current record and save all
625 public function refresh() {
626 list( $values, $conds, $views ) = $this->getDbParams();
627 $dbw = wfGetDB( DB_MASTER
);
628 $dbw->delete( 'site_stats', $conds, __METHOD__
);
629 $dbw->insert( 'site_stats', array_merge( $values, $conds, $views ), __METHOD__
);
633 * Return three arrays of params for the db queries
636 private function getDbParams() {
638 'ss_total_edits' => $this->mEdits
,
639 'ss_good_articles' => $this->mArticles
,
640 'ss_total_pages' => $this->mPages
,
641 'ss_users' => $this->mUsers
,
642 'ss_images' => $this->mFiles
644 $conds = array( 'ss_row_id' => 1 );
645 $views = array( 'ss_total_views' => $this->mViews
);
646 return array( $values, $conds, $views );