yii2阅读随笔14

继续来看Event.php

 /**
     * Triggers a class-level event.
     * 触发类级别事件。
     * This method will cause invocation of event handlers that are attached to the named event
     * for the specified class and all its parent classes.
     * 触发某个类或者对象的某个事件
     * @param string|object $class the object or the fully qualified class name specifying the class-level event.
     * @param string $name the event name.
     * @param Event $event the event parameter. If not set, a default [[Event]] object will be created.
     */
    public static function trigger($class, $name, $event = null)
    {
        if (empty(self::$_events[$name])) {
            return;
        }
        if ($event === null) {
            // 事件不存在,就创建一个 Event 对象
            $event = new static;
        }
        // 设置event对象的属性,默认是未被处理的
        $event->handled = false;
        $event->name = $name;
        if (is_object($class)) {
            if ($event->sender === null) {
                // 如果 $class 是个对象,并且是 sender 为空,就将 $class 赋给 sender,即 $class 就是触发事件的对象
                $event->sender = $class;
            }
            $class = get_class($class);
        } else {
            $class = ltrim($class, ‘\\‘);
        }
        // 循环类的 $_event,直到遇到 $event->handled 为真或者没有父类了为止
        do {
            if (!empty(self::$_events[$name][$class])) {
                foreach (self::$_events[$name][$class] as $handler) {
                    // 将参数赋到 event 对象的 data 属性上
                    $event->data = $handler[1];
                    // 调用 $handler 方法
                    // 在方法中,可以用 $this->data 取到相应的参数
                    // 也可以在其中设置 $this->handled 的值,中断后续事件的触发
                    call_user_func($handler[0], $event);
                    // 当某个 handled 被设置为 true 时,执行到这个事件的时候,会停止,并忽略剩下的事件
                    if ($event->handled) {
                        return;
                    }
                }
            }
        } while (($class = get_parent_class($class)) !== false);
    }
}

Component.php少分析了几个方法,现在添加上去!

    /**
     * Detaches an existing event handler from this component.
     * 在该组件中,将现有的事件处理,
     * This method is the opposite of [[on()]].
     * 这种方法与on[]方法相反。
     * @param string $name event name
     * @param callable $handler the event handler to be removed.
     * If it is null, all handlers attached to the named event will be removed.
     * @return boolean if a handler is found and detached
     * @see on()
     */
    public function off($name, $handler = null)
    {
        // 保证 behaviors 都加载进来了
        $this->ensureBehaviors();
        // 相应的事件不存在,就返回false
        if (empty($this->_events[$name])) {
            return false;
        }
        // 没有handler,就意味着要全部去掉
        if ($handler === null) {
            unset($this->_events[$name]);
            return true;
        } else {
            $removed = false;//如果$handler不为空。
            foreach ($this->_events[$name] as $i => $event) {
                // $event[0]是handler,$event[1]是数据
                if ($event[0] === $handler) {
                    unset($this->_events[$name][$i]);
                    $removed = true;
                }
            }
            if ($removed) {
                // 如果有移出事件的handler,就需要重新构建以下索引,否则会出现index为1,3,4的情况
                $this->_events[$name] = array_values($this->_events[$name]);
            }
            return $removed;
        }
    }

        /**
     * Triggers an event.
     * 触发一个事件。
     * This method represents the happening of an event. It invokes
     * all attached handlers for the event including class-level handlers.
     * 这种方法代表事件的发生。它调用的事件包括类级别的处理程序所包含的所有附加处理程序。
     * @param string $name the event name
     * @param Event $event the event parameter. If not set, a default [[Event]] object will be created.
     */
    public function trigger($name, Event $event = null)
    {
        // 保证 behaviors 都加载进来了
        $this->ensureBehaviors();
        if (!empty($this->_events[$name])) {
            // 构建Event对象,为传入到handler函数中做准备
            if ($event === null) {
                $event = new Event;
            }
            if ($event->sender === null) { //如果$event->sender值为null的话,把$this赋值给它。
                $event->sender = $this;
            }
            $event->handled = false; //使handled值为空
            $event->name = $name;
            foreach ($this->_events[$name] as $handler) {
                // 给event的data属性赋值
                $event->data = $handler[1];
                // handler的函数中传入了一个Event对象
                call_user_func($handler[0], $event);
                // stop further handling if the event is handled
                // 事件是否被handle,当handled被设置为true时,执行到这个event的时候,会停止,并忽略剩下的event
                if ($event->handled) {
                    return;
                }
            }
        }
        // invoke class-level attached handlers
        // 触发class级别的handler
        Event::trigger($this, $name, $event);
    }
时间: 2025-01-13 09:04:23

yii2阅读随笔14的相关文章

yii2阅读随笔13

下面我们来看一下Event.php <?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace yii\base; /** * Event is the base class for all event classes. * 事件是所有事件类的基

yii2阅读随笔12

<?php /** * Checks if a property value is null. * 检查属性值是否为空. * This method will check in the following order and act accordingly: * 此方法将在以下顺序检查并相应地采取行动: * - a property defined by a setter: return whether the property value is null * 通过setter定义的属性:返回是

《java.util.concurrent 包源码阅读》14 线程池系列之ScheduledThreadPoolExecutor 第一部分

ScheduledThreadPoolExecutor是ThreadPoolExecutor的子类,同时实现了ScheduledExecutorService接口. public class ScheduledThreadPoolExecutor extends ThreadPoolExecutor implements ScheduledExecutorService ScheduledThreadPoolExecutor的功能主要有两点:在固定的时间点执行(也可以认为是延迟执行),重复执行.

Spring 中bean的scop 阅读随笔(记)

bean的scope scope用来声明容器中的对象所应该处的限定场景或者说该对象的存活时间,即容器在对象进入其相应的scope之前,生成并装配这些对象,在该对象不再处于这些scope的限定之后,容器通常会销毁这些对象. Spring容器最初提供了两种bean的scope类型:singleton和prototype,但发布2.0之后,又引入了另外三种scope类型,即request.session和global session类型.不过这三种类型有所限制,只能在Web应用中使用.也就是说,只有在

价值投资实战手册(唐朝) - 阅读随笔(一)

价值投资实战手册(唐朝) - 第一章 - 阅读随笔(一) 1.什么投资? 2.股票的本质 3.投资是持续中分的事 4.股票收益的来源 5.最简单的投资方法 6.普通投资者的道路 7.投资无需接盘侠 8.股权和其他投资品的对比 9.优秀企业的特征 原文地址:https://www.cnblogs.com/edwardsun/p/12232000.html

YII2框架阅读随笔

今天阅读的是vendor/yiisoft/yii2/web/User.php <?php /** * @link http://www.yiiframework.com/ * @copyright Copyright (c) 2008 Yii Software LLC * @license http://www.yiiframework.com/license/ */ namespace yii\web; //命名空间 use Yii; use yii\base\Component; use y

yii2框架随笔3

今天开始阅读vendor/yiisoft/yii2/base/Action.php <?php namespace yii\base;//命名空间 use Yii;//加载Yii文件夹下的Yii.php /** * Action is the base class for all controller action classes. * * Action provides a way to reuse action method code. An action method in an Acti

yii2框架随笔4

接下来我们继续了解Component.php 目录为:vendor/yiisoft/yii2/base/Component.php (接上次的代码) /** * Sets the value of a component property. *设置一个组件属性的值. * This method will check in the following order and act accordingly: *这种方法将检查以下顺序并采取相应的行动: * - a property defined by

Thrift0.9.3 C++版代码阅读随笔——TNonblockingServer

0.一些参考资料 (参考资料1)对thrift的一个基本介绍可以参考: http://wenku.baidu.com/link?url=LLL5H3qL4hJ3o6dfq0SBgztqtxYFR5vDyftwowKNRMWiIQ3t87mCu-GMZljxcZVryxxhqna1hM4eu3F7AyCMlC7fFy7yWl18IIl6nY7JKca (参考资料2)thrift IDL定义可参考(就是定义结构化数据和服务的方法): http://diwakergupta.github.io/thr