eval.php 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. <?php
  2. /**
  3. * This script lets a command-line user start up the wiki engine and then poke
  4. * about by issuing PHP commands directly.
  5. *
  6. * Unlike eg Python, you need to use a 'return' statement explicitly for the
  7. * interactive shell to print out the value of the expression. Multiple lines
  8. * are evaluated separately, so blocks need to be input without a line break.
  9. * Fatal errors such as use of undeclared functions can kill the shell.
  10. *
  11. * To get decent line editing behavior, you should compile PHP with support
  12. * for GNU readline (pass --with-readline to configure).
  13. *
  14. * This program is free software; you can redistribute it and/or modify
  15. * it under the terms of the GNU General Public License as published by
  16. * the Free Software Foundation; either version 2 of the License, or
  17. * (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License along
  25. * with this program; if not, write to the Free Software Foundation, Inc.,
  26. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  27. * http://www.gnu.org/copyleft/gpl.html
  28. *
  29. * @file
  30. * @ingroup Maintenance
  31. */
  32. $optionsWithArgs = [ 'd' ];
  33. /** */
  34. require_once __DIR__ . "/commandLine.inc";
  35. if ( isset( $options['d'] ) ) {
  36. $d = $options['d'];
  37. if ( $d > 0 ) {
  38. $wgDebugLogFile = '/dev/stdout';
  39. }
  40. if ( $d > 1 ) {
  41. $lb = wfGetLB();
  42. $serverCount = $lb->getServerCount();
  43. for ( $i = 0; $i < $serverCount; $i++ ) {
  44. $server = $lb->getServerInfo( $i );
  45. $server['flags'] |= DBO_DEBUG;
  46. $lb->setServerInfo( $i, $server );
  47. }
  48. }
  49. }
  50. $__useReadline = function_exists( 'readline_add_history' )
  51. && Maintenance::posix_isatty( 0 /*STDIN*/ );
  52. if ( $__useReadline ) {
  53. $__historyFile = isset( $_ENV['HOME'] ) ?
  54. "{$_ENV['HOME']}/.mweval_history" : "$IP/maintenance/.mweval_history";
  55. readline_read_history( $__historyFile );
  56. }
  57. $__e = null; // PHP exception
  58. while ( ( $__line = Maintenance::readconsole() ) !== false ) {
  59. if ( $__e && !preg_match( '/^(exit|die);?$/', $__line ) ) {
  60. // Internal state may be corrupted or fatals may occur later due
  61. // to some object not being set. Don't drop out of eval in case
  62. // lines were being pasted in (which would then get dumped to the shell).
  63. // Instead, just absorb the remaning commands. Let "exit" through per DWIM.
  64. echo "Exception was thrown before; please restart eval.php\n";
  65. continue;
  66. }
  67. if ( $__useReadline ) {
  68. readline_add_history( $__line );
  69. readline_write_history( $__historyFile );
  70. }
  71. try {
  72. $__val = eval( $__line . ";" );
  73. } catch ( Exception $__e ) {
  74. echo "Caught exception " . get_class( $__e ) .
  75. ": {$__e->getMessage()}\n" . $__e->getTraceAsString() . "\n";
  76. continue;
  77. }
  78. if ( wfIsHHVM() || is_null( $__val ) ) {
  79. echo "\n";
  80. } elseif ( is_string( $__val ) || is_numeric( $__val ) ) {
  81. echo "$__val\n";
  82. } else {
  83. var_dump( $__val );
  84. }
  85. }
  86. print "\n";