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
23 use Wikimedia\Rdbms\Database
;
24 use Wikimedia\Rdbms\IDatabase
;
27 * Static accessor class for site_stats and related things
30 /** @var bool|stdClass */
34 private static $loaded = false;
40 private static $pageCount = [];
42 static function unload() {
43 self
::$loaded = false;
46 static function recache() {
51 * @param bool $recache
53 static function load( $recache = false ) {
54 if ( self
::$loaded && !$recache ) {
58 self
::$row = self
::loadAndLazyInit();
60 # This code is somewhat schema-agnostic, because I'm changing it in a minor release -- TS
61 if ( !isset( self
::$row->ss_total_pages
) && self
::$row->ss_total_pages
== -1 ) {
63 $u = new SiteStatsUpdate( 0, 0, 0 );
65 self
::$row = self
::doLoad( wfGetDB( DB_REPLICA
) );
72 * @return bool|stdClass
74 static function loadAndLazyInit() {
77 wfDebug( __METHOD__
. ": reading site_stats from replica DB\n" );
78 $row = self
::doLoad( wfGetDB( DB_REPLICA
) );
80 if ( !self
::isSane( $row ) ) {
81 // Might have just been initialized during this request? Underflow?
82 wfDebug( __METHOD__
. ": site_stats damaged or missing on replica DB\n" );
83 $row = self
::doLoad( wfGetDB( DB_MASTER
) );
86 if ( !$wgMiserMode && !self
::isSane( $row ) ) {
87 // Normally the site_stats table is initialized at install time.
88 // Some manual construction scenarios may leave the table empty or
89 // broken, however, for instance when importing from a dump into a
90 // clean schema with mwdumper.
91 wfDebug( __METHOD__
. ": initializing damaged or missing site_stats\n" );
93 SiteStatsInit
::doAllAndCommit( wfGetDB( DB_REPLICA
) );
95 $row = self
::doLoad( wfGetDB( DB_MASTER
) );
98 if ( !self
::isSane( $row ) ) {
99 wfDebug( __METHOD__
. ": site_stats persistently nonsensical o_O\n" );
105 * @param IDatabase $db
106 * @return bool|stdClass
108 static function doLoad( $db ) {
109 return $db->selectRow( 'site_stats', [
121 * Return the total number of page views. Except we don't track those anymore.
122 * Stop calling this function, it will be removed some time in the future. It's
123 * kept here simply to prevent fatal errors.
125 * @deprecated since 1.25
128 static function views() {
129 wfDeprecated( __METHOD__
, '1.25' );
136 static function edits() {
138 return self
::$row->ss_total_edits
;
144 static function articles() {
146 return self
::$row->ss_good_articles
;
152 static function pages() {
154 return self
::$row->ss_total_pages
;
160 static function users() {
162 return self
::$row->ss_users
;
168 static function activeUsers() {
170 return self
::$row->ss_active_users
;
176 static function images() {
178 return self
::$row->ss_images
;
182 * Find the number of users in a given user group.
183 * @param string $group Name of group
186 static function numberingroup( $group ) {
187 $cache = ObjectCache
::getMainWANInstance();
188 return $cache->getWithSetCallback(
189 wfMemcKey( 'SiteStats', 'groupcounts', $group ),
191 function ( $oldValue, &$ttl, array &$setOpts ) use ( $group ) {
192 global $wgDisableUserGroupExpiry;
193 $dbr = wfGetDB( DB_REPLICA
);
195 $setOpts +
= Database
::getCacheSetOptions( $dbr );
197 return $dbr->selectField(
201 'ug_group' => $group,
202 $wgDisableUserGroupExpiry ?
204 'ug_expiry IS NULL OR ug_expiry >= ' . $dbr->addQuotes( $dbr->timestamp() )
209 [ 'pcTTL' => $cache::TTL_PROC_LONG
]
216 static function jobs() {
217 if ( !isset( self
::$jobs ) ) {
219 self
::$jobs = array_sum( JobQueueGroup
::singleton()->getQueueSizes() );
220 } catch ( JobQueueError
$e ) {
224 * Zero rows still do single row read for row that doesn't exist,
225 * but people are annoyed by that
227 if ( self
::$jobs == 1 ) {
239 static function pagesInNs( $ns ) {
240 if ( !isset( self
::$pageCount[$ns] ) ) {
241 $dbr = wfGetDB( DB_REPLICA
);
242 self
::$pageCount[$ns] = (int)$dbr->selectField(
245 [ 'page_namespace' => $ns ],
249 return self
::$pageCount[$ns];
253 * Is the provided row of site stats sane, or should it be regenerated?
255 * Checks only fields which are filled by SiteStatsInit::refresh.
257 * @param bool|object $row
261 private static function isSane( $row ) {
263 ||
$row->ss_total_pages
< $row->ss_good_articles
264 ||
$row->ss_total_edits
< $row->ss_total_pages
268 // Now check for underflow/overflow
276 if ( $row->$member > 2000000000 ||
$row->$member < 0 ) {
285 * Class designed for counting of stats.
287 class SiteStatsInit
{
289 // Database connection
293 private $mEdits = null, $mArticles = null, $mPages = null;
294 private $mUsers = null, $mFiles = null;
298 * @param bool|IDatabase $database
299 * - boolean: Whether to use the master DB
300 * - IDatabase: Database connection to use
302 public function __construct( $database = false ) {
303 if ( $database instanceof IDatabase
) {
304 $this->db
= $database;
305 } elseif ( $database ) {
306 $this->db
= wfGetDB( DB_MASTER
);
308 $this->db
= wfGetDB( DB_REPLICA
, 'vslow' );
313 * Count the total number of edits
316 public function edits() {
317 $this->mEdits
= $this->db
->selectField( 'revision', 'COUNT(*)', '', __METHOD__
);
318 $this->mEdits +
= $this->db
->selectField( 'archive', 'COUNT(*)', '', __METHOD__
);
319 return $this->mEdits
;
323 * Count pages in article space(s)
326 public function articles() {
327 global $wgArticleCountMethod;
329 $tables = [ 'page' ];
331 'page_namespace' => MWNamespace
::getContentNamespaces(),
332 'page_is_redirect' => 0,
335 if ( $wgArticleCountMethod == 'link' ) {
336 $tables[] = 'pagelinks';
337 $conds[] = 'pl_from=page_id';
338 } elseif ( $wgArticleCountMethod == 'comma' ) {
339 // To make a correct check for this, we would need, for each page,
340 // to load the text, maybe uncompress it, maybe decode it and then
341 // check if there's one comma.
342 // But one thing we are sure is that if the page is empty, it can't
343 // contain a comma :)
344 $conds[] = 'page_len > 0';
347 $this->mArticles
= $this->db
->selectField( $tables, 'COUNT(DISTINCT page_id)',
348 $conds, __METHOD__
);
349 return $this->mArticles
;
356 public function pages() {
357 $this->mPages
= $this->db
->selectField( 'page', 'COUNT(*)', '', __METHOD__
);
358 return $this->mPages
;
365 public function users() {
366 $this->mUsers
= $this->db
->selectField( 'user', 'COUNT(*)', '', __METHOD__
);
367 return $this->mUsers
;
374 public function files() {
375 $this->mFiles
= $this->db
->selectField( 'image', 'COUNT(*)', '', __METHOD__
);
376 return $this->mFiles
;
380 * Do all updates and commit them. More or less a replacement
381 * for the original initStats, but without output.
383 * @param IDatabase|bool $database
384 * - boolean: Whether to use the master DB
385 * - IDatabase: Database connection to use
386 * @param array $options Array of options, may contain the following values
387 * - activeUsers boolean: Whether to update the number of active users (default: false)
389 public static function doAllAndCommit( $database, array $options = [] ) {
390 $options +
= [ 'update' => false, 'activeUsers' => false ];
392 // Grab the object and count everything
393 $counter = new SiteStatsInit( $database );
396 $counter->articles();
403 // Count active users if need be
404 if ( $options['activeUsers'] ) {
405 SiteStatsUpdate
::cacheUpdate( wfGetDB( DB_MASTER
) );
412 public function refresh() {
415 'ss_total_edits' => ( $this->mEdits
=== null ?
$this->edits() : $this->mEdits
),
416 'ss_good_articles' => ( $this->mArticles
=== null ?
$this->articles() : $this->mArticles
),
417 'ss_total_pages' => ( $this->mPages
=== null ?
$this->pages() : $this->mPages
),
418 'ss_users' => ( $this->mUsers
=== null ?
$this->users() : $this->mUsers
),
419 'ss_images' => ( $this->mFiles
=== null ?
$this->files() : $this->mFiles
),
422 $dbw = wfGetDB( DB_MASTER
);
423 $dbw->upsert( 'site_stats', $values, [ 'ss_row_id' ], $values, __METHOD__
);