《PHP设计模式介绍》第八章 迭代器模式

类中的面向对象编程封装应用逻辑。类,就是实例化的对象,每个单独的对象都有一个特定的身份和状态。单独的对象是一种组织代码的有用方法,但通常你会处理一组对象或者集合。

属性来自 SQL 查询的一组数据就是一个集合,就像本书前面章节介绍的 Monopoly 游戏示例的对象列表。

集合不一定是均一的。图形用户界面框架中的 Window 对象可以收集任意数量的控制对象 - Menu、Slider 和 Button。并且,集合的实现可以有多种方式:PHP 数字是一个集合,但也是一个散列表,一个链接列表,一个堆栈以及队列。

问题

如何操纵任意的对象集合?

解决方案

使用迭代器模式来提供对集合内容的统一存取。

你可能没有意识到这一点,但你每天都在使用迭代器模式 - 它潜藏在 PHP 的数组类型和各种数组操作函数中。(其实,给你一些固有类的数组的组合和一群用这些固有类工作的可变函数,你将不得不使用这些数组来处理对象集合。这是在 PHP 中的本地数组迭代:

  1. $test = array(‘one’, ‘two’, ‘three’);
  2. $output = ‘’; reset($test);
  3. do {
  4. $output .= current($test);
  5. } while (next($test));
  6. echo $output; // produces ‘onetwothree’
复制代码

reset() 函数将迭代重新转到数组的开始;current() 返回当前元素的值;next() 则前进至数组中的下一个元素并返回新的 current() 值。当你超出数组的最后一个元素时,next() 返回 false。使用这些迭代方法,PHP 数组的内部实现就与你不相关了。迭代器结合了封装和多态的面向对象程序设计原理。使用迭代器,你可以对集合中的对象进行操作,而无需专门了解集合如何显现或者集合包含什么(对象的种类)。迭代器提供了不同固定迭代实现的统一接口,它完全包含了如何操纵特定集合的详细信息,包括显示哪些项(过滤)及其显示顺序(排序)。

让我们创建一个简单的对象,在数组中对它进行操作。(尽管该示例在 PHP5 环境下,但迭代器并不特定于 PHP5。虽然添加了较多的引用操作符,本章节中的大多数示例在 PHP4 下也能够运行)。对象 Lendable 表示诸如电影、相册等媒体,它作为 web 站点的一部分或服务,允许用户浏览或将他们的媒体集合分享给其他用户。(对 于该示例,请无需考虑其他方面。)让我们开始下面对 Lendable 基础设计的测试。

  1. // PHP5
  2. class LendableTestCase extends UnitTestCase {
  3. function TestCheckout() {
  4. $item = new Lendable;
  5. $this->assertFalse($item->borrower);
  6. $item->checkout(‘John’);
  7. $this->assertEqual(‘borrowed’, $item->status);
  8. $this->assertEqual(‘John’, $item->borrower);
  9. }
  10. function TestCheckin() {
  11. $item = new Lendable;
  12. $item->checkout(‘John’);
  13. $item->checkin();
  14. $this->assertEqual(‘library’, $item->status);
  15. $this->assertFalse($item->borrower);
  16. }
  17. }
复制代码

要实现这一最初测试的需求,我们来创建一个带有若干公共属性和一些方法的类,来触发这些属性的值:

  1. class Lendable {
  2. public $status = ‘library’;
  3. public $borrower = ‘’;
  4. public function checkout($borrower) {
  5. $this->status = ‘borrowed’;
  6. $this->borrower = $borrower;
  7. }
  8. public function checkin() {
  9. $this->status = ‘library’;
  10. $this->borrower = ‘’;
  11. }
  12. }
复制代码

Lendable 是一个好的,普通的开端。让我们将它扩展到诸如 DVD 或 CD 的磁道项。媒体扩展了 Lendable,并且磁道详细记录了特定媒体的详细信息,包括项目的名称,发布的年份以及项本身的类型:

  1. class Media extends Lendable {
  2. public $name; public $type; public $year;
  3. public function __construct($name, $year, $type=’dvd’ ) {
  4. $this->name = $name;
  5. $this->type = $type;
  6. $this->year = (int)$year;
  7. }
  8. }
复制代码

要使事情更加简单,媒体有三个公共的实例变量,Media::name,Media::year 和Media::type。构造函数采用了两个参数,将第一个存储在 $name 中,第二个存储在 $year 中。构造函数还允许可选的第三个参数来指定类型(缺省为dvd)。

给定单独的对象来操作,你现在可以创建一个容器来包含他们:Library。类似于常用的库,Library 应该能够添加,删除和计算集合中的项。甚至,Library 还应该允许访问集合(本章中的样本代码部分可看到示例)中的单一的项(对象)。

我们开始构建 Library 的测试用例。

  1. class LibraryTestCase extends UnitTestCase {
  2. function TestCount() {
  3. $lib = new Library;
  4. $this->assertEqual(0, $lib->count());
  5. }
  6. }
复制代码

它是满足这一测试的简单类:

  1. class Library {
  2. function count() {
  3. return 0;
  4. }
  5. }
复制代码

继续将一些有趣的功能添加到测试中:

  1. class LibraryTestCase extends UnitTestCase {
  2. function TestCount() { /* ... */ }
  3. function TestAdd() {
  4. $lib = new Library;
  5. $lib->add(‘one’);
  6. $this->assertEqual(1, $lib->count());
  7. }
  8. }
复制代码

实现 add() 的简单方法是建立在 PHP 灵活数组函数的基础上:你可以将项添加到实例变量并使用 count() 来返回集合众项的数量。

  1. class Library {
  2. protected $collection = array();
  3. function count() {
  4. return count($this->collection);
  5. }
  6. function add($item) {
  7. $this->collection[] = $item;
  8. }
  9. }
复制代码

Library 现在是一个集合,但它没有提供检索或操纵单一数组成员的方法。

我们回到本章的重点,迭代器设计模式的实现。下列 UML 类图显示了 GoF 迭代器模式与 Media 和 Library 类结合使用巩固示例的方法。

  • 你的集合类必须提供 Factory(参见第 3 章)来创建迭代器的实例。
  • 迭代器类定义 first() 转到集合开始的接口,


next() 移到序列中的下一个项作为你的循环,currentItem() 从集合检索当前的项作为你的循环, isDone() 用于指出你在整个集合中循环结束的时间。

在“示例代码”部分,LibraryGofIterator 类是一个直接实现 GoF 迭代器设计模式的示例。

01.jpg

2009-4-21 16:58 上传
下载附件 (38.48 KB)
 



样本代码

在 Library 内实现 GoF 迭代器模式的第一步是为新的具体迭代器写一个新的测试用例。因为每一种测试方法都将操纵包含 Media 实例的 Library,你可以清空 UnitTestCase::setUp() 方法,从而在每种测试的已知状态下将变量填充到 Library 中。

首先,将 Library::getIterator() 方法作为LibraryGofIterator 类的 一个 Factory 实例。

  1. class IteratorTestCase extends UnitTestCase {
  2. protected $lib;
  3. function setup() {
  4. $this->lib = new Library;
  5. $this->lib->add(new Media(‘name1’, 2000));
  6. $this->lib->add(new Media(‘name2’, 2002));
  7. $this->lib->add(new Media(‘name3’, 2001));
  8. }
  9. function TestGetGofIterator() {
  10. $this->assertIsA($it = $this->lib->getIterator()
  11. ,’LibraryGofIterator’);
  12. }
  13. }
复制代码

实现:

  1. class Library {
  2. // ...
  3. function getIterator() {
  4. return new LibraryGofIterator($this->collection);
  5. }
  6. }
复制代码

getIterator() 方法将 Library 的 $collection 传递给新的具体迭代器结构。这一方法有两个重要的实现:每个迭代器都是独立的,因此可以同时操作多个迭代器。另外,迭代器在数组上的操作是当迭代器被请求时才执行的。如果之后将另一个项添加到集合中,你必须请求另一个迭代器来显示它(至少是在该实现中)。让我们通过将声明添加到 TestGetGofIterator() 方法以匹配迭代器设计模式,继续对测试进行加强。

如果你已经对整个集合进行遍历,则 isDone() 方法只应该为 true。如果 iterator 刚刚创建,则 isDone() 显然返回 false,从而指出集合可以遍历。

  1. class IteratorTestCase extends UnitTestCase {
  2. function setup() { /* ... */ }
  3. function TestGetGofIterator() {
  4. $this->assertIsA($it = $this->lib->getIterator()
  5. ,’LibraryGofIterator’);
  6. $this->assertFalse($it->isdone());
  7. }
  8. }
复制代码

与 TDD 一样,尽可能实现最简单的代码来满足你的测试用例:

  1. class LibraryGofIterator {
  2. function isDone() {
  3. return false;
  4. }
  5. }
复制代码

因此,在第一个迭代器间,应该发生什么呢? currentItem() 应该返回第一个 Media 对象,这个对象是在 IteratorTestCase::setUp() 方法中添加的,isDone() 应该继续为 false,因为另两个项仍然等待遍历。

  1. class IteratorTestCase extends UnitTestCase {
  2. function setup() { /* ... */ }
  3. function TestGetGofIterator() {
  4. $this->assertIsA($it = $this->lib->getIterator()
  5. ,’LibraryGofIterator’);
  6. $this->assertFalse($it->isdone());
  7. $this->assertIsA($first = $it->currentItem(), ‘Media’);
  8. $this->assertEqual(‘name1’, $first->name);
  9. $this->assertFalse($it->isdone());
  10. }
  11. }
复制代码

LibraryGofIterator 接收了构造函数中的 $collection, 这一点非常重要(参见上面的 Library 最小化实现)并从 currentItem() 方法返回 current() 项。

  1. class LibraryGofIterator {
  2. protected $collection;
  3. function __construct($collection) {
  4. $this->collection = $collection;
  5. }
  6. function currentItem() {
  7. return current($this->collection);
  8. }
  9. function isDone() {
  10. return false;
  11. }
  12. }
复制代码

在下一个迭代会出现什么? next() 方法应该更改currentItem() 方法返回的项。下面的测试捕获了所期望的行为:

  1. class IteratorTestCase extends UnitTestCase {
  2. function setup() { /* ... */ }
  3. function TestGetGofIterator() {
  4. $this->assertIsA($it = $this->lib->getIterator(), ‘LibraryGofIterator’);
  5. $this->assertFalse($it->isdone());
  6. $this->assertIsA($first = $it->currentItem(), ‘Media’);
  7. $this->assertEqual(‘name1’, $first->name);
  8. $this->assertFalse($it->isdone());
  9. $this->assertTrue($it->next());
  10. $this->assertIsA($second = $it->currentItem(), ‘Media’);
  11. $this->assertEqual(‘name2’, $second->name);
  12. $this->assertFalse($it->isdone());
  13. }
  14. }
复制代码

重新建立在 PHP 的数组函数之上,在数组上使用 next():

  1. class LibraryGofIterator {
  2. protected $collection;
  3. function __construct($collection) {
  4. $this->collection = $collection;
  5. }
  6. function currentItem() {
  7. return current($this->collection);
  8. }
  9. function next() {
  10. return next($this->collection);
  11. }
  12. function isDone() {
  13. return false;
  14. }
  15. }
复制代码

除了 isDone() 方法必须返回 之外,第三个迭代看起来很像其他的迭代。你还希望 next() 能够成功移到下一个迭代:

  1. class IteratorTestCase extends UnitTestCase {
  2. function setup() { /* ... */ }
  3. function TestGetGofIterator() {
  4. $this->assertIsA($it = $this->lib->getIterator(), ‘LibraryGofIterator’);
  5. $this->assertFalse($it->isdone());
  6. $this->assertIsA($first = $it->currentItem(), ‘Media’);
  7. $this->assertEqual(‘name1’, $first->name);
  8. $this->assertFalse($it->isdone());
  9. $this->assertTrue($it->next());
  10. $this->assertIsA($second = $it->currentItem(), ‘Media’);
  11. $this->assertEqual(‘name2’, $second->name);
  12. $this->assertFalse($it->isdone());
  13. $this->assertTrue($it->next());
  14. $this->assertIsA($third = $it->currentItem(), ‘Media’);
  15. $this->assertEqual(‘name3’, $third->name);
  16. $this->assertFalse($it->next());
  17. $this->assertTrue($it->isdone());
  18. }
  19. }
复制代码

对 next() 和 isDone() 方法稍加修改,所有的测试都通过了。代码如下:

  1. class LibraryGofIterator {
  2. protected $collection;
  3. function __construct($collection) {
  4. $this->collection = $collection;
  5. }
  6. function first() {
  7. reset($this->collection);
  8. }
  9. function next() {
  10. return (false !== next($this->collection));
  11. }
  12. function isDone() {
  13. return (false === current($this->collection));
  14. }
  15. function currentItem() {
  16. return current($this->collection);
  17. }
  18. }
复制代码

迭代器测试用例只存在一个问题:它没有反映迭代器的典型用法。是的,它测试了迭代器模式的所有功能,但应用程序需要采用更简单的方法来使用迭代器。因此,下一步是使用更贴实际的代码来编写测试。

  1. class IteratorTestCase extends UnitTestCase {
  2. protected $lib;
  3. function setup() { /* ... */ }
  4. function TestGetGofIterator() { /* ... */ }
  5. function TestGofIteratorUsage() {
  6. $output = ‘’;
  7. for ($it=$this->lib->getIterator(); !$it->isDone(); $it->next()){
  8. $output .= $it->currentItem()->name;
  9. }
  10. $this->assertEqual(‘name1name2name3’, $output);
  11. }
  12. }
复制代码

目前,迭代器的实现复制了某个数组(集合),并使用 PHP 的内部指针来跟踪迭代。你还可以通过自己跟踪集合索引来实现迭代器。这需要 Library 中的一种新的 accessor 方法来通过关键字访问对象。

  1. class Library {
  2. // ...
  3. function get($key) {
  4. if (array_key_exists($key, $this->collection)) {
  5. return $this->collection[$key];
  6. }
  7. }
  8. }
复制代码

同样,在 Library::getIterator() 方法中,你可能将 $this(library 本身)传递给构造程序,而不是将 $this 传递给集合(数组包含Media 集合)。外部的迭代器然后只是内部地跟踪指针以了解它当前引用的是哪一个 Library 集合元素,并将使用构造行数中从引用到 Library 的传递来检索当前的对象。

  1. class LibraryGofExternalIterator {
  2. protected $key = 0;
  3. protected $collection;
  4. function __construct($collection) {
  5. $this->collection = $collection;
  6. }
  7. function first() {
  8. $this->key=0;
  9. }
  10. function next() {
  11. return (++$this->key < $this->collection->count());
  12. }
  13. function isDone() {
  14. return ($this->key >= $this->collection->count());
  15. }
  16. function currentItem() {
  17. return $this->collection->get($this->key);
  18. }
  19. }
复制代码

这一实现假设你的集合数组从 0 开始建立索引,并且是完全连续的。

不同的迭代器 API

虽然前面的代码是 GoF 所述迭代器模式的完整实现,你还可能会发现四种方法的 API 有一点臃肿。如果是,你可以将 collapse next(), currentItem(), 和 isDone() 都并入 next() 中,用来从集合中返回本项或下一项,或者如果整个集合被遍历过了,则返回 false。这是一个测试不同 API 的代码:

  1. class IteratorTestCase extends UnitTestCase {
  2. // ...
  3. function TestMediaIteratorUsage() {
  4. $this->assertIsA(
  5. $it = $this->lib->getIterator(‘media’)
  6. ,’LibraryIterator’);
  7. $output = ‘’;
  8. while ($item = $it->next()) {
  9. $output .= $item->name;
  10. }
  11. $this->assertEqual(‘name1name2name3’, $output);
  12. }
  13. }
复制代码

在上述代码中,注意简化的循环控制结构。 next() 返回对象或者false,允许你在 while 循环条件中执行分配。下面的一些示例检验使用较小接口的不同迭代器模式。为了方便,将 Library::getIterator() 方法更改为参数化的 Factory,以便你可以从单一方法中获取四种的方法迭代器或两种方法的迭代器(next() 和 reset())。

  1. class Library {
  2. // ...
  3. function getIterator($type=false) {
  4. switch (strtolower($type)) {
  5. case ‘media’:
  6. $iterator_class = ‘LibraryIterator’;
  7. break;
  8. default:
  9. $iterator_class = ‘LibraryGofIterator’;
  10. }
  11. return new $iterator_class($this->collection);
  12. }
  13. }
复制代码

这里面的 Library::getIterator() 现在接受一个参数以选择返回什么样的迭代器。缺省为 LibraryGofIterator(因此现有的测试仍然能够通过)。将字符串媒体传递给所创建的方法,并返回 LibraryIterator。这是一些实现 LibraryIterator 的代码:

  1. class LibraryIterator {
  2. protected $collection;
  3. function __construct($collection) {
  4. $this->collection = $collection;
  5. }
  6. function next() {
  7. return next($this->collection);
  8. }
  9. }
复制代码

请注意调试结果的红色标记!什么导致发生错误“Equal expectation fails at character 4 with name1name2name3 and name2name3”?不知何故,跳过了第一次迭代 - 这是 bug。要修订该错误,对于 next() 方法的第一次调用,返回 current()。

  1. class LibraryIterator {
  2. protected $collection;
  3. protected $first=true;
  4. function __construct($collection) {
  5. $this->collection = $collection;
  6. }
  7. function next() {
  8. if ($this->first) {
  9. $this->first = false;
  10. return current($this->collection);
  11. }
  12. return next($this->collection);
  13. }
  14. }
复制代码

Presto! 绿色条和改进的 while 循环迭代器。

过滤迭代器

利用迭代器,你不仅仅可以显示集合中的每一项。你还可以选择显示的项。修改 Library::getIterator() 来使用其它两种迭代器类型。

  1. class Library {
  2. // ...
  3. function getIterator($type=false) {
  4. switch (strtolower($type)) {
  5. case ‘media’:
  6. $iterator_class = ‘LibraryIterator’;
  7. break;
  8. case ‘available’:
  9. $iterator_class = ‘LibraryAvailableIterator’;
  10. break;
  11. case ‘released’:
  12. $iterator_class = ‘LibraryReleasedIterator’;
  13. break;
  14. default:
  15. $iterator_class = ‘LibraryGofIterator’;
  16. }
  17. return new $iterator_class($this->collection);
  18. }
  19. }
复制代码

类 LibraryAvailableIterator 仅可以迭代状态为“library”的项”(重新调用 checkOut() 方法,将状态更改为“borrowed”)。

  1. class IteratorTestCase extends UnitTestCase {
  2. // ...
  3. function TestAvailableIteratorUsage() {
  4. $this->lib->add($dvd = new Media(‘test’, 1999));
  5. $this->lib->add(new Media(‘name4’, 1999));
  6. $this->assertIsA(
  7. $it = $this->lib->getIterator(‘available’)
  8. ,’LibraryAvailableIterator’);
  9. $output = ‘’;
  10. while ($item = $it->next()) {
  11. $output .= $item->name;
  12. }
  13. $this->assertEqual(‘name1name2name3testname4’, $output);
  14. $dvd->checkOut(‘Jason’);
  15. $it = $this->lib->getIterator(‘available’);
  16. $output = ‘’;
  17. while ($item = $it->next()) {
  18. $output .= $item->name;
  19. }
  20. $this->assertEqual(‘name1name2name3name4’, $output);
  21. }
  22. }
复制代码

该测试创建一个新的介质实例,并将其存储在变量 $dvd 中。突出显示第一个 assertEqual() 声明验证利用 LibraryAvailableIterator 进行迭代时,存在一个新的项。接下来,测试使用 checkOut() 方法,并验证新的项已丢失,不显示。实现过滤得代码非常类似于 LibraryIterator::next(),差别在于在返回项之前执行过滤。如果当前项与过滤条件不匹配,则代码返回 $this->next()。

  1. class LibraryAvailableIterator {
  2. protected $collection = array();
  3. protected $first=true;
  4. function __construct($collection) {
  5. $this->collection = $collection;
  6. }
  7. function next() {
  8. if ($this->first) {
  9. $this->first = false;
  10. $ret = current($this->collection);
  11. } else {
  12. $ret = next($this->collection);
  13. }
  14. if ($ret && ‘library’ != $ret->status) {
  15. return $this->next();
  16. }
  17. return $ret;
  18. }
  19. }
复制代码

排序迭代器

迭代器不仅可以显示全部或部分集合。而且,还可以按特定顺序显示集合。下面,创建一个按集合众介质的发布日期进行排序的迭代器。为了进行测试,请添加某些日期在 setUp() 方法中添加的项之后的介质实例。如果迭代器运行,则这些日期较后的项应该位于迭代操作的最前面。

  1. class IteratorTestCase extends UnitTestCase {
  2. // ...
  3. function TestReleasedIteratorUsage() {
  4. $this->lib->add(new Media(‘second’, 1999));
  5. $this->lib->add(new Media(‘first’, 1989));
  6. $this->assertIsA(
  7. $it = $this->lib->getIterator(‘released’)
  8. ,’LibraryReleasedIterator’);
  9. $output = array();
  10. while ($item = $it->next()) {
  11. $output[] = $item->name .’-’. $item->year;
  12. }
  13. $this->assertEqual(
  14. ‘first-1989 second-1999 name1-2000 name3-2001 name2-2002’
  15. ,implode(‘ ‘,$output));
  16. }
  17. }
复制代码

该测试使用的项在每个迭代中略有不同:并不仅仅是在字符串值后添加 $name,而是,字符串同时具有 $name 和 $year 属性,这些属性随后将被添加到 $output 数组。LibraryReleasedIterator 的实现与 LibraryIterator 非常类似,除了 constuctor 中的一行语句:

  1. class LibraryReleasedIterator extends LibraryIterator {
  2. function __construct($collection) {
  3. usort($collection, create_function(‘$a,$b’,’ return ($a->year - $b->year);’));
  4. $this->collection = $collection;
  5. }
  6. }
复制代码

用粗体表示的这一行将 $collection 数组排在迭代之前。你可以通过简单地继承 LibraryIterator 类,来避免复制该类的其它所有代码。可以使用外部迭代器来实现相同的排序迭代吗?是的,但是你必须注意完成它的诀窍。

  1. class LibraryReleasedExternalIterator {
  2. protected $collection;
  3. protected $sorted_keys;
  4. protected $key=-1;
  5. function __construct($collection) {
  6. $this->collection = $collection;
  7. $sort_funct = create_function(
  8. ‘$a,$b,$c=false’,
  9. ‘static $collection;
  10. if ($c) {
  11. $collection = $c;
  12. return;
  13. }
  14. return ($collection->get($a)->year -
  15. $collection->get($b)->year);’);
  16. $sort_funct(null,null,$this->collection);
  17. $this->sorted_keys = $this->collection->keys();
  18. usort($this->sorted_keys, $sort_funct);
  19. }
  20. function next() {
  21. if (++$this->key >= $this->collection->count()) {
  22. return false;
  23. } else {
  24. return $this->collection->get($this->sorted_keys[$this->key]);
  25. }
  26. }
  27. }
复制代码

其中,关键是创建用于排序的实用程序函数。排序函数必须能够访问集合,以便可以获取对照成员。然而,因为 gener- ated 函数在 usort() 中使用,没有将集合作为其它参数传递的选项。相反,你可以利用上述代码块中显示的诀窍,在利用 usort() 调用函数之前,将引用存储在函数中内部的集合中。排序的项是集合的关键字列表。当 usort() 完成时,关键字会按照集合中每个对象的 year 属性的顺序进行排序。在 next() 方法中,可以通过 get() 方法访问集合中的对象,而不是间接通过 $sorted_keys 映射。如果重新调用外部版本的 GoF 风格的迭代器,则不连续的数组或关键字中的字符串可能会有问题。可以使用针对 sim- ple 外部迭代器的相同诀窍,来减少关键字顺序不连贯的问题。

SPL 迭代器

《迭代器设计模式和 PHP》中必须论述“标准 PHP 库”(SPL)迭代器。虽然,使用 while 循环结构可以非常紧凑,并且也很有用,但是 PHP 代码或许更适合数组迭代的 foreach 结构。直接在 foreach 循环中使用集合合适吗?这其实就是 SPL 迭代器的目标。(尽管本章整篇都是写 PHP5,下列 SPL 代码只能在 PHP5 中运行,并且仅当在 PHP5 编译中将 SPL 启用。)

Fuecks 写过一篇文章,详细地介绍了 SPL 和 SPL 迭代器;请参阅。使用 SPL 是一种完全不同的实现迭代的方法,因此首先介绍一个新单元测试例子和一个新的类ForeachableLibrary。

  1. class SplIteratorTestCase extends UnitTestCase {
  2. protected $lib;
  3. function setup() {
  4. $this->lib = new ForeachableLibrary;
  5. $this->lib->add(new Media(‘name1’, 2000));
  6. $this->lib->add(new Media(‘name2’, 2002));
  7. $this->lib->add(new Media(‘name3’, 2001));
  8. }
  9. function TestForeach() {
  10. $output = ‘’;
  11. foreach($this->lib as $item) {
  12. $output .= $item->name;
  13. }
  14. $this->assertEqual(‘name1name2name3’, $output);
  15. }
  16. }
复制代码

ForeachableLibrary 是实现 SPL 迭代器接口的集合。你必须执行 5 个函数来创建 SPL 迭代器:current()、next()、key()、valid() 和 rewind()。 key() 返回集合的当前索引。 rewind() 类似于 reset():在集合启动时重新启动迭代。

  1. class ForeachableLibrary
  2. extends Library implements Iterator {
  3. protected $valid;
  4. function current() {
  5. return current($this->collection);
  6. }
  7. function next() {
  8. $this->valid = (false !== next($this->collection));
  9. }
  10. function key() {
  11. return key($this->collection);
  12. }
  13. function valid() {
  14. return $this->valid;
  15. }
  16. function rewind() {
  17. $this->valid = (false !== reset($this->collection));
  18. }
  19. }
复制代码

这里,该代码仅仅实现了处理 $collection 属性的必需的函数。(如果你没有实现所有 5 个函数,并且将实现迭代器添加到类 definition,则 PHP 将出现致命错误。)测试尚不成熟,因此,什么都有可能发生。存在一个问题:事实受限于一种迭代类型 - 排序,或者 fil- tering 不可用。可以采取措施来调整这种情况?是的!应用从策略模式中学到的知识(请参阅第 7 章),将 SPL 迭代器的 5 个函数作为另一个对象的示例。这是关于 PolymorphicForeachableLibrary 的测试。

  1. class PolySplIteratorTestCase extends UnitTestCase {
  2. protected $lib;
  3. function setup() {
  4. $this->lib = new PolymorphicForeachableLibrary;
  5. $this->lib->add(new Media(‘name1’, 2000));
  6. $this->lib->add(new Media(‘name2’, 2002));
  7. $this->lib->add(new Media(‘name3’, 2001));
  8. }
  9. function TestForeach() {
  10. $output = ‘’;
  11. foreach($this->lib as $item) {
  12. $output .= $item->name;
  13. }
  14. $this->assertEqual(‘name1name2name3’, $output);
  15. }
  16. }
复制代码

这种情况与 SplIteratorTestCase 测试的唯一差别在于 $this->lib 属性类是在 setUp() 方法中创建的。这意味着:这两个类的运行方式必须一致。PolymorphicForeachableLibrary:class PolymorphicForeachableLibrary扩展库

  1. implements Iterator {
  2. protected $iterator;
  3. function current() {
  4. return $this->iterator->current();
  5. }
  6. function next() {
  7. return $this->iterator->next();
  8. }
  9. function key() {
  10. return $this->iterator->key();
  11. }
  12. function valid() {
  13. return $this->iterator->valid();
  14. }
  15. function rewind() {
  16. $this->iterator =
  17. new StandardLibraryIterator($this->collection);
  18. $this->iterator->rewind();
  19. }
  20. }
复制代码

扩展库加入集合处理方法。并添加 SPL 方法,这些方法代表了 $iterator 属性,在 rewind() 中创建。以下是StandardLibraryIterator 的代码。

  1. class StandardLibraryIterator {
  2. protected $valid;
  3. protected $collection;
  4. function __construct($collection) {
  5. $this->collection = $collection;
  6. }
  7. function current() {
  8. return current($this->collection);
  9. }
  10. function next() {
  11. $this->valid = (false !== next($this->collection));
  12. }
  13. function key() {
  14. return key($this->collection);
  15. }
  16. function valid() {
  17. return $this->valid;
  18. }
  19. function rewind() {
  20. $this->valid = (false !== reset($this->collection));
  21. }
  22. }
复制代码

该代码看起来很熟悉:实际上,这来自于 5 个 SPL 函数ForeachableLibrary 类。

测试类

现在,代码更加复杂了,但是其如何支持其它迭代器类型?添加一个关于“发行版”迭代器的测试,来查看这种设计的其它迭代器如何工作。

  1. class PolySplIteratorTestCase extends UnitTestCase {
  2. // ...
  3. function TestReleasedForeach() {
  4. $this->lib->add(new Media(‘second’, 1999));
  5. $this->lib->add(new Media(‘first’, 1989));
  6. $output = array();
  7. $this->lib->iteratorType(‘Released’);
  8. foreach($this->lib as $item) {
  9. $output[] = $item->name .’-’. $item->year;
  10. }
  11. $this->assertEqual(
  12. ‘first-1989 second-1999 name1-2000 name3-2001 name2-2002’
  13. ,implode(‘ ‘,$output));
  14. }
  15. }
复制代码

上面的测试用例看起来也很熟悉,因为其非常类似于前一个“发行版”迭代器,但是使用了 foreach 控制结构进行循环。

  1. class PolymorphicForeachableLibrary
  2. extends Library implements Iterator {
  3. protected $iterator_type;
  4. protected $iterator;
  5. function __construct() {
  6. $this->iteratorType();
  7. }
  8. function iteratorType($type=false) {
  9. switch(strtolower($type)) {
  10. case ‘released’:
  11. $this->iterator_type = ‘ReleasedLibraryIterator’;
  12. break;
  13. default:
  14. $this->iterator_type = ‘StandardLibraryIterator’;
  15. }
  16. $this->rewind();
  17. }
  18. // ...
  19. function rewind() {
  20. $type = $this->iterator_type;
  21. $this->iterator = new $type($this->collection);
  22. $this->iterator->rewind();
  23. }
  24. }
复制代码

新的 iteratorType() 方法使你转变要使用的迭代器的类型。(因为迭代器类型并不是在对象安装期间选中的,并且你可以在空闲时再次调用 iteratorType() 方法来选择不同迭代器类型,所以实际上是在 State 模式执行代码,而不是 Strategy 模式。)

  1. class ReleasedLibraryIterator
  2. extends StandardLibraryIterator {
  3. function __construct($collection) {
  4. usort($collection
  5. ,create_function(‘$a,$b’,’return ($a->year - $b->year);’));
  6. $this->collection = $collection;
  7. }
  8. }
复制代码

你可以简单地通过扩展 StandardLibraryIterator 并覆盖构造函数来添加入局数组的排序,从而实现 ReleasedLibraryIterator。并且,通过它,你可以有一个 working PolymorphicForeachableLibrary。

总结

迭代器是标准化地地处理应用程序中对象集合的方法。这些例子是基于数组的,但是对于拥有同一个接口的非数组集合,工作起来将更加强大。使用 foreach 控制结构方式的集合确实非常酷。 SPL 实现中最不幸的问题是与迭代器可能存在的名称空间冲突。有多少 PHP4 面向对象的代码拥有类似于迭代器类作为库迭代器类的基类?在一些容量中有多少 5 种必需方法的定义?可能一个更加具有深刻含义的名称就能实现 Foreachable。如果你选择使用 SPL,则还应该研究其它支持的迭代器,例如RecursiveArrayIterator 和其它众多迭代器。

你可能感兴趣的:(迭代器模式)