PHP中的事件驱动架构和钩子

时间:2011-07-27 14:30:12

标签: php hook event-driven-design

我计划开发一款具有PHP后端的游戏,以便与数据存储库进行通信。我在考虑它并得出结论,我们的游戏最好的设计范例将是事件驱动的。我希望有一个成就系统(类似于本网站的徽章系统),基本上我希望能够将这些“成就检查”挂钩到游戏中发生的许多不同事件中。即:

当用户执行操作时,将触发X钩子Y并调用所有附加函数以检查成就要求。

在构建这样的架构时,我将允许轻松添加新的成就,因为我所要做的就是将检查功能添加到正确的钩子中,其他一切都将落实到位。

我不确定这是否是对我打算做什么的一个很好的解释,但无论如何我都在寻找以下内容:

  1. 有关如何编写事件驱动应用程序代码的良好参考资料
  2. 显示如何在PHP中的函数中放置“钩子”的代码片段
  3. 代码段显示如何将功能附加到第2点中提到的“挂钩”
  4. 关于如何完成2)和3),我有一些想法,但我希望精通这个问题的人可以对最佳实践有所了解。

    提前谢谢!

3 个答案:

答案 0 :(得分:14)

  

关于如何编写事件驱动应用程序代码的好参考资料

您可以使用"dumb" callbacksDemo)执行此操作:

class Hooks
{
    private $hooks;
    public function __construct()
    {
        $this->hooks = array();
    }
    public function add($name, $callback) {
        // callback parameters must be at least syntactically
        // correct when added.
        if (!is_callable($callback, true))
        {
            throw new InvalidArgumentException(sprintf('Invalid callback: %s.', print_r($callback, true)));
        }
        $this->hooks[$name][] = $callback;
    }
    public function getCallbacks($name)
    {
        return isset($this->hooks[$name]) ? $this->hooks[$name] : array();
    }
    public function fire($name)
    {
        foreach($this->getCallbacks($name) as $callback)
        {
            // prevent fatal errors, do your own warning or
            // exception here as you need it.
            if (!is_callable($callback))
                continue;

            call_user_func($callback);
        }
    }
}

$hooks = new Hooks;
$hooks->add('event', function() {echo 'morally disputed.';});
$hooks->add('event', function() {echo 'explicitly called.';});
$hooks->fire('event');

或者实现在事件驱动的应用程序中经常使用的模式:Observer Pattern

  

显示如何在PHP中的函数中放置“钩子”的代码片段

上面的手动链接(回调可以存储到变量中)和一些PHP code examples for the Observer Pattern

答案 1 :(得分:5)

对于PHP,我经常集成Symfony事件组件:http://components.symfony-project.org/event-dispatcher/

下面是一个简短的示例,您可以在Symfony的Recipe section中找到它。

<?php

class Foo
{
  protected $dispatcher = null;

    // Inject the dispatcher via the constructor
  public function __construct(sfEventDispatcher $dispatcher)
  {
    $this->dispatcher = $dispatcher;
  }

  public function sendEvent($foo, $bar)
  {
    // Send an event
    $event = new sfEvent($this, 'foo.eventName', array('foo' => $foo, 'bar' => $bar));
    $this->dispatcher->notify($event);
  }
}


class Bar
{
  public function addBarMethodToFoo(sfEvent $event)
  {
    // respond to event here.
  }
}


// Somewhere, wire up the Foo event to the Bar listener
$dispatcher->connect('foo.eventName', array($bar, 'addBarMethodToFoo'));

?>

这是我们整合到购物车中的系统,用于创建类似游戏的购物体验,将用户操作挂钩到游戏事件中。当用户执行特定操作时,php触发了导致奖励被触发的事件。

示例1:如果用户点击了10次特定按钮,则会收到一个星标。

示例2:当用户引用朋友并且该朋友注册时,会触发一个事件,奖励带有积分的原始推荐人。

答案 2 :(得分:1)

查看CodeIgniter,因为它有hooks built right in

只需启用挂钩:

$config['enable_hooks'] = TRUE;

然后定义你的钩子:

 $hook['post_controller_constructor'] = array(
                                'class'    => 'Hooks',
                                'function' => 'session_check',
                                'filename' => 'hooks.php',
                                'filepath' => 'hooks',
                                'params'   => array()
                                ); 

然后在课堂上使用它:

<?php

    class Hooks {
        var $CI;

        function Hooks() {
            $this->CI =& get_instance();
        }

        function session_check() {
            if(!$this->CI->session->userdata("logged_in") && $this->CI->uri->uri_string != "/user/login")
                redirect('user/login', 'location');
        }
    }

?>