MediaWiki REL1_28
ApiQueryGeneratorBase.php
Go to the documentation of this file.
1<?php
30abstract 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 public function isInGeneratorMode() {
54 return $this->mGeneratorPageSet !== null;
55 }
56
62 protected function getPageSet() {
63 if ( $this->mGeneratorPageSet !== null ) {
65 }
66
67 return parent::getPageSet();
68 }
69
75 public function encodeParamName( $paramName ) {
76 if ( $this->mGeneratorPageSet !== null ) {
77 return 'g' . parent::encodeParamName( $paramName );
78 } else {
79 return parent::encodeParamName( $paramName );
80 }
81 }
82
88 protected function setContinueEnumParameter( $paramName, $paramValue ) {
89 if ( $this->mGeneratorPageSet !== null ) {
90 $this->getContinuationManager()->addGeneratorContinueParam( $this, $paramName, $paramValue );
91 } else {
92 parent::setContinueEnumParameter( $paramName, $paramValue );
93 }
94 }
95
101 protected function getHelpFlags() {
102 $flags = parent::getHelpFlags();
103 $flags[] = 'generator';
104 return $flags;
105 }
106
111 abstract public function executeGenerator( $resultPageSet );
112}
static dieDebug( $method, $message)
Internal code errors should be reported with this method.
Definition ApiBase.php:2295
getContinuationManager()
Get the continuation manager.
Definition ApiBase.php:624
This class contains a list of pages that the client has requested.
This is a base class for all Query modules.
setContinueEnumParameter( $paramName, $paramValue)
Overridden to set the generator param if in generator mode.
getPageSet()
Get the PageSet object to work on.
setGeneratorMode(ApiPageSet $generatorPageSet)
Switch this module to generator mode.
executeGenerator( $resultPageSet)
Execute this module as a generator.
encodeParamName( $paramName)
Overrides ApiBase to prepend 'g' to every generator parameter.
isInGeneratorMode()
Indicate whether the module is in generator mode.
it s the revision text itself In either if gzip is the revision text is gzipped $flags
Definition hooks.txt:2710
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