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|ResultWrapper */
31 private static $loaded = false;
37 private static $pageCount = array();
40 private static $groupMemberCounts = array();
42 static function recache() {
47 * @param bool $recache
49 static function load( $recache = false ) {
50 if ( self
::$loaded && !$recache ) {
54 self
::$row = self
::loadAndLazyInit();
56 # This code is somewhat schema-agnostic, because I'm changing it in a minor release -- TS
57 if ( !isset( self
::$row->ss_total_pages
) && self
::$row->ss_total_pages
== -1 ) {
59 $u = new SiteStatsUpdate( 0, 0, 0 );
61 self
::$row = self
::doLoad( wfGetDB( DB_SLAVE
) );
68 * @return bool|ResultWrapper
70 static function loadAndLazyInit() {
71 wfDebug( __METHOD__
. ": reading site_stats from slave\n" );
72 $row = self
::doLoad( wfGetDB( DB_SLAVE
) );
74 if ( !self
::isSane( $row ) ) {
75 // Might have just been initialized during this request? Underflow?
76 wfDebug( __METHOD__
. ": site_stats damaged or missing on slave\n" );
77 $row = self
::doLoad( wfGetDB( DB_MASTER
) );
80 if ( !self
::isSane( $row ) ) {
81 // Normally the site_stats table is initialized at install time.
82 // Some manual construction scenarios may leave the table empty or
83 // broken, however, for instance when importing from a dump into a
84 // clean schema with mwdumper.
85 wfDebug( __METHOD__
. ": initializing damaged or missing site_stats\n" );
87 SiteStatsInit
::doAllAndCommit( wfGetDB( DB_SLAVE
) );
89 $row = self
::doLoad( wfGetDB( DB_MASTER
) );
92 if ( !self
::isSane( $row ) ) {
93 wfDebug( __METHOD__
. ": site_stats persistently nonsensical o_O\n" );
99 * @param DatabaseBase $db
100 * @return bool|ResultWrapper
102 static function doLoad( $db ) {
103 return $db->selectRow( 'site_stats', array(
111 ), false, __METHOD__
);
115 * Return the total number of page views. Except we don't track those anymore.
116 * Stop calling this function, it will be removed some time in the future. It's
117 * kept here simply to prevent fatal errors.
119 * @deprecated since 1.25
122 static function views() {
123 wfDeprecated( __METHOD__
, '1.25' );
130 static function edits() {
132 return self
::$row->ss_total_edits
;
138 static function articles() {
140 return self
::$row->ss_good_articles
;
146 static function pages() {
148 return self
::$row->ss_total_pages
;
154 static function users() {
156 return self
::$row->ss_users
;
162 static function activeUsers() {
164 return self
::$row->ss_active_users
;
170 static function images() {
172 return self
::$row->ss_images
;
176 * Find the number of users in a given user group.
177 * @param string $group Name of group
180 static function numberingroup( $group ) {
181 if ( !isset( self
::$groupMemberCounts[$group] ) ) {
183 $key = wfMemcKey( 'SiteStats', 'groupcounts', $group );
184 $hit = $wgMemc->get( $key );
186 $dbr = wfGetDB( DB_SLAVE
);
187 $hit = $dbr->selectField(
190 array( 'ug_group' => $group ),
193 $wgMemc->set( $key, $hit, 3600 );
195 self
::$groupMemberCounts[$group] = $hit;
197 return self
::$groupMemberCounts[$group];
203 static function jobs() {
204 if ( !isset( self
::$jobs ) ) {
205 $dbr = wfGetDB( DB_SLAVE
);
206 self
::$jobs = array_sum( JobQueueGroup
::singleton()->getQueueSizes() );
208 * Zero rows still do single row read for row that doesn't exist,
209 * but people are annoyed by that
211 if ( self
::$jobs == 1 ) {
223 static function pagesInNs( $ns ) {
224 wfProfileIn( __METHOD__
);
225 if ( !isset( self
::$pageCount[$ns] ) ) {
226 $dbr = wfGetDB( DB_SLAVE
);
227 self
::$pageCount[$ns] = (int)$dbr->selectField(
230 array( 'page_namespace' => $ns ),
234 wfProfileOut( __METHOD__
);
235 return self
::$pageCount[$ns];
239 * Is the provided row of site stats sane, or should it be regenerated?
241 * Checks only fields which are filled by SiteStatsInit::refresh.
243 * @param bool|object $row
247 private static function isSane( $row ) {
249 ||
$row->ss_total_pages
< $row->ss_good_articles
250 ||
$row->ss_total_edits
< $row->ss_total_pages
254 // Now check for underflow/overflow
262 if ( $row->$member > 2000000000 ||
$row->$member < 0 ) {
271 * Class designed for counting of stats.
273 class SiteStatsInit
{
275 // Database connection
279 private $mEdits = null, $mArticles = null, $mPages = null;
280 private $mUsers = null, $mFiles = null;
284 * @param bool|DatabaseBase $database
285 * - Boolean: whether to use the master DB
286 * - DatabaseBase: database connection to use
288 public function __construct( $database = false ) {
289 if ( $database instanceof DatabaseBase
) {
290 $this->db
= $database;
292 $this->db
= wfGetDB( $database ? DB_MASTER
: DB_SLAVE
);
297 * Count the total number of edits
300 public function edits() {
301 $this->mEdits
= $this->db
->selectField( 'revision', 'COUNT(*)', '', __METHOD__
);
302 $this->mEdits +
= $this->db
->selectField( 'archive', 'COUNT(*)', '', __METHOD__
);
303 return $this->mEdits
;
307 * Count pages in article space(s)
310 public function articles() {
311 global $wgArticleCountMethod;
313 $tables = array( 'page' );
315 'page_namespace' => MWNamespace
::getContentNamespaces(),
316 'page_is_redirect' => 0,
319 if ( $wgArticleCountMethod == 'link' ) {
320 $tables[] = 'pagelinks';
321 $conds[] = 'pl_from=page_id';
322 } elseif ( $wgArticleCountMethod == 'comma' ) {
323 // To make a correct check for this, we would need, for each page,
324 // to load the text, maybe uncompress it, maybe decode it and then
325 // check if there's one comma.
326 // But one thing we are sure is that if the page is empty, it can't
327 // contain a comma :)
328 $conds[] = 'page_len > 0';
331 $this->mArticles
= $this->db
->selectField( $tables, 'COUNT(DISTINCT page_id)',
332 $conds, __METHOD__
);
333 return $this->mArticles
;
340 public function pages() {
341 $this->mPages
= $this->db
->selectField( 'page', 'COUNT(*)', '', __METHOD__
);
342 return $this->mPages
;
349 public function users() {
350 $this->mUsers
= $this->db
->selectField( 'user', 'COUNT(*)', '', __METHOD__
);
351 return $this->mUsers
;
358 public function files() {
359 $this->mFiles
= $this->db
->selectField( 'image', 'COUNT(*)', '', __METHOD__
);
360 return $this->mFiles
;
364 * Do all updates and commit them. More or less a replacement
365 * for the original initStats, but without output.
367 * @param DatabaseBase|bool $database
368 * - Boolean: whether to use the master DB
369 * - DatabaseBase: database connection to use
370 * @param array $options Array of options, may contain the following values
371 * - activeUsers Boolean: whether to update the number of active users (default: false)
373 public static function doAllAndCommit( $database, array $options = array() ) {
374 $options +
= array( 'update' => false, 'activeUsers' => false );
376 // Grab the object and count everything
377 $counter = new SiteStatsInit( $database );
380 $counter->articles();
387 // Count active users if need be
388 if ( $options['activeUsers'] ) {
389 SiteStatsUpdate
::cacheUpdate( wfGetDB( DB_MASTER
) );
396 public function refresh() {
399 'ss_total_edits' => ( $this->mEdits
=== null ?
$this->edits() : $this->mEdits
),
400 'ss_good_articles' => ( $this->mArticles
=== null ?
$this->articles() : $this->mArticles
),
401 'ss_total_pages' => ( $this->mPages
=== null ?
$this->pages() : $this->mPages
),
402 'ss_users' => ( $this->mUsers
=== null ?
$this->users() : $this->mUsers
),
403 'ss_images' => ( $this->mFiles
=== null ?
$this->files() : $this->mFiles
),
406 $dbw = wfGetDB( DB_MASTER
);
407 $dbw->upsert( 'site_stats', $values, array( 'ss_row_id' ), $values, __METHOD__
);