MediaWiki  1.33.0
eval.php
Go to the documentation of this file.
1 <?php
36 
37 $optionsWithArgs = [ 'd' ];
38 
39 require_once __DIR__ . "/commandLine.inc";
40 
41 if ( isset( $options['d'] ) ) {
42  $d = $options['d'];
43  if ( $d > 0 ) {
44  LoggerFactory::registerProvider( new ConsoleSpi );
45  // Some services hold Logger instances in object properties
46  MediaWikiServices::resetGlobalInstance();
47  }
48  if ( $d > 1 ) {
49  wfGetDB( DB_MASTER )->setFlag( DBO_DEBUG );
50  wfGetDB( DB_REPLICA )->setFlag( DBO_DEBUG );
51  }
52 }
53 
54 $__useReadline = function_exists( 'readline_add_history' )
55  && Maintenance::posix_isatty( 0 /*STDIN*/ );
56 
57 if ( $__useReadline ) {
58  $__historyFile = isset( $_ENV['HOME'] ) ?
59  "{$_ENV['HOME']}/.mweval_history" : "$IP/maintenance/.mweval_history";
60  readline_read_history( $__historyFile );
61 }
62 
63 $__e = null; // PHP exception
64 while ( ( $__line = Maintenance::readconsole() ) !== false ) {
65  if ( $__e && !preg_match( '/^(exit|die);?$/', $__line ) ) {
66  // Internal state may be corrupted or fatals may occur later due
67  // to some object not being set. Don't drop out of eval in case
68  // lines were being pasted in (which would then get dumped to the shell).
69  // Instead, just absorb the remaning commands. Let "exit" through per DWIM.
70  echo "Exception was thrown before; please restart eval.php\n";
71  continue;
72  }
73  if ( $__useReadline ) {
74  readline_add_history( $__line );
75  readline_write_history( $__historyFile );
76  }
77  try {
78  $__val = eval( $__line . ";" );
79  } catch ( Exception $__e ) {
80  fwrite( STDERR, "Caught exception " . get_class( $__e ) .
81  ": {$__e->getMessage()}\n" . $__e->getTraceAsString() . "\n" );
82  continue;
83  }
84  if ( wfIsHHVM() || is_null( $__val ) ) {
85  echo "\n";
86  } elseif ( is_string( $__val ) || is_numeric( $__val ) ) {
87  echo "$__val\n";
88  } else {
89  var_dump( $__val );
90  }
91 }
92 
93 print "\n";
Maintenance\readconsole
static readconsole( $prompt='> ')
Prompt the console for input.
Definition: Maintenance.php:1582
$__e
if( $__useReadline) $__e
Definition: eval.php:63
DBO_DEBUG
const DBO_DEBUG
Definition: defines.php:9
php
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
$__useReadline
if(isset( $options['d'])) $__useReadline
Definition: eval.php:54
wfGetDB
wfGetDB( $db, $groups=[], $wiki=false)
Get a Database object.
Definition: GlobalFunctions.php:2636
use
as see the revision history and available at free of to any person obtaining a copy of this software and associated documentation to deal in the Software without including without limitation the rights to use
Definition: MIT-LICENSE.txt:10
DB_REPLICA
const DB_REPLICA
Definition: defines.php:25
DB_MASTER
const DB_MASTER
Definition: defines.php:26
MediaWiki\Logger\ConsoleSpi
Definition: ConsoleSpi.php:4
Maintenance\posix_isatty
static posix_isatty( $fd)
Wrapper for posix_isatty() We default as considering stdin a tty (for nice readline methods) but trea...
Definition: Maintenance.php:1569
$optionsWithArgs
$optionsWithArgs
Definition: eval.php:37
$options
null means default in associative array with keys and values unescaped Should be merged with default with a value of false meaning to suppress the attribute in associative array with keys and values unescaped & $options
Definition: hooks.txt:1985
LoggerFactory
MediaWiki Logger LoggerFactory implements a PSR[0] compatible message logging system Named Psr Log LoggerInterface instances can be obtained from the MediaWiki Logger LoggerFactory::getInstance() static method. MediaWiki\Logger\LoggerFactory expects a class implementing the MediaWiki\Logger\Spi interface to act as a factory for new Psr\Log\LoggerInterface instances. The "Spi" in MediaWiki\Logger\Spi stands for "service provider interface". An SPI is an API intended to be implemented or extended by a third party. This software design pattern is intended to enable framework extension and replaceable components. It is specifically used in the MediaWiki\Logger\LoggerFactory service to allow alternate PSR-3 logging implementations to be easily integrated with MediaWiki. The service provider interface allows the backend logging library to be implemented in multiple ways. The $wgMWLoggerDefaultSpi global provides the classname of the default MediaWiki\Logger\Spi implementation to be loaded at runtime. This can either be the name of a class implementing the MediaWiki\Logger\Spi with a zero argument const ructor or a callable that will return an MediaWiki\Logger\Spi instance. Alternately the MediaWiki\Logger\LoggerFactory MediaWiki Logger LoggerFactory
Definition: logger.txt:5
MediaWikiServices
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
wfIsHHVM
wfIsHHVM()
Check if we are running under HHVM.
Definition: GlobalFunctions.php:1964