2012-12-19 20:10:01 +00:00
|
|
|
<?php
|
|
|
|
|
2013-02-05 00:44:44 +00:00
|
|
|
class Scribunto_LuaDataProvider implements Iterator {
|
2012-12-19 20:10:01 +00:00
|
|
|
protected $engine = null;
|
|
|
|
protected $exports = null;
|
|
|
|
protected $key = 1;
|
|
|
|
|
|
|
|
public function __construct( $engine, $moduleName ) {
|
|
|
|
$this->engine = $engine;
|
|
|
|
$this->key = 1;
|
|
|
|
$module = $engine->fetchModuleFromParser(
|
|
|
|
Title::makeTitle( NS_MODULE, $moduleName )
|
|
|
|
);
|
|
|
|
if ( $module === null ) {
|
|
|
|
throw new Exception( "Failed to load module $moduleName" );
|
|
|
|
}
|
2014-05-23 15:43:22 +00:00
|
|
|
// Calling executeModule with null isn't the best idea, since it brings
|
|
|
|
// the whole export table into PHP and throws away metatables and such,
|
|
|
|
// but for this use case, we don't have anything like that to worry about
|
|
|
|
$this->exports = $engine->executeModule( $module->getInitChunk(), null );
|
2012-12-19 20:10:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function destroy() {
|
|
|
|
$this->engine = null;
|
|
|
|
$this->exports = null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function rewind() {
|
|
|
|
$this->key = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function valid() {
|
|
|
|
return $this->key <= $this->exports['count'];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function key() {
|
|
|
|
return $this->key;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function next() {
|
|
|
|
$this->key++;
|
|
|
|
}
|
|
|
|
|
|
|
|
public function current() {
|
|
|
|
return $this->engine->getInterpreter()->callFunction( $this->exports['provide'], $this->key );
|
|
|
|
}
|
|
|
|
|
|
|
|
public function run( $key ) {
|
|
|
|
list( $ret ) = $this->engine->getInterpreter()->callFunction( $this->exports['run'], $key );
|
|
|
|
return $ret;
|
|
|
|
}
|
|
|
|
}
|