MediaWiki  1.27.2
ApiQueryGeneratorBase.php
Go to the documentation of this file.
1 <?php
30 abstract class ApiQueryGeneratorBase extends ApiQueryBase {
31 
32  private $mGeneratorPageSet = null;
33 
41  public function setGeneratorMode( ApiPageSet $generatorPageSet ) {
42  if ( $generatorPageSet === null ) {
43  ApiBase::dieDebug( __METHOD__, 'Required parameter missing - $generatorPageSet' );
44  }
45  $this->mGeneratorPageSet = $generatorPageSet;
46  }
47 
53  protected function getPageSet() {
54  if ( $this->mGeneratorPageSet !== null ) {
56  }
57 
58  return parent::getPageSet();
59  }
60 
66  public function encodeParamName( $paramName ) {
67  if ( $this->mGeneratorPageSet !== null ) {
68  return 'g' . parent::encodeParamName( $paramName );
69  } else {
70  return parent::encodeParamName( $paramName );
71  }
72  }
73 
79  protected function setContinueEnumParameter( $paramName, $paramValue ) {
80  if ( $this->mGeneratorPageSet !== null ) {
81  $this->getContinuationManager()->addGeneratorContinueParam( $this, $paramName, $paramValue );
82  } else {
83  parent::setContinueEnumParameter( $paramName, $paramValue );
84  }
85  }
86 
92  protected function getHelpFlags() {
93  $flags = parent::getHelpFlags();
94  $flags[] = 'generator';
95  return $flags;
96  }
97 
102  abstract public function executeGenerator( $resultPageSet );
103 }
This class contains a list of pages that the client has requested.
Definition: ApiPageSet.php:41
This is a base class for all Query modules.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition: hooks.txt:2548
setContinueEnumParameter($paramName, $paramValue)
Overridden to set the generator param if in generator mode.
setGeneratorMode(ApiPageSet $generatorPageSet)
Switch this module to generator mode.
getContinuationManager()
Get the continuation manager.
Definition: ApiBase.php:624
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
encodeParamName($paramName)
Overrides ApiBase to prepend 'g' to every generator parameter.
static dieDebug($method, $message)
Internal code errors should be reported with this method.
Definition: ApiBase.php:2230
getPageSet()
Get the PageSet object to work on.
executeGenerator($resultPageSet)
Execute this module as a generator.