MediaWiki  1.27.2
ForkController.php
Go to the documentation of this file.
1 <?php
33  protected $children = [], $childNumber = 0;
34  protected $termReceived = false;
35  protected $flags = 0, $procsToStart = 0;
36 
37  protected static $restartableSignals = [
38  SIGFPE,
39  SIGILL,
40  SIGSEGV,
41  SIGBUS,
42  SIGABRT,
43  SIGSYS,
44  SIGPIPE,
45  SIGXCPU,
46  SIGXFSZ,
47  ];
48 
53  const RESTART_ON_ERROR = 1;
54 
55  public function __construct( $numProcs, $flags = 0 ) {
56  if ( PHP_SAPI != 'cli' ) {
57  throw new MWException( "ForkController cannot be used from the web." );
58  }
59  $this->procsToStart = $numProcs;
60  $this->flags = $flags;
61  }
62 
74  public function start() {
75  // Trap SIGTERM
76  pcntl_signal( SIGTERM, [ $this, 'handleTermSignal' ], false );
77 
78  do {
79  // Start child processes
80  if ( $this->procsToStart ) {
81  if ( $this->forkWorkers( $this->procsToStart ) == 'child' ) {
82  return 'child';
83  }
84  $this->procsToStart = 0;
85  }
86 
87  // Check child status
88  $status = false;
89  $deadPid = pcntl_wait( $status );
90 
91  if ( $deadPid > 0 ) {
92  // Respond to child process termination
93  unset( $this->children[$deadPid] );
94  if ( $this->flags & self::RESTART_ON_ERROR ) {
95  if ( pcntl_wifsignaled( $status ) ) {
96  // Restart if the signal was abnormal termination
97  // Don't restart if it was deliberately killed
98  $signal = pcntl_wtermsig( $status );
99  if ( in_array( $signal, self::$restartableSignals ) ) {
100  echo "Worker exited with signal $signal, restarting\n";
101  $this->procsToStart++;
102  }
103  } elseif ( pcntl_wifexited( $status ) ) {
104  // Restart on non-zero exit status
105  $exitStatus = pcntl_wexitstatus( $status );
106  if ( $exitStatus != 0 ) {
107  echo "Worker exited with status $exitStatus, restarting\n";
108  $this->procsToStart++;
109  } else {
110  echo "Worker exited normally\n";
111  }
112  }
113  }
114  // Throttle restarts
115  if ( $this->procsToStart ) {
116  usleep( 500000 );
117  }
118  }
119 
120  // Run signal handlers
121  if ( function_exists( 'pcntl_signal_dispatch' ) ) {
122  pcntl_signal_dispatch();
123  } else {
124  declare( ticks = 1 ) {
125  $status = $status;
126  }
127  }
128  // Respond to TERM signal
129  if ( $this->termReceived ) {
130  foreach ( $this->children as $childPid => $unused ) {
131  posix_kill( $childPid, SIGTERM );
132  }
133  $this->termReceived = false;
134  }
135  } while ( count( $this->children ) );
136  pcntl_signal( SIGTERM, SIG_DFL );
137  return 'done';
138  }
139 
146  public function getChildNumber() {
147  return $this->childNumber;
148  }
149 
150  protected function prepareEnvironment() {
151  global $wgMemc;
152  // Don't share DB, storage, or memcached connections
153  wfGetLBFactory()->destroyInstance();
159  $wgMemc = null;
160  }
161 
168  protected function forkWorkers( $numProcs ) {
169  $this->prepareEnvironment();
170 
171  // Create the child processes
172  for ( $i = 0; $i < $numProcs; $i++ ) {
173  // Do the fork
174  $pid = pcntl_fork();
175  if ( $pid === -1 || $pid === false ) {
176  echo "Error creating child processes\n";
177  exit( 1 );
178  }
179 
180  if ( !$pid ) {
181  $this->initChild();
182  $this->childNumber = $i;
183  return 'child';
184  } else {
185  // This is the parent process
186  $this->children[$pid] = true;
187  }
188  }
189 
190  return 'parent';
191  }
192 
193  protected function initChild() {
195  $wgMemc = wfGetCache( $wgMainCacheType );
196  $this->children = null;
197  pcntl_signal( SIGTERM, SIG_DFL );
198  }
199 
200  protected function handleTermSignal( $signal ) {
201  $this->termReceived = true;
202  }
203 }
forkWorkers($numProcs)
Fork a number of worker processes.
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.
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
wfGetLBFactory()
Get the load balancer factory object.
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:1004
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.