当前位置:首页 > PHP教程 > php高级应用 > 列表

PHP设计模式之状态模式定义与用法详解

发布:smiling 来源: PHP粉丝网  添加日期:2021-09-06 10:27:22 浏览: 评论:0 

这篇文章主要介绍了PHP设计模式之状态模式定义与用法,结合实例形式分析了php状态模式的概念、原理、定义、使用方法及相关注意事项,需要的朋友可以参考下。

本文实例讲述了PHP设计模式之状态模式定义与用法,分享给大家供大家参考,具体如下:

什么是状态设计模式

当一个对象的内在状态改变时允许改变其行为,这个对象看起来像是改变了其类。

状态模式主要解决的是当控制一个对象状态的条件表达式过于复杂时的情况。把状态的判断逻辑转移到表示不同状态的一系列类中,可以把复杂的判断逻辑简化。

什么时候使用状态模式

对象中频繁改变非常依赖于条件语句。 就其自身来说, 条件语句本身没有什么问题(如switch语句或带else子句的语句),不过, 如果选项太多, 以到程序开始出现混乱, 或者增加或改变选项需要花费太多时间, 甚至成为一种负担, 这就出现了问题

对于状态设计模式, 每个状态都有自己的具体类, 它们实现一个公共接口. 我们不用查看对象的控制流, 而是从另一个角度来考虑, 即对象的状态.

状态机是一个模型, 其重点包括不同的状态, 一个状态到另一个状态的变迁, 以及导致状态改变的触发器.

以开灯关灯为例子, 状态模型的本质分为3点:

①状态(关灯和开灯)

②变迁(从关灯到开灯, 以及从开灯到关灯)

③触发器(灯开关)

所以状态模式都需要一个参与者来跟踪对象所处的状态. 以Light为例, Light需要知道当前状态是什么.

示例:开灯关灯

Light.php

  1. <?php 
  2. class Light 
  3.   private $offState//关闭状态 
  4.   private $onState;  //开启状态 
  5.   private $currentState//当前状态 
  6.   public function __construct() 
  7.   { 
  8.     $this->offState = new OffState($this); 
  9.     $this->onState = new OnState($this); 
  10.     //开始状态为关闭状态Off 
  11.     $this->currentState = $this->offState; 
  12.   } 
  13.   //调用状态方法触发器 
  14.   public function turnLightOn() 
  15.   { 
  16.     $this->currentState->turnLightOn(); 
  17.   } 
  18.   public function turnLightOff() 
  19.   { 
  20.     $this->currentState->turnLightOff(); 
  21.   } 
  22.   //设置当前状态 
  23.   public function setState(IState $state
  24.   { 
  25.     $this->currentState = $state
  26.   } 
  27.   //获取状态 
  28.   public function getOnState() 
  29.   { 
  30.     return $this->onState; 
  31.   } 
  32.   public function getOffState() 
  33.   { 
  34.     return $this->offState; 
  35.   } 

在构造函数中, Light实例化IState实现的两个实例-----一个对应关, 一个对应开

$this->offState = new OffState($this);

$this->onState = new OnState($this);

这个实例化过程用到了一种递归, 称为自引用(self-referral)

构造函数参数中的实参写为$this, 这是Light类自身的一个引用. 状态类希望接收一个Light类实例做参数,.

setState方法是为了设置一个当前状态 需要一个状态对象作为实参, 一旦触发一个状态, 这个状态就会向Light类发送信息, 指定当前状态.

状态实例

IState接口

IState.php

  1. <?php 
  2. interface IState 
  3.   public function turnLightOn(); 
  4.   public function turnLightOff(); 

该接口的实现类

OnState.php

  1. <?php 
  2. class OnState implements IState 
  3.   private $light
  4.   public function __construct(Light $light
  5.   { 
  6.     $this->light = $light
  7.   } 
  8.   public function turnLightOn() 
  9.   { 
  10.     echo "灯已经打开了->不做操作<br />"
  11.   } 
  12.   public function turnLightOff() 
  13.   { 
  14.     echo "灯关闭!看不见帅哥chenqionghe了!<br />"
  15.     $this->light->setState($this->light->getOffState()); 
  16.   } 

OffState.php

  1. <?php 
  2. class OffState implements IState 
  3.   private $light
  4.   public function __construct(Light $light
  5.   { 
  6.     $this->light = $light
  7.   } 
  8.   public function turnLightOn() 
  9.   { 
  10.     echo "灯打开!可以看见帅哥chenqionghe了!<br />"
  11.     $this->light->setState($this->light->getOnState()); 
  12.   } 
  13.   public function turnLightOff() 
  14.   { 
  15.     echo "灯已经关闭了->不做操作<br />"
  16.   } 

默认状态是OffState, 它必须实现IState方法turnLightOn和turnLightOff, Light调用turnLightOn方法, 会显示(灯打开!可以看见帅哥chenqionghe了), 然后将OnState设置为当前状态, 不过,如果是调用 OffState的turnLightOff方法, 就只有提示灯已经被关闭了 不会有其他动作.

客户

Client的所有请求都是通过Light发出, Client和任何状态类之间都没有直接连接, 包括IState接口.下面的Client显示了触发两个状态中所有方法的请求.

Client.php

  1. <?php 
  2. function __autoload($class_name
  3.   include_once $class_name.'.php'
  4. class Client 
  5.   private $light
  6.   public function __construct() 
  7.   { 
  8.     $this->light = new Light(); 
  9.     $this->light->turnLightOn(); 
  10.     $this->light->turnLightOn(); 
  11.     $this->light->turnLightOff(); 
  12.     $this->light->turnLightOff(); 
  13.   } 
  14. $worker = new Client(); 

增加状态

对于所有的设计模式来说,很重要的一个方面是: 利用这些设计模式可以很容易地做出修改. 与其他模式一样,状态模式也很易于更新和改变. 下面在这个灯的示例上再加两个状态:更亮(Brighter)和最亮(Brightest)

现在变成了4个状态, 序列有所改变. '关'(off)状态只能变到"开"(on)状态, on状态不能变到off状态. on状态只能变到"更亮"(brighter)状态和"最亮"(brightest)状态. 只能最亮状态才可能变到关状态.

改变接口

要改变的第一个参与者是接口IState, 这个接口中必须指定相应的方法, 可以用来迁移到brighter和brightest状态.

IState.php

  1. <?php 
  2. interface IState 
  3.   public function turnLightOn(); 
  4.   public function turnLightOff(); 
  5.   public function turnBrighter(); 
  6.   public function turnBrightest(); 

现在所有状态类都必须包含这4个方法, 它们都需要结合到Light类中.

改变状态

状态设计模式中有改变时, 这些新增的改变会对模式整体的其他方面带来影响. 不过, 增加改变相当简单, 每个状态只有一个特定的变迁.

四个状态

OnState.php

  1. <?php 
  2. class OnState implements IState 
  3.   private $light
  4.   public function __construct(Light $light
  5.   { 
  6.     $this->light = $light
  7.   } 
  8.   public function turnLightOn() 
  9.   { 
  10.     echo "不合法的操作!<br />"
  11.   } 
  12.   public function turnLightOff() 
  13.   { 
  14.     echo "灯关闭!看不见帅哥chenqionghe了!<br />"
  15.     $this->light->setState($this->light->getOffState()); 
  16.   } 
  17.   public function turnBrighter() 
  18.   { 
  19.     echo "灯更亮了, 看帅哥chenqionghe看得更真切了!<br />"
  20.     $this->light->setState($this->light->getBrighterState()); 
  21.   } 
  22.   public function turnBrightest() 
  23.   { 
  24.     echo "不合法的操作!<br />"
  25.   } 

OffState.php

  1. <?php 
  2. class OffState implements IState 
  3.   private $light
  4.   public function __construct(Light $light
  5.   { 
  6.     $this->light = $light
  7.   } 
  8.   public function turnLightOn() 
  9.   { 
  10.     echo "灯打开!可以看见帅哥chenqionghe了!<br />"
  11.     $this->light->setState($this->light->getOnState()); 
  12.   } 
  13.   public function turnLightOff() 
  14.   { 
  15.     echo "不合法的操作!<br />"
  16.   } 
  17.   public function turnBrighter() 
  18.   { 
  19.     echo "不合法的操作!<br />"
  20.   } 
  21.   public function turnBrightest() 
  22.   { 
  23.     echo "不合法的操作!<br />"
  24.   } 

Brighter.php

  1. <?php 
  2. class BrighterState implements IState 
  3.   private $light
  4.   public function __construct(Light $light
  5.   { 
  6.     $this->light = $light
  7.   } 
  8.   public function turnLightOn() 
  9.   { 
  10.     echo "不合法的操作!<br />"
  11.   } 
  12.   public function turnLightOff() 
  13.   { 
  14.     echo "不合法的操作!<br />"
  15.   } 
  16.   public function turnBrighter() 
  17.   { 
  18.     echo "不合法的操作!<br />"
  19.   } 
  20.   public function turnBrightest() 
  21.   { 
  22.     echo "灯最亮了, 看帅哥chenqionghe已经帅到无敌!<br />"
  23.     $this->light->setState($this->light->getBrightestState()); 
  24.   } 

Brightest.php

  1. <?php 
  2. class BrightestState implements IState 
  3.   private $light
  4.   public function __construct(Light $light
  5.   { 
  6.     $this->light = $light
  7.   } 
  8.   public function turnLightOn() 
  9.   { 
  10.     echo "灯已经打开了->不做操作<br />"
  11.   } 
  12.   public function turnLightOff() 
  13.   { 
  14.     echo "灯关闭!看不见帅哥chenqionghe了!<br />"
  15.     $this->light->setState($this->light->getOffState()); 
  16.   } 
  17.   public function turnBrighter() 
  18.   { 
  19.     echo "不合法的操作!<br />"
  20.   } 
  21.   public function turnBrightest() 
  22.   { 
  23.     echo "不合法的操作!<br />"
  24.   } 

更新Light类

Light.php

  1. <?php 
  2. class Light 
  3.   private $offState//关闭状态 
  4.   private $onState;  //开启状态 
  5.   private $brighterState//更亮状态 
  6.   private $brightestState;//最亮状态 
  7.   private $currentState//当前状态 
  8.   public function __construct() 
  9.   { 
  10.     $this->offState = new OffState($this); 
  11.     $this->onState = new OnState($this); 
  12.     $this->brighterState = new BrighterState($this); 
  13.     $this->brightestState = new BrightestState($this); 
  14.     //开始状态为关闭状态Off 
  15.     $this->currentState = $this->offState; 
  16.   } 
  17.   //调用状态方法触发器 
  18.   public function turnLightOn() 
  19.   { 
  20.     $this->currentState->turnLightOn(); 
  21.   } 
  22.   public function turnLightOff() 
  23.   { 
  24.     $this->currentState->turnLightOff(); 
  25.   } 
  26.   public function turnLightBrighter() 
  27.   { 
  28.     $this->currentState->turnBrighter(); 
  29.   } 
  30.   public function turnLigthBrightest() 
  31.   { 
  32.     $this->currentState->turnBrightest(); 
  33.   } 
  34.   //设置当前状态 
  35.   public function setState(IState $state
  36.   { 
  37.     $this->currentState = $state
  38.   } 
  39.   //获取状态 
  40.   public function getOnState() 
  41.   { 
  42.     return $this->onState; 
  43.   } 
  44.   public function getOffState() 
  45.   { 
  46.     return $this->offState; 
  47.   } 
  48.   public function getBrighterState() 
  49.   { 
  50.     return $this->brighterState; 
  51.   } 
  52.   public function getBrightestState() 
  53.   { 
  54.     return $this->brightestState; 
  55.   } 

更新客户

  1. <?php 
  2. function __autoload($class_name
  3.   include_once $class_name.'.php'
  4. class Client 
  5.   private $light
  6.   public function __construct() 
  7.   { 
  8.     $this->light = new Light(); 
  9.     $this->light->turnLightOn(); 
  10.     $this->light->turnLightBrighter(); 
  11.     $this->light->turnLigthBrightest(); 
  12.     $this->light->turnLightOff(); 
  13.     $this->light->turnLigthBrightest(); 
  14.   } 
  15. $worker = new Client(); 

运行结果如下

灯打开!可以看见帅哥chenqionghe了!

灯更亮了, 看帅哥chenqionghe看得更真切了!

灯最亮了, 看帅哥chenqionghe已经帅到无敌!

灯关闭!看不见帅哥chenqionghe了!

不合法的操作!

九宫格移动示例

九宫格的移动分为4个移动:

上(Up)

下(Down)

左(Left)

右(Right)

对于这些移动,规则是要求单元格之间不能沿对角线方向移动. 另外, 从一个单元格移动到下一个单元格时, 一次只能移动一个单元格

要使用状态设计模式来建立一个九宫格移动示例,

建立接口

IMatrix.php

  1. <?php 
  2. interface IMatrix 
  3.   public function goUp(); 
  4.   public function goDown(); 
  5.   public function goLeft(); 
  6.   public function goRight(); 

虽然这个状态设计模式有9个状态, 分别对应九个单元格, 但一个状态最多只需要4个变迁

上下文

对于状态中的4个变迁或移动方法, 上下文必须提供相应方法来调用这些变迁方法, 另外还要完成各个状态的实例化.

Context.php

  1. <?php 
  2. class Context 
  3.   private $cell1
  4.   private $cell2
  5.   private $cell3
  6.   private $cell4
  7.   private $cell5
  8.   private $cell6
  9.   private $cell7
  10.   private $cell8
  11.   private $cell9
  12.   private $currentState
  13.   public function __construct() 
  14.   { 
  15.     $this->cell1 = new Cell1State($this); 
  16.     $this->cell2 = new Cell2State($this); 
  17.     $this->cell3 = new Cell3State($this); 
  18.     $this->cell4 = new Cell4State($this); 
  19.     $this->cell5 = new Cell5State($this); 
  20.     $this->cell6 = new Cell6State($this); 
  21.     $this->cell7 = new Cell7State($this); 
  22.     $this->cell8 = new Cell8State($this); 
  23.     $this->cell9 = new Cell9State($this); 
  24.     $this->currentState = $this->cell5; 
  25.   } 
  26.   //调用方法 
  27.   public function doUp() 
  28.   { 
  29.     $this->currentState->goUp(); 
  30.   } 
  31.   public function doDown() 
  32.   { 
  33.     $this->currentState->goDown(); 
  34.   } 
  35.   public function doLeft() 
  36.   { 
  37.     $this->currentState->goLeft(); 
  38.   } 
  39.   public function doRight() 
  40.   { 
  41.     $this->currentState->goRight(); 
  42.   } 
  43.   //设置当前状态 
  44.   public function setState(IMatrix $state
  45.   { 
  46.     $this->currentState = $state
  47.   } 
  48.   //获取状态 
  49.   public function getCell1State() 
  50.   { 
  51.     return $this->cell1; 
  52.   } 
  53.   public function getCell2State() 
  54.   { 
  55.     return $this->cell2; 
  56.   } 
  57.   public function getCell3State() 
  58.   { 
  59.     return $this->cell3; 
  60.   } 
  61.   public function getCell4State() 
  62.   { 
  63.     return $this->cell4; 
  64.   } 
  65.   public function getCell5State() 
  66.   { 
  67.     return $this->cell5; 
  68.   } 
  69.   public function getCell6State() 
  70.   { 
  71.     return $this->cell6; 
  72.   } 
  73.   public function getCell7State() 
  74.   { 
  75.     return $this->cell7; 
  76.   } 
  77.   public function getCell8State() 
  78.   { 
  79.     return $this->cell8; 
  80.   } 
  81.   public function getCell9State() 
  82.   { 
  83.     return $this->cell9; 
  84.   } 

状态

9个状态表示九宫格中的不同单元格, 为了唯一显示单元格,会分别输出相应到达的单元格数字, 这样能够更清楚地看出穿过矩阵的路线.

Cell1State

  1. <?php 
  2. class Cell1State implements IMatrix 
  3.   private $context
  4.   public function __construct(Context $contextNow
  5.   { 
  6.     $this->context = $contextNow
  7.   } 
  8.   public function goLeft() 
  9.   { 
  10.     echo '不合法的移动!<br />'
  11.   } 
  12.   public function goRight() 
  13.   { 
  14.     echo '走到<strong>2</strong><br />'
  15.     $this->context->setState($this->context->getCell2State()); 
  16.   } 
  17.   public function goUp() 
  18.   { 
  19.     echo '不合法的移动!<br />'
  20.   } 
  21.   public function goDown() 
  22.   { 
  23.     echo '走到<strong>4</strong><br />'
  24.     $this->context->setState($this->context->getCell4State()); 
  25.   } 

Cell2State

  1. <?php 
  2. class Cell2State implements IMatrix 
  3.   private $context
  4.   public function __construct(Context $contextNow
  5.   { 
  6.     $this->context = $contextNow
  7.   } 
  8.   public function goLeft() 
  9.   { 
  10.     echo '走到<strong>1</strong><br />'
  11.     $this->context->setState($this->context->getCell1State()); 
  12.   } 
  13.   public function goRight() 
  14.   { 
  15.     echo '走到<strong>3</strong><br />'
  16.     $this->context->setState($this->context->getCell3State()); 
  17.   } 
  18.   public function goUp() 
  19.   { 
  20.     echo '不合法的移动!<br />'
  21.   } 
  22.   public function goDown() 
  23.   { 
  24.     echo '走到<strong>5</strong><br />'
  25.     $this->context->setState($this->context->getCell5State()); 
  26.   } 

Cell3State

  1. <?php 
  2. class Cell3State implements IMatrix 
  3.   private $context
  4.   public function __construct(Context $contextNow
  5.   { 
  6.     $this->context = $contextNow
  7.   } 
  8.   public function goLeft() 
  9.   { 
  10.     echo '走到<strong>2</strong><br />'
  11.     $this->context->setState($this->context->getCell2State()); 
  12.   } 
  13.   public function goRight() 
  14.   { 
  15.     echo '不合法的移动!<br />'
  16.   } 
  17.   public function goUp() 
  18.   { 
  19.     echo '不合法的移动!<br />'
  20.   } 
  21.   public function goDown() 
  22.   { 
  23.     echo '走到<strong>6</strong><br />'
  24.     $this->context->setState($this->context->getCell6State()); 
  25.   } 

Cell4State

  1. <?php 
  2. class Cell4State implements IMatrix 
  3.   private $context
  4.   public function __construct(Context $contextNow
  5.   { 
  6.     $this->context = $contextNow
  7.   } 
  8.   public function goLeft() 
  9.   { 
  10.     echo '不合法的移动!<br />'
  11.   } 
  12.   public function goRight() 
  13.   { 
  14.     echo '走到<strong>5</strong><br />'
  15.     $this->context->setState($this->context->getCell5State()); 
  16.   } 
  17.   public function goUp() 
  18.   { 
  19.     echo '走到<strong>1</strong><br />'
  20.     $this->context->setState($this->context->getCell1State()); 
  21.   } 
  22.   public function goDown() 
  23.   { 
  24.     echo '走到<strong>7</strong><br />'
  25.     $this->context->setState($this->context->getCell7State()); 
  26.   } 

Cell5State

  1. <?php 
  2. class Cell5State implements IMatrix 
  3.   private $context
  4.   public function __construct(Context $contextNow
  5.   { 
  6.     $this->context = $contextNow
  7.   } 
  8.   public function goLeft() 
  9.   { 
  10.     echo '走到<strong>4</strong><br />'
  11.     $this->context->setState($this->context->getCell4State()); 
  12.   } 
  13.   public function goRight() 
  14.   { 
  15.     echo '走到<strong>6</strong><br />'
  16.     $this->context->setState($this->context->getCell6State()); 
  17.   } 
  18.   public function goUp() 
  19.   { 
  20.     echo '走到<strong>2</strong><br />'
  21.     $this->context->setState($this->context->getCell2State()); 
  22.   } 
  23.   public function goDown() 
  24.   { 
  25.     echo '走到<strong>8</strong><br />'
  26.     $this->context->setState($this->context->getCell8State()); 
  27.   } 

Cell6State

  1. <?php 
  2. class Cell6State implements IMatrix 
  3.   private $context
  4.   public function __construct(Context $contextNow
  5.   { 
  6.     $this->context = $contextNow
  7.   } 
  8.   public function goLeft() 
  9.   { 
  10.     echo '走到<strong>5</strong><br />'
  11.     $this->context->setState($this->context->getCell5State()); 
  12.   } 
  13.   public function goRight() 
  14.   { 
  15.     echo '不合法的移动!<br />'
  16.   } 
  17.   public function goUp() 
  18.   { 
  19.     echo '走到<strong>3</strong><br />'
  20.     $this->context->setState($this->context->getCell3State()); 
  21.   } 
  22.   public function goDown() 
  23.   { 
  24.     echo '走到<strong>9</strong><br />'
  25.     $this->context->setState($this->context->getCell9State()); 
  26.   } 

Cell7State

  1. <?php 
  2. class Cell7State implements IMatrix 
  3.   private $context
  4.   public function __construct(Context $contextNow
  5.   { 
  6.     $this->context = $contextNow
  7.   } 
  8.   public function goLeft() 
  9.   { 
  10.     echo '不合法的移动!<br />'
  11.   } 
  12.   public function goRight() 
  13.   { 
  14.     echo '走到<strong>8</strong><br />'
  15.     $this->context->setState($this->context->getCell8State()); 
  16.   } 
  17.   public function goUp() 
  18.   { 
  19.     echo '走到<strong>4</strong><br />'
  20.     $this->context->setState($this->context->getCell4State()); 
  21.   } 
  22.   public function goDown() 
  23.   { 
  24.     echo '不合法的移动!<br />'
  25.   } 

Cell8State

  1. <?php 
  2. class Cell8State implements IMatrix 
  3.   private $context
  4.   public function __construct(Context $contextNow
  5.   { 
  6.     $this->context = $contextNow
  7.   } 
  8.   public function goLeft() 
  9.   { 
  10.     echo '走到<strong>7</strong><br />'
  11.     $this->context->setState($this->context->getCell7State()); 
  12.   } 
  13.   public function goRight() 
  14.   { 
  15.     echo '走到<strong>9</strong><br />'
  16.     $this->context->setState($this->context->getCell9State()); 
  17.   } 
  18.   public function goUp() 
  19.   { 
  20.     echo '走到<strong>5</strong><br />'
  21.     $this->context->setState($this->context->getCell5State()); 
  22.   } 
  23.   public function goDown() 
  24.   { 
  25.     echo '不合法的移动!<br />'
  26.   } 

Cell9State

  1. <?php 
  2. class Cell9State implements IMatrix 
  3.   private $context
  4.   public function __construct(Context $contextNow
  5.   { 
  6.     $this->context = $contextNow
  7.   } 
  8.   public function goLeft() 
  9.   { 
  10.     echo '走到<strong>8</strong><br />'
  11.     $this->context->setState($this->context->getCell8State()); 
  12.   } 
  13.   public function goRight() 
  14.   { 
  15.     echo '不合法的移动!<br />'
  16.   } 
  17.   public function goUp() 
  18.   { 
  19.     echo '走到<strong>6</strong><br />'
  20.     $this->context->setState($this->context->getCell6State()); 
  21.   } 
  22.   public function goDown() 
  23.   { 
  24.     echo '不合法的移动!<br />'
  25.   } 

要想有效地使用状态设计模式, 真正的难点在于要想象现实或模拟世界是怎么样

客户Client

下面从单元格5开始进行一个上,右,下, 下,左,上的移动

Client.php

  1. <?php 
  2. function __autoload($class_name
  3.   include_once $class_name.'.php'
  4. class Client 
  5.   private $context
  6.   public function __construct() 
  7.   { 
  8.     $this->context = new Context(); 
  9.     $this->context->doUp(); 
  10.     $this->context->doRight(); 
  11.     $this->context->doDown(); 
  12.     $this->context->doDown(); 
  13.     $this->context->doLeft(); 
  14.     $this->context->doUp(); 
  15.   } 
  16. $worker = new Client(); 

运行结果如下

走到2

走到3

走到6

走到9

走到8

走到5

状态模式与PHP

很多人把状态设计模式看做是实现模拟器和游戏的主要方法.总的说来, 这确实是状态模式的目标,不过险些之外, 状态模型(状态引擎)和状态设计模式在PHP中也有很多应用.用PHP完成更大的项目时, 包括Facebook和WordPress, 会有更多的新增特性和当前状态需求.对于这种不断有改变和增长的情况, 就可以采用可扩展的状态模式来管理.

PHP开发人员如何创建包含多个状态的程序, 将决定状态模式的使用范围. 所以不仅状态机在游戏和模拟世界中有很多应用, 实际上状态模型还有更多适用的领域.只要PHP程序的用户会用到一组有限的状态, 开发人员就可以使用状态设计模式.

Tags: PHP设计模式 PHP状态模式

分享到: