MediaWiki  1.29.2
BacklinkJobUtils.php
Go to the documentation of this file.
1 <?php
88  public static function partitionBacklinkJob( Job $job, $bSize, $cSize, $opts = [] ) {
89  $class = get_class( $job );
90  $title = $job->getTitle();
91  $params = $job->getParams();
92 
93  if ( isset( $params['pages'] ) || empty( $params['recursive'] ) ) {
94  $ranges = []; // sanity; this is a leaf node
95  $realBSize = 0;
96  wfWarn( __METHOD__ . " called on {$job->getType()} leaf job (explosive recursion)." );
97  } elseif ( isset( $params['range'] ) ) {
98  // This is a range job to trigger the insertion of partitioned/title jobs...
99  $ranges = $params['range']['subranges'];
100  $realBSize = $params['range']['batchSize'];
101  } else {
102  // This is a base job to trigger the insertion of partitioned jobs...
103  $ranges = $title->getBacklinkCache()->partition( $params['table'], $bSize );
104  $realBSize = $bSize;
105  }
106 
107  $extraParams = isset( $opts['params'] ) ? $opts['params'] : [];
108 
109  $jobs = [];
110  // Combine the first range (of size $bSize) backlinks into leaf jobs
111  if ( isset( $ranges[0] ) ) {
112  list( $start, $end ) = $ranges[0];
113  $iter = $title->getBacklinkCache()->getLinks( $params['table'], $start, $end );
114  $titles = iterator_to_array( $iter );
116  foreach ( array_chunk( $titles, $cSize ) as $titleBatch ) {
117  $pages = [];
118  foreach ( $titleBatch as $tl ) {
119  $pages[$tl->getArticleID()] = [ $tl->getNamespace(), $tl->getDBkey() ];
120  }
121  $jobs[] = new $class(
122  $title, // maintain parent job title
123  [ 'pages' => $pages ] + $extraParams
124  );
125  }
126  }
127  // Take all of the remaining ranges and build a partition job from it
128  if ( isset( $ranges[1] ) ) {
129  $jobs[] = new $class(
130  $title, // maintain parent job title
131  [
132  'recursive' => true,
133  'table' => $params['table'],
134  'range' => [
135  'start' => $ranges[1][0],
136  'end' => $ranges[count( $ranges ) - 1][1],
137  'batchSize' => $realBSize,
138  'subranges' => array_slice( $ranges, 1 )
139  ],
140  // Track how many times the base job divided for debugging
141  'division' => isset( $params['division'] )
142  ? ( $params['division'] + 1 )
143  : 1
144  ] + $extraParams
145  );
146  }
147 
148  return $jobs;
149  }
150 }
captcha-old.count
count
Definition: captcha-old.py:225
$params
$params
Definition: styleTest.css.php:40
php
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:35
BacklinkJobUtils\partitionBacklinkJob
static partitionBacklinkJob(Job $job, $bSize, $cSize, $opts=[])
Break down $job into approximately ($bSize/$cSize) leaf jobs and a single partition job that covers t...
Definition: BacklinkJobUtils.php:88
Job
Class to both describe a background job and handle jobs.
Definition: Job.php:31
$title
namespace and then decline to actually register it file or subcat img or subcat $title
Definition: hooks.txt:934
$titles
linkcache txt The LinkCache class maintains a list of article titles and the information about whether or not the article exists in the database This is used to mark up links when displaying a page If the same link appears more than once on any page then it only has to be looked up once In most cases link lookups are done in batches with the LinkBatch class or the equivalent in so the link cache is mostly useful for short snippets of parsed and for links in the navigation areas of the skin The link cache was formerly used to track links used in a document for the purposes of updating the link tables This application is now deprecated To create a you can use the following $titles
Definition: linkcache.txt:17
list
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 list
Definition: deferred.txt:11
BacklinkJobUtils
Class with Backlink related Job helper methods.
Definition: BacklinkJobUtils.php:52
$job
if(count( $args)< 1) $job
Definition: recompressTracked.php:47
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 as
Definition: distributors.txt:9
wfWarn
wfWarn( $msg, $callerOffset=1, $level=E_USER_NOTICE)
Send a warning either to the debug log or in a PHP error depending on $wgDevelopmentWarnings.
Definition: GlobalFunctions.php:1142