MediaWiki  1.28.1
ForkController.php
Go to the documentation of this file.
1 <?php
23 
34  protected $children = [], $childNumber = 0;
35  protected $termReceived = false;
36  protected $flags = 0, $procsToStart = 0;
37 
38  protected static $restartableSignals = [
39  SIGFPE,
40  SIGILL,
41  SIGSEGV,
42  SIGBUS,
43  SIGABRT,
44  SIGSYS,
45  SIGPIPE,
46  SIGXCPU,
47  SIGXFSZ,
48  ];
49 
54  const RESTART_ON_ERROR = 1;
55 
56  public function __construct( $numProcs, $flags = 0 ) {
57  if ( PHP_SAPI != 'cli' ) {
58  throw new MWException( "ForkController cannot be used from the web." );
59  }
60  $this->procsToStart = $numProcs;
61  $this->flags = $flags;
62  }
63 
75  public function start() {
76  // Trap SIGTERM
77  pcntl_signal( SIGTERM, [ $this, 'handleTermSignal' ], false );
78 
79  do {
80  // Start child processes
81  if ( $this->procsToStart ) {
82  if ( $this->forkWorkers( $this->procsToStart ) == 'child' ) {
83  return 'child';
84  }
85  $this->procsToStart = 0;
86  }
87 
88  // Check child status
89  $status = false;
90  $deadPid = pcntl_wait( $status );
91 
92  if ( $deadPid > 0 ) {
93  // Respond to child process termination
94  unset( $this->children[$deadPid] );
95  if ( $this->flags & self::RESTART_ON_ERROR ) {
96  if ( pcntl_wifsignaled( $status ) ) {
97  // Restart if the signal was abnormal termination
98  // Don't restart if it was deliberately killed
99  $signal = pcntl_wtermsig( $status );
100  if ( in_array( $signal, self::$restartableSignals ) ) {
101  echo "Worker exited with signal $signal, restarting\n";
102  $this->procsToStart++;
103  }
104  } elseif ( pcntl_wifexited( $status ) ) {
105  // Restart on non-zero exit status
106  $exitStatus = pcntl_wexitstatus( $status );
107  if ( $exitStatus != 0 ) {
108  echo "Worker exited with status $exitStatus, restarting\n";
109  $this->procsToStart++;
110  } else {
111  echo "Worker exited normally\n";
112  }
113  }
114  }
115  // Throttle restarts
116  if ( $this->procsToStart ) {
117  usleep( 500000 );
118  }
119  }
120 
121  // Run signal handlers
122  if ( function_exists( 'pcntl_signal_dispatch' ) ) {
123  pcntl_signal_dispatch();
124  } else {
125  declare( ticks = 1 ) {
126  $status = $status;
127  }
128  }
129  // Respond to TERM signal
130  if ( $this->termReceived ) {
131  foreach ( $this->children as $childPid => $unused ) {
132  posix_kill( $childPid, SIGTERM );
133  }
134  $this->termReceived = false;
135  }
136  } while ( count( $this->children ) );
137  pcntl_signal( SIGTERM, SIG_DFL );
138  return 'done';
139  }
140 
147  public function getChildNumber() {
148  return $this->childNumber;
149  }
150 
151  protected function prepareEnvironment() {
152  global $wgMemc;
153  // Don't share DB, storage, or memcached connections
154  MediaWikiServices::resetChildProcessServices();
160  $wgMemc = null;
161  }
162 
169  protected function forkWorkers( $numProcs ) {
170  $this->prepareEnvironment();
171 
172  // Create the child processes
173  for ( $i = 0; $i < $numProcs; $i++ ) {
174  // Do the fork
175  $pid = pcntl_fork();
176  if ( $pid === -1 || $pid === false ) {
177  echo "Error creating child processes\n";
178  exit( 1 );
179  }
180 
181  if ( !$pid ) {
182  $this->initChild();
183  $this->childNumber = $i;
184  return 'child';
185  } else {
186  // This is the parent process
187  $this->children[$pid] = true;
188  }
189  }
190 
191  return 'parent';
192  }
193 
194  protected function initChild() {
196  $wgMemc = wfGetCache( $wgMainCacheType );
197  $this->children = null;
198  pcntl_signal( SIGTERM, SIG_DFL );
199  }
200 
201  protected function handleTermSignal( $signal ) {
202  $this->termReceived = true;
203  }
204 }
forkWorkers($numProcs)
Fork a number of worker processes.
Apache License January AND DISTRIBUTION Definitions License shall mean the terms and conditions for use
const RESTART_ON_ERROR
Pass this flag to __construct() to cause the class to automatically restart workers that exit with no...
static destroySingletons()
Destroy all singleton() instances.
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 MediaWikiServices
Definition: injection.txt:23
when a variable name is used in a it is silently declared as a new local masking the global
Definition: design.txt:93
static destroySingleton()
Destroy the singleton instance.
__construct($numProcs, $flags=0)
start()
Start the child processes.
wfGetCache($cacheType)
Get a specific cache object.
Class for managing forking command line scripts.
static destroySingletons()
Destroy the singleton instances.
CACHE_MEMCACHED $wgMainCacheType
Definition: memcached.txt:63
getChildNumber()
Get the number of the child currently running.
handleTermSignal($signal)
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
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
static $restartableSignals
this hook is for auditing only RecentChangesLinked and Watchlist RecentChangesLinked and Watchlist e g Watchlist removed from all revisions and log entries to which it was applied This gives extensions a chance to take it off their books as the deletion has already been partly carried out by this point or something similar the user will be unable to create the tag set $status
Definition: hooks.txt:1046
static clear()
Clear all the cached instances.
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 For a description of the see design txt $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 to get request data $wgMemc
Definition: globals.txt:25
design txt This is a brief overview of the new design More thorough and up to date information is available on the documentation wiki at etc Handles the details of getting and saving to the user table of the and dealing with sessions and cookies OutputPage Encapsulates the entire HTML page that will be sent in response to any server request It is used by calling its functions to add in any and then calling but I prefer the flexibility This should also do the output encoding The system allocates a global one in $wgOut Title Represents the title of an and does all the work of translating among various forms such as plain database etc For and for historical it also represents a few features of articles that don t involve their such as access rights See also title txt Article Encapsulates access to the page table of the database The object represents a an and maintains state such as flags
Definition: design.txt:34
static destroySingletons()
Destroy the singleton instances.