MediaWiki REL1_33
JobQueueRedis.php
Go to the documentation of this file.
1<?php
22use Psr\Log\LoggerInterface;
23
66class JobQueueRedis extends JobQueue {
68 protected $redisPool;
70 protected $logger;
71
73 protected $server;
75 protected $compression;
76
77 const MAX_PUSH_SIZE = 25; // avoid tying up the server
78
92 public function __construct( array $params ) {
93 parent::__construct( $params );
94 $params['redisConfig']['serializer'] = 'none'; // make it easy to use Lua
95 $this->server = $params['redisServer'];
96 $this->compression = $params['compression'] ?? 'none';
97 $this->redisPool = RedisConnectionPool::singleton( $params['redisConfig'] );
98 if ( empty( $params['daemonized'] ) ) {
99 throw new InvalidArgumentException(
100 "Non-daemonized mode is no longer supported. Please install the " .
101 "mediawiki/services/jobrunner service and update \$wgJobTypeConf as needed." );
102 }
103 $this->logger = \MediaWiki\Logger\LoggerFactory::getInstance( 'redis' );
104 }
105
106 protected function supportedOrders() {
107 return [ 'timestamp', 'fifo' ];
108 }
109
110 protected function optimalOrder() {
111 return 'fifo';
112 }
113
114 protected function supportsDelayedJobs() {
115 return true;
116 }
117
123 protected function doIsEmpty() {
124 return $this->doGetSize() == 0;
125 }
126
132 protected function doGetSize() {
133 $conn = $this->getConnection();
134 try {
135 return $conn->lLen( $this->getQueueKey( 'l-unclaimed' ) );
136 } catch ( RedisException $e ) {
137 $this->throwRedisException( $conn, $e );
138 }
139 }
140
146 protected function doGetAcquiredCount() {
147 $conn = $this->getConnection();
148 try {
149 $conn->multi( Redis::PIPELINE );
150 $conn->zSize( $this->getQueueKey( 'z-claimed' ) );
151 $conn->zSize( $this->getQueueKey( 'z-abandoned' ) );
152
153 return array_sum( $conn->exec() );
154 } catch ( RedisException $e ) {
155 $this->throwRedisException( $conn, $e );
156 }
157 }
158
164 protected function doGetDelayedCount() {
165 $conn = $this->getConnection();
166 try {
167 return $conn->zSize( $this->getQueueKey( 'z-delayed' ) );
168 } catch ( RedisException $e ) {
169 $this->throwRedisException( $conn, $e );
170 }
171 }
172
178 protected function doGetAbandonedCount() {
179 $conn = $this->getConnection();
180 try {
181 return $conn->zSize( $this->getQueueKey( 'z-abandoned' ) );
182 } catch ( RedisException $e ) {
183 $this->throwRedisException( $conn, $e );
184 }
185 }
186
194 protected function doBatchPush( array $jobs, $flags ) {
195 // Convert the jobs into field maps (de-duplicated against each other)
196 $items = []; // (job ID => job fields map)
197 foreach ( $jobs as $job ) {
198 $item = $this->getNewJobFields( $job );
199 if ( strlen( $item['sha1'] ) ) { // hash identifier => de-duplicate
200 $items[$item['sha1']] = $item;
201 } else {
202 $items[$item['uuid']] = $item;
203 }
204 }
205
206 if ( $items === [] ) {
207 return; // nothing to do
208 }
209
210 $conn = $this->getConnection();
211 try {
212 // Actually push the non-duplicate jobs into the queue...
213 if ( $flags & self::QOS_ATOMIC ) {
214 $batches = [ $items ]; // all or nothing
215 } else {
216 $batches = array_chunk( $items, self::MAX_PUSH_SIZE );
217 }
218 $failed = 0;
219 $pushed = 0;
220 foreach ( $batches as $itemBatch ) {
221 $added = $this->pushBlobs( $conn, $itemBatch );
222 if ( is_int( $added ) ) {
223 $pushed += $added;
224 } else {
225 $failed += count( $itemBatch );
226 }
227 }
228 $this->incrStats( 'inserts', $this->type, count( $items ) );
229 $this->incrStats( 'inserts_actual', $this->type, $pushed );
230 $this->incrStats( 'dupe_inserts', $this->type,
231 count( $items ) - $failed - $pushed );
232 if ( $failed > 0 ) {
233 $err = "Could not insert {$failed} {$this->type} job(s).";
234 wfDebugLog( 'JobQueueRedis', $err );
235 throw new RedisException( $err );
236 }
237 } catch ( RedisException $e ) {
238 $this->throwRedisException( $conn, $e );
239 }
240 }
241
248 protected function pushBlobs( RedisConnRef $conn, array $items ) {
249 $args = [ $this->encodeQueueName() ];
250 // Next args come in 4s ([id, sha1, rtime, blob [, id, sha1, rtime, blob ... ] ] )
251 foreach ( $items as $item ) {
252 $args[] = (string)$item['uuid'];
253 $args[] = (string)$item['sha1'];
254 $args[] = (string)$item['rtimestamp'];
255 $args[] = (string)$this->serialize( $item );
256 }
257 static $script =
259<<<LUA
260 local kUnclaimed, kSha1ById, kIdBySha1, kDelayed, kData, kQwJobs = unpack(KEYS)
261 -- First argument is the queue ID
262 local queueId = ARGV[1]
263 -- Next arguments all come in 4s (one per job)
264 local variadicArgCount = #ARGV - 1
265 if variadicArgCount % 4 ~= 0 then
266 return redis.error_reply('Unmatched arguments')
267 end
268 -- Insert each job into this queue as needed
269 local pushed = 0
270 for i = 2,#ARGV,4 do
271 local id,sha1,rtimestamp,blob = ARGV[i],ARGV[i+1],ARGV[i+2],ARGV[i+3]
272 if sha1 == '' or redis.call('hExists',kIdBySha1,sha1) == 0 then
273 if 1*rtimestamp > 0 then
274 -- Insert into delayed queue (release time as score)
275 redis.call('zAdd',kDelayed,rtimestamp,id)
276 else
277 -- Insert into unclaimed queue
278 redis.call('lPush',kUnclaimed,id)
279 end
280 if sha1 ~= '' then
281 redis.call('hSet',kSha1ById,id,sha1)
282 redis.call('hSet',kIdBySha1,sha1,id)
283 end
284 redis.call('hSet',kData,id,blob)
285 pushed = pushed + 1
286 end
287 end
288 -- Mark this queue as having jobs
289 redis.call('sAdd',kQwJobs,queueId)
290 return pushed
291LUA;
292 return $conn->luaEval( $script,
293 array_merge(
294 [
295 $this->getQueueKey( 'l-unclaimed' ), # KEYS[1]
296 $this->getQueueKey( 'h-sha1ById' ), # KEYS[2]
297 $this->getQueueKey( 'h-idBySha1' ), # KEYS[3]
298 $this->getQueueKey( 'z-delayed' ), # KEYS[4]
299 $this->getQueueKey( 'h-data' ), # KEYS[5]
300 $this->getGlobalKey( 's-queuesWithJobs' ), # KEYS[6]
301 ],
302 $args
303 ),
304 6 # number of first argument(s) that are keys
305 );
306 }
307
313 protected function doPop() {
314 $job = false;
315
316 $conn = $this->getConnection();
317 try {
318 do {
319 $blob = $this->popAndAcquireBlob( $conn );
320 if ( !is_string( $blob ) ) {
321 break; // no jobs; nothing to do
322 }
323
324 $this->incrStats( 'pops', $this->type );
325 $item = $this->unserialize( $blob );
326 if ( $item === false ) {
327 wfDebugLog( 'JobQueueRedis', "Could not unserialize {$this->type} job." );
328 continue;
329 }
330
331 // If $item is invalid, the runner loop recyling will cleanup as needed
332 $job = $this->getJobFromFields( $item ); // may be false
333 } while ( !$job ); // job may be false if invalid
334 } catch ( RedisException $e ) {
335 $this->throwRedisException( $conn, $e );
336 }
337
338 return $job;
339 }
340
346 protected function popAndAcquireBlob( RedisConnRef $conn ) {
347 static $script =
349<<<LUA
350 local kUnclaimed, kSha1ById, kIdBySha1, kClaimed, kAttempts, kData = unpack(KEYS)
351 local rTime = unpack(ARGV)
352 -- Pop an item off the queue
353 local id = redis.call('rPop',kUnclaimed)
354 if not id then
355 return false
356 end
357 -- Allow new duplicates of this job
358 local sha1 = redis.call('hGet',kSha1ById,id)
359 if sha1 then redis.call('hDel',kIdBySha1,sha1) end
360 redis.call('hDel',kSha1ById,id)
361 -- Mark the jobs as claimed and return it
362 redis.call('zAdd',kClaimed,rTime,id)
363 redis.call('hIncrBy',kAttempts,id,1)
364 return redis.call('hGet',kData,id)
365LUA;
366 return $conn->luaEval( $script,
367 [
368 $this->getQueueKey( 'l-unclaimed' ), # KEYS[1]
369 $this->getQueueKey( 'h-sha1ById' ), # KEYS[2]
370 $this->getQueueKey( 'h-idBySha1' ), # KEYS[3]
371 $this->getQueueKey( 'z-claimed' ), # KEYS[4]
372 $this->getQueueKey( 'h-attempts' ), # KEYS[5]
373 $this->getQueueKey( 'h-data' ), # KEYS[6]
374 time(), # ARGV[1] (injected to be replication-safe)
375 ],
376 6 # number of first argument(s) that are keys
377 );
378 }
379
387 protected function doAck( Job $job ) {
388 $uuid = $job->getMetadata( 'uuid' );
389 if ( $uuid === null ) {
390 throw new UnexpectedValueException( "Job of type '{$job->getType()}' has no UUID." );
391 }
392
393 $conn = $this->getConnection();
394 try {
395 static $script =
397<<<LUA
398 local kClaimed, kAttempts, kData = unpack(KEYS)
399 local id = unpack(ARGV)
400 -- Unmark the job as claimed
401 local removed = redis.call('zRem',kClaimed,id)
402 -- Check if the job was recycled
403 if removed == 0 then
404 return 0
405 end
406 -- Delete the retry data
407 redis.call('hDel',kAttempts,id)
408 -- Delete the job data itself
409 return redis.call('hDel',kData,id)
410LUA;
411 $res = $conn->luaEval( $script,
412 [
413 $this->getQueueKey( 'z-claimed' ), # KEYS[1]
414 $this->getQueueKey( 'h-attempts' ), # KEYS[2]
415 $this->getQueueKey( 'h-data' ), # KEYS[3]
416 $uuid # ARGV[1]
417 ],
418 3 # number of first argument(s) that are keys
419 );
420
421 if ( !$res ) {
422 wfDebugLog( 'JobQueueRedis', "Could not acknowledge {$this->type} job $uuid." );
423
424 return false;
425 }
426
427 $this->incrStats( 'acks', $this->type );
428 } catch ( RedisException $e ) {
429 $this->throwRedisException( $conn, $e );
430 }
431
432 return true;
433 }
434
443 if ( !$job->hasRootJobParams() ) {
444 throw new LogicException( "Cannot register root job; missing parameters." );
445 }
446 $params = $job->getRootJobParams();
447
448 $key = $this->getRootJobCacheKey( $params['rootJobSignature'] );
449
450 $conn = $this->getConnection();
451 try {
452 $timestamp = $conn->get( $key ); // current last timestamp of this job
453 if ( $timestamp && $timestamp >= $params['rootJobTimestamp'] ) {
454 return true; // a newer version of this root job was enqueued
455 }
456
457 // Update the timestamp of the last root job started at the location...
458 return $conn->set( $key, $params['rootJobTimestamp'], self::ROOTJOB_TTL ); // 2 weeks
459 } catch ( RedisException $e ) {
460 $this->throwRedisException( $conn, $e );
461 }
462 }
463
470 protected function doIsRootJobOldDuplicate( Job $job ) {
471 if ( !$job->hasRootJobParams() ) {
472 return false; // job has no de-deplication info
473 }
474 $params = $job->getRootJobParams();
475
476 $conn = $this->getConnection();
477 try {
478 // Get the last time this root job was enqueued
479 $timestamp = $conn->get( $this->getRootJobCacheKey( $params['rootJobSignature'] ) );
480 } catch ( RedisException $e ) {
481 $timestamp = false;
482 $this->throwRedisException( $conn, $e );
483 }
484
485 // Check if a new root job was started at the location after this one's...
486 return ( $timestamp && $timestamp > $params['rootJobTimestamp'] );
487 }
488
494 protected function doDelete() {
495 static $props = [ 'l-unclaimed', 'z-claimed', 'z-abandoned',
496 'z-delayed', 'h-idBySha1', 'h-sha1ById', 'h-attempts', 'h-data' ];
497
498 $conn = $this->getConnection();
499 try {
500 $keys = [];
501 foreach ( $props as $prop ) {
502 $keys[] = $this->getQueueKey( $prop );
503 }
504
505 $ok = ( $conn->del( $keys ) !== false );
506 $conn->sRem( $this->getGlobalKey( 's-queuesWithJobs' ), $this->encodeQueueName() );
507
508 return $ok;
509 } catch ( RedisException $e ) {
510 $this->throwRedisException( $conn, $e );
511 }
512 }
513
519 public function getAllQueuedJobs() {
520 $conn = $this->getConnection();
521 try {
522 $uids = $conn->lRange( $this->getQueueKey( 'l-unclaimed' ), 0, -1 );
523 } catch ( RedisException $e ) {
524 $this->throwRedisException( $conn, $e );
525 }
526
527 return $this->getJobIterator( $conn, $uids );
528 }
529
535 public function getAllDelayedJobs() {
536 $conn = $this->getConnection();
537 try {
538 $uids = $conn->zRange( $this->getQueueKey( 'z-delayed' ), 0, -1 );
539 } catch ( RedisException $e ) {
540 $this->throwRedisException( $conn, $e );
541 }
542
543 return $this->getJobIterator( $conn, $uids );
544 }
545
551 public function getAllAcquiredJobs() {
552 $conn = $this->getConnection();
553 try {
554 $uids = $conn->zRange( $this->getQueueKey( 'z-claimed' ), 0, -1 );
555 } catch ( RedisException $e ) {
556 $this->throwRedisException( $conn, $e );
557 }
558
559 return $this->getJobIterator( $conn, $uids );
560 }
561
567 public function getAllAbandonedJobs() {
568 $conn = $this->getConnection();
569 try {
570 $uids = $conn->zRange( $this->getQueueKey( 'z-abandoned' ), 0, -1 );
571 } catch ( RedisException $e ) {
572 $this->throwRedisException( $conn, $e );
573 }
574
575 return $this->getJobIterator( $conn, $uids );
576 }
577
583 protected function getJobIterator( RedisConnRef $conn, array $uids ) {
584 return new MappedIterator(
585 $uids,
586 function ( $uid ) use ( $conn ) {
587 return $this->getJobFromUidInternal( $uid, $conn );
588 },
589 [ 'accept' => function ( $job ) {
590 return is_object( $job );
591 } ]
592 );
593 }
594
595 public function getCoalesceLocationInternal() {
596 return "RedisServer:" . $this->server;
597 }
598
599 protected function doGetSiblingQueuesWithJobs( array $types ) {
600 return array_keys( array_filter( $this->doGetSiblingQueueSizes( $types ) ) );
601 }
602
603 protected function doGetSiblingQueueSizes( array $types ) {
604 $sizes = []; // (type => size)
605 $types = array_values( $types ); // reindex
606 $conn = $this->getConnection();
607 try {
608 $conn->multi( Redis::PIPELINE );
609 foreach ( $types as $type ) {
610 $conn->lLen( $this->getQueueKey( 'l-unclaimed', $type ) );
611 }
612 $res = $conn->exec();
613 if ( is_array( $res ) ) {
614 foreach ( $res as $i => $size ) {
615 $sizes[$types[$i]] = $size;
616 }
617 }
618 } catch ( RedisException $e ) {
619 $this->throwRedisException( $conn, $e );
620 }
621
622 return $sizes;
623 }
624
634 public function getJobFromUidInternal( $uid, RedisConnRef $conn ) {
635 try {
636 $data = $conn->hGet( $this->getQueueKey( 'h-data' ), $uid );
637 if ( $data === false ) {
638 return false; // not found
639 }
640 $item = $this->unserialize( $data );
641 if ( !is_array( $item ) ) { // this shouldn't happen
642 throw new UnexpectedValueException( "Could not find job with ID '$uid'." );
643 }
644 $title = Title::makeTitle( $item['namespace'], $item['title'] );
645 $job = Job::factory( $item['type'], $title, $item['params'] );
646 $job->setMetadata( 'uuid', $item['uuid'] );
647 $job->setMetadata( 'timestamp', $item['timestamp'] );
648 // Add in attempt count for debugging at showJobs.php
649 $job->setMetadata( 'attempts',
650 $conn->hGet( $this->getQueueKey( 'h-attempts' ), $uid ) );
651
652 return $job;
653 } catch ( RedisException $e ) {
654 $this->throwRedisException( $conn, $e );
655 }
656 }
657
663 public function getServerQueuesWithJobs() {
664 $queues = [];
665
666 $conn = $this->getConnection();
667 try {
668 $set = $conn->sMembers( $this->getGlobalKey( 's-queuesWithJobs' ) );
669 foreach ( $set as $queue ) {
670 $queues[] = $this->decodeQueueName( $queue );
671 }
672 } catch ( RedisException $e ) {
673 $this->throwRedisException( $conn, $e );
674 }
675
676 return $queues;
677 }
678
683 protected function getNewJobFields( IJobSpecification $job ) {
684 return [
685 // Fields that describe the nature of the job
686 'type' => $job->getType(),
687 'namespace' => $job->getTitle()->getNamespace(),
688 'title' => $job->getTitle()->getDBkey(),
689 'params' => $job->getParams(),
690 // Some jobs cannot run until a "release timestamp"
691 'rtimestamp' => $job->getReleaseTimestamp() ?: 0,
692 // Additional job metadata
694 'sha1' => $job->ignoreDuplicates()
695 ? Wikimedia\base_convert( sha1( serialize( $job->getDeduplicationInfo() ) ), 16, 36, 31 )
696 : '',
697 'timestamp' => time() // UNIX timestamp
698 ];
699 }
700
705 protected function getJobFromFields( array $fields ) {
706 $title = Title::makeTitle( $fields['namespace'], $fields['title'] );
707 $job = Job::factory( $fields['type'], $title, $fields['params'] );
708 $job->setMetadata( 'uuid', $fields['uuid'] );
709 $job->setMetadata( 'timestamp', $fields['timestamp'] );
710
711 return $job;
712 }
713
718 protected function serialize( array $fields ) {
719 $blob = serialize( $fields );
720 if ( $this->compression === 'gzip'
721 && strlen( $blob ) >= 1024
722 && function_exists( 'gzdeflate' )
723 ) {
724 $object = (object)[ 'blob' => gzdeflate( $blob ), 'enc' => 'gzip' ];
725 $blobz = serialize( $object );
726
727 return ( strlen( $blobz ) < strlen( $blob ) ) ? $blobz : $blob;
728 } else {
729 return $blob;
730 }
731 }
732
737 protected function unserialize( $blob ) {
738 $fields = unserialize( $blob );
739 if ( is_object( $fields ) ) {
740 if ( $fields->enc === 'gzip' && function_exists( 'gzinflate' ) ) {
741 $fields = unserialize( gzinflate( $fields->blob ) );
742 } else {
743 $fields = false;
744 }
745 }
746
747 return is_array( $fields ) ? $fields : false;
748 }
749
756 protected function getConnection() {
757 $conn = $this->redisPool->getConnection( $this->server, $this->logger );
758 if ( !$conn ) {
759 throw new JobQueueConnectionError(
760 "Unable to connect to redis server {$this->server}." );
761 }
762
763 return $conn;
764 }
765
771 protected function throwRedisException( RedisConnRef $conn, $e ) {
772 $this->redisPool->handleError( $conn, $e );
773 throw new JobQueueError( "Redis server error: {$e->getMessage()}\n" );
774 }
775
779 private function encodeQueueName() {
780 return json_encode( [ $this->type, $this->domain ] );
781 }
782
787 private function decodeQueueName( $name ) {
788 return json_decode( $name );
789 }
790
795 private function getGlobalKey( $name ) {
796 $parts = [ 'global', 'jobqueue', $name ];
797 foreach ( $parts as $part ) {
798 if ( !preg_match( '/[a-zA-Z0-9_-]+/', $part ) ) {
799 throw new InvalidArgumentException( "Key part characters are out of range." );
800 }
801 }
802
803 return implode( ':', $parts );
804 }
805
811 private function getQueueKey( $prop, $type = null ) {
812 $type = is_string( $type ) ? $type : $this->type;
813
814 // Use wiki ID for b/c
815 $keyspace = WikiMap::getWikiIdFromDbDomain( $this->domain );
816
817 $parts = [ $keyspace, 'jobqueue', $type, $prop ];
818
819 // Parts are typically ASCII, but encode for sanity to escape ":"
820 return implode( ':', array_map( 'rawurlencode', $parts ) );
821 }
822}
and(b) You must cause any modified files to carry prominent notices stating that You changed the files
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
serialize()
wfDebugLog( $logGroup, $text, $dest='all', array $context=[])
Send a line to a supplementary debug log file, if configured, or main debug log if not.
if( $line===false) $args
Definition cdb.php:64
Class to handle job queues stored in Redis.
doIsRootJobOldDuplicate(Job $job)
doDeduplicateRootJob(IJobSpecification $job)
decodeQueueName( $name)
throwRedisException(RedisConnRef $conn, $e)
__construct(array $params)
popAndAcquireBlob(RedisConnRef $conn)
getCoalesceLocationInternal()
Do not use this function outside of JobQueue/JobQueueGroup.
getQueueKey( $prop, $type=null)
doGetSiblingQueuesWithJobs(array $types)
doGetSiblingQueueSizes(array $types)
getJobFromUidInternal( $uid, RedisConnRef $conn)
This function should not be called outside JobQueueRedis.
RedisConnectionPool $redisPool
pushBlobs(RedisConnRef $conn, array $items)
string $server
Server address.
supportedOrders()
Get the allowed queue orders for configuration validation.
supportsDelayedJobs()
Find out if delayed jobs are supported for configuration validation.
string $compression
Compression method to use.
LoggerInterface $logger
serialize(array $fields)
doBatchPush(array $jobs, $flags)
getJobIterator(RedisConnRef $conn, array $uids)
getConnection()
Get a connection to the server that handles all sub-queues for this queue.
getJobFromFields(array $fields)
optimalOrder()
Get the default queue order to use if configuration does not specify one.
getNewJobFields(IJobSpecification $job)
Class to handle enqueueing and running of background jobs.
Definition JobQueue.php:31
incrStats( $key, $type, $delta=1)
Call wfIncrStats() for the queue overall and for the queue type.
Definition JobQueue.php:706
string $type
Job type.
Definition JobQueue.php:35
getRootJobCacheKey( $signature)
Definition JobQueue.php:521
Class to both describe a background job and handle jobs.
Definition Job.php:30
static factory( $command, $params=[])
Create the appropriate object to handle a specific job.
Definition Job.php:72
Convenience class for generating iterators from iterators.
Helper class to handle automatically marking connectons as reusable (via RAII pattern)
luaEval( $script, array $params, $numKeys)
Helper class to manage Redis connections.
static singleton(array $options)
static newRawUUIDv4( $flags=0)
Return an RFC4122 compliant v4 UUID.
=Architecture==Two class hierarchies are used to provide the functionality associated with the different content models:*Content interface(and AbstractContent base class) define functionality that acts on the concrete content of a page, and *ContentHandler base class provides functionality specific to a content model, but not acting on concrete content. The most important function of ContentHandler is to act as a factory for the appropriate implementation of Content. These Content objects are to be used by MediaWiki everywhere, instead of passing page content around as text. All manipulation and analysis of page content must be done via the appropriate methods of the Content object. For each content model, a subclass of ContentHandler has to be registered with $wgContentHandlers. The ContentHandler object for a given content model can be obtained using ContentHandler::getForModelID($id). Also Title, WikiPage and Revision now have getContentHandler() methods for convenience. ContentHandler objects are singletons that provide functionality specific to the content type, but not directly acting on the content of some page. ContentHandler::makeEmptyContent() and ContentHandler::unserializeContent() can be used to create a Content object of the appropriate type. However, it is recommended to instead use WikiPage::getContent() resp. Revision::getContent() to get a page 's content as a Content object. These two methods should be the ONLY way in which page content is accessed. Another important function of ContentHandler objects is to define custom action handlers for a content model, see ContentHandler::getActionOverrides(). This is similar to what WikiPage::getActionOverrides() was already doing.==Serialization==With the ContentHandler facility, page content no longer has to be text based. Objects implementing the Content interface are used to represent and handle the content internally. For storage and data exchange, each content model supports at least one serialization format via ContentHandler::serializeContent($content). The list of supported formats for a given content model can be accessed using ContentHandler::getSupportedFormats(). Content serialization formats are identified using MIME type like strings. The following formats are built in:*text/x-wiki - wikitext *text/javascript - for js pages *text/css - for css pages *text/plain - for future use, e.g. with plain text messages. *text/html - for future use, e.g. with plain html messages. *application/vnd.php.serialized - for future use with the api and for extensions *application/json - for future use with the api, and for use by extensions *application/xml - for future use with the api, and for use by extensions In PHP, use the corresponding CONTENT_FORMAT_XXX constant. Note that when using the API to access page content, especially action=edit, action=parse and action=query &prop=revisions, the model and format of the content should always be handled explicitly. Without that information, interpretation of the provided content is not reliable. The same applies to XML dumps generated via maintenance/dumpBackup.php or Special:Export. Also note that the API will provide encapsulated, serialized content - so if the API was called with format=json, and contentformat is also json(or rather, application/json), the page content is represented as a string containing an escaped json structure. Extensions that use JSON to serialize some types of page content may provide specialized API modules that allow access to that content in a more natural form.==Compatibility==The ContentHandler facility is introduced in a way that should allow all existing code to keep functioning at least for pages that contain wikitext or other text based content. However, a number of functions and hooks have been deprecated in favor of new versions that are aware of the page 's content model, and will now generate warnings when used. Most importantly, the following functions have been deprecated:*Revisions::getText() is deprecated in favor Revisions::getContent() *WikiPage::getText() is deprecated in favor WikiPage::getContent() Also, the old Article::getContent()(which returns text) is superceded by Article::getContentObject(). However, both methods should be avoided since they do not provide clean access to the page 's actual content. For instance, they may return a system message for non-existing pages. Use WikiPage::getContent() instead. Code that relies on a textual representation of the page content should eventually be rewritten. However, ContentHandler::getContentText() provides a stop-gap that can be used to get text for a page. Its behavior is controlled by $wgContentHandlerTextFallback it
The ContentHandler facility adds support for arbitrary content types on wiki instead of relying on wikitext for everything It was introduced in MediaWiki Each kind of and so on Built in content types are
$res
Definition database.txt:21
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 that
Definition deferred.txt:13
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
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 and we might be restricted by PHP settings such as safe mode or open_basedir We cannot assume that the software even has read access anywhere useful Many shared hosts run all users web applications under the same so they can t rely on Unix and must forbid reads to even standard directories like tmp lest users read each others files We cannot assume that the user has the ability to install or run any programs not written as web accessible PHP scripts Since anything that works on cheap shared hosting will work if you have shell or root access MediaWiki s design is based around catering to the lowest common denominator Although we support higher end setups as the way many things work by default is tailored toward shared hosting These defaults are unconventional from the point of view of and they certainly aren t ideal for someone who s installing MediaWiki as MediaWiki does not conform to normal Unix filesystem layout Hopefully we ll offer direct support for standard layouts in the but for now *any change to the location of files is unsupported *Moving things and leaving symlinks will *probably *not break but it is *strongly *advised not to try any more intrusive changes to get MediaWiki to conform more closely to your filesystem hierarchy Any such attempt will almost certainly result in unnecessary bugs The standard recommended location to install relative to the web is it should be possible to enable the appropriate rewrite rules by if you can reconfigure the web server
$data
Utility to generate mapping file used in mw.Title (phpCharToUpper.json)
globals txt Globals are evil The original MediaWiki code relied on globals for processing context far too often MediaWiki development since then has been a story of slowly moving context out of global variables and into objects Storing processing context in object member variables allows those objects to be reused in a much more flexible way Consider the elegance of
database rows
Definition globals.txt:10
globals will be eliminated from MediaWiki replaced by an application object which would be passed to constructors Whether that would be an convenient solution remains to be but certainly PHP makes such object oriented programming models easier than they were in previous versions For the time being MediaWiki programmers will have to work in an environment with some global context At the time of globals were initialised on startup by MediaWiki of these were configuration which are documented in DefaultSettings php There is no comprehensive documentation for the remaining however some of the most important ones are listed below They are typically initialised either in index php or in Setup php $wgTitle Title object created from the request URL $wgOut OutputPage object for HTTP response $wgUser User object for the user associated with the current request $wgLang Language object selected by user preferences $wgContLang Language object associated with the wiki being viewed $wgParser Parser object Parser extensions register their hooks here $wgRequest WebRequest object
Definition globals.txt:62
This code would result in ircNotify being run twice when an article is and once for brion Hooks can return three possible true was required This is the default since MediaWiki *some string
Definition hooks.txt:181
namespace and then decline to actually register it file or subcat img or subcat $title
Definition hooks.txt:955
null for the local wiki Added in
Definition hooks.txt:1588
Allows to change the fields on the form that will be generated $name
Definition hooks.txt:271
processing should stop and the error should be shown to the user * false
Definition hooks.txt:187
returning false will NOT prevent logging $e
Definition hooks.txt:2175
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
Definition injection.txt:37
Job queue task description interface.
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))
This document provides an overview of the usage of PageUpdater and that is
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN boolean columns are always mapped to as the code does not always treat the column as a and VARBINARY columns should simply be TEXT The only exception is when VARBINARY is used to store true binary data
Definition postgres.txt:37
This document describes the state of Postgres support in and is fairly well maintained The main code is very well while extensions are very hit and miss it is probably the most supported database after MySQL Much of the work in making MediaWiki database agnostic came about through the work of creating Postgres but without copying over all the usage comments General notes on the but these can almost always be programmed around *Although Postgres has a true BOOLEAN type
Definition postgres.txt:30
The First
Definition primes.txt:1
if(count( $args)< 1) $job
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been the default skin since then
Definition skin.txt:11
skin txt MediaWiki includes four core it has been set as the default in MediaWiki since the replacing Monobook it had been the default skin since before being replaced by Vector largely rewritten in while keeping its appearance Several legacy skins were removed in the release
Definition skin.txt:21
$params