EventBus源码(一)

1、EventBus概述:

EventBus是Android中发布订阅事件总线框架,将事件的发布者和订阅者分开, 简化组件之间的通信.使用灵活简单,执行效率高

1.1EventBus有三要素:

  • Event:事件

  • Publisher:发布者,通过post()发送事件到EventBus, EventBus作为事件分发器或者调度器,将事件通知到Subscriber(订阅者)

  • Subscriber:订阅者,通过EventBus接受发布者发送的事件

image

1.2简单使用

  • 在build.gradle中 引入eventbus包
    implementation'org.greenrobot:eventbus:3.1.1'

1.3注册订阅者

 @Override
    protected void onStart() {
        super.onStart();
        EventBus.getDefault().register(this);
    }

    @Override
    protected void onDestroy() {
        super.onDestroy();
        EventBus.getDefault().unregister(this);
    }

注册中如果需要修改EventBust参数中的内容, 可以通过EventBuilder对可进行更改的内容复制

        EventBus.builder()
                .eventInheritance(false)
                .logSubscriberExceptions(false)
                .installDefaultEventBus()
                .register(this);

通过使用动态注解@Subscribe接受发布者发布的事件

 @Subscribe(threadMode=ThreadMode.MAIN)
    public void onSubscribe(String name){
        Log.e("Subscribe====", "MainActivty===="+name);
    }

1.4发布者发布事件

 EventBus.getDefault().post("小名发布了任务");

以上便是EventBus的简单使用,下边我们分析一下EventBus中register的源码

2.EventBust 源码讲解

2.1ThreadMode 的四个类型

POSTING:默认事件发布和订阅者都在同一个线程
MAIN:订阅者处理事件在主线程
MAIN_ORDERED:订阅者处理事件再主线程, 与Main不同的是, 订阅者可以在发布者未完成发布时,就能执行代码.
BACKGROUND:订阅者在子线程中处理事件,如果当前发布者在子线程发布事件,那么订阅者是在同一个子线程处理事件
ASYNC:不管订阅者是否在子线程中, 它在处理事件的时候都会重新开启一个线程进行处理

2.2注册流程

通过regist方法开始了解EventBus注册流程的源码

    public void register(Object subscriber) {
        //获取订阅者 类
        Class<?> subscriberClass = subscriber.getClass();
      //  获取订阅者中使用@Subscribe注解的方法, 将方法信息 封装到ScribeMethod中
        List<SubscriberMethod> subscriberMethods = subscriberMethodFinder.findSubscriberMethods(subscriberClass);
    //枷锁 线程安全
        synchronized (this) {
            for (SubscriberMethod subscriberMethod : subscriberMethods) {
               //订阅者 与 方法 存储本地
                subscribe(subscriber, subscriberMethod);
            }
        }
    }

通过findSubscirberMethods查找订阅类中的订阅方法

   List<SubscriberMethod> findSubscriberMethods(Class<?> subscriberClass) {
      //现在本地的METHOD_CACHE的map集合中查找,有就返回 没有就继续执行
        List<SubscriberMethod> subscriberMethods = METHOD_CACHE.get(subscriberClass);
        if (subscriberMethods != null) {
            return subscriberMethods;
        }
      //暂定 ignoreGeneratedIndex
        if (ignoreGeneratedIndex) {
            subscriberMethods = findUsingReflection(subscriberClass);
        } else {
           / /通过findSingInfo查找订阅类中的方法
            subscriberMethods = findUsingInfo(subscriberClass);
        }
        if (subscriberMethods.isEmpty()) {
            throw new EventBusException("Subscriber " + subscriberClass
                    + " and its super classes have no public methods with the @Subscribe annotation");
        } else {
            METHOD_CACHE.put(subscriberClass, subscriberMethods);
            return subscriberMethods;
        }
    }

在findUsingInfo中,通过FindState保存本地的状态数组,查了找 subscribeMethod

 private List<SubscriberMethod> findUsingInfo(Class<?> subscriberClass) {
        FindState findState = prepareFindState();
        findState.initForSubscriber(subscriberClass);
        while (findState.clazz != null) {
            findState.subscriberInfo = getSubscriberInfo(findState);
            if (findState.subscriberInfo != null) {
                SubscriberMethod[] array = findState.subscriberInfo.getSubscriberMethods();
                for (SubscriberMethod subscriberMethod : array) {
                    if (findState.checkAdd(subscriberMethod.method, subscriberMethod.eventType)) {
                        findState.subscriberMethods.add(subscriberMethod);
                    }
                }
            } else {
                findUsingReflectionInSingleClass(findState);
            }
            findState.moveToSuperclass();
        }
        return getMethodsAndRelease(findState);
    }

在 SubscirbeMethodFinder类中, 存在一个FIND_STATE_POOL FindState[]数组, 他的作用是1.对订阅类中订阅方法校验 2. 用来做缓存, preparedFindState在数组中取出findState,如果没有就重新创建. 这样减少了频繁创建对象的内存开销.

如果findState中没有subscribeInfo的信息, 就会通过findUsingReflectionInSingleClass() 进行反射,获取到订阅类中符合条件的 订阅方法,并且赋值给FindState中的subscribeMthods集合中.

 private void findUsingReflectionInSingleClass(FindState findState) {
        Method[] methods;
        try {
            // 通过反射拿到订阅类的方法
            methods = findState.clazz.getDeclaredMethods();
        } catch (Throwable th) {
            // Workaround for java.lang.NoClassDefFoundError, see https://github.com/greenrobot/EventBus/issues/149
            methods = findState.clazz.getMethods();
            findState.skipSuperClasses = true;
        }
        for (Method method : methods) {
            int modifiers = method.getModifiers();
            //查找符合条件的方法
            if ((modifiers & Modifier.PUBLIC) != 0 && (modifiers & MODIFIERS_IGNORE) == 0) {
                Class<?>[] parameterTypes = method.getParameterTypes();
                if (parameterTypes.length == 1) {
                    //拿到方法的注解
                    Subscribe subscribeAnnotation = method.getAnnotation(Subscribe.class);
                    if (subscribeAnnotation != null) {
                        Class<?> eventType = parameterTypes[0];
                       //通过findState对方法进行校验
                        if (findState.checkAdd(method, eventType)) {
                            ThreadMode threadMode = subscribeAnnotation.threadMode();
                            //将符合条件的方法添加到findState的subscirbermethod中
                            findState.subscriberMethods.add(new SubscriberMethod(method, eventType, threadMode,
                                    subscribeAnnotation.priority(), subscribeAnnotation.sticky()));
                        }
                    }
                } else if (strictMethodVerification && method.isAnnotationPresent(Subscribe.class)) {
                    String methodName = method.getDeclaringClass().getName() + "." + method.getName();
                    throw new EventBusException("@Subscribe method " + methodName +
                            "must have exactly 1 parameter but has " + parameterTypes.length);
                }
            } else if (strictMethodVerification && method.isAnnotationPresent(Subscribe.class)) {
                String methodName = method.getDeclaringClass().getName() + "." + method.getName();
                throw new EventBusException(methodName +
                        " is a illegal @Subscribe method: must be public, non-static, and non-abstract");
            }
        }
    }

最终通过 getMethodsAndRelease 返回订阅类中订阅方法集合以及加入到METHOD_CACHE中.

获取到 订阅类中的方法后,对方法集合进行循环, 将方法与类以及方法参数类型 重组, 分别 加入subscriptionsByEventType map和 typesBySubscriber map中.

 // Must be called in synchronized block
    private void subscribe(Object subscriber, SubscriberMethod subscriberMethod) {
        Class<?> eventType = subscriberMethod.eventType;
        Subscription newSubscription = new Subscription(subscriber, subscriberMethod);
        CopyOnWriteArrayList<Subscription> subscriptions = subscriptionsByEventType.get(eventType);
        if (subscriptions == null) {
            subscriptions = new CopyOnWriteArrayList<>();
            //j参数类型 为key值, value subscription 是当前订阅类和订阅方法属性的封装对象
            subscriptionsByEventType.put(eventType, subscriptions);
        } else {
            if (subscriptions.contains(newSubscription)) {
                throw new EventBusException("Subscriber " + subscriber.getClass() + " already registered to event "
                        + eventType);
            }
        }

    //根据优先级重置
        int size = subscriptions.size();
        for (int i = 0; i <= size; i++) {
            if (i == size || subscriberMethod.priority > subscriptions.get(i).subscriberMethod.priority) {
                subscriptions.add(i, newSubscription);
                break;
            }
        }

      //订阅者为key值, 方法类型的集合为value
        List<Class<?>> subscribedEvents = typesBySubscriber.get(subscriber);
        if (subscribedEvents == null) {
            subscribedEvents = new ArrayList<>();
            typesBySubscriber.put(subscriber, subscribedEvents);
        }
        subscribedEvents.add(eventType);

        if (subscriberMethod.sticky) {
            if (eventInheritance) {
                // Existing sticky events of all subclasses of eventType have to be considered.
                // Note: Iterating over all events may be inefficient with lots of sticky events,
                // thus data structure should be changed to allow a more efficient lookup
                // (e.g. an additional map storing sub classes of super classes: Class -> List<Class>).
                Set<Map.Entry<Class<?>, Object>> entries = stickyEvents.entrySet();
                for (Map.Entry<Class<?>, Object> entry : entries) {
                    Class<?> candidateEventType = entry.getKey();
                    if (eventType.isAssignableFrom(candidateEventType)) {
                        Object stickyEvent = entry.getValue();
                        checkPostStickyEventToSubscription(newSubscription, stickyEvent);
                    }
                }
            } else {
                Object stickyEvent = stickyEvents.get(eventType);
                checkPostStickyEventToSubscription(newSubscription, stickyEvent);
            }
        }
    }

以上基本就是 register的源码的一个梳理. 但是读完还是感觉脑壳空空的. 以下图做一下总结

image.png

未完待续~

©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 214,172评论 6 493
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,346评论 3 389
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,788评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,299评论 1 288
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,409评论 6 386
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,467评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,476评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,262评论 0 269
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,699评论 1 307
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,994评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 39,167评论 1 343
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,827评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,499评论 3 322
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 31,149评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,387评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 47,028评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 44,055评论 2 352

推荐阅读更多精彩内容

  • EventBus是在Android中使用到的发布-订阅事件总线框架,基于观察者模式,将事件的发送者和接收者解耦,简...
    BrotherTree阅读 406评论 0 1
  • 序言 EventBus是一个Android事件发布/订阅框架,通过解耦发布者和订阅者简化事件传递。事件传递可用在四...
    左大人阅读 648评论 0 6
  • EventBus 是一个面向Android和Java的开源库,使用发布者/订阅者模式实现松散耦合,简化组件之间的通...
    _风听雨声阅读 401评论 0 2
  • 流程分析 EventBus 是一个发布 / 订阅的事件总线,总线可以有一个也可以有多个。总共包含4个成分:发布者,...
    thomasyoungs阅读 217评论 0 0
  • EventBus的使用 在onCreate()或者onStart()里面注册 在onStop()或者onDesto...
    风月寒阅读 224评论 0 0