Go to the documentation of this file.
97 throw new InvalidArgumentException(
'Batch size must be at least 1 row.' );
103 $this->orderBy = implode(
' ASC,', $this->primaryKey ) .
' ASC';
128 $this->joinConditions = array_merge( $this->joinConditions,
$conditions );
137 if (
count( $columns ) === 1 && reset( $columns ) ===
'*' ) {
138 $this->fetchColumns = $columns;
140 $this->fetchColumns = array_unique( array_merge(
155 foreach ( $this->primaryKey
as $alias => $column ) {
156 $name = is_numeric( $alias ) ? $column : $alias;
166 return $this->current;
189 return (
bool)$this->current;
196 return $this->current &&
count( $this->current );
210 $res = $this->db->select(
213 $this->buildConditions(),
216 'LIMIT' => $this->batchSize,
217 'ORDER BY' => $this->orderBy,
219 $this->joinConditions
225 $this->current = iterator_to_array(
$res );
242 if ( !$this->current ) {
243 return $this->conditions;
246 $maxRow = end( $this->current );
248 foreach ( $this->primaryKey
as $alias => $column ) {
249 $name = is_numeric( $alias ) ? $column : $alias;
250 $maximumValues[$column] = $this->db->addQuotes( $maxRow->{
$name} );
261 while ( $maximumValues ) {
262 $pkConditions[] = $this->buildGreaterThanCondition( $maximumValues );
263 array_pop( $maximumValues );
266 $conditions = $this->conditions;
267 $conditions[] = sprintf(
'( %s )', implode(
' ) OR ( ', $pkConditions ) );
285 $keys = array_keys( $quotedMaximumValues );
286 $lastColumn = end(
$keys );
287 $lastValue = array_pop( $quotedMaximumValues );
289 foreach ( $quotedMaximumValues
as $column =>
$value ) {
290 $conditions[] =
"$column = $value";
292 $conditions[] =
"$lastColumn > $lastValue";
294 return implode(
' AND ', $conditions );
and give any other recipients of the Program a copy of this License along with the Program You may charge a fee for the physical act of transferring a and you may at your option offer warranty protection in exchange for a fee You may modify your copy or copies of the Program or any portion of thus forming a work based on the and copy and distribute such modifications or work under the terms of Section provided that you also meet all of these conditions
setFetchColumns(array $columns)
rewind()
Reset the iterator to the begining of the table.
addConditions(array $conditions)
buildGreaterThanCondition(array $quotedMaximumValues)
Given an array of column names and their maximum value generate an SQL condition where all keys excep...
extractPrimaryKeys( $row)
Extracts the primary key(s) from a database row.
injection txt This is an overview of how MediaWiki makes use of dependency injection The design described here grew from the discussion of RFC T384 The term dependency this means that anything an object needs to operate should be injected from the the object itself should only know narrow no concrete implementation of the logic it relies on The requirement to inject everything typically results in an architecture that based on two main types of and essentially stateless service objects that use other service objects to operate on the value objects As of the beginning MediaWiki is only starting to use the DI approach Much of the code still relies on global state or direct resulting in a highly cyclical dependency which acts as the top level factory for services in MediaWiki which can be used to gain access to default instances of various services MediaWikiServices however also allows new services to be defined and default services to be redefined Services are defined or redefined by providing a callback the instantiator that will return a new instance of the service When it will create an instance of MediaWikiServices and populate it with the services defined in the files listed by thereby bootstrapping the DI framework Per $wgServiceWiringFiles lists includes ServiceWiring php
next()
Fetch the next set of rows from the database.
deferred txt A few of the database updates required by various functions here can be deferred until after the result page is displayed to the user For updating the view updating the linked to tables after a etc PHP does not yet have any way to tell the server to actually return and disconnect while still running these but it might have such a feature in the future We handle these by creating a deferred update object and putting those objects on a global then executing the whole list after the page is displayed We don t do anything smart like collating updates to the same table or such because the list is almost always going to have just one item on if so it s not worth the trouble Since there is a job queue in the jobs table
buildConditions()
Uses the primary key list and the maximal result row from the previous iteration to build an SQL cond...
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
addOptions(array $options)
The wiki should then use memcached to cache various data To use multiple just add more items to the array To increase the weight of a make its entry a array("192.168.0.1:11211", 2))
__construct(IDatabase $db, $table, $primaryKey, $batchSize)
Allows to change the fields on the form that will be generated $name
either a unescaped string or a HtmlArmor object after in associative array form externallinks including delete and has completed for all link tables whether this was an auto creation use $formDescriptor instead default is conds Array Extra conditions for the No matching items in log is displayed if loglist is empty msgKey Array If you want a nice box with a set this to the key of the message First element is the message key
int $key
key 0-indexed number of pages fetched since self::reset()
addJoinConditions(array $conditions)
This document is intended to provide useful advice for parties seeking to redistribute MediaWiki to end users It s targeted particularly at maintainers for Linux since it s been observed that distribution packages of MediaWiki often break We ve consistently had to recommend that users seeking support use official tarballs instead of their distribution s and this often solves whatever problem the user is having It would be nice if this could such as
Using a hook running we can avoid having all this option specific stuff in our mainline code Using the function We ve cleaned up the code here by removing clumps of infrequently used code and moving them off somewhere else It s much easier for someone working with this code to see what s _really_ going and make changes or fix bugs In we can take all the code that deals with the little used title reversing options(say) and put it in one place. Instead of having little title-reversing if-blocks spread all over the codebase in showAnArticle
array $options
Additional query options.