EventBus源码分析

本文基于EventBus 3.1.1
基本使用
1,定义Event:

public class MessageEvent {
    public String message;

    public MessageEvent(String message) {
        this.message = message;
    }

    public String getMessage() {
        return message;
    }

    public void setMessage(String message) {
        this.message = message;
    }
}

2,生命订阅方法,并且在适当的位置注册和解除注册

  @Subscribe(threadMode = ThreadMode.MAIN)
    public void getMessage( MessageEvent messageEvent){
            tv.setText(messageEvent.getMessage());
    }

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

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

3,发送事件

     MessageEvent messageEvent = new MessageEvent("eventBus");
     EventBus.getDefault().post(messageEvent);

本文主要分析EventBus的注册和发布流程,解除注册比较简单不做分析,不具体分析粘性事件。
一,注册流程

注册.png

上图可简单概括EventBus的注册过程,下面我们根据源码具体分析:

EventBus.getDefault().register(this);

getDefault()方法是通过单例的方式获取一个 EventBus对象

  public static EventBus getDefault() {
        if (defaultInstance == null) {
            synchronized (EventBus.class) {
                if (defaultInstance == null) {
                    defaultInstance = new EventBus();
                }
            }
        }
        return defaultInstance;
    }

EventBus对象的具体创建是通过建造者模式

 public EventBus() {
        this(DEFAULT_BUILDER);
    }

 EventBus(EventBusBuilder builder) {
            logger = builder.getLogger();
            //这三个Map是核心
             subscriptionsByEventType = new HashMap<>();//Map<Class<?>, CopyOnWriteArrayList<Subscription>> subscriptionsByEventType  CopyOnWriteArrayList线程安全的list集合 用来存储eventType(订阅方法的参数) 和 订阅者和订阅方法的关系
             typesBySubscriber = new HashMap<>();//Map<Object, List<Class<?>>> typesBySubscriber 维护的是订阅者和订阅方法之间的对应关系
             stickyEvents = new ConcurrentHashMap<>();//Map<Class<?>, Object> stickyEvents

            //eventBus线程间的调度
             mainThreadSupport = builder.getMainThreadSupport();
             mainThreadPoster = mainThreadSupport != null ? mainThreadSupport.createPoster(this) : null;
             backgroundPoster = new BackgroundPoster(this);
             asyncPoster = new AsyncPoster(this);

            //记录事件总数
             indexCount = builder.subscriberInfoIndexes != null ? builder.subscriberInfoIndexes.size() : 0;
            //查找添加@subscribe注解的方法
             subscriberMethodFinder = new SubscriberMethodFinder(builder.subscriberInfoIndexes,
             builder.strictMethodVerification, builder.ignoreGeneratedIndex);

            //处理事件方法异常时是否需要打印log default true
             logSubscriberExceptions = builder.logSubscriberExceptions;
            //没有订阅者订阅此消息时是否打印log default true
             logNoSubscriberMessages = builder.logNoSubscriberMessages;
            //处理方法有异常,是否发送这个event default true
             sendSubscriberExceptionEvent = builder.sendSubscriberExceptionEvent;
            //没有处理方法时,是否需要发送sendNoSubscriberEvent这个标签 default true
             sendNoSubscriberEvent = builder.sendNoSubscriberEvent;
            //是否需要发送 throwSubscriberException 标签 default true
             throwSubscriberException = builder.throwSubscriberException;
            //与接收者有继承关系的类是否都需要发送 default true
             eventInheritance = builder.eventInheritance;
            //线程池
             executorService = builder.executorService;
    }

这里尤其要注意两个Map集合

 Map<Class<?>, CopyOnWriteArrayList<Subscription>> subscriptionsByEventType = new HashMap<>();
 Map<Object, List<Class<?>>> typesBySubscriber =  new HashMap<>();

CopyOnWriteArrayList是一个线程安全的arrayList, Subscription这个对象中封装了订阅者和谋一个订阅方法之间的关系
subscriptionsByEventType 这个map中维护的是EventType(订阅方法参数)和Subscription的关系
typesBySubscriber 这个map中维护的是订阅者和订阅方法之间的关系,我们注册过程的最终目的就是把订阅者和订阅方法填充到这个集合中。
register(this) 过程:

 public void register(Object subscriber) {
          //获取注册对象的class对象信息
        Class<?> subscriberClass = subscriber.getClass();
        //获取class对象的订阅方法,添加@Subscribe 注解的方法
        List<SubscriberMethod> subscriberMethods = subscriberMethodFinder.findSubscriberMethods(subscriberClass);
        synchronized (this) {
            for (SubscriberMethod subscriberMethod : subscriberMethods) {
              //对添加@Subscribe 注解的方法进行注册
                subscribe(subscriber, subscriberMethod);
            }
        }
    }

我们重点关注如何获取添加@Subscribe 注解的方法:

SubscriberMethod类对订阅方法进行了一定的封装,封装重要信息如下

public class SubscriberMethod {
    final Method method;//订阅方法
    final ThreadMode threadMode;//线程模型
    final Class<?> eventType;//订阅者class
    final int priority;//优先级
    final boolean sticky;//是否粘性
    ....
}

findSubscriberMethods(subscriberClass);方法 目的是获取订阅方法

List<SubscriberMethod> findSubscriberMethods(Class<?> subscriberClass) {
        List<SubscriberMethod> subscriberMethods = METHOD_CACHE.get(subscriberClass);
        //若缓存中有则直接从缓存中获取
        if (subscriberMethods != null) {
            return subscriberMethods;
        }
      //缓存中没有则直接通过findUsingReflection() 方法 或者 findUsingInfo() 方法获取订阅方法
        if (ignoreGeneratedIndex) {//是否强制使用反射,即使生成了索引,默认false
            subscriberMethods = findUsingReflection(subscriberClass);
        } else {
            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;
        }
    }

ignoreGeneratedIndex表示是否强制使用发射获取订阅方法,true 通过反射来获取订阅方法,false则是在编译期间生成SubscriberInfo,然后在运行时使用SubscriberInfo中保存的事件,减少反射的内存消耗。

1,通过findUsingReflection(Class<?> subscriberClass) 方法 获取订阅方法列表

private List<SubscriberMethod> findUsingReflection(Class<?> subscriberClass) {
//获取findState对象
FindState findState = prepareFindState();
//初始化findState对象
findState.initForSubscriber(subscriberClass);
while (findState.clazz != null) {
findUsingReflectionInSingleClass(findState);
//递归查找父类
findState.moveToSuperclass();
}
//获取订阅方法
return getMethodsAndRelease(findState);
}
findUsingReflectionInSingleClass(findState);方法:

    private void findUsingReflectionInSingleClass(FindState findState) {
        Method[] methods;
        try {
         
            //反射获取该类中声明的所有方法 包含public protected private
            methods = findState.clazz.getDeclaredMethods();
        } catch (Throwable th) {
            //获取类中的所有public方法
            methods = findState.clazz.getMethods();
            findState.skipSuperClasses = true;
        }
      //遍历所有的方法并且找到符合要求的方法,并且封装成SubscriberMethod 保存在findState.subscriberMethods 这个list中
        for (Method method : methods) {
            int modifiers = method.getModifiers();//获取方法参数修饰符
            //只获取public修饰的方法
            if ((modifiers & Modifier.PUBLIC) != 0 && (modifiers & MODIFIERS_IGNORE) == 0) {
                Class<?>[] parameterTypes = method.getParameterTypes();//获取方法参数数组
                if (parameterTypes.length == 1) {//注解方法只能有一个参数
                    Subscribe subscribeAnnotation = method.getAnnotation(Subscribe.class);//获取Subscribe 注解
                    if (subscribeAnnotation != null) {
                        Class<?> eventType = parameterTypes[0];//将方法参数做eventType
                        if (findState.checkAdd(method, eventType)) {//检查方法是否合法
                            ThreadMode threadMode = subscribeAnnotation.threadMode();//获取方法执行线程模式(注解中获取)
                               //最终将合法的方法保存在findState.subscriberMethods中
                            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)) {
                  //注解方法必须是public 非static 非abstract
                String methodName = method.getDeclaringClass().getName() + "." + method.getName();
                throw new EventBusException(methodName +
                        " is a illegal @Subscribe method: must be public, non-static, and non-abstract");
            }
        }
    }

EventBus的注解方法只能是public修饰并且只能有一个参数。

2,通过findUsingInfo(Class<?> subscriberClass)方法获取订阅方法列表

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 {
                //subscriberInfo 为空则通过反射再获取一次
                findUsingReflectionInSingleClass(findState);
            }
            findState.moveToSuperclass();
        }
        return getMethodsAndRelease(findState);//取出FindState对象中的订阅方法列表
    }

通过这种方式获取订阅方法列表,是通过注解在编译期动态生成一个MyEventBusIndex.java类,并将订阅方法保存在subscriberInfo 中,具体细节不再赘述。
获取到订阅方法列表之后,则继续执行订阅逻辑

   synchronized (this) {
            for (SubscriberMethod subscriberMethod : subscriberMethods) {
                subscribe(subscriber, subscriberMethod);
            }
        }

subscribe(subscriber, subscriberMethod);方法具体细节如下:

   private void subscribe(Object subscriber, SubscriberMethod subscriberMethod) {
        Class<?> eventType = subscriberMethod.eventType;
       //将订阅者和订阅方法封装成一个Subscription对象
        Subscription newSubscription = new Subscription(subscriber, subscriberMethod);
        //根据事件类型从缓存中取出subscriptions
        CopyOnWriteArrayList<Subscription> subscriptions = subscriptionsByEventType.get(eventType);
        if (subscriptions == null) {//没有订阅列表,则创建一个
            subscriptions = new CopyOnWriteArrayList<>();
            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;
            }
        }
        //通过订阅者获取订阅方法的class列表
        List<Class<?>> subscribedEvents = typesBySubscriber.get(subscriber);
        if (subscribedEvents == null) {订阅方法的class列表为空则新建一个并放入typesBySubscriber这个map中
            subscribedEvents = new ArrayList<>();
            typesBySubscriber.put(subscriber, subscribedEvents);
        }
        //将订阅方法的class依次放入typesBySubscriber这个map中
        subscribedEvents.add(eventType);
           //如果是粘性事件的话需要做如下处理  粘性事件 就是在发送事件之后再订阅该事件也能收到该事件
           //如果是粘性消息则将缓存中的消息发送给订阅
        if (subscriberMethod.sticky) {
            if (eventInheritance) {
 
                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);
            }
        }
    }

注册的过程主要是将订阅者subscriber(注册时传入的this)和订阅方法(添加@Subscribe的方法)的所有class类型存入typesBySubscriber这个map集合中。
二,post过程
post过程图解如下:

post过程.png

post(Object event) 方法:

    public void post(Object event) {
        //currentPostingThreadState 是一个ThreadLocal对象,保存了当前线程的PostingThreadState对象
        PostingThreadState postingState = currentPostingThreadState.get();
        //eventQueue为postingState中保存的一个list
        List<Object> eventQueue = postingState.eventQueue;
        eventQueue.add(event);
           //是否处于posting状态
        if (!postingState.isPosting) {
            postingState.isMainThread = isMainThread();//是否在主线程中执行
            postingState.isPosting = true;
            if (postingState.canceled) {//posting过程被取消
                throw new EventBusException("Internal error. Abort state was not reset");
            }
            try {
                while (!eventQueue.isEmpty()) {
                      //eventQueue中的所有消息依次发送
                    postSingleEvent(eventQueue.remove(0), postingState);
                }
            } finally {
                //发送结束状态重置
                postingState.isPosting = false;
                postingState.isMainThread = false;
            }
        }
    }

postSingleEvent(eventQueue.remove(0), postingState);方法:

 private void postSingleEvent(Object event, PostingThreadState postingState) throws Error {
        //获取当前发送的event的class对象
        Class<?> eventClass = event.getClass();
        boolean subscriptionFound = false;
        if (eventInheritance) {
            List<Class<?>> eventTypes = lookupAllEventTypes(eventClass);
            int countTypes = eventTypes.size();
            for (int h = 0; h < countTypes; h++) {
                Class<?> clazz = eventTypes.get(h);
                subscriptionFound |= postSingleEventForEventType(event, postingState, clazz);
            }
        } else {
            subscriptionFound = postSingleEventForEventType(event, postingState, eventClass);
        }
        if (!subscriptionFound) {// 没有找到此事件类型的订阅者逻辑
            if (logNoSubscriberMessages) {
                logger.log(Level.FINE, "No subscribers registered for event " + eventClass);
            }
            if (sendNoSubscriberEvent && eventClass != NoSubscriberEvent.class &&
                    eventClass != SubscriberExceptionEvent.class) {
                post(new NoSubscriberEvent(this, event));
            }
        }
    }

eventInheritance变量表示是否发送当前类的superClass的事件 默认为true,此变量若为true则会调用lookupAllEventTypes方法去查找父类。

//找出所有的类对象包括超类和接口
private static List<Class<?>> lookupAllEventTypes(Class<?> eventClass) {
        synchronized (eventTypesCache) {
            List<Class<?>> eventTypes = eventTypesCache.get(eventClass);
            if (eventTypes == null) {
                eventTypes = new ArrayList<>();
                Class<?> clazz = eventClass;
                while (clazz != null) {//递归寻找
                    eventTypes.add(clazz);
                    addInterfaces(eventTypes, clazz.getInterfaces());
                    clazz = clazz.getSuperclass();
                }
                eventTypesCache.put(eventClass, eventTypes);
            }
            return eventTypes;
        }
    }

之后会接着调用 postSingleEventForEventType(Object event, PostingThreadState postingState, Class<?> eventClass):

 private boolean postSingleEventForEventType(Object event, PostingThreadState postingState, Class<?> eventClass) {
        CopyOnWriteArrayList<Subscription> subscriptions;
        synchronized (this) {
            subscriptions = subscriptionsByEventType.get(eventClass);
        }
        if (subscriptions != null && !subscriptions.isEmpty()) {
            for (Subscription subscription : subscriptions) {
                postingState.event = event;
                postingState.subscription = subscription;
                boolean aborted = false;
                try {
                    postToSubscription(subscription, event, postingState.isMainThread);
                    aborted = postingState.canceled;
                } finally {
                    postingState.event = null;
                    postingState.subscription = null;
                    postingState.canceled = false;
                }
                if (aborted) {
                    break;
                }
            }
            return true;
        }
        return false;
    }

最终调用postToSubscription(Subscription subscription, Object event, boolean isMainThread) 方法,此方法中最终会通过反射调用添加了@subscrube注解的方法。

 private void postToSubscription(Subscription subscription, Object event, boolean isMainThread) {
        switch (subscription.subscriberMethod.threadMode) {
            case POSTING:
                invokeSubscriber(subscription, event);
                break;
            case MAIN:
                if (isMainThread) {
                    invokeSubscriber(subscription, event);
                } else {
                    mainThreadPoster.enqueue(subscription, event);
                }
                break;
            case MAIN_ORDERED:
                if (mainThreadPoster != null) {
                    mainThreadPoster.enqueue(subscription, event);
                } else {
                    // temporary: technically not correct as poster not decoupled from subscriber
                    invokeSubscriber(subscription, event);
                }
                break;
            case BACKGROUND:
                if (isMainThread) {
                    backgroundPoster.enqueue(subscription, event);
                } else {
                    invokeSubscriber(subscription, event);
                }
                break;
            case ASYNC:
                asyncPoster.enqueue(subscription, event);
                break;
            default:
                throw new IllegalStateException("Unknown thread mode: " + subscription.subscriberMethod.threadMode);
        }
    }

根据ThreadMode去判断在那个线程中执行,最终都会听过invokeSubscriber(subscription, event);方法反射调用订阅方法。
ThreadMode的说明:

  • POSTING:默认的 ThreadMode,不管是不是主线程直接调用订阅方法。

  • MAIN:主线程中执行订阅方法,如果发布线程是主线程则直接调用订阅方法否则通过Handler回调到主线程。

  • MAIN_ORDERED:与MAIN类似但是是顺序执行。

  • BACKGROUND:在后台线程中执行响应方法。如果发布线程不是主线程,则直接调用订阅者的事件响应函数,否则启动唯一的后台线程去处理。

  • Async:不论发布线程是否为主线程,都使用一个空闲线程来处理。
    本篇分析就到这里,此外推荐一篇EventBus源码分析的文章,写的特别好,地址如下:
    https://www.jianshu.com/p/af61682450d1?mType=Group

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

推荐阅读更多精彩内容

  • 简介 前面我学习了如何使用EventBus,还有了解了EventBus的特性,那么接下来我们一起来学习EventB...
    eirunye阅读 464评论 0 0
  • 前面对EventBus 的简单实用写了一篇,相信大家都会使用,如果使用的还不熟,或者不够6,可以花2分钟瞄一眼:h...
    gogoingmonkey阅读 317评论 0 0
  • EventBus是在Android中使用到的发布-订阅事件总线框架,基于观察者模式,将事件的发送者和接收者解耦,简...
    BrotherTree阅读 406评论 0 1
  • EventBus源码分析 Android开发中我们最常用到的可以说就是EventBus了,今天我们来深入研究一下E...
    BlackFlag阅读 508评论 3 4
  • 停停走走又几天,断断续续这一年。时间还是如此之快,转眼间又到了17年的末尾了。趁着这些天还能静下心来看看代码,赶紧...
    nick_young阅读 1,277评论 0 3