2012-04-13 10:38:12 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
abstract class Scribunto_LuaInterpreter {
|
|
|
|
/**
|
|
|
|
* Load a string. Return an object which can later be passed to callFunction.
|
|
|
|
* If there is a pass error, a Scribunto_LuaError will be thrown.
|
|
|
|
*
|
|
|
|
* @param $text The Lua source code
|
|
|
|
* @param $chunkName The chunk name
|
|
|
|
*/
|
|
|
|
abstract public function loadString( $text, $chunkName );
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Call a Lua function. Return an array of results, with indices starting
|
|
|
|
* at zero. If an error occurs, a Scribunto_LuaError will be thrown.
|
|
|
|
*
|
|
|
|
* @param $func The function object
|
|
|
|
*/
|
|
|
|
abstract public function callFunction( $func /*...*/ );
|
|
|
|
|
2012-12-13 20:50:44 +00:00
|
|
|
/**
|
|
|
|
* Wrap a PHP callable as a Lua function, which can be passed back into
|
|
|
|
* Lua. If an error occurs, a Scribunto_LuaError will be thrown.
|
|
|
|
*
|
|
|
|
* @param $callable The PHP callable
|
|
|
|
* @return a Lua function
|
|
|
|
*/
|
|
|
|
abstract public function wrapPhpFunction( $callable );
|
|
|
|
|
2012-12-24 14:45:16 +00:00
|
|
|
/**
|
|
|
|
* Test whether an object is a Lua function.
|
|
|
|
*
|
|
|
|
* @param $object
|
|
|
|
* @return boolean
|
|
|
|
*/
|
|
|
|
abstract public function isLuaFunction( $object );
|
|
|
|
|
2012-04-13 10:38:12 +00:00
|
|
|
/**
|
|
|
|
* Register a library of functions.
|
|
|
|
*
|
2012-06-15 23:34:35 +00:00
|
|
|
* @param $name string The global variable name to be created or added to.
|
|
|
|
* @param $functions array An associative array mapping the function name to the
|
2012-04-13 10:38:12 +00:00
|
|
|
* callback. The callback may throw a Scribunto_LuaError, which will be
|
2014-07-07 18:46:59 +00:00
|
|
|
* caught and raised in the Lua code as a Lua error, catchable with
|
|
|
|
* pcall().
|
2012-04-13 10:38:12 +00:00
|
|
|
*/
|
|
|
|
abstract public function registerLibrary( $name, $functions );
|
2013-03-06 23:28:24 +00:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Pause CPU usage and limits
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
abstract public function pauseUsageTimer();
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Unpause CPU usage and limits
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
abstract public function unpauseUsageTimer();
|
2012-04-13 10:38:12 +00:00
|
|
|
}
|
|
|
|
|
2012-04-19 07:40:56 +00:00
|
|
|
class Scribunto_LuaInterpreterNotFoundError extends MWException {}
|