mediawiki-extensions-Scribunto/engines/LuaSandbox/Engine.php

141 lines
3.5 KiB
PHP
Raw Normal View History

<?php
class LuaSandboxEngine extends ScriptingEngineBase {
public $mSandbox;
public function load() {
if( $this->mLoaded )
return;
if( !class_exists('luasandbox') ) {
throw new MWException( 'luasandbox PHP extension is not installed' );
}
$this->mSandbox = new LuaSandbox;
$this->mSandbox->setMemoryLimit( $this->mOptions['memoryLimit'] );
$this->mSandbox->setCPULimit( $this->mOptions['maxCPU'] );
$this->mSandbox->registerLibrary( 'mw', array( 'import' => array( $this, 'importModule' ) ) );
$this->mLoaded = true;
}
protected function updateOptions() {
if( $this->mLoaded ) {
$this->mSandbox->setMemoryLimit( $this->mOptions['memoryLimit'] );
$this->mSandbox->setCPULimit( $this->mOptions['maxCPU'] );
}
}
protected function getModuleClassName() {
return 'LuaSandboxEngineModule';
}
public function getDefaultOptions() {
return array(
'memoryLimit' => 50 * 1024 * 1024,
'maxCPU' => 7,
);
}
public function getGeSHiLangauge() {
return 'lua';
}
public function getLimitsReport() {
$this->load();
$usage = $this->mSandbox->getMemoryUsage();
if( $usage < 8 * 1024 ) {
$usageStr = $usage . " bytes";
} elseif( $usage < 8 * 1024 * 1024 ) {
$usageStr = round( $usage / 1024, 2 ) . " kilobytes";
} else {
$usageStr = round( $usage / 1024 / 1024, 2 ) . " megabytes";
}
return "Lua scripts memory usage: {$usageStr}\n";
}
function importModule() {
// FIXME: luasandbox segfaults on exceptions
try {
$args = func_get_args();
if( count( $args ) < 1 ) {
// FIXME: LuaSandbox PHP extension should provide proper context
throw new ScriptingException( 'toofewargs', 'common', null, null, array( 'mw.import' ) );
}
$module = $this->getModule( $args[0] );
$module->initialize();
return $module->mContents;
} catch( ScriptingException $e ) {
return null;
}
}
}
class LuaSandboxEngineModule extends ScriptingModuleBase {
protected $mInitialized;
function initialize() {
if( $this->mInitialized )
return;
$this->mEngine->load();
// FIXME: caching?
try {
$this->mBody = $this->mEngine->mSandbox->loadString( $this->mCode );
$output = $this->mBody->call();
} catch( LuaSandboxError $e ) {
throw new ScriptingException( 'error', 'luasandbox', null, null, array( $e->getMessage() ) );
}
if( !$output ) {
throw new ScriptingException( 'noreturn', 'luasandbox' );
}
if( count( $output ) > 2 ) {
throw new ScriptingException( 'toomanyreturns', 'luasandbox' );
}
if( !is_array( $output[0] ) ) {
throw new ScriptingException( 'notarrayreturn', 'luasandbox' );
}
$this->mContents = $output[0];
$this->mFunctions = array();
foreach( $this->mContents as $key => $content ) {
if( $content instanceof LuaSandboxFunction )
$this->mFunctions[] = $key;
}
$this->mInitialized = true;
}
function getFunction( $name ) {
$this->initialize();
if( isset( $this->mContents[$name] ) ) {
return new LuaSandboxEngineFunction( $name, $this->mContents[$name], $this, $this->mEngine );
} else {
return null;
}
}
function getFunctions() {
$this->initialize();
return $this->mFunctions;
}
}
class LuaSandboxEngineFunction extends ScriptingFunctionBase {
public function call( $args, $frame ) {
try {
$result = call_user_func_array( array( $this->mContents, 'call' ), $args );
} catch( LuaSandboxError $e ) {
throw new ScriptingException( 'error', 'luasandbox', null, null, array( $e->getMessage() ) );
}
return implode( '', $result );
}
}