MediaWiki  1.28.1
ApiContinuationManager Class Reference

This manages continuation state. More...

Public Member Functions

 __construct (ApiBase $module, array $allModules=[], array $generatedModules=[])
 
 addContinueParam (ApiBase $module, $paramName, $paramValue)
 Set the continuation parameter for a module. More...
 
 addGeneratorContinueParam (ApiBase $module, $paramName, $paramValue)
 Set the continuation parameter for the generator module. More...
 
 addGeneratorNonContinueParam (ApiBase $module, $paramName, $paramValue)
 Set the non-continuation parameter for the generator module. More...
 
 getContinuation ()
 Fetch continuation result data. More...
 
 getRawContinuation ()
 Fetch raw continuation data. More...
 
 getRawNonContinuation ()
 Fetch raw non-continuation data. More...
 
 getRunModules ()
 Get the list of modules that should actually be run. More...
 
 getSource ()
 Get the class that created this manager. More...
 
 isGeneratorDone ()
 Is the generator done? More...
 
 setContinuationIntoResult (ApiResult $result)
 Store the continuation data into the result. More...
 

Private Attributes

 $allModules = []
 
 $continuationData = []
 
 $generatedModules = []
 
 $generatorContinuationData = []
 
 $generatorDone = false
 
 $generatorNonContinuationData = []
 
 $generatorParams = []
 
 $source
 

Detailed Description

This manages continuation state.

Since
1.25 this is no longer a subclass of ApiBase

Definition at line 26 of file ApiContinuationManager.php.

Constructor & Destructor Documentation

ApiContinuationManager::__construct ( ApiBase  $module,
array  $allModules = [],
array  $generatedModules = [] 
)
Parameters
ApiBase$moduleModule starting the continuation
ApiBase[]$allModules Contains ApiBase instances that will be executed
array$generatedModulesNames of modules that depend on the generator
Exceptions
UsageException

Definition at line 45 of file ApiContinuationManager.php.

References $allModules, $generatedModules, $name, $params, $request, as, ContextSource\getRequest(), and source.

Member Function Documentation

ApiContinuationManager::addContinueParam ( ApiBase  $module,
  $paramName,
  $paramValue 
)

Set the continuation parameter for a module.

Parameters
ApiBase$module
string$paramName
string | array$paramValue
Exceptions
UnexpectedValueException

Definition at line 125 of file ApiContinuationManager.php.

References $name, ApiBase\encodeParamName(), and ApiBase\getModuleName().

ApiContinuationManager::addGeneratorContinueParam ( ApiBase  $module,
  $paramName,
  $paramValue 
)

Set the continuation parameter for the generator module.

Parameters
ApiBase$module
string$paramName
string | array$paramValue

Definition at line 172 of file ApiContinuationManager.php.

References $name, ApiBase\encodeParamName(), and ApiBase\getModuleName().

ApiContinuationManager::addGeneratorNonContinueParam ( ApiBase  $module,
  $paramName,
  $paramValue 
)

Set the non-continuation parameter for the generator module.

In case the generator isn't going to be continued, this sets the fields to return.

Since
1.28
Parameters
ApiBase$module
string$paramName
string | array$paramValue

Definition at line 157 of file ApiContinuationManager.php.

References $name, ApiBase\encodeParamName(), and ApiBase\getModuleName().

ApiContinuationManager::getContinuation ( )

Fetch continuation result data.

Returns
array [ (array)$data, (bool)$batchcomplete ]

Definition at line 202 of file ApiContinuationManager.php.

References $continuationData, $generatorParams, and as.

Referenced by setContinuationIntoResult().

ApiContinuationManager::getRawContinuation ( )

Fetch raw continuation data.

Returns
array

Definition at line 185 of file ApiContinuationManager.php.

ApiContinuationManager::getRawNonContinuation ( )

Fetch raw non-continuation data.

Since
1.28
Returns
array

Definition at line 194 of file ApiContinuationManager.php.

References $generatorNonContinuationData.

ApiContinuationManager::getRunModules ( )

Get the list of modules that should actually be run.

Returns
ApiBase[]

Definition at line 114 of file ApiContinuationManager.php.

ApiContinuationManager::getSource ( )

Get the class that created this manager.

Returns
string

Definition at line 98 of file ApiContinuationManager.php.

References $source.

ApiContinuationManager::isGeneratorDone ( )

Is the generator done?

Returns
bool

Definition at line 106 of file ApiContinuationManager.php.

References $generatorDone.

ApiContinuationManager::setContinuationIntoResult ( ApiResult  $result)

Store the continuation data into the result.

Parameters
ApiResult$result

Definition at line 263 of file ApiContinuationManager.php.

References ApiResult\ADD_ON_TOP, ApiResult\addValue(), getContinuation(), list, and ApiResult\NO_SIZE_CHECK.

Member Data Documentation

ApiContinuationManager::$allModules = []
private

Definition at line 29 of file ApiContinuationManager.php.

Referenced by __construct().

ApiContinuationManager::$continuationData = []
private

Definition at line 32 of file ApiContinuationManager.php.

Referenced by getContinuation().

ApiContinuationManager::$generatedModules = []
private

Definition at line 30 of file ApiContinuationManager.php.

Referenced by __construct().

ApiContinuationManager::$generatorContinuationData = []
private

Definition at line 33 of file ApiContinuationManager.php.

ApiContinuationManager::$generatorDone = false
private

Definition at line 37 of file ApiContinuationManager.php.

Referenced by isGeneratorDone().

ApiContinuationManager::$generatorNonContinuationData = []
private

Definition at line 34 of file ApiContinuationManager.php.

Referenced by getRawNonContinuation().

ApiContinuationManager::$generatorParams = []
private

Definition at line 36 of file ApiContinuationManager.php.

Referenced by getContinuation().

ApiContinuationManager::$source
private

Definition at line 27 of file ApiContinuationManager.php.

Referenced by getSource().


The documentation for this class was generated from the following file: