rdbms: Avoid selectDB() call in LoadMonitor new connections
[mediawiki.git] / includes / user / UserArrayFromResult.php
blob527df7fa442fd43eac37c5fd67a077aa8de4a7f5
1 <?php
2 /**
3 * Class to walk into a list of User objects.
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
20 * @file
23 use Wikimedia\Rdbms\ResultWrapper;
25 class UserArrayFromResult extends UserArray implements Countable {
26 /** @var ResultWrapper */
27 public $res;
29 /** @var int */
30 public $key;
32 /** @var bool|User */
33 public $current;
35 /**
36 * @param ResultWrapper $res
38 function __construct( $res ) {
39 $this->res = $res;
40 $this->key = 0;
41 $this->setCurrent( $this->res->current() );
44 /**
45 * @param bool|stdClass $row
46 * @return void
48 protected function setCurrent( $row ) {
49 if ( $row === false ) {
50 $this->current = false;
51 } else {
52 $this->current = User::newFromRow( $row );
56 /**
57 * @return int
59 public function count() {
60 return $this->res->numRows();
63 /**
64 * @return User
66 function current() {
67 return $this->current;
70 function key() {
71 return $this->key;
74 function next() {
75 $row = $this->res->next();
76 $this->setCurrent( $row );
77 $this->key++;
80 function rewind() {
81 $this->res->rewind();
82 $this->key = 0;
83 $this->setCurrent( $this->res->current() );
86 /**
87 * @return bool
89 function valid() {
90 return $this->current !== false;