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 /** @var bool|stdClass */
31 private static $loaded = false;
37 private static $pageCount = [];
39 static function unload() {
40 self
::$loaded = false;
43 static function recache() {
48 * @param bool $recache
50 static function load( $recache = false ) {
51 if ( self
::$loaded && !$recache ) {
55 self
::$row = self
::loadAndLazyInit();
57 # This code is somewhat schema-agnostic, because I'm changing it in a minor release -- TS
58 if ( !isset( self
::$row->ss_total_pages
) && self
::$row->ss_total_pages
== -1 ) {
60 $u = new SiteStatsUpdate( 0, 0, 0 );
62 self
::$row = self
::doLoad( wfGetDB( DB_REPLICA
) );
69 * @return bool|stdClass
71 static function loadAndLazyInit() {
74 wfDebug( __METHOD__
. ": reading site_stats from replica DB\n" );
75 $row = self
::doLoad( wfGetDB( DB_REPLICA
) );
77 if ( !self
::isSane( $row ) ) {
78 // Might have just been initialized during this request? Underflow?
79 wfDebug( __METHOD__
. ": site_stats damaged or missing on replica DB\n" );
80 $row = self
::doLoad( wfGetDB( DB_MASTER
) );
83 if ( !$wgMiserMode && !self
::isSane( $row ) ) {
84 // Normally the site_stats table is initialized at install time.
85 // Some manual construction scenarios may leave the table empty or
86 // broken, however, for instance when importing from a dump into a
87 // clean schema with mwdumper.
88 wfDebug( __METHOD__
. ": initializing damaged or missing site_stats\n" );
90 SiteStatsInit
::doAllAndCommit( wfGetDB( DB_REPLICA
) );
92 $row = self
::doLoad( wfGetDB( DB_MASTER
) );
95 if ( !self
::isSane( $row ) ) {
96 wfDebug( __METHOD__
. ": site_stats persistently nonsensical o_O\n" );
102 * @param IDatabase $db
103 * @return bool|stdClass
105 static function doLoad( $db ) {
106 return $db->selectRow( 'site_stats', [
118 * Return the total number of page views. Except we don't track those anymore.
119 * Stop calling this function, it will be removed some time in the future. It's
120 * kept here simply to prevent fatal errors.
122 * @deprecated since 1.25
125 static function views() {
126 wfDeprecated( __METHOD__
, '1.25' );
133 static function edits() {
135 return self
::$row->ss_total_edits
;
141 static function articles() {
143 return self
::$row->ss_good_articles
;
149 static function pages() {
151 return self
::$row->ss_total_pages
;
157 static function users() {
159 return self
::$row->ss_users
;
165 static function activeUsers() {
167 return self
::$row->ss_active_users
;
173 static function images() {
175 return self
::$row->ss_images
;
179 * Find the number of users in a given user group.
180 * @param string $group Name of group
183 static function numberingroup( $group ) {
184 $cache = ObjectCache
::getMainWANInstance();
185 return $cache->getWithSetCallback(
186 wfMemcKey( 'SiteStats', 'groupcounts', $group ),
188 function ( $oldValue, &$ttl, array &$setOpts ) use ( $group ) {
189 global $wgDisableUserGroupExpiry;
190 $dbr = wfGetDB( DB_REPLICA
);
192 $setOpts +
= Database
::getCacheSetOptions( $dbr );
194 return $dbr->selectField(
198 'ug_group' => $group,
199 $wgDisableUserGroupExpiry ?
201 'ug_expiry IS NULL OR ug_expiry >= ' . $dbr->addQuotes( $dbr->timestamp() )
206 [ 'pcTTL' => $cache::TTL_PROC_LONG
]
213 static function jobs() {
214 if ( !isset( self
::$jobs ) ) {
216 self
::$jobs = array_sum( JobQueueGroup
::singleton()->getQueueSizes() );
217 } catch ( JobQueueError
$e ) {
221 * Zero rows still do single row read for row that doesn't exist,
222 * but people are annoyed by that
224 if ( self
::$jobs == 1 ) {
236 static function pagesInNs( $ns ) {
237 if ( !isset( self
::$pageCount[$ns] ) ) {
238 $dbr = wfGetDB( DB_REPLICA
);
239 self
::$pageCount[$ns] = (int)$dbr->selectField(
242 [ 'page_namespace' => $ns ],
246 return self
::$pageCount[$ns];
250 * Is the provided row of site stats sane, or should it be regenerated?
252 * Checks only fields which are filled by SiteStatsInit::refresh.
254 * @param bool|object $row
258 private static function isSane( $row ) {
260 ||
$row->ss_total_pages
< $row->ss_good_articles
261 ||
$row->ss_total_edits
< $row->ss_total_pages
265 // Now check for underflow/overflow
273 if ( $row->$member > 2000000000 ||
$row->$member < 0 ) {
282 * Class designed for counting of stats.
284 class SiteStatsInit
{
286 // Database connection
290 private $mEdits = null, $mArticles = null, $mPages = null;
291 private $mUsers = null, $mFiles = null;
295 * @param bool|IDatabase $database
296 * - boolean: Whether to use the master DB
297 * - IDatabase: Database connection to use
299 public function __construct( $database = false ) {
300 if ( $database instanceof IDatabase
) {
301 $this->db
= $database;
302 } elseif ( $database ) {
303 $this->db
= wfGetDB( DB_MASTER
);
305 $this->db
= wfGetDB( DB_REPLICA
, 'vslow' );
310 * Count the total number of edits
313 public function edits() {
314 $this->mEdits
= $this->db
->selectField( 'revision', 'COUNT(*)', '', __METHOD__
);
315 $this->mEdits +
= $this->db
->selectField( 'archive', 'COUNT(*)', '', __METHOD__
);
316 return $this->mEdits
;
320 * Count pages in article space(s)
323 public function articles() {
324 global $wgArticleCountMethod;
326 $tables = [ 'page' ];
328 'page_namespace' => MWNamespace
::getContentNamespaces(),
329 'page_is_redirect' => 0,
332 if ( $wgArticleCountMethod == 'link' ) {
333 $tables[] = 'pagelinks';
334 $conds[] = 'pl_from=page_id';
335 } elseif ( $wgArticleCountMethod == 'comma' ) {
336 // To make a correct check for this, we would need, for each page,
337 // to load the text, maybe uncompress it, maybe decode it and then
338 // check if there's one comma.
339 // But one thing we are sure is that if the page is empty, it can't
340 // contain a comma :)
341 $conds[] = 'page_len > 0';
344 $this->mArticles
= $this->db
->selectField( $tables, 'COUNT(DISTINCT page_id)',
345 $conds, __METHOD__
);
346 return $this->mArticles
;
353 public function pages() {
354 $this->mPages
= $this->db
->selectField( 'page', 'COUNT(*)', '', __METHOD__
);
355 return $this->mPages
;
362 public function users() {
363 $this->mUsers
= $this->db
->selectField( 'user', 'COUNT(*)', '', __METHOD__
);
364 return $this->mUsers
;
371 public function files() {
372 $this->mFiles
= $this->db
->selectField( 'image', 'COUNT(*)', '', __METHOD__
);
373 return $this->mFiles
;
377 * Do all updates and commit them. More or less a replacement
378 * for the original initStats, but without output.
380 * @param IDatabase|bool $database
381 * - boolean: Whether to use the master DB
382 * - IDatabase: Database connection to use
383 * @param array $options Array of options, may contain the following values
384 * - activeUsers boolean: Whether to update the number of active users (default: false)
386 public static function doAllAndCommit( $database, array $options = [] ) {
387 $options +
= [ 'update' => false, 'activeUsers' => false ];
389 // Grab the object and count everything
390 $counter = new SiteStatsInit( $database );
393 $counter->articles();
400 // Count active users if need be
401 if ( $options['activeUsers'] ) {
402 SiteStatsUpdate
::cacheUpdate( wfGetDB( DB_MASTER
) );
409 public function refresh() {
412 'ss_total_edits' => ( $this->mEdits
=== null ?
$this->edits() : $this->mEdits
),
413 'ss_good_articles' => ( $this->mArticles
=== null ?
$this->articles() : $this->mArticles
),
414 'ss_total_pages' => ( $this->mPages
=== null ?
$this->pages() : $this->mPages
),
415 'ss_users' => ( $this->mUsers
=== null ?
$this->users() : $this->mUsers
),
416 'ss_images' => ( $this->mFiles
=== null ?
$this->files() : $this->mFiles
),
419 $dbw = wfGetDB( DB_MASTER
);
420 $dbw->upsert( 'site_stats', $values, [ 'ss_row_id' ], $values, __METHOD__
);