使用PHP迭代器


Using PHP iterators

朋友。我知道,在这些迭代器上已经有很多问题了。我读过一些东西,我不是初学者。。。但我有点纠结于此。请帮助我理解如何在实践中使用迭代器。

假设,我有一个ORM对象,它可以从数据库中选择实例。一个实例包含字段,可以像往常一样插入、导出等。我想遍历一个类型的所有对象,但由于可能有很多对象,我更喜欢通过"页面"来选择它们。我的代码:

$limit = 100;
$offset = 0;
do
{
  $recs = $orm->select($filter, $sorting, $limit , $offset);
  $offset += $limit;
  foreach ($recs as $rec)
  {
    // doing something with record
  }
}
while (count($recs) == $limit);

我觉得迭代器范式适合这里,但在这种情况下,什么接口更适合实现,或者可能是一些SPL基类?

更新理想情况下,上面使用迭代器的代码可能看起来像:

$iterator = new ORMPagedIterator($ormobject, $filter, $sorting);
foreach ($iterator as $rec)
{
  // do something with record
}

例如,所有逐页的行为都在迭代器内部。

我会使用一个迭代程序,它在另一个迭代器上迭代,并在到达上一个迭代的末尾时请求下一个迭代。。。好吧,听起来比实际情况更复杂:

<?php
$limit = 100;
$offset = 0;
$iter = new NextIteratorCallbackIterator(function($i) use ($orm, $limit, &$offset) {
    printf("selecting next bunch at offset %d'n", $offset);
    $recs = $orm->select($filter, $sorting, $limit , $offset);
    $offset += $limit;
    if ($recs) {
        return new ArrayIterator($recs);
    }
    return null; // end reached
});
foreach ($iter as $rec) {
    // do something with record
}
?>

下面是NextIteratorCallbackIterator:的示例实现

<?php
class NextIteratorCallbackIterator implements Iterator {
    private $_iterator = null;
    private $_count = 0;
    private $_callback;
    public function __construct($callback) {
        if (!is_callable($callback)) {
            throw new Exception(__CLASS__.": callback must be callable");
        }
        $this->_callback = $callback;
    }
    public function current() {
        return $this->_iterator !== null ? $this->_iterator->current() : null;
    }
    public function key() {
        return $this->_iterator !== null ? $this->_iterator->key() : null;
    }
    public function next() {
        $tryNext = ($this->_iterator === null);
        do {
            if ($tryNext) {
                $tryNext = false;
                $this->_iterator = call_user_func($this->_callback, ++$this->_count);
            }
            elseif ($this->_iterator !== null) {
                $this->_iterator->next();
                if ($this->_iterator->valid() == false) {
                    $tryNext = true;
                }
            }
        } while ($tryNext);
    }
    public function rewind() {
        $this->_iterator = call_user_func($this->_callback, $this->_count = 0);
    }
    public function valid () {
        return $this->_iterator !== null;
    }
}
?>

更新:您的ORMPagedTerator可以使用NextIteratorCallbackIterator实现,就像一样简单

<?php
class ORMPagedIterator implements IteratorAggregate {
    function __construct($orm, $filter, $sorting, $chunksize = 100) {
        $this->orm = $orm;
        $this->filter = $filter;
        $this->sorting = $sorting;
        $this->chunksize = $chunksize;
    }
    function iteratorNext($i) {
        $offset = $this->chunksize * $i;
        $recs = $this->orm->select($this->filter, $this->sorting, $this->chunksize, $offset);
        if ($recs) {
            return new ArrayIterator($recs);
        }
        return null; // end reached
    }
    function getIterator() {
        return new NextIteratorCallbackIterator(array($this,"iteratorNext"));
    }
}
?>